cancel
Showing results for 
Search instead for 
Did you mean: 

Scenario on Credit management

Former Member
0 Kudos

Hi Experts,

DELETED - see rules of engagement .

thnks and regards

Rajat Garg

Edited by: Ian Kehoe on Apr 26, 2011 6:00 PM

Accepted Solutions (0)

Answers (4)

Answers (4)

Former Member
0 Kudos

mail sent to ur mail id

Former Member
0 Kudos

Hi, I am having the problem with error V! 849 when creating a sales order on VA01. Please can you tell what to do.

Thanks in advance.

Former Member
0 Kudos

Hi,

Check u r mail

With regards

Rajesh

Former Member
0 Kudos

HI,

Please send the credit management senario to this mail id DELETED - see rules of engagement ..

Thanks

Edited by: Ian Kehoe on Apr 26, 2011 5:56 PM

Former Member
0 Kudos

Hi,

<b>MRP block for Credit limit attained Customers </b> How to block the requirement (MD04) generated by the item category in a sales order when the customer has attained the credit limit? The MRP requirements still appear even though the schedule is zero.

You should try and use one of the standard requirements.

See in transaction "VOFM".

Under Requirements / Subsequent Functions / Reqs.Availablity.

Try using routine 103, you may have to tweak if it doesn't work exactly as you'd like.

For example, you can write a routine 903 because you only wanted this reaction for certain business units. Irregardless, using a routine similar to this will prevent the requirement from appearing in MD04 for orders blocked on credit.

Code:

DATA: W_ZSDCRD TYPE ZSD_CREDITBLCK.

DATA: W_CMGST LIKE VBUK-CMGST.

SELECT SINGLE * INTO W_ZSDCRD

FROM ZSD_CREDITBLCK

WHERE KKBER = VBAK-KKBER

AND CTLPC = VBAK-CTLPC.

IF SY-SUBRC = 0 AND VBUK-CMGST CA 'B'.

IMPORT VBUK-CMGST TO W_CMGST FROM MEMORY ID 'CREDIT'.

IF W_CMGST = SPACE.

MESSAGE I706(Z1).

EXPORT VBUK-CMGST TO MEMORY ID 'CREDIT'.

ENDIF.

*} REPLACE

*{ INSERT DEVK966908 1

*} INSERT

  • 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.

*{ INSERT DEVK966908 2

*} INSERT

ENDIF.

ENDFORM.

source : <a href="http://sap-img.com/sap-sd/mrp-block.htm">MRP Block</a>

Pl reward if it helps.

Thanks & Regards

Sadhu Kishore

Former Member
0 Kudos

Hi,,

http://sap-img.com/sap-sd/credit-management.htm

check this link

with regards

Rajesh