cancel
Showing results for 
Search instead for 
Did you mean: 

Badi:BBP_UI_CONTROL_BADI

Former Member
0 Kudos

Hi Experts,

I have a requiement ...when we create "Limit SC" under basic data there is an option

Follow-up-actions: 1.confirmation and Invoice

2.Invoice only

Account-Assignment : Unknown

Known

My requiement is i need to disable (invoice only and Unknown ) radio buttons...

The Badi..BBP_UI_CONTROL_BADI is the right one to implement or is there any other badi...by which we can achieve this task..

any help is appreciated

sameer

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi Sameer,

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.

See if it helps.

You can even try the screen variant in transaction SHD0 to hide these two radiobuttons.

Thanks,

Pradeep

Answers (2)

Answers (2)

Former Member
0 Kudos

Hi Sameer,

How did you solve this issue?

Former Member
0 Kudos

Hi pradeep,

How can we do from SHD0....can you explain...this procedure

sameer

Former Member
0 Kudos

Hi Sameer,

To work with SHD0 first you need to find on which screen does these radio-buttons are present.

Then search if a screen variant exist for that particular screen.

If the screen variant exists then you can copy that screen variant to a Z* screen variant and then you can call this Z screen variant in the BAdI BBP_SCREENVARIANT.

Hope this helps.

Thanks,

Pradeep

Former Member
0 Kudos

Hi,

Apart from these option you can hide those radio button using HTML code modification for the particular template. Don't forget re-publish the relevant template after made the changes.

Cheers!!!

NMK