Hi Gurus,
I am having some Problem in developing pricng routine.
I did not understand what is pricing routine message no .
I am checking below code.
Can any one tell me, where I can find text for xkomv-fxmsg = '249' and komp-fxmsg = '805'.
form frm_kondi_wert_008.
data: maximum(3) type p value 100,
difference(7) type p.
check: komp-cepok ne 'C',
komp-kposn ne 0,
komk-vbtyp na vbtyp_fakt.
if komp-fxmsg = space.
komp-fxmsg = '805'.
endif.
komp-cepok = ' '.
check: komp-prsfd = 'X'.
komp-cepok = 'A'.
difference = komp-netwr - xkwert.
if difference lt 0.
difference = difference * -1.
endif.
check: difference gt maximum.
komp-cepok = 'B'.
xkomv-fxmsg = '249'.
endform.
Thanks in Advance
Murali