Application Development 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: 

sales order printout

Former Member
0 Kudos

Hello Friends,

I have a requirement in sales order printout, we have pricinig procedure which contains 400 condition types .

I have to show item wise tax and other conditions in sales order printout.

Pls let me knw how it is possible

Regards,

Sunny

5 REPLIES 5

Former Member
0 Kudos

Hi Sunny,

Check the field name for Tax details mainly the table names starts with alphabet "B" are you developing the form from scratch or modifying the standard.

Find the links between item and tax details and proceed.

Cheers!!

Reddy

Former Member
0 Kudos

loop at i_vbap.

loop at IKONV where KNUMV = it_vbap-KNUMV and kposn = it_vbap-posnr.

CASE IKONV-KSCHL.

****do it for all condition type**********

WHEN 'ZEDC'.

Ifinal-edc = IKONV-KBETR / 10.

WHEN 'JMOD' OR 'ZC`1ES'.

ifinal-basic = IKONV-KbETr / 10.

  • INVAL-CESS = IKONV-KWERT.

endcase.

endloop.

append ifinal.

endloop.

0 Kudos

Hello Shan,

i cant write code for all the 400 condition types, is there any other soln for this.

thnks

Sunny

0 Kudos

Hi,

Check the Following FM's;

RV_PRICE_PRINT_HEAD

RV_PRICE_PRINT_ITEM

They are useful to retrieve all tax conditions in a Sales Document.

Search the forum with the FM names to get sample code/examples.

Regards

Karthik D

Former Member
0 Kudos

thnks