cancel
Showing results for 
Search instead for 
Did you mean: 

Payment Advice Sap Script 'F110_IN_AVIS' T-code F110

nitin_gupta
Explorer
0 Kudos

Hi,

I am using the standard SAP Script form 'F110_IN_AVIS' for generating Payment Advice through transaction code F110. F110 generates a spool request for the Payment Advice.

Now since a SAP Script output is coming in spool request. It means the whole process is running in background and I am not able to debug the SAP Script 'F110_IN_AVIS'.

Please tell me is their any way by which I can generate a direct printout without a Spool Request so that I can debug the SAP Script.

Regards,

Nitin

Accepted Solutions (0)

Answers (2)

Answers (2)

Pawan_Kesari
Active Contributor
0 Kudos

In transaction F110 after selecting your 'run date' and 'identification' goto TAB Printout/Data Medium. You will find name of program in 'Program' column.

Transaction F110 uses these program to generate output. So if you want to debug your sapscript (or other output), you can directly run these program with appropriate input parameter from SE38 and debug it...

Former Member
0 Kudos

if you want the print out,

you have to modify the OPTIONS...values...maybe as of now the program is not issuing the printout they passing the parametes only for spool.

wht u can do is set the "Print parameters, print immediately" to X..

 ITCPO-TDIMMED = 'X'.

CALL FUNCTION 'OPEN_FORM'
  EXPORTING
    DEVICE   = 'PRINTER'
    DIALOG   = ''
    FORM     = '............'
    LANGUAGE = SY-LANGU 

<b>OPTIONS = ITCPO</b>


  EXCEPTIONS
    CANCELED = 1
    DEVICE   = 2
    FORM     = 3
    OPTIONS  = 4
    UNCLOSED = 5
    OTHERS   = 6.

I hope it helps you