cancel
Showing results for 
Search instead for 
Did you mean: 

Record for Condition in Cost Document

Former Member
0 Kudos

Hi,

In my client many of the SCD are not accruing due to non maintaince of Conditions. I would llike to pull out a report where i can see where the record is not maintained and update the same.

For this , How can I pull out the data from SCD? I have VFSI-KNUMV field for each delievry. It will be great help if guided how to proceed from here to arrive at the access sequence level condition record.

regards

Ravi

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi Ravi,

Possibly you can also approch it by putting a check that SCD creation will not be allowed if the value is 0.

For this you will need a small development

BADI: BADI_SCD_SAVE

Method : CHECK_COMPLETE

If VFKP - NETWR = 0

Message "Shipment Cost cannot be 0" type 'E'

Endif.

Regards

Ankit

Former Member
0 Kudos

Hi Ankit,

Thanks for response.

Can we put the check at VFSI levl?

Ravi

Former Member
0 Kudos

Yes Ravi. You can put the validation against a field of VFSI table. The importing parameter I_SCD, in the badi calls multiple structures as deep structures. VFSI table related data is available in structure

I_SCD-X-ITEM[1] - VFSI.

Regards

Ankit