2011 Feb 01 7:41 AM
Hi Experts,
I am looking for the below requirement,
From Printwork bench, an FM is generated where it pass values to the strucure C-ITCPO and then it is passed to Open_form.
I am looking exactly where this structure is getting field. As in this structure there is a field as "TDPREVIEW". This field is comming with value as "X". My requirment is to remove this value.
Can any one help for it....
Thanks.
2011 Feb 01 4:01 PM
main program - SAPLE22A
Include - LE22AF01
form - PRINT_DOC_SIMULATION
Preview setzen
l_itcpo-tdpreview = co_true.
It get assigned before calling to FM EFG_PRINT and pass the value as x_printparams-itcpo.
You can override this in top exit.
Regards,
Sanjoy
2011 Feb 01 4:01 PM
main program - SAPLE22A
Include - LE22AF01
form - PRINT_DOC_SIMULATION
Preview setzen
l_itcpo-tdpreview = co_true.
It get assigned before calling to FM EFG_PRINT and pass the value as x_printparams-itcpo.
You can override this in top exit.
Regards,
Sanjoy
2011 Feb 02 7:04 AM
Hi,
I tried that before only, in top it gives error as it does not identity the structure ITCPO.
My problem is solved as it has to be write in Start Exit.
Thanks for the reply....