SAP for Utilities Discussions
Connect with fellow SAP users to share best practices, troubleshoot challenges, and collaborate on building a sustainable energy future. Join the discussion.
cancel
Showing results for 
Search instead for 
Did you mean: 

Print Work Bench

Former Member
0 Kudos

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.

1 ACCEPTED SOLUTION

Former Member
0 Kudos

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

View solution in original post

2 REPLIES 2

Former Member
0 Kudos

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

0 Kudos

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....