Costant Window in SAP Script

Hi
i have copied a already existing sap Script(both layout SE71 and Print program Se38) in our Script but for that i am not doing any changes in  Print program.
for any changes in my layout(se71) i create Perform ,and put form for that in a Subroutine pool.
but due to some requirement i have to create 2 constant window in my layout,but i am not writing any code to call that window in the print program. therefore that window are not showing in printing test.
i want to ask , there is a way to call these constant windows without not adding any code for this in prin program.
regards
Atul

Hi Atul ,
Since you want a constant window on all your pages .Try this!
1. Create a variable window .(with same measurements of tht of your constant window)
2. Call it every time you call new page , this will reduce the overhead too .
3. Adjust your page and make space for this window .
4. You need not change the text but just adding an additional window .
Hope it helps!
Much Regards ,
Amuktha .
Edited by: Amuktha Naraparaju on Feb 6, 2009 9:55 AM

Similar Messages

  • How to add field on into standard address window in SAP script

    Hello Exports,
            I want to add Vendor number field in between the Vendor name and vendor address in the address window in sap script.
    Address is written in standard Address and Entendres. I need to add the vendor number in thsi Address and Endaddress.
    Please guide in this.

    goto the Vendor Name field .
    Hit enter.
    A new line is created.
    Give your Vendor Num field there.
    Bhupal

  • How to Edit the Graphical Window in SAP Script

    I want to change a logo in Window in SAP Script, but the window type is Graphical, hence it is not editable.
    Please let me know the solution

    @bhushankotwal
    I think you mean GRAPH window type in SAPscript form.
    You may change GRAPH window type to VAR, then you will able to edit it. After you modified it you can change it back to GRAPH window.

  • Regarding Number of MAIN Windows in SAP Script.

    Hi,
    SAP Script allows to place a maximum of 99 MAIN Windows. Is it possible to have different content in different MAIN Windows i.e., if i have 2 MAIN Windows in SAP Script with numbers 00 and 01 can i have different contents in these two windows. If possible please give us an example for the same.
    Thanks in advance for your esteemed help.
    Regards,
    Raghavendra Goutham.

    HI All,
    Thanks for your esteemed replies.
    But i want to frame my question exactly.
    In my script there are two main windows with number
    MAIN 00 and MAIN 01.
    MAIN 00
    Content:
    /E  data
      abc,,def
    In MAIN 01 i want to have only XYZ, some thing like this
    MAIN 01
    /E total
    XYZ
    My problem is: whenever i am changing the content in MAIN 01, the content in MAIN 00 is also getting changed.
    I do not want this to change, i want different content in both of them. Is this possibel if so how.
    Thanks and Regards,
    Raghavendra Goutham.
    MAIN 01

  • Main Window in SAP Script

    Hi Guys,
    I wanted to know as to why is it possible to create multiple main window in SAP Script.
          In most theory it is written a SAP Script can only use 1 main window, If thats the case why is it still possible to create more than 1 of them.
          Can you explain its use and functionality.
    Helpful answers will be duly rewarded.

    Hi,
    U can have multiple main windows in Sapscripts(Upto 99)
    Main Windows (MAIN)
    Each form must have one window of type MAIN. Such a window is called the main window of the form. For SAPscript forms, the main window has a central meaning:-
    ? It controls the page break.
    ? It contains the text body that may cover several pages.
    ? It allows to fix text elements at the upper and lower margins of the allocated page window (for example, for column headings).
    As soon as a window of type MAIN is full, SAPscript automatically triggers a page break and continues to output the remaining text in the main window of the subsequent page. Page windows of type MAIN have the same width throughout the form. The SAPscript composer thus avoids reformatting of the text after each page break.
    If a page does not have a main window, the system implicitly processes all other windows of the page and continues with the subsequent page. This page must not call itself as subsequent page (recursive call), since this would produce an endless loop. In such a case, SAPscript terminates the output after three subsequent pages.
    For printing header lines or totals, the different output areas of the main window are of special importance.
    The diffetent Output areas of main window are
                                                                      TOP
                                                                      BODY
                                                                      BOTTOM
    its use and functionality.*
    Suppose you have requirement that you r displaying data from two line item tables which can flow multiple pages.
    In this case u have to use multiple mail windows.
    Regards
    Sandipan

  • Create new window in SAP Script

    Dear All
       how to create new window in sap script
    Regards
    Suresh
    Edited by: Alvaro Tejada Galindo on Apr 9, 2008 11:58 AM

    Hi,
    To create a new window in scripts.
    1.  After opening the form in SE71   Click on Windows push button.
        it will gives a screen  list of windows in a page
    2. Click on Edit option in menu bar  in Edit-->Create Element click it will gives a popup window in the window give Name of the window and short description press enter  like that you can create windows in  a page
    3.  Click on Page windows it will gives a screen where that window you want to place in that page.    Click on Edit option on menu bar Edit-->Create Element
    it will gives a list of windows which your created in a page   here you have to select which window you want to place.  Double click on that window it will adds on the page and give the bottom of the screen you can find  standard attributes block
    there you have to give the position of the window in a page. 
    or
    Click on setting option on menu bar  settings-->form painter
    it will gives a GUI editor here you can drag the window position it is easy to use.
    then you can see the layout.
    Thanks
    Ganesh

  • How to print a window (ex:total)only after end of main window in SAP Script

    How to print a window(ex: total) only after end of main window in SAP Script
    Thank you.

    Create a total window and place it after your main window, get the number of lines in your main window and place counter
    Ex,&SAPSCRIPT-COUNTER_1(+)&,
    IF SAPSCRIPT-COUNTER_1& EQ <number of lines in main window>
    **print total
    ENDIF.
    Regards,
    Sairam

  • How to print line item 2times in two different main window in Sap Script

    Hi,
    I am designing check printing form using Sap script. I need to print line items 2times in different 2main window.can yu pls explain  how print like this.
    JK

    i cud not get ur query..pls elaborate

  • Printing of boxes in Main window of SAP Script at 2 different locations

    Hi Experts,
      I have an requriement in SAP script, I want to draw two boxes. The first box will be at the beginging of main window with 0.5 cm, which is comming perfectly. After the first box I have to display the entries related to a particular table, after the completion of that table I need to draw another box of lenght 0.5cm and the entries related to another table, needs to be displayed.
    I am able to get the first box with intensity, but for the second box I am not getting exact position where i need to draw a dynamic box by filling intensity.
    For that reason i have drawn two ulines and wrote the text, is there any way to fill internsity in between those lines.
    Thanks
    Ravi.

    Hi Sujeet,
    I already tried with that command, the problem is in between two boxes I dont know how many lines of data will come.
    There is a need of drawing a box dynamically.
    Thanks
    Ravi

  • Adding color to a check window in sap script

    Hi all,
    I have a requirement where I need to get the check window printed with a background color-green in SAP scripts. the form i am using is f110_prenum_chck for check printing. Please let me know if I can do that in scripts. I know we can do that in smartforms but not sure about scripts.
    Regards,
    Kiran

    It sounds like you need to purchase check stock to match your requirement.  Check stocks have multiple built-in security features as well for check backgrounds.  Otherwise, did you try a plain BMP color logo?

  • More then One window in sap script

    Hello ALL,
          I am not much aware about sap script .I have created a sap script and I have 5 window , two window is display correctly but I am not able to print data on another window.
       all the variable has correct data to display. I am not able to find exact problem please help me out.
    Thanks

    Hi,
    1. Please check if you have assigned the concerned windows to the correct pages.
    2. If yes, check in the debugging mode of the script if any variables are having any data in runtime.
    3. If yes, check in the form layout if the windows are getting overlapped. You might need to realign them properly.
    4. If no (i.e if the windows are not getting overlapped), check the paragrafh format that you have assigned to these variables. You might have assigned a left margin more than the window width (incase its left aligned or vice versa)
    Warm regards.

  • Variable window in SAP script

    Hello Friends,
    I have a problem in SAP scripts while printing an internal table data in to a variable window. It is overwriting the contents.
    Ex:
    In my internal table (itab) with only one filed (text) have the below data.
    Firt line
    second line
    third line
    fourth line
    I am looping the internal table and within the loop I am calling the write form.
    In script I am writing like below
    &itab-text&
    In the output I am getting only last line.
    Output:
    fourth line.
    But I need to print all lines one by one.
    Please help me.
    Regards.
    Krishna.

    You can't print internal table data in Variable window, you have to print them in Main window
    The function module WRITE_FORM_LINES allows multiple lines to be APPENDED to a non-main window. You should note that the text lines must have the SAPscript ITF format. In the absence of other information, the system uses identically named formatting attributes (character and paragraph formats) of the form to format the content of the text lines.
    Here is an approach which allows multiple records / lines to be output in a variable window.
    If you transfer your information from the internal table into the text lines, complete with appropriate formatting symbols, you will find that the text lines are output nicely formatted in your non-Main window.
    loop at internal table into WCSCATALOG.
    clear tline.
    tline-tdformat = 'S1'.
    concatenate '<B>' WCSCATALOG-CODEX '</> ,, ' WCSCATALOG-STXT into ltline-tdline.
    append tline to tlines.
    endloop.
    call function 'WRITE_FORM_LINES'

  • Change in output of quotation form in main window ( in SAP SCRIPT)

    HI expects,
          i want to change to the output values of quotation form and that should come in single line. at present it is coming in double line.as per my requirement is to be display the data in one line.
    item      material                              description
                                    Qty                                       price             price unit               value
    0010    fff.044                                   motor                                                                               
    10ea                                       26.541.00     1ea                       265.41
    my requirement is
    item     material      qty         description       price         price unit          value
    0010   fff-044        10ea       motor             26.541.00     1ea                265.41
    how can i solve this problem in SAP SCRIPT (standard form : rvorder01)

    Hi,
    As stated above , you cannot make changes in standard SAP script, create a Z one and then use it.
    Manish

  • Can't see the Vertical line command in the main window of SAP Script.

    Hi,
    I have a peculiar situation where, I am not able to see the command through which vertical line separators are coded in the script within the main window. Can any one help me find this...?
    Regards,
    Owais...

    Hi Ravi Kant,
           What does this mean?
    /E           ITEM_YWERT
    WH           &rwerter-wert(10)&,,&vline&
    /E           ITEM_TAB
    /:           CASE &VARPOSR-YZEILE&
    /:           WHEN '0001'
    /:           DEFINE &TAB& = ',,'
    /:           WHEN '0002'
    /:           DEFINE &TAB& = ',,,,'
    /:           WHEN '0003'
    /:           DEFINE &TAB& = ',,,,,,'
    /:           WHEN '0004'
    /:           DEFINE &TAB& = ',,,,,,,,'
    /:           WHEN '0005'
    /:           DEFINE &TAB& = ',,,,,,,,,,'
    /:           WHEN '0006'
    /:           DEFINE &TAB& = ',,,,,,,,,,,,'
    /:           WHEN '0007'
    /:           DEFINE &TAB& = ',,,,,,,,,,,,,,'
    /:           WHEN OTHERS.
    *           Tab. not defined
    /:           ENDCASE

  • How to avoid windows in SAP Script?

    Hi,
    I'm using medruck form and the page sequence in my form is First - Back,
    Back - Next, Next - Back. Back has only one window called purchase.
    For one of my condition my o/p has got alternate blank pages. But if I change the page sequence to First - Next, Next - Next then it works fine.
    I feel I need to skip Back window. How to do this I'm not sure?
    Thanks in advance.

    Hi
    Are you using the BACK page displaying the PURCHASE WINDOW.
    If at all you are not using that window you can simply delete that PAGE BACK and use the pages FIRST NEXT in the sequence for which you are getting correctly.
    Even if you need the PURCHASE window adjust it in page NEXT and use.
    Reward points if useful
    Regards
    Anji

Maybe you are looking for

  • After Update of iPad and MacBookPro no communication between AppleTV and Devices

    After Update of my iPad 2 with iOS 6.0 and OS to 10.8.2 there is no communication between AppleTV and these devices.

  • Masking GL account in Manual Bank configuration

    I have done a new bank accounting configuration Created the new House bank and Bank accounts , with account key, mainly , main bank , clearing accounts and used the masking for Bank accounts . There are some old bank GL accounts in which last digit i

  • Importing PDF and Photoshop files since using Windows 7 64bit

    Hi, I recently upgraded (?) to Windows 7 64bit.  I have notices when importing PDF and photoshop files into the InDesign document, the resolution of the graphics are off and the lines are choppy.  Even the fonts are illegible.  What happened?  Are th

  • Bridge cs5 loses photos in collections

    I am having trouble w/ bridge CS5 not keeping photos in collections when I put them there.  I have only recently started using the collections, so I am not sure that I fully understand them, I did change all the file name on my photos from way back w

  • No audio in YouTube videos

    I am yet again getting no audio when uploading from C4.  I've uploaded dozens of videos and it has always workied just fine, now with C4 it's just a pain.  Here's a sample of what I'm getting: http://youtu.be/01Tk1GgWWkI