Quantcast
Channel: SCN : Blog List - ABAP Development
Viewing all articles
Browse latest Browse all 943

Things to be taken care on creating custom Check printing in SAP – SAP Script F110_PRENUM_CHCK

$
0
0
  1. Create a custom copy of F110_PRENUM_CHCK
  2. Create a subroutine pool in SE38, to achieve
    logic changes in the SAP Script even without modifying the standard driver
    program RFFOUS_C
  3. While commenting existing standard scripts, make
    sure that the mentioned element should not get deleted, even though you are not
    going to display anything under this element. Instead you can add one commented
    text under the respective elements.
  4. Say for example, if you need to display the
    remittance section as a table, then it is always a good practice to keep the
    BOX comments for drawing lines in the main window as one separate window. The
    following is some example code to draw a table with Five columns:

 

           Vertical Lines

 

/:           BOX XPOS 0 MM YPOS 0 MM WIDTH 0 TW HEIGHT 138 MM FRAME 10 TW

/:           BOX XPOS 27 MM YPOS 0 MM WIDTH 0 TW HEIGHT 138 MM FRAME 10 TW

/:           BOX XPOS 70 MM YPOS 0 MM WIDTH 0 TW HEIGHT 138 MM FRAME 10 TW

/:           BOX XPOS 113 MM YPOS 0 MM WIDTH 0 TW HEIGHT 138 MM FRAME 10 TW

/:           BOX XPOS 149 MM YPOS 0 MM WIDTH 0 TW HEIGHT 138 MM FRAME 10 TW

/:           BOX XPOS 192 MM YPOS 0 MM WIDTH 0 TW HEIGHT 138 MM FRAME 10 TW

 

          Horizontal Lines

 

/:           BOX YPOS 0 MM WIDTH 192 MM HEIGHT 0 TW FRAME 10 TW

/:           BOX YPOS 10 MM WIDTH 192 MM HEIGHT 0 TW FRAME 10 TW

 

          Sum total Row

/:           BOX YPOS 130 MM WIDTH 192 MM HEIGHT 0 TW FRAME 10 TW

/:           BOX YPOS 138 MM WIDTH 192 MM HEIGHT 0 TW FRAME 10 TW

 

 

    5.   For putting frame to a window, we can use thefollowing:

 

/:           BOX FRAME 30 TW


Viewing all articles
Browse latest Browse all 943

Trending Articles