cancel
Showing results for 
Search instead for 
Did you mean: 

avalability control can not include sales order that credit check has been exceeded.

0 Kudos

Hi Expert,

Anyone know, How can I config carry out control for availability check of Checking rule A (SD order) to include all credit order. although credit check of sales order has been exceeded.

Accepted Solutions (1)

Accepted Solutions (1)

Lakshmipathi
Active Contributor
0 Kudos

If you want the system to allow to create delivery even if a customer has exceeded their credit limit, then you you have to deactivate the credit check at sale order level.   But, I would not recommend this; instead, you can execute VKM3 and release the order subsequent to which, stock would be confirmed.

G. Lakshmipathi

0 Kudos

I don't want the system to allow to create delivery but I would like the system confirmed qty for this sales order although credit check of sales order has been exceeded.

former_member223981
Active Contributor
0 Kudos

> SPRO

  > Sales and Distribution

     > Basic Functions

       > Availability Check and Transfer of Requirements

          > Maintain Requirements For Transfer Of Requirements

In here, you see routine 101 - remove this routine.

OR

Include          LV07A101;

FORM BEDINGUNG_PRUEFEN_101.

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

* if there is not in simulation mode


  IF SIMUL_MODE EQ SPACE.

* Remove the reservation of goods when the sales order is locked


* by credit


  IF VBUK-CMGST CA 'B'.

* Read the subsequent function information for the message


    PERFORM FOFUN_TEXT_READ USING    GL_FOFUN


                            CHANGING FOFUN_TEXT.


    MESSAGE ID 'V1' TYPE 'E' NUMBER '849'


            WITH FOFUN_TEXT


            RAISING ERROR.


  ENDIF.


  ENDIF.

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

Comment out all of this code.

0 Kudos

Hi Mr. Connolly,

Can you suggest me how can I do if I would like to use routine 101 for some order type /delivery type/ sales org.

Thanks in advance,

former_member223981
Active Contributor
0 Kudos

Could be a good option to maintain your custom routine and to get your ABAPer to insert this type of logic directly into the routine. I am not aware of another way of doing this.

0 Kudos

Thanks you very much. I will custom my routine for this requirement .

Answers (0)