cancel
Showing results for 
Search instead for 
Did you mean: 

How to find Veiw description In Account Identification page

Former Member
0 Kudos

Hi Experts ,

In Account Identification page I have three View , Search on left side , contarct in right side and result in down.

SEARCH : ICCMP_BP_SEARCH  ( View description :Account )

RESULT : ICCMP_BP_SEARCH  (View Description : Result )

Contract  :ICCMP_BT_CSPC (View Description : Contract )

I want to know how to change these view description . I debugged sone methods of component CRMCMP_BPIDENT but did no get anything regarding view description . I can get the whole page description of account identification in GET_STATE_DESCRIPTION but I need view description.

PLease help me to get the solution.

Thanks & Regards,

Akhilesh Bhagat.

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi All,

Thanks for your help.

I solved the issue . while debugging I found the table name where the description of ICCMP_BT_CSPC component maintained , the table is CRMC_IC_BPDEFCOT.

Thanks & regards,

Akhilesh Bhagat.

Answers (3)

Answers (3)

former_member210661
Active Contributor
0 Kudos

Hi Akhilesh,

goto SEARCH : ICCMP_BP_SEARCH/BuPaSearchview.htm there is tag

<thtmlb:tray id     = "de"

              indent = "FALSE"

              height = "100%"

              design = "PLAIN"

              title  = "<%= otr(crm_ic_appl/bupaAccount) %>" >

title tag is populating title over there if you want to give your own title change title what ever you want..

try to find out the same way for the result and contact i dont have both the views in my web ui..

in my case we are displaying result view as ICCMP_BP_SEARCH/BuPaSelectCustomer  in .htm

there is tag..

<thtmlb:textView text=": <%= lv_size %> <%= otr(CRM_IC_CMP_BPIDENT/BUPARESULTSCUSTOMERSINGLE) %>"

                   design = "BOLD" />

let me know if you have any queries ,

Thanks & Regards,

Srinivas..

Former Member
0 Kudos

Hi Akhilesh,

You can change the view description in .htm poage of that view.

Example - In BuPaSearch.htm for ICCMP_BP_SEARCH following code snippet is for the view description

<thtmlb:tray id     = "de"

              indent = "FALSE"

              height = "100%"

              design = "PLAIN"

              title  = "<%= otr(crm_ic_appl/bupaAccount) %>" >

  <thtmlb:trayBody>

Here, the title contains alias name 'Account'.

you can change this as per your requirements.

Thanks

Richa

deepika_chandrasekar
Active Contributor
0 Kudos

Hi Akhilesh,

1. View Description you can check in configuration of Overview page of the component.

2. .htm page also you can check if any code is there for description.

Regards,

Deepika.

Former Member
0 Kudos

Hi Deepika,

I checked all you mentioned , but did not get  and I belive there is no overview page for Identification account .

Thanks & regards,

Akhilesh Bhagat.

deepika_chandrasekar
Active Contributor
0 Kudos

Hi,

Check Title in Tray tag.

You need to change the description in the title attribute.

Regards,

Deepika.

Former Member
0 Kudos

Hi Akhilesh,

You will find the below code on htm page in your component view. Change the title attribute to change the view description.

<thtmlb:tray id     = "de"

              indent = "FALSE"

              height = "100%"

              design = "PLAIN"

              title  = "<%= otr(crm_ic_appl/bupaAccount) %>" >

Thanks,

Ritu