Report ALV printing in background -display only 1 line for header

Hi,
We are running a ALV report (transaction code ME2N) in background and when we get  the Graphical display of the spool request, the number of columns of the header are limited and divided in 3 lines. It means that when exporting the report to excel, is quite hard to arrange it, as we get 3 lines for the same record. We need to have it directly in the same line.
When we are programming the job, in  the u201CSpool Request Attributesu201D we are using as format  u201CX_65_255u201D.  What can we do?
Thanks in advance,
Lígia Moreira
Edited by: Lígia Moreira on Sep 20, 2010 6:35 PM

Hi,
We are running a ALV report (transaction code ME2N) in background and when we get  the Graphical display of the spool request, the number of columns of the header are limited and divided in 3 lines. It means that when exporting the report to excel, is quite hard to arrange it, as we get 3 lines for the same record. We need to have it directly in the same line.
When we are programming the job, in  the u201CSpool Request Attributesu201D we are using as format  u201CX_65_255u201D.  What can we do?
Thanks in advance,
Lígia Moreira
Edited by: Lígia Moreira on Sep 20, 2010 6:35 PM

Similar Messages

  • Error message 'Display only possible for print documents'

    Hi All,
    This issue is with the transaction code ME21N. When the user clicks on PRINT PREVIEW  it gives an error of 'Display only possible for print documents'. When the user clicks the MESSAGES tab and then COMMUNICATION METHOD tab it gives an error 'No communication data has been defined for transmission medium 6'. The vendor is not getting the order. Does anyone has any idea of what these error messages mean and where should I look further?
    Thank you,
    Regards,
    Shanu

    Hi
    this seems tobe relates to print program "" ask your ABABer what program he has written to send the PO to vendor your problam willbe solved.
    the moment you give the print it will ask the printer by  default LP01 then print immediately check you need to do that.then beground print program and partner you need check. whether this out type you have assigned to this partner or not (vendor).  check complecte condition technic.diffnettly it will works.
    i hope you have understood
    thanks &Regards

  • Display only works for 2 or 3 seconds after this is black on Qosmio G50

    Hi
    I have a problem with my G50.
    On starup the display only works for 2 or 3 seconds after this is black, I connect to a external display and using de FN+F5 i can see everything on the second display, if I turn to the internal display using FN+F5 it works only the same 2 or 3 seconds.
    thanks

    Hello
    If you can see everything on the external screen the graphic card itself is ok and works properly! So the problem must be the internal display itself or a part of it like FL inverter
    Its hard to say what part exactly and I think this can only be done from professional people. So you should contact nearest authorized service provider in your country and ask the guys for help. Im sure the problem can be clarified with the guys very easy because they have professional diagnostic tools. Also they can order original Toshiba spare parts to exchange the defective hardware part.
    Here is a list of them:
    http://eu.computers.toshiba-europe.com > Support & Downloads > Find an authorized service provider
    Good luck! :)

  • ABAP Custom Report (ALV Format) in Background Processing

    Hi
    I am not the hardcore ABAP Person. But want to know about the detail fact of the ABAP Custome Reports. The question is can we do the background processing for the ABAP Custome Report in ALV Format.
    If Yes ..do we require to have any additional Function/code to get the spool in ALV Format. I saw the comments that the output will look like the mess.
    Please share your comment or any useful documenation on this. We are in ECC 6.0
    Thanks in advance..and yes it will be rewared by points.
    Navin

    You can use alv's in background using docking containers, but the display wont be interactive. If you search the forum you will see tons of threads which talk about running ALV's in background.
    For the output to be interactive, you can run the report in foreground and do the data processing in background.
    Refer this link:
    Displaying ALV Grid in Background Job

  • FSG report not printing column values on same line but sequentially

    FSG report problem:
    We have defined 2 FSG reports 'Balance Sheet - Total' and 'Balance Sheet - Detail'. Both reports have 3 column values, namely the value in Euro (our Functional Currency), the value in MUR - Mauritian rupees (our reporting currency) and the rate of exchange.
    The report 'Balance Sheet - Total' displays these values for assets e.g.:-
    EURO MUR Rate of exchange
    Non-current assets
    1. Intangible assets ? ? ?
    2. Other investments ? ? ?
    (note: ? represents a certain value)
    The report 'Balance Sheet - Detail' displays values as follows :-
    Account EURO MUR Rate of exchange
    1. Property & Equipment
    A10101 Building Cost ? 0.00 0.0000
    A20105 Motor Veh Accum Dep ? 0.00 0.0000
    TOTAL ? 0.00 0.0000
    A10101 Building Cost 0.00 ? n/m
    A20105 Motor Veh Accum Dep 0.00 ? n/m
    (note: ? represents a certain value)
    What we don't understand s why the 'Balance Sheet - Detail' report repeats the display of column values in MUR FOLLOWING the display in EURO, instead of displaying column values for EURO and MUR on the same line, just like in the case for 'Balance Sheet - Total'.
    Is there anything in the definition of column set, row set or report set should I change?
    Can anybody help. Thanks.
    null

    The problem is related to defining the column set properly. It is OK with the first report and needs modification for the second. Formatting is also important so that they appear in the same line(row). The columns need to be linked to the fileds and assignment to set of books is also important as mentioned by Rajsekhar

  • Need print popup to display only once

    Hi Experts ,
    I have a customer account statement in smartform . For multiple customers the clients wants the print dialog to be displayed only once and the options mentioned in the first display to be carried for other customer accounts . Please any suggestions for the same .

    Hi,
    If using a custom print program you can achieve this using functions SSF_OPEN and SSF_CLOSE:
    [Printing Several Forms in One Print Request|http://help.sap.com/saphelp_nw70/helpdata/en/64/bf2f12ed1711d4b655006094192fe3/content.htm]
    This way the print dialog will be displayed only once no matter how many times the smartform is called.
    Che.

  • ALV print in background : print dialog pops up

    Hi,
    I want to print a ALV grid to Spool in background......................I am using FM ' REUSE_ALV_GRID_DISPLAY'
    But when I execvute the program in foreground or background the print selection dialog comes up....................How to avoid this........................Any ideas or experience
    *-- CODE--
    **- Get printer parameters
    DATA : l_params.
      CALL FUNCTION 'GET_PRINT_PARAMETERS'
        EXPORTING
          IMMEDIATELY            = SPACE
          LAYOUT                 = 'X_58_170"'
          LINE_COUNT             = '58'
          LINE_SIZE              = '1024'
          NO_DIALOG              = 'X'
          DESTINATION            = 'LOCL'
        IMPORTING
          OUT_PARAMETERS         = l_params
        EXCEPTIONS
          ARCHIVE_INFO_NOT_FOUND = 1
          INVALID_PRINT_PARAMS   = 2
          INVALID_ARCHIVE_PARAMS = 3
          OTHERS                 = 4.
    *- Prepare ALV print str.
      l_print-print = abap_true .                  
      l_print-print_ctrl = lfd_params.
      l_print-NO_CHANGE_PRINT_PARAMS = abap_true. 
      l_print-no_print_listinfos = 'N'.
    *-Call ALV in background
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
        EXPORTING
          i_callback_program       = l_repid
    *        i_callback_pf_status_set = L_pf_stat
    *        i_callback_user_command  = l_user_cmd
          i_callback_top_of_page   = l_top_page
          is_layout                = l_layout
          it_fieldcat              = lt_ALV_fcat
          IS_PRINT                 = l_print
          i_save                   = 'A'
        TABLES
          t_outtab                 = lt_objects
        EXCEPTIONS
          program_error            = 1.
    <Added code tags>
    Edited by: Suhas Saha on Nov 21, 2011 2:54 PM

    Hi,
    try K_KKB_LIST_DISPLAY fm. The below code can gives you an idea.
    DATA: SELF LIKE SY-REPID.
    DATA: END_OF_LIST_ROUTINE type KKBLO_FORMNAME.
    GS_LAYOUT-NO_PRINT_LISTINFOS = 'X'.  "No selinfolist when printing
    GS_LAYOUT-NO_PRINT_SELINFOS = 'X'.
    END_OF_LIST_ROUTINE       = 'ERROR_LIST'.
    IF SY-BATCH = TRUE.   "this part you need
      GS_LAYOUT-PRINT = 'X'.            "Get Print_Parameters
      GS_LAYOUT-MIN_LINESIZE = 132.
      GS_LAYOUT-SUPPRESS_DYNPRO = ' '.  "no call screens
    ENDIF.    "this part you need
      SELF = SY-REPID.
      CALL FUNCTION 'K_KKB_LIST_DISPLAY'
           EXPORTING
              I_CALLBACK_PROGRAM       = SELF
              I_CALLBACK_USER_COMMAND  = 'USER_COMMAND_SEG_REV'
              I_CALLBACK_PF_STATUS_SET = 'SET_STATUS_SEG_REV'
              I_CALLBACK_END_OF_LIST   = END_OF_LIST_ROUTINE
              IS_LAYOUT                = GS_LAYOUT
              I_CALLBACK_TOP_OF_PAGE   = 'TOP_OF_PAGE_SEG_REV'
              I_TABNAME                = 'GT_SEG_REVREB'
              IT_FIELDCAT              = XFIELD
    *         it_special_groups        = gt_groups
    *      importing
    *         e_exit_caused_by_caller  = exit_caused_by_caller
           TABLES
                T_OUTTAB               = GT_SEG_REVREB
           EXCEPTIONS
                OTHERS                 = 1.
      IF SY-SUBRC = 1.
        MESSAGE E161.
    *   Fehler bei Aufruf Listtool
      ENDIF.
    Çağatay

  • In report i should have to display only single country

    Hello..
    In myreport its dispalying company,costelemt and many more fields,users want some changes they have to display only one country and also courency also.they should have to enter the country name starting letter.
    thanks...

    If they want only one country you should give them the possibility to filter the country......put country characteristic in Free Characteristic Panel ....this give users ths possibility to make a drill down and filter according to country...
    I hope this helps you

  • Is there any soln to display production line for process order in COOISPI?

    HI,
    When we run COOISPI for planned orders, the field  MDV01 "Production Line" populates correctly (based on the value in the production version associated with the planned order).  However, you run COOISPI for process orders, that same field is now blank.
    Any pointer on how to display MDV01 in case of Process order.
    Thanks in advance

    Thanks for your reply. my requirement is to populate the field value of production line in the CIOISPI report. I have production line assigned to production version. It does display if you see the results for Planned order but not for process order and the 'production line' field remains blank. More importantly i am trying to display the results for the same production version in case of process order,
    Can you plz provide me any pointers or the way we can have production line value if want to display COOISPI for process order.
    Regards,
    Nitin

  • Only Blue Background displayed only while using Oracle Maps

    Hi everyone
    I am new to oracle spatial. I have just tried oracle maps demos. Now i want to display my own data source and show my own shape files into oracle maps but it just gives blue background. I checked with srid ..its right.
    I am not able to rectify my error... where I am going wrong.Please help.
    Need urgent help
    Help shall be appreciated.
    Thanks
    Rema

    Hi
    Index also I created... but i found one problem when i load my shapefiles with shp2sdo then its shows maps in mapbuilder but if I follow process using dmp file thn map dont get loaded in mapbuilder..error it says is "no spatial data to render".
    I know problem is with data loading only. Data is not properly loaded but still not able to rectify :( :(
    Thanks
    Rema

  • Line Chart does not display grid lines for x-axis (apex 2.0 / 3.0)

    Hello,
    is there an option to display x-axis grid lines?
    I set up an SVG chart (Line) but only IE displays y-axis grid-lines. I set the "Show Grid Line" - value to "enable"
    Does any body has an idea how I told apex to display x-axis grid lines also.
    Btw: only MS Internet Explorer displays the grid lines, I use firefos 1.5.0.10 -> no grid lines are displayed.
    The table how I create the chart are as follows
    select null link, label, value
    from
    SELECT 1 Value , 1 label FROM dual
    UNION
    SELECT 3 Value , 2 label FROM dual
    UNION
    SELECT 5 Value , 3 label FROM dual
    UNION
    SELECT 2 Value , 4 label FROM dual
    Thank you for helping me !!
    Message was edited by:
    athor

    I changed this and put usage of UTL_FILE into a dynamic PL/SQL. The package will
    compile and work unless you want to create debug information. If yes, then it will raise an
    error message. So, you don't need UTL_FILE execution priviledge from your DBA.
    I opened the package and you may modify it the way that you don't need any public
    synonyms and no UTL_FILE to run it.
    There are so many questions in this forum related to "What is my DBA going to say?" or
    "How is he going to react?". Even for some minor issues. I have myself also seen some
    of similar situations and the only thing I can sey is:
    You got to use that powerfull tool Oracle Database instead of hiding it away from your
    users and developers. Learn how to control it instead of prohibiting access to it! Otherwise,
    it's just a waste of money.
    Denes Kubicek

  • DISPLAYING double line  column  heading

    Hye Friends,
    I have some field names which contains multiple line text so how can we display such text in alv as the option for displaying field text is
    L_FIELDCAT-FIELDNAME = 'REGION'.
      L_FIELDCAT-SELTEXT_M = 'REGION'.
    but i want to diplay heading like this 'region'
                                            'region-in'
    Pls let me knw
    Thnks
    SUnny

    hi,
    try like this
    while building lay out structure pass field-optimise='X'.
    regards,
    pavan t.

  • Using Pages, I have created a document and inserted a Table for use in logging an inventaory. When I came to print this off however the lines for the table were missing but the text was in the Table format, weird! How do I print the Table?

    Using Pages, I have created a document and inserted a Table for use logging an inventory. When I came to print this document the lines and boarders of the Table feature did not print however the text did print in the table format. How do I get the lines and boarders to print also?

    Using Pages, I have created a document and inserted a Table for use logging an inventory. When I came to print this document the lines and boarders of the Table feature did not print however the text did print in the table format. How do I get the lines and boarders to print also?

  • Convert Family Plan Line to data only line for iPad

    I currently have 4 lines on verizons old family share plan.  3 are Iphones.  2 of them have unlimited data, 1 with 2GBs a month, and the other line is a basic phone that doesn't get used much and does not have a data plan attached.  I dont want to touch the 2 with unlimited data or the one with 2GB of data.  The 4th line is a basic line and has a contract till Feb 2014.  My bill avg 250.00 with the 4 lines, 2000 min, unlimited text and the data plans that are on it now. All together, we avg about 12 GB a month and durring the summer, it has gone as high as 20GB  Our family uses Pandora, SlingBox apps, and Netflix, quite abit and although we have Internet and WiFi at home, and use WiFi when ever possible, living in a small town, free hotspots are hard to come by.
    I have a Verizon Ipad 3 with LTE that its deactivated due to low use outside a WiFi network but for convenice sake, I might reactivate it.  But to finish out the 4th line (basic phone line) contract, can swap that 4th voice line to the iPad 3 with LTE, finish out the 4th line contract?  I know I would have no problem adding data to the 4th line, getting a 4g sim so i would be looking at 9.99 + 30.00 for 2gbs for a total of 40.00 for that line.
    What I was hoping for was to just get a data only plan on the iPad and not pay a ETF on the 4th line since that line would still be active, just only on a data only plan.  I do understand that tablets only have tiered data plans availble to them. 

    As long as the line remains in service during the life of the contract, you can pretty much do whatever you want with it.

  • How to display multiple lines for texarea

    I have a textarea where user can type in several lines of code. I am storing it in varchar2(2000).
    When I display that textarea, it gets displayed in 1 single line that drags all the way to the right. I want it to display the text in multiple lines where each line containing no more than lets say 7 or 8 words.
    How can I do that.
    Thanks for your help

    First, expecting an answer here in just a couple hours is optimistic to say the least (and possibly pushy at most).
    To your question: You don't say which browser you're using, which could be an issue.
    Since you said the user is entering lines of code, I'll assume there are spaces between the values? If not, for example, they're entering a URL, it won't wrap the line.
    But I just edited a sample editable tabular form of mine and set the Element Width = 60 and Element Height = 10 and it worked as expected. My point being, you might want to try setting the Width, not just the height.
    Hope this helps,
    Stew
    My Oracle Community blog:
    http://www.oraclecommunity.net/profiles/blog/list?user=stewstryker

Maybe you are looking for

  • Can SimpleDateFormat for BC4J be used in Jdev 10g?

    I recently migrated a struts/bc4j app from Jdev 9.0.3.4, we use SimpleDateFormat quite extensivly in Entity and View Objects, however the AttributeDefImple.getFormattedAttribute method is throwing the following exception: Error Message: JBO-29000: Un

  • Lenovo G550 move partition to new HDD (including one key recovery)

    Hi guys. I have a Lenovo G550 laptop. I am looking to change out the existing stock HDD with a new SSD drive (from what I understand from other Lenovo support services, it is SATA II compatible (see http://forums.lenovo.com/t5/Lenovo-3000-and-Essent​

  • Disappearing Images

    I am sitting here editing through a project. I have done a once-over and marked my general selects with one star and rejects with an X. I have created a Smart Album set as "rating is greater than or equal to 1 star". That seems to work fine. However,

  • IMessage app crashes when trying to add a pic

    When i tap the photo icon in iMessages the app crashes. I didn't have any issues at first, however, while tapping the photo button next to the text box as you are creating an imessage should bring up a menu with your latest photos and other sharing o

  • Open document to open multiple reports

    Hi i have created 3 Webi Reports, namely Report 1 Report 2 Report 3 Report 1 has company and its revenue Report 2 has Site and its Revenue Report 3 has Service and its revenue Example : Report 1 Company    Revenue abc            456 adf           789