function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Richa_LearningRicha_Learning 

URL hack for Accounts

hi,
I am populating few fields on account when i click new custom button. I am using url hack to populate th fields.  Button is copying the value for all fields except text area.

I want to copy description field value to another record.

I can see value in the url is copid but it is not populated on the field. How can i copy text area field using url hack?
/001/e?retURL=/{!Account.Id}

&CF00N63000000HV70={!Account.Description__c}

 
Tolga SunarTolga Sunar
Have you tried removing the "CF" part in the field ID? Also Account object has standard Description field, in case you are mixing them up.

Try this: 
 
/001/e?retURL=/{!Account.Id}

&00N63000000HV70={!Account.Description__c}

If this won't work, I would suspect the field type being text area.
Amit Chaudhary 8Amit Chaudhary 8
Yes you can do. Please check below screen shot. I tested same on Account and Opportunity
/006/e?retURL=%2F006%2Fo&opp14=demo


User-added image

Please let us know if this will help you
 
Richa_LearningRicha_Learning
thanks.

@Tolga: Description field is custom text area on accounts.

@Amit : , i want field to be populated with its value. example : if description is "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" and when i click on this button it should copy this value to new record. so this field can have different value for different accounts. I canot hard code the value like "demo"