cancel
Showing results for 
Search instead for 
Did you mean: 

Enabling Reset Button On Account Identification Page

Former Member
0 Kudos

Hi Experts ,

Once we confirm the account , Reset button get disabled .

I want it to be visible even after account get confiremd.

For this I changed the ICCMP_BP_DETAIL/BupaDetailButton , htm file , but reset button is still grayed out.

Please help me to get it enable all time.

Thanks & regards,

Akhilesh Bhagat.

Accepted Solutions (1)

Accepted Solutions (1)

deepika_chandrasekar
Active Contributor
0 Kudos

HI,

in .htm page for reset button variable enable_confirmed is used instead of that use new variable or if you want the button to be enable always use "TRUE"

enabled = "<%= enable_confirm %>"  instead use  enabled = "TRUE

Regards,

Deepika.

Former Member
0 Kudos

Hi Deepika,

I have done that . But still disable .  No solution yet

Thanks & regards,

Akhilesh Bhagat.

former_member210661
Active Contributor
0 Kudos

Hi Akhilesh,

goto ICCMP_BP_DETAIL/BupaDetail view.htm there is a reset button tag check for that and enable that button when conform is disable also.. i think your checking in bupadetailsbutton view because that is still in disable mode.. try this..


this is the tag..


    <thtmlb:button id      = "reset"

                    onClick = "reset"

                    enabled = "<%= enable_save %>" // insted of enable_save use true..

                    iconSrc = "<%= lv_icon_url %>"

                    tooltip = "<%= otr(CRM_IC_APPL/CANCEL) %>" />

Thanks & Regards,

Srinivas.

deepika_chandrasekar
Active Contributor
0 Kudos

Hi,

It should work, try to debug and find the issue.

Regards,

Deepika.

Former Member
0 Kudos

Hi Akhilesh,

You can find below code in BuPaDetB2BVS.htm page of ICCMP_BP_DETAIL

    <thtmlb:button id      = "clear"

                    onClick = "clear"

                    enabled = "<%= enable_clear %>"

                    text    = "<%= otr(crm_ic_appl/bupareset) %>"

                    tooltip = "<%= otr(crm_ic_appl/bupareset) %>" />

Set enable = "TRUE" for reset button to be always enabled.

Thanks

Richa

Answers (0)