Reg : Box issue in sap script

Hi Guru's,
I have got requirement to show 2 boxes in main window so initially i wrote the BOX command in maindow and it was working fine for first page when it goes to more than one page box was not displaying in the output so that i reallized when it goes to every page we needs to trigger box command which is difficult for me in some cases so we decided to create one more window with same size of main window and done the coding for creation of boxes and it is working expect one requirement.
I need to put one more line inside the maindow ( these line will be adjusted based on the data) bcz it is dynamic so i cant out it in normal window so i have put it in main window it was coming perfect when you are looked in print preview but when im talking print out it is not coming.? Seems like it overlapping but i dont know how to resolve this issue
Could you please suggest me how to procced further?
Moderator message: duplicate post locked.
Edited by: Thomas Zloch on Aug 18, 2011 1:36 PM

What is the format defined in your sapscript.
Is it Portrait or Lanscape.
This you can see in BASIC Settings of a form in SE71.
Cheers.

Similar Messages

  • Box issue in sap script

    Hi Guru's,
    I have got requirement to show 2 boxes in main window so initially i wrote the BOX command in maindow and it was working fine for first page when it goes to more than one page box was not displaying in the output so that i reallized when it goes to every page we needs to trigger box command which is difficult for me in some cases so we decided to create one more window with same size of main window and done the coding for creation of boxes and it is working expect one requirement.
    I need to put one more line inside the maindow ( these line will be adjusted based on the data) bcz it is dynamic so i cant out it in normal window so i have put it in main window it was coming perfect when you are looked in print preview but when im talking print out it is not coming.? Seems like it overlapping but i dont know how to resolve this issue
    Could you please suggest me how to procced further?
    Moderator message: duplicate post locked.
    Edited by: Thomas Zloch on Aug 18, 2011 1:36 PM

    Hi Guru's,
    I have got requirement to show 2 boxes in main window so initially i wrote the BOX command in maindow and it was working fine for first page when it goes to more than one page box was not displaying in the output so that i reallized when it goes to every page we needs to trigger box command which is difficult for me in some cases so we decided to create one more window with same size of main window and done the coding for creation of boxes and it is working expect one requirement.
    I need to put one more line inside the maindow ( these line will be adjusted based on the data) bcz it is dynamic so i cant out it in normal window so i have put it in main window it was coming perfect when you are looked in print preview but when im talking print out it is not coming.? Seems like it overlapping but i dont know how to resolve this issue
    Could you please suggest me how to procced further?
    Moderator message: duplicate post locked.
    Edited by: Thomas Zloch on Aug 18, 2011 1:36 PM

  • Where do we find a box command in sap script

    Hai,
    where do we find a box command in sap script, how to create box command ,
    its urgent help out

    Hi
    SAPScripts
    POSITION WINDOW
    SIZE WIDTH '160' MM HEIGHT '140' MM
    BOX FRAME 10 TW
    Box
    BOX HEIGHT '11' MM WIDTH '160' MM FRAME 10 TW INTENSITY 35
    linessssssss
    BOX XPOS '20' MM WIDTH 0 TW HEIGHT '140' MM FRAME 10 TW
    BOX XPOS '45' MM WIDTH 0 TW HEIGHT '140' MM FRAME 10 TW
    BOX XPOS '80' MM WIDTH 0 TW HEIGHT '140' MM FRAME 10 TW
    BOX XPOS '120' MM WIDTH 0 TW HEIGHT '140' MM FRAME 10 TW
    Boxes, Lines, Shading: BOX, POSITION, SIZE
    Use the BOX, POSITION, and SIZE commands for drawing boxes, lines, and shading to print particular windows within a form or passages of text within a window in a frame or with shading.
    The SAP printer drivers that are based on page-oriented printers (the HP LaserJet driver HPL2, the Postscript driver POST, the Kyocera Prescribe driver PRES) employ these commands when printing. Line printers and page-oriented printers not supported in the standard ignore these commands. You can view the resulting printer output in the SAPscript print preview.
    Syntax:
    /: BOX [XPOS] [YPOS] [WIDTH] [HEIGHT] [FRAME] [INTENSITY]
    /: POSITION [XORIGIN] [YORIGIN] [WINDOW] [PAGE]
    /: SIZE [WIDTH] [HEIGHT] [WINDOW] [PAGE]
    BOX Command
    Syntax
    /: BOX [XPOS] [YPOS] [WIDTH] [HEIGHT] [FRAME] [INTENSITY]
    Effect: draws a box of the specified size at the specified position.
    Parameters: For each of XPOS, YPOS, WIDTH, HEIGHT, and FRAME, you must specify both a measurement and a unit of measurement. Specify the INTENSITY parameter as a percentage between 0 and 100.
    XPOS, YPOS
    Upper left corner of the box, relative to the values of the POSITION command.
    Default: Values specified in the POSITION command.
    The following calculation is performed internally to determine the absolute output position of a box on the page:
    X(abs) = XORIGIN + XPOS
    Y(abs) = YORIGIN + YPOS
    WIDTH
    Width of the box. Default: WIDTH value of the SIZE command.
    HEIGHT
    Height of the box. Default: HEIGHT value of the SIZE command.
    FRAME
    Thickness of frame.
    Default: 0 (no frame).
    INTENSITY
    Grayscale of box contents as %.
    Default: 100 (full black)
    Measurements: You must specify decimal numbers as literal values (like ABAP numeric constants) by enclosing them in inverted commas. Use the period as the decimal point character. See also the examples listed below.
    Units of measurement: The following units of measurement may be used:
    TW (twip)
    PT (point)
    IN (inch)
    MM (millimeter)
    CM (centimeter)
    LN (line)
    CH (character).
    The following conversion factors apply:
    1 TW = 1/20 PT
    1 PT = 1/72 IN
    1 IN = 2.54 CM
    1 CM = 10 MM
    1 CH = height of a character relative to the CPI specification in the form header
    1 LN = height of a line relative to the LPI specification in the form header
    /: BOX FRAME 10 TW
    Draws a frame around the current window with a frame thickness of 10 TW (= 0.5 PT).
    /: BOX INTENSITY 10
    Fills the window background with shading having a gray scale of 10 %.
    /: BOX HEIGHT 0 TW FRAME 10 TW
    Draws a horizontal line across the complete top edge of the window.
    /: BOX WIDTH 0 TW FRAME 10 TW
    Draws a vertical line along the complete height of the left hand edge of the window.
    /: BOX WIDTH '17.5' CM HEIGHT 1 CM FRAME 10 TW INTENSITY 15
    /: BOX WIDTH '17.5' CM HEIGHT '13.5' CM FRAME 10 TW
    /: BOX XPOS '10.0' CM WIDTH 0 TW HEIGHT '13.5' CM FRAME 10 TW
    /: BOX XPOS '13.5' CM WIDTH 0 TW HEIGHT '13.5' CM FRAME 10 TW
    Draws two rectangles and two lines to construct a table of three columns with a highlighted heading section.
    POSITION Command
    Syntax
    /: POSITION [XORIGIN] [YORIGIN] [WINDOW] [PAGE]
    Effect: Sets the origin for the coordinate system used by the XPOS and YPOS parameters of the BOX command. When a window is first started, the POSITION value is set to refer to the upper left corner of the window (default setting).
    Parameters: If a parameter value does not have a leading sign, then its value is interpreted as an absolute value, in other words, as a value that specifies an offset from the upper left corner of the output page. If a parameter value is specified with a leading sign, then the new value of the parameter is calculated relative to the old value. If one of the parameter specifications is missing, then no change is made to this parameter.
    XORIGIN, YORIGIN
    Origin of the coordinate system.
    WINDOW
    Sets the values for the left and upper edges to match those of the current window (default setting).
    PAGE
    Sets the values for the left and upper edges to match those of the current output page (XORIGIN = 0 cm, YORIGIN = 0 cm).
    /: POSITION WINDOW
    Sets the origin for the coordinate system to the upper left corner of the window.
    /: POSITION XORIGIN 2 CM YORIGIN '2.5 CM'
    Sets the origin for the coordinate system to a point 2 cm from the left edge and 2.5 cm from the upper edge of the output page.
    /: POSITION XORIGIN '-1.5' CM YORIGIN -1 CM
    Shifts the origin for the coordinates 1.5 cm to the left and 1 cm up.
    SIZE Command
    Syntax
    /: SIZE [WIDTH] [HEIGHT] [WINDOW] [PAGE]
    Effect: Sets the values of the WIDTH and HEIGHT parameters used in the BOX command. When a window is first started, the SIZE value is set to the same values as the window itself (default setting).
    Parameters: If one of the parameter specifications is missing, then no change is made to the current value of this parameter. If a parameter value does not have a leading sign, then its value is interpreted as an absolute value. If a parameter value is specified with a leading sign, then the new value of the parameter is calculated relative to the old value.
    WIDTH, HEIGHT
    Dimensions of the rectangle or line.
    WINDOW
    Sets the values for the width and height to the values of the current window (default setting).
    PAGE
    Sets the values for the width and height to the values of the current output page.
    /: SIZE WINDOW
    Sets WIDTH and HEIGHT to the current window dimensions.
    /: SIZE WIDTH '3.5' CM HEIGHT '7.6' CM
    Sets WIDTH to 3.5 cm and HEIGHT to 7.6 cm.
    /: POSITION WINDOW
    /: POSITION XORIGIN -20 TW YORIGIN -20 TW
    /: SIZE WIDTH +40 TW HEIGHT +40 TW
    /: BOX FRAME 10 TW
    A frame is added to the current window. The edges of the frame extend beyond the edges of the window itself, so as to avoid obscuring the leading and trailing text characters.
    http://esnips.com/doc/1ff9f8e8-0a4c-42a7-8819-6e3ff9e7ab44/sapscripts.pdf
    http://esnips.com/doc/1e487f0c-8009-4ae1-9f9c-c07bd953dbfa/script-command.pdf
    http://esnips.com/doc/64d4eccb-e09b-48e1-9be9-e2818d73f074/faqss.pdf
    http://esnips.com/doc/cb7e39b4-3161-437f-bfc6-21e6a50e1b39/sscript.pdf
    http://esnips.com/doc/fced4d36-ba52-4df9-ab35-b3d194830bbf/symbols-in-scripts.pdf
    http://esnips.com/doc/b57e8989-ccf0-40d0-8992-8183be831030/sapscript-how-to-calculate-totals-and-subtotals.htm
    Regards
    anji

  • Credits & lock box issues in SAP XI

    Hi All,
    what is the credits & lock box issues in SAP XI....? can any body explain me in detail and how to solve all these credits and lockbox issues...
    Thanks
    Sudheer

    Sudheer,
    I dont think you have any issues with these files. These files are sent to the Bank. Just google for help on these files. If you are expecting in detail explanation then I think you should give us few inputs.
    Regards,
    ---Satish

  • Alignmnet Issues with SAP Script

    Hi All i have an issue with SAP script i have few columns in the script where in the values in the column changes dynamically.For example the value of second column in the first row can be 5 characters and the value of the same in the 2nd row can be of 10 characters and it keeps varying for every row but the max length of it would be 20 characters.
    Now the issues is with the second column as the text in this column keep varying the text in the same row after the second column keep moving either towards right or towards left depending on the text in the second column,Can any one help me as how  can i fix this issue.
    Looking for your valuable inputs.
    Regards
    Hari Krishna.

    Hari,
    http://help.sap.com/saphelp_47x200/helpdata/en/d1/802d91454211d189710000e8322d00/frameset.htm
    Even though it is not the solution,I guess this link will be helpful.
    K.Kiran.

  • Vertical line issue in SAP Script main window

    Hi All,
    I want to draw a vertical line in my main window in SAP Script output.
    But problem is in main window i am printing some texts at the beggining then i am printing line items.
    So this is not fixed line (box). It may increase/decrease based on text available before line items.
    How can i manage this prining vertival line as i don't know height, top of this line!
    Thanks in advance.
    Thanks,
    Deep.

    Hai Deep,
    Use Elements as suggested by Kodarapu.
    Now goto Paragraph Formats create a format for Item lines.
    ex.
    Name Paragraph Format as 'IL' Now click on the Push Button "Tabs" on bottom Right.
    now in "Tab Position" enter the spacing that you need for your item dispaly
    ex.
    Number     Tab position       Alignment
    1               6.00   CH          LEFT
    2               25.00  CH         LEFT
    3               54.00  CH         LEFT
    The above example is for 3 items
    Now in your Script Windows-> Main
    do the following.
    /E           ITEM_LINE_A
    IL           &EKPO-EBELP&,,&EKPO-EMATN&,,,,&EKPO-TXZ01&
    Hope it SOlves your Issue.
    Cheers,
    Suvendu

  • Multiple line issue in sap script

    Hi All,
    There is a window in the sap script.
    The window consists of a text element and i am displaying 4 lines of text in that window.
    Sap script:
    /E   Reason
    AC  &LINE&
    In the source code, an internal table will have 5 text lines and those 5 lines should be reflected in sap script.
    The source code as follows.....
    loop at li_tline.
    CALL FUNCTION 'TEXT_SYMBOL_SETVALUE'
             EXPORTING
                  NAME  = 'LINE'
                  VALUE = li_tline-tdLINE.
      CALL FUNCTION 'WRITE_FORM'
           EXPORTING
                ELEMENT = 'REASON'
                WINDOW  = 'REASON'
                function = 'APPEND'.
    endloop.
    In final output, the last line of the internal table is reflacting..... Hope its getting over written each time in the loop.
    How to make the code, so that i can reflect all the lines from internal table to the sap script....??????????????
    Please help me, as this issue is very much urgent..........
    Regards
    Pavan

    Hi
    Do like this.
    declare 5 variables each of 80 char length.
    data: v1(80), v2(80), v3(80), v4(80), v5(80).
    Read the Internal table li_tline with index and move each line to different variables and write those variables in the script.
    if not li_tline[] is initial.
    read table li_tline  index 1.
    if sy-subrc = 0.
       v1 = li_tline-tdline+0(80).
    endif.
    read table li_tline  index 2.
    if sy-subrc = 0.
       v2 = li_tline-tdline+0(80).
    endif.
    read table li_tline  index 3.
    if sy-subrc = 0.
       v3 = li_tline-tdline+0(80).
    endif.
    read table li_tline  index 4.
    if sy-subrc = 0.
       v4 = li_tline-tdline+0(80).
    endif.
    read table li_tline  index 5.
    if sy-subrc = 0.
       v5 = li_tline-tdline+0(80).
    endif.
    endif.
    write the &V1& &V2& &V3& &V4& &V5& variables ins cript
    Reward points if useful
    Regards
    Anji

  • Box printing in SAP script

    i want to display box in Window in SAP script.. n  in that box i want to habe Amout Rs Printed... please help mi with the same

    Text Elements
    You can define text elements (window texts) for each window. On the Form: Request screen, choose Edit ® Text elements.
    The print program accesses text elements by name, formats them and prints them in the respective window. That is, the program can decide which text elements should be printed in a particular window. It calls these text elements by name to print them. You must therefore change text element names in the print program if you make any changes to text element names in a form.
    In the layout of a text element, you can use only the paragraph and character formats defined in the form.
    Example of a text element in an order confirmation:
    /E ITEM_LINE
    IL &VBDPA-POSNR&,,&VBDPA-MATNR&,,&VBDPA-ARKTX&
    / &'Customerarticlenumber 'VBDPA-IDNKD' '&&'Position
    / 'VBDPA-POSEX&
    This example shows a section of a main window of a form, with an item line of an order confirmation. The /E in the tag column is used to identify the text as a text element, ITEM_LINE is the name of the text element.
    Default Text Element
    At the start of a window, you can define a text element without the /E command in the paragraph format column. This text is always printed at the start of the window. It is not necessary to insert this text explicitly via a print program.
    For more go to this link: Character formats and attributes
    http://help.sap.com/saphelp_47x200/helpdata/en/d1/80318f454211d189710000e8322d00/frameset.htm
    Boxes:
    Use the following code
    /: BOX XPOS 1 MM YPOS 2 MM WIDTH 20 MM HEIGHT 40 MM FRAME 10 TW.
    Box is the command used for printing box in script.
    XPOS - x- axis position
    ypos - y axis position
    http://help.sap.com/saphelp_470/helpdata/en/d1/802ec5454211d189710000e8322d00/content.htm
    Check...
    http://www.revver.com/video/650256/abap-text-elemens
    http://www.revver.com/video/605386/create-a-text-box-from-existing-text
    http://sap.ittoolbox.com/groups/technical-functional/sap-abap/sap-script-printing-1753129
    http://www.revver.com/video/650256/abap-text-elemens
    Reward points if it is useful..

  • Issue on Sap Script Forms

    Hi ABAP Experts,
    i got one object on SAP Script Forms, this is first time i am doing sap scripts, my issue is i created a form Debit memo from scratch and now i want to assign this form to standard print program RFK0RD00(PAYMENT NOTICE) and for this print program the standard layout form is F140_PAY_CONF_01.can u please tell what is the output type of this form and where to assign this ?
    Thanks in Advance...

    Hello Srini,
    First thing,how to find output type?
    -Go to table TNAPR and enter your print program name in TNAPR-PGNAM and form name in TNAPR-FONAM.
    -Look for the entry, the field value of TNAPR-KSCHL will give you the output type for your Print program and sap script form.
    -TNAPR-KAPPL will give you the value for Application.
    Second thing,how to assign?
    -Go to transaction NACE
    -Select the application(TNAPR-KAPPL).
    -Press the button 'OUTPUT TYPES'
    -Select the corresponding output type(TNAPR-KSCHL)
    -Now select the folder 'Processing routines' on the left side.
    -Enter your Program name (RFK0RD00), form routine name(mostly it is ENTRY) and then enter your form name (form designed by you from scratch).
    Kinldy reply if this has helped you.

  • Issue regarding sap script pages

    Hi all ,
       my issue is regarding the medruck. when i click on the print preview option on me23n, the sap script attached(that is medurck) will be printed. in my case the sap script is zmm_medruck(the zcopy of medruck). now, the print out of the sap script is 2 or  3 or 5 paged depending upon the p.o. number given.
    for example for a p.o. number 2100001564, the sap script contains 4 pages. now, my issue is , the print out should contain only last 2 pages or only 3 rd page.(that is without all pages, we want only specific pages of the sap script to be printed). how to do this. plz reply fast. points will awarded.
    this is urgent issue.
    thanking u in advance,
    sreenu.

    Hi all ,
       my issue is regarding the medruck. when i click on the print preview option on me23n, the sap script attached(that is medurck) will be printed. in my case the sap script is zmm_medruck(the zcopy of medruck). now, the print out of the sap script is 2 or  3 or 5 paged depending upon the p.o. number given.
    for example for a p.o. number 2100001564, the sap script contains 4 pages. now, my issue is , the print out should contain only last 2 pages or only 3 rd page.(that is without all pages, we want only specific pages of the sap script to be printed). how to do this. plz reply fast. points will awarded.
    this is urgent issue.
    thanking u in advance,
    sreenu.

  • Text display issue in SAP script

    Hi All,
    I have developed a sap script (Invoice) which is having a Footer window.
    The footer window should display page number and some text (address of company). The address data is stored in an internal table and the same will be made to display in sap script.
    Now my problem is the address data is displaying correctly in the second page. But no data is getting displayed in the first page. If the Invoice is of single page, the address data in Footer window is getting printed properly.
    The problem occurs only, when the invoice is of multiple pages....
    What might be the problem in this regard...??????
    Please help me, as this bug need to be fixed as early as possible....
    Regards
    Pavan

    The size of MAIN and FOOTER window are not getting truncated. Both window have designed properly.
    In the first page, the footer window will display Page No data and the address data will be invisible. In debig mode, i can see the value of address will be passed to text symbols of sap script.
    There are no conditions set in the sap script for Footer window.
    one more observation is that after execution (at print preview screen), if i go back and again click for print preview, the address data is getting printed in the first page...!!!
    Regards
    Pavan

  • How to create box in the sap script.

    I have a address like
    SAP America,
    Pala alto,Ca
    USA
    I want to put the above address in the box in sap scritp.
    How to do it .
    Please let me know.
    Any help would be highly appreciated.
    Thanks
    Edited by: mark_yellow mark on Jul 8, 2008 1:54 AM

    Hi Mark,
    If u you what to display the window with a box thw u can simply write this way
    /: BOX FRAME 10 TW
    You can use the POSITION and SIZE commands to set default parmeters for a box.
    You can write:
    /: POSITION XORIGIN '11.21' YORIGIN '5.31' MM
    /: SIZE HEIGHT '2' MM WIDTH '76' MM
    /: BOX FRAME 10 TW INTENSITY 10
    This can be usefull if you gave several boxes that share the same parameters.
    If you want to set the position realtively to the window use POSITION WINDOW
    to set the position to the top/left start of the window. Then use POSITION
    to set the current position relatively to the start of the Window.
    Note that you uses "+" or "-" in the ORIGIN position to the set the position relatively.
    /: POSITION WINDOW
    /: POSITION XORIGIN '+5' MM YORIGIN '+10' MM
    the position is now 5 MM from the left and 10 MM from the top of the window
    Drawing a line. You can draw a line by setting the Height or Weidth to 0
    and add a frane. E.g. a horizontal line:
    /: SIZE HEIGHT '0' MM WIDTH '200' MM
    Best regards,
    raam

  • Text Issue in sap-script

    Hi All,
    I am using writing the text in script using include object and text-id ,but it is not showing up in the form.Can anybody tell me where the text is maintained.where can i check whether this text is maintained or not.
    Regards
    Lalit

    Hi lalit,
              Use the read_text  function module and pass the object id,object name,language .like as below.
        v_name = it_out-ebeln.
        call function 'READ_TEXT'
          exporting
            client                  = sy-mandt
            id                      = 'F02'
            language                = sy-langu
            name                    = v_name
            object                  = 'EKKO'
          tables
            lines                   = it_tline3
          exceptions
            id                      = 1
            language                = 2
            name                    = 3
            not_found               = 4
            object                  = 5
            reference_check         = 6
            wrong_access_to_archive = 7
            others                  = 8.
        if sy-subrc eq 0.
          read table it_tline3.                                                 "#EC *
          v_info3 = it_tline3-tdline(50).
        endif.
    if helpful give me the points

  • Print Preview of particular page issue in SAP script

    Hi all,
    Kindly help me to resolve the following issue in SAPscript.
    I have a particular business requirement to preview a particular page in 'n' pages of a SAPscript.  After executing the sapscript calling program, the print window appears, in which i can choose particular page in the <b>Page Selection</b> Field.
    The problem is that the preview shows some other page rather than the appropriate page.  Please help me to resolve the issue.
    Awaiting for your replies,
    Thanks and Best Regards,
    Jana

    You need to call NEW-PAGE command in the sapscript when the user select a page in page selection.
    Try this:
    create the following text element in the sapscript in any window, preferibly MAIN window
    /E PBREAK
    /: NEW-PAGE &user_selected_page&
    In the Print program: OPEN_FORM returns a parameter called RESULT.
    case result-tdpageslct.
    when '2'.
    user_selected_page = <second page name in the sapscript>
    when '3'.
    user_selected_page = <third page name in the sapscript>
    when others.
    clear user_selected_page.
    endcase.
    if not user_selected_page is initial.
    call function WRITE_FORM and call above created text element
    endif.
    If the pages you are trying to display does not have main window, make sure next page in the page definition is not the same page in the sapscript.
    Regards
    Sridhar

  • SAP script printout alignment issue

    Hi Experts,
    I have facing one Script Printout Alignment issue.
    SAP Script Form printing some Values in Table format.
    While debugging( in debug mode ), I am getting the correct Alignment ( Proper table format with values ).
    But in printout the Alignment( The vertical and horizontal lines are not printed properly ) is not correct.
    Thanks in Advance.

    HI Glen Anthony,
    I am not using any printer details.
    from the Spol (SP01) I am checking the print priview.
    Success in debug mode but not in Print.
    Please suggest.
    Thanks

Maybe you are looking for

  • Installing Microsoft XP on Core 2 Duo

    Gentlemen, I have attempted to install Windows on the Mac, without success so far. I downloaded Boot Camp from Apple and followed the installation instructions, including the burning of a disk of Mac drivers. I then loaded the Windows XP Pro disk wit

  • Adobe Reader 9.x crashes when opening some pdf files that work fine with Adobe Reader 8.x

    Adobe Reader 9 crashes when opening approximately 10% to 20% of the pdfs in my collection. The remaining 80% to 90% work without problems. The pdfs are launched by double-clicking the pdf file from Windows Explorer. The crashes occur with both v9.0 a

  • Problem in results recording

    Hi, While results recording for every quantitative characteristic I am getting the options as Accepted / Rejected / No Valuation / Failed. I want the system to accept the numeric values. I tried to change the valuation mode in sample procedure, but n

  • BADI for tcode MIGO to disable FI Documents Button

    Dear All, I am new to SAP. Currently, I need to check out a requirement that whether the 'FI Documents'  Button(MIGO_OK_FI_DOC) in Tcode MIGO can be disabled using BADI. This is because they want to prevent the user from seeing the FI documents numbe

  • NoClassDefFoundError: in JDeveloper debug mode

    Hi all. I have a strange problem. Only one JSP in my entire application fails to appear when I debug with local (embeded) OC4J. These are the first lines of the exception message: Exception: java.lang.NoClassDefFoundError: _addFile      java.lang.Cla