cancel
Showing results for 
Search instead for 
Did you mean: 

Disable ATP when create deliverys

0 Kudos

Hello everyone,

I need to disable the check atp when creating deliveries. And tried this in this thread (http://scn.sap.com/thread/367087), but without success.

@ Noel Connolly

 

Does it really work? I enabled the exits EXIT_SAPLATPC_001 and  EXIT_SAPLATPC_002.  I put a breakpoint at 001 and when the program stopped at the breakpoint I cleaned the field CHKFLG but did not work.

Thank,

Alessandro

Accepted Solutions (0)

Answers (3)

Answers (3)

former_member223981
Active Contributor
0 Kudos

The best approach is the 0VLP one discussed above.

If that is not suitable, then you could just use EXIT_SAPLATPC_002 to ensure that a confirmed quantity id always given. Lets take this example:

Required quantity = 10

Confirmed Quantity = 5 so Function Module AVAILABILITY_CHECK returns with P_MDVEX-MNG02 = 5.

You could just change this in EXIT_SAPLATPC_002 to :

Confirmed Quantity = Required Quantity

P_MDVEX-MNG02 = P_MDVEX-MNG01.

This would overwrite the result of the ATP check.

************

Clearing CHKFLG means that the ATP check is not executed but it also means that the P_MDVEX structure is never filled at all.

Former Member
0 Kudos

Hi Alessandro,

goto 0vlp ---> Choose your item category to which you wish to switch off avaliablity check -----> availability check off ---> Donot Check availablity .

Regards,

samba

FredericGirod
Active Contributor
0 Kudos

Hi Alessandro,

instead of clearing the content of the field CHKFLG, did you try to delete the whole line of the table ?

regards

Fred