Please advise: if it's possible to include a table control in step loop

Dear Gurus,
Currently, our user want to output a result list after calling BAPI: BAPI_BILLINGDOC_CREATEMULTIPLE.
Because this BAPI could create multiple invoices, and the result is asked to be displayed in a special format (both header information and item information). I just think if it is possible that make the header(text boxes) and item (table control ) in to a step loop.
Could you please kindly advise?
Thanks & Regards

Dear all,
As I tried, it is not possible to include table control or subscreen area in the step loop.

Similar Messages

  • HT4436 I both have iCloud accounts and would like to share photo's etc. Can any one please advise if this is possible and how to do it?

    My wife and I both have iCloud accounts and would like to share photo's etc. Can any one please advise if this is possible and how to do it?      
    I have a Macbook-pro and Ipad, my wife has a much loved ipad.

    It's all described in iCloud Help here: http://help.apple.com/icloud/#mmc0cd7e99

  • I need a good DVD burner I tried roxia but not user friendly - I have read a lot of about iLife which includes a DVD burner - it is discontinued but still available from other sources - please advise

    I need a good quality dvd burner - not happy with the free downloads - I have read a lot about iLife which apparently inclues a good reliable
    dvd burner - discontinued but available from various sources. Please advise.

    You need iLife '09 which includes the complete iDVD app and associated menu themes.
    Found here.
    http://www.amazon.com/Apple-MB966Z-A-iLife-VERSION/dp/B0014X5XEK/ref=sr_1_1?ie=U TF8&qid=1368187126&sr=8-1&keywords=iLife+%2709
    Another DVD burning app and is free is
    Burn
    http://burn-osx.sourceforge.net/Pages/English/home.html

  • Streamline with Version 10, please advise

    I will be working on projects including scanned line art, need to convert to vector. Used to use Adobe Streamline to this. I will be on a Mac OS 10.3.9 with Illustrator version 10 and I can't find out how to make these conversions. Please advise if this is possible with vers 10. I'm stuck (dead in the water) until I figure out this problem!

    Thanks, Rene. I needed the confirmation that it couldn;t be done in vers 10 and that Streamline isn't available. I'll check out vectormagic, hadn't heard of it. Been a while since I needed to "streamline" things. I appreciate your tip.

  • Need to include Table Control in Tabstrip (which is present in selection sc

    Hi Friends,
    I have a tab strip in my selection screen. I need to include a Table control in one of the tab of the tab strip. Is it possible? If yes How to do that?
    Note: I cant use a module pool program.
    Regards,
    Sudheer

    Hi ,
        We can do that.
    You have created the Tab strips in Module Pool program.Select that tab Place the table control in your tabstrips.Assign the Table control name to the table control.
    In this program We have a field in selection screen When we submit the screen the tabstrip will come and using with in that we table controls.we filled that table controls.
    include zsalesordertop                          .    " global Data
    tables: zstr_vbak,zstr_vbap,zstr_vbep.
    data:ok_code type sy-ucomm,
         ok_cod type sy-ucomm,
         l_vbeln type vbak-vbeln,
         no_rows1 type i,
         no_rows2 type i,
         no_rows3 type i.
    data: itab1 type table of zstr_vbak,
          wa1 type  zstr_vbak,
          itab2 type table of zstr_vbap,
          wa2 type  zstr_vbap,
          itab3 type table of zstr_vbep,
          wa3 type  zstr_vbep.
    *&      Module  STATUS_0100  OUTPUT
          text
    module status_0100 output.
      set pf-status 'BACK'.
    SET TITLEBAR 'xxx'.
      case ok_code.
        when 'BACK'.
          leave program.
      endcase.
    endmodule.                 " STATUS_0100  OUTPUT
    *&      Module  STATUS_0101  OUTPUT
          text
    module status_0101 output.
      set pf-status 'EXIT'.
    SET TITLEBAR 'xxx'.
      case ok_cod.
        when 'EXIT'.
          leave program.
        when 'TAB1'.
          tabstrip-activetab = 'TAB1'.
        when 'TAB2'.
          tabstrip-activetab = 'TAB2'.
        when 'TAB3'.
          tabstrip-activetab = 'TAB3'.
      endcase.
    endmodule.                 " STATUS_0101  OUTPUT
    *&      Module  USER_COMMAND_0100  INPUT
          text
    module user_command_0100 input.
      case ok_code.
        when 'SUBMIT'.
          if l_vbeln is not initial .
            select vbeln erdat erzet ernam angdt bnddt audat vbtyp trvog auart from vbak into table itab1 where vbeln = l_vbeln.
            if itab1 is not initial.
              select vbeln posnr matnr matwa pmatn charg matkl arktx pstyv posar from vbap into table itab2 for all entries in itab1 where vbeln = itab1-vbeln.
              select vbeln posnr etenr ettyp lfrel edatu ezeit vrkme from vbep into table  itab3 for  all entries in itab1 where vbeln = itab1-vbeln.
            else.
              message i000(000) with 'no data in item and schedule information table'.
            endif.
          else.
            message i000(000) with 'not allowed'.
          endif.
      endcase.
    endmodule.                 " USER_COMMAND_0100  INPUT
    *&      Module  STATUS_1101  OUTPUT
          text
    module status_1101 output.
    SET PF-STATUS 'xxxxxxxx'.
    SET TITLEBAR 'xxx'.
      describe  table itab1 lines no_rows1.
      tablecontrol1-lines = no_rows1.
    endmodule.                 " STATUS_1101  OUTPUT
    *&      Module  STATUS_2101  OUTPUT
          text
    module status_2101 output.
    SET PF-STATUS 'xxxxxxxx'.
    SET TITLEBAR 'xxx'.
      describe  table itab2 lines no_rows2.
      tablecontrol2-lines = no_rows2.
    endmodule.                 " STATUS_2101  OUTPUT
    *&      Module  STATUS_3101  OUTPUT
          text
    module status_3101 output.
    SET PF-STATUS 'xxxxxxxx'.
    SET TITLEBAR 'xxx'.
      describe  table itab3 lines no_rows3.
      tablecontrol3-lines = no_rows3.
    endmodule.                 " STATUS_3101  OUTPUT
    *&      Module  FILL_TABLECONTROL1  OUTPUT
          text
    module fill_tablecontrol1 output.
      read table itab1 into zstr_vbak index tablecontrol1-current_line.
    endmodule.                 " FILL_TABLECONTROL1  OUTPUT
    *&      Module  FILL_TABLECONTROL2  OUTPUT
          text
    module fill_tablecontrol2 output.
      read table itab2 into zstr_vbap index tablecontrol2-current_line.
    endmodule.                 " FILL_TABLECONTROL2  OUTPUT
    *&      Module  FILL_TABLECONTROL3  OUTPUT
          text
    module fill_tablecontrol3 output.
      read table itab3 into zstr_vbep index tablecontrol3-current_line.
    endmodule.                 " FILL_TABLECONTROL3  OUTPUT
    Include zsalesordertop
    program  zmodule_pool_salesorder.
    controls tabstrip type tabstrip.
    controls tablecontrol1 type tableview  using screen '1101'.
    controls tablecontrol2 type tableview using screen '2101'.
    controls tablecontrol3 type tableview using screen '3101'.
    Sure this will help you.
    Please reward points if it helps to you.
    Thanks,
    Swapna.

  • How to include a table multiple times in InfoSet Query

    Hi,
    Is it possible to include a table more than once in an InfoSet Query, I created an InfoSet Query and Include Table A, then included Table B now i want to join Column 1 and 3 of Table A to be join with column1 of Table B, in other words, Table B is a Master data table, and Table A is a transaction data table, how this can be acheived.
    Thanks
    Akila. R

    You cannot achieve this.
    Instead, compound the column 1 with column 3 info objects and create join with Table B.
    This will result in same intended functionality.

  • I am unable to connect to the internet via WiFi connection.  My iphone works just fine.  Please advise possible solutions.

    I have an iPad on v5.01.  I am unable to use my wifi network to connect to the internet.  My wife's iPad works fine.  Please advise any potential solutions.

    Have you checked to see if your WiFi router needs to have your iPad's MAC address specifically permitted to use WiFi?  Some WiFi routers have a section in the settings called "Access List", possibly under "Security".
    You can find the MAC address in Settings > General > About > Wi-Fi Address

  • I would like to download / backup my entire iPhoto library, but want to do so in a manner where each event is saved as a distinct folder.  Can someone please advise if / how this is possible?

    I would like to download / backup my entire iPhoto library, but want to do so in a manner where each event is saved as a distinct folder.  Can someone please advise if / how this is possible?

    See Terence Devlin's User Tip on exporting from iPhoto: 
                     Exporting From iPhoto  https://discussions.apple.com/docs/DOC-4921
    To write events to separate folders, use "File > Export" and select the subfolder format "Event Name". But that will only backup the photos and not your iPhoto library and all the work you invested in organising it.  For backing up, see:                    iPhoto and File Management

  • Is it possible to delete off the desktop I will be using this phone for business, therefore I will not need itunes, appstore, game centre, weather, newstand, passbook, stocks, maps, camera, music etc. please advise.

    Is it possible to delete off the desktop I will be using this phone for business, therefore I will not need itunes, appstore, game centre, weather, newstand, passbook, stocks, maps, camera, music etc. please advise.

    The App Store has many useful business related apps: Word processors, spreadsheets, presentation apps, CRM apps. Maps is useful for navigating to appointments. Newstand for reading periodicals related to business.

  • Ust purchase an iphone 4s and need to know how could i transfer all files including (contacts, pictures, music, notes and ect.... from sd card or any external card to iphone 4s, please advise thx

    ust purchase an iphone 4s and need to know how could i transfer all files including (contacts, pictures, music, notes and ect.... from sd card or any external card to iphone 4s, please advise thx.

    You need to put all of your info on your computer and then sync it to iphone.

  • Hello  can you please advise how to split a multiple VCF card (that includes 1000s of indivudual cards)

    hello 
    i am using MCbackup on my iphone4 and did backup all my contacts into 1 single VCF card (consisting of 1000s individual vcf cards)
    can you please advise how to split a multiple VCF card (that includes 1000s of indivudual cards) in order to save them in outlook 2007 as backup thanks

    This is more related to Office issue, I’d like to suggest you post this issue to Office forum. 
    Here is the link: http://support.microsoft.com/gp/gp_newsgroups_master
    ***Don't forget to mark helpful or answer***
    **Note:(My posts are provided “AS IS” without warranty of any kind)

  • After upgrading my iphone 4 to io6 i started loosing the historical sms messages from some senders including new ones received as soon as I open the message app. I am not happy with io6. please advise how i could downgrade to io5.1.1.

    After upgrading my iphone 4 to io6 i started loosing the historical sms messages from some senders including new ones received as soon as I open the message app. I am not happy with io6. please advise how i could downgrade to io5.1.1.

    I have read a number of other threads regarding the loss of Messages, however, I am not aware of the reason it is happening. Check on the right side of this message under more like this and see if you can find an answer.
    As to your question about downgrading software, there is no Apple supported method for downgrading software.

  • I have a MBP retina display, early 2013, 512GB SSD storage& I want to upgrade it into a 768GB SSD storage, would that be possible WITHOUT replacing my current storage disks with the new 768GB ?keeping the 512GB&only adding a 256 GB disk?! please advise (:

    I have a MBP retina display, early 2013, 512GB SSD storage& I want to upgrade it into a 768GB SSD storage, would that be possible WITHOUT replacing my current storage disks with the new 768GB ?keeping the 512GB&only adding a 256 GB disk?! please advise (:

    The main error in this position is thinking ANY sized SSD can be "storage"
    Any Macbook SSD should be idealized as a working platform computer system, containing all your applications, documents, and weekly-use necessary files; and all media files such as ‘big-data’ (music/PDF collections/video/pictures), unless directly needed in the near future, should be kept off the computer and on external storage USB or likewise bare hard drives.
    You cant do what you want without removing the internal SSD
    Officially, it is not possible for an end user to upgrade the storage in any Retina Display MacBook Pro model after purchase
    Get a nice 1TB USB external HD for $65 

  • Portfolio site feedback / google verification problems PLEASE ADVISE.

    Firstly I have an iweb designed illustration/photography site which I would greatly appreciate feedback on (ease of use, loading problems etc...etc...):
    http://www.matt-dawson.co.uk/
    Cheers for any constructive comments. I've been getting sections of the browser background not loading in first time on Safari...does anyone else find this, suggestions...?
    Further to this, a number of related questions (I'll keep it short and sweet, I know to many they may be tired old questions but I've searched old topics and despite everything I'm still puzzled...please advise).
    problems getting listed on google: 1,2,3. FYI my site has been running for 2 months now.
    1)which URL do I try to list with google? My site is forwarded from an NTL homepage:
    http://homepage.ntlworld.com/matthew.jdawson
    to my domain provider. Do I try to get google to list my www.matt-dawson.co.uk site (as I've been trying to) or must I try to list my ntl homepage...? If the latter is the case how do I ever get my concise .co.uk URL to be listed on Google...?!
    2)Tried both methods of google verification for www.matt-dawson.co.uk to no avail. The HTML file approach gives me the message "404 error, status of 200 (ok) in the header" so I followed googles advice RE this and opted for the Meta tag approach which also refuses to work. I've opened the iweb index.html in text edit (with ignore rich text clicked) and tried to insert the metatag where google said to but despite many attempts trying different possible insertion points in the text, no luck. Can anyone make the 'simple' even simpler for me...?
    3) finally, I understand from looking at past topics that even by typing my site name in this forum I have increased my chances of google eventually finding me as this forum gets crawled... is that correct...? I don't have contacts with websites that would link to me so that avenue is closed to me at present...
    Sorry if anyone feels I'm treading over old ground but this is really foxing me... the brilliant iweb only holds your hand so far before you have to fend for yourself!
    I'd very much appreciate anyones advise. Many thanks! Matt
    1.8GHz G5 iMac   Mac OS X (10.4.9)  
    1.8GHz G5 iMac   Mac OS X (10.4.9)  
    1.8GHz G5 iMac   Mac OS X (10.4.9)  

    Welcome to the Discussions, Matt. Regarding your website -- I found having to always click on HOME or the Back button an annoyance. I realize it looks more "arty" to omit the menu, but it serves a purpose: to efficiently navigate between sections of your site.
    When arriving at a section, you show the section name as a reminder -- except at the INFO section. You may want to consider including "INFO" both for orientation and consistency.
    And at that section you have the text: "(Click here to open an email message)". You may want to consider using the Mail app's "stamp" icon instead and enabling that as a link to the mail app -- it would be easier to see on the screen and a bigger target to click on. You could optionally add a short title such as "Email me".
    Same at the Illustration section -- "(for link to Amazon click here)" -- you could use instead an Amazon logo button and perhaps a short title.

  • Can anyone please advise how I 'enable' extensions in Safari 5.0.6. on an iBook G 4?

    Hi, can anyone please advise me how I  'enable' extensions in Safari 5.0.6. I have an iBook G4?
    and secondly,  is there anyway I can update from 10.5.8 Mac OSX on my iBook G4 ?
    I am a complete novice.
    Many thanks.
    thall3

    Try Safari > Preferences > Extensions
    Upgrade from v10.5.8 on an iBook G4? No. The next OS X up from v10.5 Leopard is v10.6 Snow Leopard.
    Requirements for Snow Leopard include an Intel procdessor. Your iBookG4 is PowerPC.
    Mac OS X v10.6 Snow Leopard - Technical Specifications

Maybe you are looking for

  • Uploading a file to the BPC server

    Hi, I am working on BPC NW 7.5. I am trying to upload a xlsx with master data file to the BPC server. I get an error that says "HTTP Error 400: Bad Request". I tried uploading csv and txt files and they upload without errors. Please assist Thanks

  • Cleanup of DB13 Plannings + Job error

    Hi all, when i have gone through ST04, JOBS->DBA LOG, i am getting the following job  error 16.01.2008     14:00:46     16.01.2008     14:00:46     00:00:00     Collection of DB Performance History     OK 16.01.2008     14:00:44     16.01.2008     14

  • An album that I bought from itunes will not appear on my iphone 5

    when i synced my phone, it did not appear in my library. it shows up on my computer, but not my phone. i bought it from itunes on my computer. when i click on the "on this iphone tab" i see that the album is greyed and has a dotted circle to the left

  • Update Forms after word document is saved

    Hi, I am opening word doc using Webutil, now I want to update the forms when the user saves that document, and also pass the focus back to the application How can this be achieved? Cheers Prasad.

  • Finder crashes when opening external HDD. Disk Utility does not have a problem with it. Any solutions?

    Finder crashes when opening external HDD. Disk Utility does not have a problem with it. Any solutions? All my backed up work is in it This is the crash log Process:     Finder [316] Path:        /System/Library/CoreServices/Finder.app/Contents/MacOS/