cancel
Showing results for 
Search instead for 
Did you mean: 

Re-Pricing at delivery

Former Member
0 Kudos

Hi Gurus,

I created a sales order and price is calculated. When i create a delivery document for the sales order i want the price to be redetermined at delivery level because there can be a long gap b/w order and delivery. So business want to re-determine the price at delivery level. May i know how can we do this?

Thanks

Venky

Accepted Solutions (0)

Answers (4)

Answers (4)

siva_vasireddy2
Active Contributor
0 Kudos

Hi,

Pricing at Delivery level seems to be not Required as you can redetermine the prices if Required at Invoice Level through copy control settings in VTFL with Pricing Type- B(Carry out new pricing)

Siva

od_manikandan
Active Contributor
0 Kudos

Hai SAP user,

Similar to your requirement, we had made a enhancement in

1. Sales order

     At the time of saving the sales order system check the Pricing date should be current / Future date else display error to change it.

     Include          MV45AFZZ

          IF sy-tcode = 'VA01' OR sy-tcode = 'VA02'.

           IF vbkd-prsdt LT sy-datum.

             MESSAGE e000(zmsg1) DISPLAY LIKE 'E' WITH c_t c_t1.

           ENDIF.

    

  ENDIF.

    

2. Delivery order

     At the time of saving the delivery order, system check for Actual GI and Sales order pricing date should be same else display error message to "UPDATE SALESORDER"

Include          MV50AFZ1

         IF v_prsdt NE sy-datum.

           MESSAGE e000(zmsg1) WITH 'Update Sales order pricing date'.

      elseif

        likp-wadat_ist = '00000000'.

       MESSAGE e000(zmsg1) WITH 'Enter Actual GI date'.

         ELSEIF

                likp-wadat_ist NE v_prsdt.

           MESSAGE e000(zmsg1) WITH 'S.Ord pricing date and Actual GI date NOT MATCHING'

So the sales order updation automatically takes care of

1. Credit limit check

2. Credit Next review date check

3. Re scheduleing of materials

Regards,

OD

Former Member
0 Kudos

Dear Venky,

Please have a look at OSS Note 154529 which explains pricing function in Delivery along with its restrictions among other things. Read the whole content carefully and you'll get the answer of your query. Thanks.

moazzam_ali
Active Contributor
0 Kudos

Hi

We can assign pricing procedure to delivery document in Logistics Execution but my doubt is why do you want re pricing in delivery? Usually we redetermine price in billing document because we are going to post billing document in FI not delivery document. In delivery pricing procedure we charge freight only. But if you want same pricing procedure in delivery too then you can assign in logistics execution deliveries node.

Thank$