LIst header option in ME2L

Hello,
In ME2L transaction there is a option in "system > list>list header". I would like to know what is the significance of this option for the report & also how we can activate this as when I use it, system is calling an ABAP object  for an authorization check.
This is giving an error as "You are not authorized to make changes (authorization object S_DEVELOP)".
Thanks.

Hi,
After excuting the report ME2L, in output scren, click menu List --> Print Preview. Now go to click System --> List -- > List Header.
It will show the List Heading of Report if maintained in the Program.
To check the same go to SE38, specify program "RM06EL00 and then Press F7 (Display) - Now click menu Goto --> Text Elements --> List Headings.

Similar Messages

  • Number formatting in ALV list header

    Hi,
    I am using an ALV with a list header. Code is as follows:
    FORM ALV_SHOW.
       DATA G_CALLBACK_PROG LIKE SY-REPID.
       G_CALLBACK_PROG = SY-REPID.
       CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
          EXPORTING
             I_CALLBACK_PROGRAM      = G_CALLBACK_PROG
             I_SAVE                  = 'U'
             IT_FIELDCAT             = ITAB_FIELDCATALOG
             IS_LAYOUT               = GS_LAYOUT
             I_CALLBACK_TOP_OF_PAGE  = 'TOP-OF-PAGE'
          TABLES
             T_OUTTAB               = ITAB_SUB_SEARCH.
    ENDFORM.  "alv_show.
    FORM TOP-OF-PAGE.
    ALV Header declarations
       DATA: T_HEADER TYPE SLIS_T_LISTHEADER,
             WA_HEADER TYPE SLIS_LISTHEADER,
             T_LINE LIKE WA_HEADER-INFO,
             LD_LINES TYPE I,
             LD_LINESC(10) TYPE C.
       DATA: SHHLDR_INFO LIKE ZSH_SHHLDR.
    Title
       WA_HEADER-TYP  = 'H'.
       WA_HEADER-INFO = 'Some Title'.
       APPEND WA_HEADER TO T_HEADER.
       CLEAR WA_HEADER.
       CLEAR SHHLDR_INFO.
       READ TABLE ITAB_SUB_SEARCH INDEX 1.
       SELECT SINGLE * FROM ZSH_SHHLDR INTO SHHLDR_INFO WHERE FOLIO EQ
          ITAB_SUB_SEARCH-FOLIO.
       WA_HEADER-TYP = 'S'.
       WA_HEADER-KEY = 'Holding '.
       WA_HEADER-INFO = SHHLDR_INFO-SHHOL.
       APPEND WA_HEADER TO T_HEADER.
       CLEAR: WA_HEADER.
       CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
          EXPORTING
             IT_LIST_COMMENTARY = T_HEADER.
    ENDFORM.   " top-of-page
    The problem is that the number for 'Holding' is displayed in the ALV header without any formatting, i.e.
    SOME TITLE
    Holding 2375385
    I want it to be displayed like:
    SOME TITLE
    Holding 2,375,385
    Is there any way to achieve this? Help is appreciated, thanks.
    Regards

    Hi
    Use WRITE statament
    WA_HEADER-TYP = 'S'.
    WA_HEADER-KEY = 'Holding '.
    *WA_HEADER-INFO = SHHLDR_INFO-SHHOL.
    WRITE SHHLDR_INFO-SHHOL TO WA_HEADER-INFO.
    APPEND WA_HEADER TO T_HEADER.
    If SHHLDR_INFO-SHHOL is amout, it would be better you used CURRENCY option
    WA_HEADER-TYP = 'S'.
    WA_HEADER-KEY = 'Holding '.
    *WA_HEADER-INFO = SHHLDR_INFO-SHHOL.
    WRITE SHHLDR_INFO-SHHOL CURRENCY <currency> TO WA_HEADER-INFO.
    APPEND WA_HEADER TO T_HEADER.
    Max

  • Writing selections in  alv list header

    Hi,
    in alv list header i have to show the values entered in selection screen.
    ex.
    Current year    : 2008
    current period  : 03
    report ID          : R_123
    company code : I BT  AA to BB
                            I BT  CC to DD
                            I EQ  FF
    in the above example first three are parameters and  company code is select-option, for parameters i can display what i want, but for company code( which is select option) it is showing only first line and not showing other lines.
    at the time of filling list header table for select-option, i am looping the select-option, first i am filling with  typ, key and info and for other i am filling only info, if i fill typ, key also for other recoreds also it is showing the  company code in all lines  as below ....
    company code  : I BT  AA to BB
    company code : I BT  CC to DD
    company code : I EQ  FF
    can any one suggest to get the list header as shown at the begining....
    thanks,
    bhushan

    Hi,
    Check this sample code. Here plant and date are selection screen paramters.
    Plant
      lwa_header-typ  = 'S'.
      lwa_header-key  = text-t47.
    If the select option for plant is 'EQ'
      LOOP AT s_werks.                                       "#EC *
        IF s_werks-option = 'EQ'.
          lwa_plant-werks = s_werks-low.
          APPEND lwa_plant TO lt_plant.
          CLEAR lwa_plant.
    If the select option for plant is 'BT'
        ELSEIF s_werks-option = 'BT'.
          CONCATENATE s_werks-low
                      text-t50
                      s_werks-high
            INTO lf_plant.
          lwa_header-info = lf_plant.
          APPEND lwa_header TO gt_header.
          CLEAR lwa_header.
        ENDIF.
      ENDLOOP.
      IF s_werks-option = 'EQ'.
        READ TABLE lt_plant INTO lwa_plant INDEX 1.
        lwa_header-info = lwa_plant-werks.
        APPEND lwa_header TO gt_header.
        CLEAR lwa_header.
        LOOP AT lt_plant INTO lwa_plant FROM 2.
          lwa_header-typ   = 'S'.
          lwa_header-key   = ''.
          lwa_header-info  =  lwa_plant-werks.
          APPEND lwa_header TO gt_header.
          CLEAR: lwa_header.
        ENDLOOP.
      ENDIF.
    Post date Range
      lwa_header-typ   = 'S'.
      lwa_header-key   = text-t33.
    If the select option for post date is 'EQ'
      LOOP AT s_budat.                                      "#EC *
        IF s_budat-option = 'EQ'.
          CONCATENATE s_budat-low+6(2) '.'
                      s_budat-low+4(2) '.'
                      s_budat-low(4) INTO lf_range.
        For multiple values
          IF lf_date_tmp IS INITIAL.
            lwa_date-date = lf_range.
            APPEND lwa_date TO lt_date.
          ELSE.
            lwa_date-date = lf_range.
            APPEND lwa_date TO lt_date.
          ENDIF.
      If the select option for post date is 'BT'
        ELSEIF s_budat-option = 'BT'.
          CONCATENATE s_budat-low+6(2) '.'
                      s_budat-low+4(2) '.'
                      s_budat-low(4) text-t49
                      s_budat-high+6(2) '.'
                      s_budat-high+4(2) '.'
                      s_budat-high(4) INTO lf_range .
          lwa_header-info  =  lf_range.
          CLEAR lf_range.
        ENDIF.
      ENDLOOP.
      IF s_budat-option = 'EQ'.
        READ TABLE lt_date INTO lwa_date INDEX 1.
        lwa_header-info  =  lwa_date-date.
        APPEND lwa_header TO gt_header.
        CLEAR: lwa_header.
        LOOP AT lt_date INTO lwa_date FROM 2.
          lwa_header-typ   = 'S'.
          lwa_header-key   = ''.
          lwa_header-info  =  lwa_date-date.
          APPEND lwa_header TO gt_header.
          CLEAR: lwa_header.
        ENDLOOP.
      ENDIF.
    Appending work area to the header table
      APPEND lwa_header TO gt_header.
      CLEAR lwa_header.
      CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
        EXPORTING
          it_list_commentary = gt_header.
    <REMOVED BY MODERATOR>
    Regards,
    Ramya
    Edited by: Alvaro Tejada Galindo on Apr 8, 2008 4:30 PM

  • Functional location Task lists Header/Operation Mass Upload

    Hello experts,
    I am using LSMW to upload Functional location Task lists Header & Operations in T-code IA12, for this i am using the Standard program IBIP (Object -> 480).
    All required fields are in the standard structures apart from Operation QM Data, Recording view -> ERFSICHT & Inspection point Completion -> QPPKTABS (see attached screen shot).
    Should i upload these 2 fields in different way ?
    Thank you by advance.
    Regards,
    Soufiane

    Generally, for all kinds of task list (Maintenance, Quality as well as Production), I tend to use BDC programs by which all the fields can be addressed. In standard, there are certain fields which might have got avoided for certain reasons.
    So, I suggest you to look for some other options available.

  • Traffic lights in ALV list header

    how do i display traffic lights as icons in ALV list header. for example, in the code below, i want to display a green icon at the end of closed items and a red icon at the end of the open items:
                closed : 4 [green-icon]
                open   : 2  [red-icon]
    CLEAR header_alv_wa-info.
      header_alv_wa-key  = 'closed:'.
      header_alv_wa-info = gv_closed.
      header_alv_wa-typ  = 'S'.
      APPEND header_alv_wa TO headeralv.
      CLEAR header_alv_wa-info.
      header_alv_wa-typ  = 'S'.
      header_alv_wa-key  = 'open:'.
      header_alv_wa-info = gv_open.
      APPEND header_alv_wa TO headeralv.

    Hi,
    http://www.sapfans.com/forums/viewtopic.php?t=79424
    http://www.sapfans.com/forums/viewtopic.php?t=24512
    the above links will give u the code for the same..
    Regards,
    Aparna

  • S_ALR_87012168 List Header Issue

    Dear Friends,
    I Am facing problem to resolve the issue as in the standard FI Report S_ALR_87012168 need to hide the list header because if I am executing the report for multiple customers than its displying the all customers in list header so while I am scheduling background job or printing than its printing all the customers in each page than the report data..
    Kindly suggest me how to hide the list header, is there any standard cutomizing or enhancement.
    Thanks,
    DTK

    Hiya
    Click on the Currency icon {Ctrl + Shift + F9} and select whatever currency you want it to be displayed on.
    It gets converted. Then when you hit the green arrow back, it will sk you whether you want to save the data, if you click yes it gets saved.
    Then everytime you execute this report, it will ask you, which layout you want to be displayed as the output - and you can select the one that you saved.  And it aint user specfic either. The pop up Qs comes up for all users.
    Rukshana

  • List header for alv grid using abap objects

    Hai all,
          I have displayed alv grid in container control using abap objects i.e. using method set_table_for_first_display.
    now i need to display list header for this alv grid.
    please help me how to create with a sample coding.
    Thanks and regards,
    Prabu S.

    Create a splitter using CL_GUI_EASY_SPLITTER_CONTAINER with a top and bottom half.  Put the alv grid in the bottom half.  Use cl_dd_document (documented in help.sap.com )  to build the header in the top half.  Use events on CL_GUI_ALV_GRID to handle the top-of-list printing.
    Or, if available, use CL_SALV_TABLE, and read the documentation on that.  When I needed a header for my report, that's what I did.  There's plenty of good documentation about if you'll search for it.
    matt

  • Issue with List Files option in FTP Adapter-

    Hi All,
    I am getting the following error when I am using the list files option inside FTP adapter. The soa Version I am using is 11.1.1.5
    Exception occured when binding was invoked. Exception occured during invocation of JCA binding: "JCA Binding execute of Reference operation 'FileListing' failed due to: Error in listing files in the remote directory. Error in listing files in the remote directory. Unable to list file in remote directory. Please make sure that the ftp server settings are correct. ". The invoked JCA adapter raised a resource exception. Please examine the above error message carefully to determine a resolution.
    I have configured FTP adapter successfully by giving the following details,
    useSftp –
    username –
    password -
    host -
    port –
    authenticationType –
    preferredCipherSuite -
    and it is working perfectly for getfiles option and it is reading files successfully, but it is throwing error when I am using list files option. I tried this option for listing the files that are in remote directory. Any Help would be appreciated.
    Complete fault
    <messages>
    <input>
    <Invoke1_FileListing_InputVariable>
    <part name="Empty">
    <empty/>
    </part>
    </Invoke1_FileListing_InputVariable>
    </input>
    <fault>
    <bpelFault>
    <faultType>0</faultType>
    <bindingFault>
    <part name="summary">
    <summary>Exception occured when binding was invoked. Exception occured during invocation of JCA binding: "JCA Binding execute of Reference operation 'FileListing' failed due to: Error in listing files in the remote directory. Error in listing files in the remote directory. Unable to list file in remote directory. Please make sure that the ftp server settings are correct. ". The invoked JCA adapter raised a resource exception. Please examine the above error message carefully to determine a resolution. </summary>
    </part>
    <part name="detail">
    <detail>No such file</detail>
    </part>
    <part name="code">
    <code>null</code>
    </part>
    </bindingFault>
    </bpelFault>
    </fault>
    <faultType>
    <message>0</message>
    </faultType>
    </messages>
    May 9, 2013 4:32:00
    Edited by: BK574 on May 9, 2013 2:47 PM

    Is this a bug in SOA suite?
    Following are the properties inside JCA file
    <adapter-config name="List" adapter="FTP Adapter" wsdlLocation="List.wsdl" xmlns="http://platform.integration.oracle/blocks/adapter/fw/metadata">
    <connection-factory location="eis/ftp/FTPService" UIincludeWildcard="*.*"/>
    <endpoint-interaction portType="FileListing_ptt" operation="FileListing">
    <interaction-spec className="oracle.tip.adapter.ftp.outbound.FTPListInteractionSpec">
    <property name="PhysicalDirectory" value="*.*"/>
    <property name="Recursive" value="true"/>
    <property name="IncludeFiles" value="*.*"/>
    </interaction-spec>
    </endpoint-interaction>
    </adapter-config>
    Edited by: BK574 on May 10, 2013 6:30 AM
    Edited by: BK574 on May 10, 2013 6:31 AM

  • Why does Google auto-complete fail in Firefox 17.0.1 when I type something in the search field there is no pull down list of options as I type?

    When I type a word or term into the Google search bar the auto-complete fails; there is no pull down list of options for my search, only what I have completely typed in. I have to type in the complete word or term that I am searching for and then press return to get the results. I'm using a MacBook and OS X 10.7.5 Please help! This is so frustrating!

    Note that websites may be using autocomplete=off to prevent Firefox from saving and filling autocomplete data as I posted above.
    Did you check for that?
    You can remove autocomplete=off with a bookmarklet.
    * http://kb.mozillazine.org/User_name_and_password_not_remembered
    If a site uses autocomplete="off" then look at this article for a bookmarklet to remove the autocomplete attribute.
    * http://kb.mozillazine.org/User_name_and_password_not_remembered (bookmarklet)
    You can paste this code in the command line in the Web Console (Web Developer > Web Console; Ctrl+Shift+K) and press the Enter key to verify if there is an input field with autocomplete.
    *https://developer.mozilla.org/en/Tools/Web_Console
    <pre><nowiki>var c=0,e=document.querySelectorAll('input[autocomplete],form[autocomplete]'),T='\n';
    for(i=0;E=e[i];++i){T+='['+(++c)+'] '+(E.name||'#'+E.id)+' ('+(V=E.getAttribute('autocomplete').toLowerCase())+')\n';}
    console.log('autocomplete: '+c+T);
    </nowiki></pre>

  • My MacBook Pro recently shut down on me all of a sudden. When I restarted it, it popped up with a gray box with 'OS X Utilities,' then listed various options such as 1. restore from time machine backup, 2. reinstall OS X, etc. what do I do now?

    My MacBook Pro recently shut down on me all of a sudden. When I restarted it, it popped up with a gray box with 'OS X Utilities,' then listed various options such as 1. restore from time machine backup, 2. reinstall OS X, 3. get help online and 4. disk utility. what do I do now? I have not backed up to Time Machine in a few days, so I'm not sure I should restore from time machine backup, is there something else I can do? Help!

    Guitar21,
    your MacBook Pro has booted into its Recovery mode. From the OS X Utilities menu, select Disk Utility. On the left-hand side of the Disk Utility window, select your internal disk’s boot partition (typically called “Macintosh HD”). On the right-hand side, press the Verify Disk button if it’s not greyed out; if it is greyed out, or if it reports that errors were found, press the Repair Disk button. Once the verification/repair is completed, exit Disk Utility and select Restart from the Apple menu to restart in normal mode. Does it get to the login screen now?

  • Prevent Occurence of list header and page breaks in spool file of ALV Grid

    Prevent Occurence of list header and page breaks in spool file of ALV Grid  Display.
    When we run the ALV in background and create spool request then:
    Spool file output is coming like this.
    Column1 Column2 Column3 Column4
    data        data        data       data
    data        data        data       data
    data        data        data       data
    Column1 Column2 Column3 Column4
    data        data        data       data
    data        data        data       data
    data        data        data       data
    But the required is like this
    Column1 Column2 Column3 Column4
    data        data        data       data
    data        data        data       data
    data        data        data       data
    data        data        data       data
    data        data        data       data
    data        data        data       data
    Please suggest a posible answer

    Hello all,
    if you have not yet solved this on your own, here is my solution: use a format type that has 60000 lines per page for your spool output device.
    It all depends on the format type that was used for creating the spool output.
    By default (in our system), we have 65 lines per page. And after each page the column headings of the ALV will appear.
    What i did:
    create a new format type via transaction SPAD->full administration->device types->format types (copy an existing one)
    change"Number of Rows" to 60000 or something applicable
    edit the device type of your output device (e.g. LOCL) to contain the newly created format type (via SPAD; Button "Formats" in device type maintenance).
    That's it! Be sure to use this format type for your output device in the "Background Print Parameters" window (-> Button "Properties").
    Regards
    Daniel Klein
    All other parameters you discussed before didn't do it. All ALV-Settings will be overwritten by the output device settings and its print properties.

  • Reg: Adding spaces between texts in ALV list header

    Hi All,
    I was implementing a client requirement for ALV. The list header should contain something of this format.
    Pgm Id:               ZZZ01
    After this list header it is ALV display.
    I did this using the concatenate statement.
    ex: Concatenate 'PgmID' sy-repid into listheader seperated by space.
    But this is not showing spaces between text in ALV display. See I want a tabspace between the texts in headr. Any idea on how to mak it?
    Rakesh

    Depending on Fontsize the space might be so narrow that you believe its not there.
    check in the debugger if there is really a space in the string, the clause "separated by space" will insert one for sure.
    May be you'reshowing the ALV before you are modifying the listheader?
    Another approach is using strings, blanks at the end of a string are not deleted
    concatenate 'ABC ' 'XYZ' into s.
    and
    concatenate `ABC ` `XYZ` into s.
    will give different results, be aware of the difference in the quots in both cases. Using the second example you can insert as many blanks as you want.

  • Alv list header problem

    Hai Friends,
    In my ALV List header..i am writing date , time and my program name.
    but all are coming on left side.
    can i get date on left side, program name on centered and time on write side.
    my code is like this.
    FORM list_headers.
          lists-typ = 'H'.
          lists-info = text-010.
          APPEND lists.
          CLEAR lists.
          lists-typ = 'S'.
          lists-key = text-011.
          CONCATENATE sy-datum+6(2) '/'
                      sy-datum+4(2) '/'
                      sy-datum+0(4) INTO lists-info.
          APPEND lists.
          CLEAR lists.
          lists-typ = 'S'.
          lists-key = text-012.
          CONCATENATE sy-uzeit+0(2) ':'
                      sy-uzeit+2(2) ':'
                      sy-uzeit+4(2) INTO lists-info.
          APPEND lists.
          CLEAR lists.
    ENDFORM.

    Hi again,
    1. first of all how are u writing / displaying
       the alv header ?
    2. using documentary write ?
       then also, u can use one variable of
      length 100 and use this concept.
    3. If u are using top_of_page
      event,
      in this event, WE CAN use WRITE.
      (i have used it, and it
      works fantastic)
                  (not in case of alv grid)
    4. My point is, what ever u are using,
       use on variable of length 100.
      WRITE value INTO variable.
      using offset
      and then proceed further.
    regards,
    amit m.

  • Payment terms, Payment method, etc. blank in the Invoice Lists header.

    Hello,
    I am creating Invoice Lists - LR with F2 - Invoices but surprisingly the payment terms, payment method, VAT registeration no., etc. are not populated into the Invoice Lists header. I think it should have been populated from the 'Payer's' customer master.
    I am using 'Copycontrol' routine no. 16; if it is relevant in any way.
    Can someone help me with this, cause I need to use these field's data into the printout.
    Thanks,
    Nandish.

    Hi Sreedhar,
    BBP_UPLOAD_PAYMENT_TERMS program does not work well.I tried using this and this ask for RFC destination(LOGSYS) while replicating the payment terms.
    and when you try to see these payment terms in customzing it does not give you correct result and so result in SRM HTML screens.
    What I did for this.
    There are two tables involved in this
    BBP_PAYTERM
    BBP_PAYTERM_TEXT .
    If you see entries in table BBP_PAYTERM ,it will have data with ERPCLNTXXX system while same kind of data will not be there for SRMCLNTXXX.
    You have to copy ERPCNLTXXX data into SRMCLNTXXX data.
    To do that copy all data with SRMCLNTXXX ,go to table Entry in Menu and delete all entries.
    Then copy all ERPCLNTXXX data and go to Table Entry ,Create with template.
    You can do this is SE11 or SE16 transactions.Do similarly with BBP_PAYTERM_TEXT.Please check entries before doing it for BBP_PAYTERM_TEXT table as this table may have similar entries for SRMCLNTXXX and then you will not require to copy all.
    Actaully program recognise only Payment terms in SRM.
    Once you have done this..You can see in customzing all correct payment terms replicated.
    SPRO->SRM server->Cross application basic setting->Create payment conditions.
    I hope this helps.
    regards,nishant
    please reward if this helps

  • How do you change the font in WPC Link List Header ...

    Does any one know how/where to change the font in Web Page Composer on the Link List Header?  I am using the Link List header delivered with the product. 
    It looks like it is pulling arial font but we are adding content in a different font in the paragraphs and want the fonts to be the same.  Is there something I can change in the theme?
    thanks
    Angie.

    You need to go to the
    Content Adminstration/KM Content/etc/wpceditor/css/runtime  and look in the sdn_general.css file.  The controls are all there.  You can rename or create a new style sheet as this will modify all WPC sites.

Maybe you are looking for

  • Creation of a symptom/problem in CRM.(Solution Database)

    Hi All, Can anybody tell me what are the mandatory parameters for creation of a symptom/problem in solution database. I am using a bapi: BAPI_SYMPTOM_CREATE can anybody tell me what all fields need to be populate for successful creation of a symptom.

  • Help Creating a Windows Partition

    Hi I've got 2 hard drives. I want OS X Leopard on Bay 1 and Windows Vista on Bay 2. In Boot Camp Assistant which Bay do I select? Do I select "Create a second Partition for Windows" or "Erase disk and create a single partition for Windows"? any help

  • BW report option

    We use bex broadcaster to broadcast BW reports to the EP7 portal.   We found that when you open a report and right click on certain area within the report it brings up a menu where you have several options to choose from like Filter, Change Drilldown

  • Determining type of object

    I have 2 classes inherited from the same class. public abstract class ParentProps { public class OneProps extends ParentProps { public class TwoProps extends ParentProps { }I have another class which has a method which receive an argument of type Par

  • Solution for archive

    Dear sir I have Accounting Doc no i want 2 take a accounting value but the accounting value is present in Archieve Files if i use the Archieve object (Fi_document ) , it takes all the data but i dont want 2 take all the data , if any functional modul