cancel
Showing results for 
Search instead for 
Did you mean: 

change field name in IC web - CRM 5.0

Former Member
0 Kudos

Hi,

Can someone tell me how to get the fieldname changed in crm 5.0 ? I heard it is quite different from crm7.0 . I want the "First Name" field in "Identify Account" to be changed to just "Name" . Should ihave to do change the standard code?

Thanks,

Ralf

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi Ralf,

To change the field name of any field on the IC Web 5.0, you need to go the the .htm (eg: BuPaSearchB2B.htm) view and then, there would be a label section, find "text =" part of it, the instead of any value assign it like

See the code below,

original code,

if screen_variant eq '013'. %><*crmic:label* design  = "label"
                     id      = "ContactName1"
                     for     = "//SearchContactAsBP/ContactName1"
                     *text    = "<%= otr(crm_ic_appl/bupaFirsttName) %>"*
                     tooltip = "<%= otr(crm_ic_appl/bupaContactPerson) %>" 

changed code>

if screen_variant eq '013'. %><*crmic:label* design  = "label"
                     id      = "ContactName1"
                     for     = "//SearchContactAsBP/ContactName1"
                     *text    = "Name"*
                     tooltip = "<%= otr(crm_ic_appl/bupaContactPerson) %>" 

or this way:

if screen_variant eq '013'. %><*crmic:label* design  = "label"
                     id      = "ContactName1"
                     for     = "//SearchContactAsBP/ContactName1"
                     *text    = "<%= otr(ZAPP/bupaFirstName) %>"*
                     tooltip = "<%= otr(crm_ic_appl/bupaContactPerson) %>" 

dubble click on otr(ZAPP/bupaFirstName) this would ask you to enter something, enter 'Name' there, you are done.

Hope this helps,

Regards,

Ramakanth