You need to sign in to do that
Don't have an account?

Is it Possible to load dynamic values in Standard Picklist
My Scenario : I am doing with custom object. Object name is Test_Case__c and it has lookup to Module__c object. Module__c object contains one Long Text Area field called Components__c where users can enter texts by separate lines. So on new record creation of Test_case__c when Module__c is selected then the Components__c from Module__c should load into one of the picklist field called Solution_Component__c in Test_case__c.
- Is this possible without writing vfp and controller?.
- If it is possible by writing vfp and controller what is the way i need to go?
- If it is not possible without writing vfp and controller, how could I get ID of the selected Module__c in Test_case__c creation(because need to capture the ID when it is selected from lookup popup)
2. SLASerialNumber__c is Long Text Area field
CustomerPriority__c is picklist field with value (High,Medium,Low)
According to above code I'm fetching values from Long Text Area (SLASerialNumber__c) and binding those value in the picklist field (CustomerPriority__c).
Right now Long text area and picklist field are in same object but as per your requirement this can be implemented. need to do some major changes in code.
3. And you can also store the ID easily of Selected Module using a formula field simply.