cancel
Showing results for 
Search instead for 
Did you mean: 

f110_in_check-Print Payment advice and cheque on 1 page thru FBZ5

Former Member
0 Kudos

Dear All,

I am using the standard sapscript f110_in_check to print the cheque thru tcode FBZ5

The requirement is to print payment advice on the top and cheque at the bottom of a single page.

I found the same q on the forum but no relevant answers.

This script has already got the text element in main window to print the payment advice detail but the problem is that the text element is not being called by the driver program.as such the item details is not printed..

Does anyone have a solution to this problem.

Regards,

Shilpa Bansal

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

Plz tell me which include or report should I copy and how to attach it with tcode fbz5.?

Its very important for me..

NAeda
Contributor
0 Kudos

Hello Silpa,

go to script, go to the main window,

write perform statement as above, and create one program in se38. in that program write form statment.

If need further information Search with KEY ITCSY and FORM.

Regards

Aeda Narsim

Former Member
Former Member
0 Kudos

I WENT THRU THE PERFORM STATEMENT but it mostly contains small calculations in abap routine.But i want to include write statement in abap routine that displays the contents of internal table..

is it possible?

Edited by: Shilpa Bansal on Aug 20, 2009 1:53 PM

Former Member
0 Kudos

hi

whats the element no , U need to use the ELEMENT # which are already in the Form bcz only these are called in the program and u should have got an warning message the List of Elements not being called also...

surya

Edited by: suryareddy on Aug 21, 2009 12:51 PM

Former Member
0 Kudos

Hi..

Actually the element is not being called by the main program but i want the prog to call it...

However I think the only alternative is a z program.

NAeda
Contributor
0 Kudos

Hi,

1) FBZP is the TCode where u can get the SAPSCRIPT form name, and Driver Program.

Go to FBZP- Payment method in county-select country click details,

you will get the prgram name starts with RFFOUS..., Copy the this prg and configure the same here.

modify this progam and script as per ur Requirment.

2) write one Include program, call the same program in your script modify accordingly.

Regards

Aeda N

Former Member
0 Kudos

Hi..

That means I will have to create a z program that will be the copy of standard driver program. right?

I want to avoid this..

Can there be any other alternative?

Shilpa

NAeda
Contributor
0 Kudos

Yes follow the second Option.

Create one Include program.

Call the same include program, in Script

Ex:

DEFINE &BUKRS& = &REGUP-BUKRS& 
DEFINE &DOCNO& = &REGUP-BELNR& 
DEFINE &GJAHR& = &REGUP-GJAHR& 
DEFINE &LIFNR& = &REGUP-LIFNR& 
DEFINE &NETAMT& = &REGUP-DMBTR& 
PERFORM NET_PAYMENT IN PROGRAM YTEST_PRG  USING &BUKRS& 
USING &DOCNO& 
USING &GJAHR& 
USING &LIFNR& 
CHANGING ----

create one prg YTEST_PRG in write Form statment...

Regards

Aeda

Former Member
0 Kudos

Hi..

I didnt get you..

I mean what to create and where.

Shilpa

NAeda
Contributor
0 Kudos

Please search with *FORM ITCSY*

Edited by: Aeda N on Aug 20, 2009 10:26 AM

Former Member
0 Kudos

Pls explain me clearly.

Shilpa