2009 Nov 20 5:35 PM
Hi,
I'm a MM consultant and I need some help to close my pricing procedure. I would like to create a formula in VOFM to add to my pricing.
I have the conditions PB00 PBXX and I need that the value of PBXX be the same of PB00. The PB00 is being determined automatically.
5 0 PB00 Preço bruto X 9
10 0 PBXX Preço bruto X 9
Could anyone send me some abap code to implement that?!
Thanks is advance,
Guilherme Digiampietri
Hi,
I'm a MM consultant and I need some help to close my pricing procedure. I would like to create a formula in VOFM to add to my pricing.
I have the conditions PB00 PBXX and I need that the value of PBXX be the same of PB00. The PB00 is being determined automatically.
5 0 PB00 Preço bruto X 9
10 0 PBXX Preço bruto X 9
Could anyone send me some abap code to implement that?!
Thanks is advance,
Guilherme Digiampietri
2009 Nov 20 5:41 PM
I am guessing it can be done functionally as well.
coming to the code create a routine(9XX) for PBXX and in the routine
read the table xkomv PB00 and move the values to PBXX row.
read table xkomv into wa_komv with key kschl = 'PB00'.
if sy-subrc eq 0.
read table xkomv into wa_temp with key kschl = 'PBXX'.
check sy-subrc eq 0.
wa_temp = wa_komv.
modify xkomv from wa_temp. "might need some more additions.
endif.
2009 Nov 25 2:06 PM
Yes, It can be done fucnctionally changing de PBXX condition, but it will affect my other pricing procedures.
Tranks a lot,
GUiza
| User | Count |
|---|---|
| 3 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |