cancel
Showing results for 
Search instead for 
Did you mean: 

PO Printing Issue with Price

Former Member
0 Kudos

Dear All,

I have a requirement where in Transaction ME21n/Me22n/Me23n when user Unchecks the "Print Price" check box in "Condition Control" Tab of Item Details of PO and click on Print Priview The Price of that material should not get displayed. By deselecting the check box this should remove all price information from the output.

PP -SAPFM06P.

Script - ZM_PO_EU.

Please let me know how to achieve this.

Thanks & regards,

Vikas

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi

First Find the check box name (For example chk2) whether how it stores...

Then try this condition

If CHK2 = 'X'

Write logic.

else .

logic.

Former Member
0 Kudos

Hi,

I went to Condition Control Tab of Item Details, There in "Print Price" CheckBox I have pressed F1 Key and checked the table and field which that checkbox using which is MEP01325 is the Table and PRSDR is the Field. But, I did'nt find any field with this name in Script Form neither a check is defined for the same.

I have to create this check when the checkbox is unchecked it will not show any amount in the output of Purchase Order using ME22n/me23n transaction.

Please suggest the solution.

Regards,

Vikas

Former Member
0 Kudos

Hi

Try Like this

if MEPO1325-PRSDR = 'X'.

Ur logic for price.

else.

logic.

endif.