• yulia
  • NEWBIE
  • 0 Points
  • Member since 2010

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 7
    Questions
  • 1
    Replies

i want to ask, How to make <apex:iframe> height to be dynamic?

 

<iframe width="100%" height="500px" align="top" frameborder="0" src="{!srcIframe}">
    </iframe>

 

I already used height="auto" etc, but unsuccessfull..

Any suggestions?

 




  • September 05, 2011
  • Like
  • 0

i want to ask, how to change field name that Data type is "Record Type".
i already searching forum and google, but not found solution.
Hope this helps.. thank you

  • May 24, 2011
  • Like
  • 0

i want to ask about custom field in profile and role. How to create custom field and add the custom field in profile and role? 

 

thx...

  • May 04, 2011
  • Like
  • 0

i want to asked about fields that are changed when we add delivery content to an object. what field that links between objects (for example : account/opportunity) with content delivery?

  • February 22, 2011
  • Like
  • 0

i want to asked about deploy record type in salesforce.

For example : i created new record type --> RTSample. In "Picklists Available For Editing", i edited Salutation Field (Mr. and Mrs. moved to Selected Values).

 

After that,i tried to deploy to other instance. In other instance, there are RTSample Record Type but in "Picklists Available For Editing", all value are in "Available Value"

 

my question --> How to deploy Record type with "Picklists Available For Editing" ???

  • February 18, 2011
  • Like
  • 0

Hi All,

i want to ask about export date field from CSV to salesforce with apex Data Loader. 

 

when we export date datatype using data loader, results on apex explorer(salesforce) always -1 day. I'm using windows 7

 

For example : date (csv) : 15/10/2010. After export to salesforce --> date = 16/10/2010.

 

 

Yulia 

  • November 23, 2010
  • Like
  • 0

Hi all,

i want to ask a question about this error --> Error: Compile Error: Invalid type: Database.QueryLocator at line 3 column 12. 

 

this is my apex class :

 

Global class Lat2_ApexBatch implements Database.Batchable<sObject>
{
    global Database.QueryLocator start (Database.BatchableContext BC)
    {
        return Database.getQueryLocator ('Select a.Id, a.name,a.NumberofLocations__c from Account a');
    }
    
    global void execute (Database.BatchableContext BC, List<account> scope)
    {
        List<Account> accInsert = new List<Account>();
        for (Account acc : scope)
        {
            acc.NumberofLocations__c = 0;
            accInsert.add (acc);
        }
        
        update accInsert;
    }
    
    global void finish (Database.BatchableContext BC)
    {
        
    }
}


any suggestion would be appreciated??

 

thx..

Yulia

 

 

  • November 16, 2010
  • Like
  • 0

I am very new to all this and have no idea of programming so...

 

I have a "helpdesk" style system within SF and each "ticket/record" has Notes / Attachments. When the ticket is "edited / created" e-mails get sent out to revelent people.

 

Now when the a Note or Attachment is added the record is not classified as "edited/updated" so i need to create a trigger to affectivly update the record when a note is created.

 

Any one know how to do this?

 

Thanks in advance

 

Jason