‎2007 May 20 4:30 PM
Hi friends
I want to test the function module PRICING, so I go into se37 and click on test and enter all the basic fields but still dont get any output.
I'd like to know the mandatory fields i need to enter to get an output, how do I find out which fields are mandatory ?
regrds,
Pavan
‎2007 May 20 4:41 PM
Hi
see the below Std programs where this function module is used.
LMEPRF0V
LMEPRF1Y
LMLSPF4V
LMLSPF9S
LTAX1F02
LTAX1U02
LTAX1U04
LTAX1U13
LTAX1U15
LTAX1U18
LV60AA60
LV60AA70
LV60AF0P
LV60AF0R
LV60FF0F
LV60FF0X
LV61AU18
LVFRRF0C
LVIMPF0F
LVIMPF0P
MM06EFKO_PREISFINDUNG
MM06EFMP
MV13AF0K
have a look at these programs and pass the parameters
You have to pass the structures KOMK and KOMP and take the values to TKOMV
data: preis_art LIKE komv-ksteu,
DATA: BEGIN OF tkomv OCCURS 50.
INCLUDE STRUCTURE komv.
DATA: END OF tkomv.
CALL FUNCTION 'PRICING'
EXPORTING
calculation_type = preis_art
comm_head_i = komk
comm_item_i = komp
IMPORTING
comm_head_e = komk
comm_item_e = komp
TABLES
tkomv = tkomv.
Kopfdaten übernehmen
MOVE komk TO tkomk.
und in Tabelle einstellen
MODIFY tkomk INDEX komp-ix_komk.
Reward points if useful
Regards
Anji
‎2007 May 20 4:41 PM
Hi
see the below Std programs where this function module is used.
LMEPRF0V
LMEPRF1Y
LMLSPF4V
LMLSPF9S
LTAX1F02
LTAX1U02
LTAX1U04
LTAX1U13
LTAX1U15
LTAX1U18
LV60AA60
LV60AA70
LV60AF0P
LV60AF0R
LV60FF0F
LV60FF0X
LV61AU18
LVFRRF0C
LVIMPF0F
LVIMPF0P
MM06EFKO_PREISFINDUNG
MM06EFMP
MV13AF0K
have a look at these programs and pass the parameters
You have to pass the structures KOMK and KOMP and take the values to TKOMV
data: preis_art LIKE komv-ksteu,
DATA: BEGIN OF tkomv OCCURS 50.
INCLUDE STRUCTURE komv.
DATA: END OF tkomv.
CALL FUNCTION 'PRICING'
EXPORTING
calculation_type = preis_art
comm_head_i = komk
comm_item_i = komp
IMPORTING
comm_head_e = komk
comm_item_e = komp
TABLES
tkomv = tkomv.
Kopfdaten übernehmen
MOVE komk TO tkomk.
und in Tabelle einstellen
MODIFY tkomk INDEX komp-ix_komk.
Reward points if useful
Regards
Anji