cancel
Showing results for 
Search instead for 
Did you mean: 

badi BBP_UI_CONTROL_BADI unable to hide radio button

Former Member
0 Kudos

Hi guys,

I'm trying to to hide the radio buttons for Account Assignment and Follow-up Action in the srm portal using badi BBP_UI_CONTROL_BADI. However i'm only able to hide the lable and descriptions and not the radio button itself. Can anyone please help. thanks.

Accepted Solutions (0)

Answers (4)

Answers (4)

Former Member
0 Kudos

Hi

Need some help . we have a similar requirement to hide product type Radio button .

Can u tell me the how did u archived that. (comment the HTML code).

Former Member
0 Kudos

Hi,

You can try the BADI: BBP_UI_CONTROL_BADI

Method: BBP_SC_UI_CTRL.

CASE IV_FIELDNAME.

WHEN 'GS_SCR_LIMIT-ACC_UNKNOWN' OR 'GS_SCR_LIMIT-ONLY_INV'.

CV_INVISIBLE = C_X.

CV_INPUT_READY = ' '.

ENDCASE.

Thanks

prasad.s

dean_hinson2
Active Contributor
0 Kudos

Hello,

You cannot hide the whole radio button section, we forced the selections by implementing the following code...


  IF IV_FIELDNAME = 'GS_SCR_LIMIT-CONF_INV'
  OR IV_FIELDNAME = 'GS_SCR_D_LIMIT-CONF_INV'.
      cv_invisible   = '1'.
      cv_input_ready = '0'.
  ENDIF.

  IF IV_FIELDNAME = 'GS_SCR_LIMIT-ACC_UNKNOWN'
  OR IV_FIELDNAME = 'GS_SCR_D_LIMIT-ACC_UNKNOWN'.
      cv_invisible   = '1'.
      cv_input_ready = '0'.
  ENDIF.

Regards, Dean.

Former Member
0 Kudos

Hi guy,

i've removed the radio button by commenting out the html doc in internet services. Thanks so much for the replies.

Former Member
0 Kudos

Hi,

Please refer he below link

BR,

NMK

Former Member
0 Kudos

Hi,

Can you paste the BAdI code here, so that we can analyze it and tell you what needs to be done.

Thanks,

Pradeep