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
Sfdc Learner99Sfdc Learner99 

How to add multiple visualforce page field values into one text field inside custom object record

Hi All, 
I am trying to capture the vf page input field values to one custom field inside the object. 

I have a  field called "CustomerInformation__c". I want to populate the below input fields fullName, Email, and Company values from the vf page to the salesforce record page.  

Any reference kindly suggests.

add the vf page field values to Customer InformationVF page
TEJESWARI TEJUTEJESWARI TEJU
Hai sfdc learner99
<apex:inputfield value="{!ObjectA.fullname}"<br>
<apex:inputfield value="{!ObjectB.Email}".
above is the example you can use...
Tqs
From 
Teju