cancel
Showing results for 
Search instead for 
Did you mean: 

SUPPRESS TO DISPLAY EK02 CONDITION u0130N PRu0130Cu0130NG PROCEDURE

Former Member
0 Kudos

Hi ,

I want to suppress to display EK02 (condition) in VA01 or V02 ?

How ı can do it ?

Can u help me ?

Accepted Solutions (1)

Accepted Solutions (1)

ranjeetrajendra_jain
Active Contributor
0 Kudos

Hiya

In requirement put 24 or 23 it will directly be displayed in billing document.

Regards

Ranjeet

Answers (1)

Answers (1)

Former Member
0 Kudos

I understand that you want to supress displaing, but no calculating. I mean, you want to calculate EK02 but no display it. Like if it was authorization check.

you must create a Z table where you must put EK02 condition or any other condition you want to supress.

FORM USEREXIT_XKOMV_ERGAENZEN_MANU

Other solution: LV69AFZZ

Form USEREXIT_FIELD_MODIFICATION

if screen-name eq 'KOMV-KBETR' or screen-name eq 'KOMV-KWERT'.

if xkomv-kschl = 'EK02'.

select single * from usr05

where bname = sy-uname and parid = XXXXXXX'.

if sy-subrc = 0 and usr05-parva ne '00' and usr05-parva ne ' '.

screen-active = 0.

endif.

endif.

endif.