Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Pricing Date in User Exit

Former Member
0 Likes
823

Dear all,

I'd like to adjust VBRK-KURRF so that it will be the currency at the date of pricing date (RV60A-PRSDT). Only point I can do this seems to be user exit USEREXIT_FILL_VBRK_VBRP [RV60AFZC], unfortunately I can not catch the pricing date here since RV60A is not filled at this moment. How can i see the pricing date in this particular user exit?

Best regards

Dear all,

I'd like to adjust VBRK-KURRF so that it will be the currency at the date of pricing date (RV60A-PRSDT). Only point I can do this seems to be user exit USEREXIT_FILL_VBRK_VBRP [RV60AFZC], unfortunately I can not catch the pricing date here since RV60A is not filled at this moment. How can i see the pricing date in this particular user exit?

Best regards

3 REPLIES 3
Read only

Former Member
0 Likes
685

YOu can do something like this:

  • create field symbol

FIELD-SYMBOLS: <pricdate>.

  • Assign value of variable from calling prog to field symbol

ASSIGN ('(Main program name)the variable which holds pricing date) TO <pricdate>.

(Example: ASSIGN ('(SAPMM06E)RM06E-BSART') TO <status>.)

Regards,

Ravi Kanth Talagana

Read only

0 Likes
685

Dear Ravi

Thanks for quick reply, I really appreciate.

Unfortunately I'm trying to catch pricing date in VF01 from structure RV60A-PRSDT in user exit but structure turns out to be empty so assigning it to a field sym. does not help much.

Best regards

Read only

0 Likes
685

Hi,

We have achieved this through creating in ehnancement in program LV60AF0V include lv60aa95

Best regards.