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

function modules

Former Member
0 Likes
638

are there any functin modules to caliculate total price

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
583

Hi pavan,

try these FM's

ME_DETERMINE_NET_PRICE

MM_NET_PRICE_CALCULATE

UA_RFC_PDCE_NET_PRICE_GET

WRF_PPW_PROMO_DET_NET_PRICE

<b>Reward points if this helps,</b>

Kiran

3 REPLIES 3
Read only

Former Member
0 Likes
584

Hi pavan,

try these FM's

ME_DETERMINE_NET_PRICE

MM_NET_PRICE_CALCULATE

UA_RFC_PDCE_NET_PRICE_GET

WRF_PPW_PROMO_DET_NET_PRICE

<b>Reward points if this helps,</b>

Kiran

Read only

Former Member
0 Likes
583

Hi,

I think you could use COLLECT in the abap code.

LOOP AT itab INTO wa_itab.

COLLECT wa_itab INTO itab_2.

ENDLOOP.

The data in itab_2 will be the total of data from itab.

Read only

Former Member
0 Likes
583

hi,

Try this function modules.

ME_DETERMINE_NET_PRICE

MM_NET_PRICE_CALCULATE

UA_RFC_PDCE_NET_PRICE_GET

WRF_PPW_PROMO_DET_NET_PRICE

or

LOOP AT itab INTO wa_itab.

COLLECT wa_itab INTO itab_2.

ENDLOOP.

Rewards points if it is useful