Can you meet this kind of requirement

i wanna realize the following layout in alv.
|       |--||--
|   header
|--||--
|   item
|--||--
|
Anybody have any idea, please tell me
thank you in advance
Message was edited by:
        Kevin Gao

Use the ALV FM as given below.. I have pasted just the FM part, incase you need the complete program give me your email ID , I will send it..
*&      Form  LIST_OUTPUT
      text
-->  p1        text
<--  p2        text
FORM LIST_OUTPUT.
  CALL FUNCTION 'REUSE_ALV_HIERSEQ_LIST_DISPLAY'
       EXPORTING
        i_interface_check        = ' '
            I_CALLBACK_PROGRAM       = REPID
        i_callback_pf_status_set = ' '
            I_CALLBACK_USER_COMMAND  = G_USER_COMMAND
            IS_LAYOUT                = X_LAYOUT "spacing etc
            IT_FIELDCAT              = T_FIELDCAT "fields on rpt
        it_excluding             =
        it_special_groups        =
            IT_SORT                  = T_SORT " sort field name
       it_filter                =
        is_sel_hide              =
        i_screen_start_column    = 0
        i_screen_start_line      = 0
        i_screen_end_column      = 0
        i_screen_end_line        = 0
        i_default                = 'X'
        i_save                   = ' '
       is_variant               = ' '
           IT_EVENTS                = T_XEVENTS "TOP of page
        it_event_exit            =
            I_TABNAME_HEADER         = 'T_XDATA'"header table
            I_TABNAME_ITEM           = 'T_DDATA' " detail table
        i_structure_name_header  =
        i_structure_name_item    =
            IS_KEYINFO               = X_KEYINFO "drill down key
       is_print                 =
        is_reprep_id             =
   importing
        e_exit_caused_by_caller  =
        es_exit_caused_by_user   =
       TABLES
            T_OUTTAB_HEADER          = T_XDATA " header table
            T_OUTTAB_ITEM            = T_DDATA " detail table
   EXCEPTIONS
        PROGRAM_ERROR            = 1
        OTHERS                   = 2
if sy-subrc <> 0.
MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
        WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
endif.
ENDFORM.                               " LIST_OUTPUT

Similar Messages

  • Can i change my old iPad with the new one, i Will pay the difference... Do you have this kind of program?

    Can i change my old iPad with the new one, i Will pay the difference... Do you have this kind of program?

    If you are past the return date, you can sell the older iPad and put the money towards a new one.
    Plus, old iPads make great gifts ! ! !

  • How to perform this kind of requirement

    Hi Experts,
    User wants a report to track customer attitute history and also the change indicator. I created a DSO  and set a key figure to record the customer attitude (key are customer ID and system date). use number 1,2,3,4,5 instead of five different kinds of attitude in DSO. In query, I create two restrict key figures and use user input two date variable to restrict the value of that key figure. current issue is that the value display in report is as number 1,2,3,4,5. user can't get the description as five kinds of attitude. Could you please give some comment and solution about this kind of requirement. Thanks.
    Br, Delve

    Hi,
    "Attitude" has to be present in the DSO/Cube. It could be a Data field in DSO but it has to be a dimension in the Cube. Only then you will be able to pull it in the query.
    Being in dimension, every new value of the attitude will create a new record in the cube. So for 5 different days you will get 5 records. Then in query if you drag this dimension, it will show you 5 different attitudes as per date.
    You can choose to display only the latest attitude by restricting this field in the query to the last date in the date range.
    Regards,
    Nishant.

  • I have no audio what so ever i have seen in one of the tables where it was deleted how can you fix this i tried everything i know

    == Issue
    ==
    I have another kind of problem with Firefox
    == Description
    ==
    i have been trying to get the audio to play for 3 days now i did see where it had been deleted this is a used comp i haven't had it long can you fix this i'm at my wits end
    == Firefox version
    ==
    3.6.3
    == Operating system
    ==
    Windows NT 5.0
    == User Agent
    ==
    Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.9.2.3) Gecko/20100401 Firefox/3.6.3
    == Plugins installed
    ==
    *-Default Plug-in
    *Adobe Acrobat Plug-In Version 5.10 for Netscape
    *Java(TM) Platform SE binary
    *Next Generation Java Plug-in 1.6.0_20 for Mozilla browsers
    *Network Object Plugin
    *Windows Multimedia Services DRM Store Plug-In
    *Npdsplay dll

    Hello Virginia.
    You may be having a problem with some extension or plugin that is hindering your Firefox's normal behavior. Have you tried disabling all add-ons (just to check), to see if Firefox goes back to normal?

  • How can I perform this kind of range join query using DPL?

    How can I perform this kind of range join query using DPL?
    SELECT * from t where 1<=t.a<=2 and 3<=t.b<=5
    In this pdf : http://www.oracle.com/technology/products/berkeley-db/pdf/performing%20queries%20in%20oracle%20berkeley%20db%20java%20edition.pdf,
    It shows how to perform "Two equality-conditions query on a single primary database" just like SELECT * FROM tab WHERE col1 = A AND col2 = B using entity join class, but it does not give a solution about the range join query.

    I'm sorry, I think I've misled you. I suggested that you perform two queries and then take the intersection of the results. You could do this, but the solution to your query is much simpler. I'll correct my previous message.
    Your query is very simple to implement. You should perform the first part of query to get a cursor on the index for 'a' for the "1<=t.a<=2" part. Then simply iterate over that cursor, and process the entities where the "3<=t.b<=5" expression is true. You don't need a second index (on 'b') or another cursor.
    This is called "filtering" because you're iterating through entities that you obtain from one index, and selecting some entities for processing and discarding others. The white paper you mentioned has an example of filtering in combination with the use of an index.
    An alternative is to reverse the procedure above: use the index for 'b' to get a cursor for the "3<=t.b<=5" part of the query, then iterate and filter the results based on the "1<=t.a<=2" expression.
    If you're concerned about efficiency, you can choose the index (i.e., choose which of these two alternatives to implement) based on which part of the query you believe will return the smallest number of results. The less entities read, the faster the query.
    Contrary to what I said earlier, taking the intersection of two queries that are ANDed doesn't make sense -- filtering is the better solution. However, taking the union of two queries does make sense, when the queries are ORed. Sorry for the confusion.
    --mark                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Can you tell me the system requirements for arch please.

    can you tell me the system requirements for arch please.

    Enhu, welcome to the forums. Listing minimum requirements is pretty standard for most distros nowadays, and this being Arch, we expect you to do a minimum of effort to find out something like that. The wiki link is pretty clear on the memory, and since Arch is i686, any i686 CPU will do - something a search would have told you as well. This has been covered ad nauseam already.
    Closing before we get any more attempts at trolling Windows.

  • How can i design this kind of chart ?

    How can I create this kind of pie chart.

    After you enable dashed line, go the right and make sure the second icon is down. Enable the second icon for cap. Enter the 3 values I have shown, and then adjust to your liking

  • Regarding receiving texts as emails:  Can you apply this setting to one individual? I want to continue to receive texts from everyone else except one person!

    Regarding receiving texts as emails:  Can you apply this setting to one individual? I want to continue to receive texts from everyone else except one person!

    Don't want to block the person, just have all his texts going directly to my email so that I can maintain a continuous record of his text contacts (rather than remain in text form).
    It appears that I must select an option that makes ALL texts go to email, which I'd prefer not doing.

  • I have Photoshop CS4,on how many computers can you install this program ?

    Hello,
    I got Photoshop CS4. On how many computers can you install this program ?
    Sonste

    The license and activation rights are for a single user on two computers that are not used simultaneously—such as your desktop machine and your laptop.

  • Is there anyone there? I hope there is someone who can you understand this problem and have the common sense to respond?  I open gmail. I want to save an email to one of my folders. I position my cursor over the appropriate Folder icon or by choice, to th

    Is there anyone there? I hope there is someone who can you understand this problem and have the common sense to respond?
    I open gmail. I want to save an email to one of my folders.
    I position my cursor over the appropriate Folder icon or by choice, to the Trash.
    The friendly finger pointing cursor icon changes to an arrow icon.
    The hand icon allows me flawless access to opening and/or moving emails.
    The arrow, however does not open the link.
    On the Google menu bar the cursor hand with finger opens the links to Everett (my name), Search, Images, Maps and Play.
    When I attempt to open the remaining links in the menu bar (YouTube, News, Gmail, Drive, Calendar and More) the arrow icon replaces the hand. The arrow icon does not work. It will not activate these links.  Nor does it open email messages in the Inbox.
    Usually I reset, even reboot Safire and sometimes the problem goes away, then reappears.
    Can you imagine if this condition should it happen to a tech savvy Google Support person? Perhaps one can share and make my problem go away.
    I am considering dropping Google as my mail source. Unfortunate!
    Everett Halvorsen
    [email protected]
    718.490.3824

    I have uninstalled my Access Connection, but this problem seems to persist. IBM technician have changed the wireless card of my T60, the first few days after it was changed was very fine, no problem at all. About a week later, the problem occured again, and it happened quite frequently after that occurence. Now i really have no idea what is the cause and how to solve it. Will be greatful if there is anyone that can help me.

  • I have a lenovo S410 Touch laptop -with windows 8.1 -Itunes 11.1.1 ,i am trying to connect my iphone 4s but does not connect , it shows that it wants to connect , how can you connect this?

    I have a lenovo S410 Touch laptop -with windows 8.1 -Itunes 11.1.1 ,i am trying to connect my iphone 4s by USB cable but does not connect , it shows that it wants to connect , how can you connect this?

    http://support.apple.com/kb/ts1538

  • Hello I Download Adobe Photoshop CC 2014 Last Night i INSTALLED it But it Crashes in 30-40 Sec After i Launch the Product Without Any Error Message I Need Help Can You Resolve This Problem i Tried Creative Cloud Sign Out Nd Sign iN But iT DidnT ReSolve My

    Hello I Download Adobe Photoshop CC 2014 Last Night
     i INSTALLED it But it Crashes in 30-40 Sec After i Launch the Product Without Any Error Message
    I Need Help Can You Resolve This Problem

    Lotfi are you receiving any error messages during the installation?  I would recommend reviewing your installation logs for errors.  Please see Troubleshoot install issues with log files | CC - http://helpx.adobe.com/creative-cloud/kb/troubleshoot-install-logs-cc.html for information on how to locate and interpret your installation log files.  You are welcome to post any specific errors you discover to this discussion.

  • In v.4 fonts look blurry. Can you solve this shortcoming ?

    Fonts look blurry in the overall menu in this new version of browser (v.4). I tried all the options that you specified with the ClearType an so on... It seems that the problem is not from Windows 7 because the old version looks ok. Can you solve this shortcoming ?
    Until you resolve it I'll stay with the previous version (3.6.16) which it looks really good.

    Yea, when I actually install my applications and launch them from GNOME Shell's menu or launcher the fonts look as blurry as they do when I launch them from Anjuta. Other applications look fine and with the workarounds I described above, my own applications display nicely too when launched from either GNOME Shell or Anjuta.

  • How can you search this forum without searching all the other forums

    how can you search this forum without searching all the other forums at the same time which is a big fat waste of time.

    Follow this tip to create a bookmark to a search page that searches only the forum you want or...
    Browse with Firefox and enable this Greasemonkey script, which forces all searches from a sub-forum to be local.

  • Can you convert this file into good searchable pdf file: Medical Terminology- A Short Course.azw4

    Can you convert this file into good searchable pdf file: Medical Terminology- A Short Course.azw4

    I don't think that Adobe offers any software to convert .azw4 files.  Search Google for alternate converters.

Maybe you are looking for

  • No Workshop in Solaris Weblogic 7.0 installer ..

    Dear all ! I just wanted to inform you, that the installer .. bot the net.. and the package installer don't work as expected .. I had the complete Platform 7 file downloaded .. make a custom install .. click WL Server .. like mentioned here .. "...ch

  • Trouble creating pdf files

    I recently re-installed Adobe acrobat on a new machine.  Now when I use the Adobe PDF printer I get a .prn file.  I always used to get a pdf file. When I try to print a file from within Quicken.\, I get a dialog box that asks for Output file name.  w

  • Dock Icon Problem

    Okay I'm having trouble getting rid of some of the icons that are on my dock. I tried to just drag them into the trash bin but when I let go, it just goes right back to it's spot on the dock. It's quite frustrating. Can anyone help me out. Oh and thi

  • New problem. Can't print to Adobe Acrobat 9 from a Firefox page. Both programs hang up. No problem with other browsers

    Using Windows 7. 64 bit

  • This Development Process Technique

    "In the post-process toning and balancing of the uneven light in the alleyway, I developed the raw file with different density to use the natural light instead of dodging and burning. In effect to recreate what the eye sees and get a larger dynamic r