cancel
Showing results for 
Search instead for 
Did you mean: 

Vl02n Transaction

Former Member
0 Kudos

In VL02n Transaction

Check Doc distrbtn / Distribution Document is Disabled

Path

Menu

-- EDIT

-- Check Doc distrbtn / Distribution Document

How to enable above link.

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi,

If you check in menu painter, you will see this is function SIMU_T. If you search for this in SAPMV50A, you will find this logic :

MV50AF0C_CUA_FCODE_DYNAMIC

  • Activate simulation button only if document is relevant for

  • distribution or WMS change management is active

if v50agl-dlv_change eq charx or

( likp-vlstk ca 'AD' and likp-verursys eq space ).

perform cua_fcode_allow using 'SIMU_T' yes.

else.

perform cua_fcode_allow using 'SIMU_T' no.

endif.

Former Member
0 Kudos

Pls Explain step wise.. to enable Link

Former Member
0 Kudos

Hi,

In order to enable the link you need to fulfill the criteria - "only if document is relevant for

distribution or WMS change management is active".

Check you delivery in SE16 for table LIKP with the 2 fields in the criteria :

vlstk and verursys.

To simulate that the (greyed-out) menu point was pressed, you can type SIMU_T in the top left window, normally used for entering transactions.

Another option is to set a soft breakpoint at this point and change the data on the fly, to simulate the criteria is fulfilled.

Answers (0)