cancel
Showing results for 
Search instead for 
Did you mean: 

Restrict specific storage location in V_v2

former_member232086
Participant
0 Kudos

Team,

when we run the program V_V2 need to exclude some specific storage location from v_v2( stock from those locations should consider for V_V2)

how to restrict it?

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi Vijesh,

You can do this by copying program of V_V2 (SDV03V02).

You can either change the selection screen or selection options within the program.

You may go through the below note which provides lots of information about V_V2:

http://service.sap.com/sap/support/notes/1861066

Regards

SD

Answers (1)

Answers (1)

former_member223981
Active Contributor
0 Kudos

Another approach to the one suggested by Samier would be to utilise the ATP exits. For example, you might have a requirement that when V_V2 is executed, the system always finds a quantity available for a specific storage location. You could use user exit EXIT_SAPLATPC_002 like this:

IF SY-CPROG = 'SDV03V02'.

P_MDVEX-MNG02 = P_MDVEX-MNG01.

ENDIF.

You would need to discuss the full details of such a modification with your ABAP team.