Alter a BAPI Result Table, how to get into the display "loop" ?

Hello all,
i have a problem regarding the result rows of a RFC/BAPI Call.
There are three views, let's say 1,2,3. In View 1, i call a BAPI, and display the results in a table in View 2. I added a button in each row, which calls View 3 and displays some details concerning the selected row.
I now want to store a flag for each row, that has been displayed in this way.
In View 3 i store the key value of the displayed row in an own value node in the context.
When i go back from View 3 to View 2, i want to see that flag (in an extra column) in every row, that has been selected in this session.
So i do not know, how to alter a single row in the BAPI result table, how to get into the "loop" that is used by WD to display the table.
already tried a supply function, but i was not able to alter single rows.
Any suggestions/tips or perhaps code fragments of working supply functions ?
Thank you !

Hello,
I'm not sure whether I understood your problem correctly, but I will try to give an answer.
The easiest way I see is to copy the RFC Results to a Component Controller Context structure with an additional Flag field. You can use WDCopyService for copying.
Then on the event of selecting you set your flag as appropriate for you (e.g. if you want to use an image as flag you set the Image path) on the current element of your table. Then display View 3.
On going back View 2 should show now the new flag values...
The trick is to copy the values (as at Time structures can not be expandend with new fields) and set the Flag on the onSelect event.
Hope this helps,
Frank

Similar Messages

  • Satellite 2540xcdt: How to get into the BIOS

    Hi there,
    I've just bought one of the above computers and would like to know how to get into the bios before it boots up to the OS,
    anybody out there have any ideas?
    Many thanks
    F

    Hi
    Pres ESC button just after starting the unit and keep it down for a short time.
    Bye

  • How do you get into the BIOS on a Satellite 320 CDS.

    Hi my name is steve I was wondering how do you get into the BIOS on a satellite 320 CDS. As this is my first format on a lap top. Done plenty on desktop computers just never laptops. As some fool tried to do it before me and distroyed it. Now the only thing that happens is after the toshiba logo disappears this message comes up, INVALID SYSTEM DISK, REPLACE THE DISK AND THEN PRESS ANY KEY. It use to run Windows 98 and it worked great for how old it is. Was hoping to put XP on it but its only got a small hard drive (4099mb). So will have to put 98 back on it till I get a bigger hard drive.Only need it to teach my daughter how to respect a laptop. I mainly want to get into the BIOS for format. Any instruction on how to get into the BIOS would be great, as I'm good from there. Thank you in advance for your help.

    Hi,
    I don't know the exact method for the Satellite 320 CDS.
    But most of the Toshiba notebooks use one of the following methods.
    If you see a message while booting "Press F2 to enter setup", do it and you get into BIOS.
    Or you have to press ESC while booting, then press F1 when prompted to and you are in the BIOS.
    Bye

  • When I go to Apple TV menu and click on Settings, nothing happens. How do I get into the settings menu?

    Hi, I can't get past the setup stage with my Apple TV box. It takes forever trying to set the date and time and never seems to achieve this. When I select menu and then select Settings, nothing whatsoever happens. If I can't access the Settings menu, then clearly I can't set the network and password. Can anyone tell me how to get into the Settings menu please? Thanks

    Honestly, I have never heard of this issue. The only thing that i can recommend is obtaining a Micro-USB cord and restoring the device. That's probably your only way out of this.

  • How can I get into the Dutch App store?

    I am a Dutch Native living in the U.S. and since a few weeks the proud owner of an Ipad 2. I would like to download some Dutch apps for me and my son but I do not know how to get into the Dutch App store or how to find Dutch apps in the U.S. app store.

    http://store.apple.com/nl
    All the Apple online stores are just store.apple.com/(country-domain_suffix)
    Not sure about payment policies and such (that is, if you need a Netherlands credit card with a Netherlands billing address, or whether you can use a US credit card).

  • How to get into Z/OS

    Gurus:
    Your help is appreciated.
    I try to log into a Z/OS and get message as follows. Please help tell how to get into the system? Thanks!
    LOGON COREYZ                                       
    HCPLGA053E COREYZ not in CP directory                
    Enter one of the following commands:                 
       LOGON userid             (Example:  LOGON VMUSER1)
       DIAL userid              (Example:  DIAL VMUSER2) 
       LOGOFF

    Hi,
    have a look at this site:
    http://publib.boulder.ibm.com/infocenter/zvm/v5r3/index.jsp?topic=/com.ibm.zvm.v53.hcpw0/msgfrmt.htm
    In this redbook http://www.redbooks.ibm.com/redbooks/pdfs/sg247603.pdf you can read this
    For instance, CP issues the message shown in Example 8-1 when a user tried to
    log on to a virtual machine that is not defined in z/VM.
    Example 8-1 Error message when logging on to an undefined virtual machine
    L LASMAYOU LASMAYOU
    HCPLGA053E LASMAYOU not in CP directory
    Enter one of the following commands:
    LOGON userid (Example: LOGON VMUSER1)
    DIAL userid (Example: DIAL VMUSER2)
    MSG userid message (Example: MSG VMUSER2 GOOD MORNING)
    LOGOFF
    and this
    Example 8-2 HCPLGA053E error message help
    MSG HCPLGA053E All Help Information line 1 of 12
    (c) Copyright IBM Corporation 1990, 2007
    HCP053E (XAUTOLOG failed for userid:) <userid|value> not in CP directory
    Explanation: The user ID supplied was not found in the z/VM directory. If the
    command was an asynchronous XAUTOLOG, the message indicates which user ID did
    not get logged on.
    System Action: The command is not executed; system operation continues.
    User Response: Reissue the command with a valid user ID.
    * * End of File * * *
    hth
    Kay

  • From two given tables, how do you fetch the values from two columns using values from one column(get values from col.A if col.A is not null and get values from col.B if col.A is null)?

    From two given tables, how do you fetch the values from two columns using values from one column(get values from col.A if col.A is not null and get values from col.B if col.A is null)?

    Hi,
    Use NVL or COALESCE:
    NVL (col_a, col_b)
    Returns col_a if col_a is not NULL; otherwise, it returns col_b.
    Col_a and col_b must have similar (if not identical) datatypes; for example, if col_a is a DATE, then col_b can be another DATE or it can be a TIMESTAMP, but it can't be a VARCHAR2.
    For more about NVL and COALESCE, see the SQL Language manual: http://docs.oracle.com/cd/E11882_01/server.112/e26088/functions119.htm#sthref1310
    I hope this answers your question.
    If not, post a little sample data (CREATE TABLE and INSERT statements, relevant columns only) for all tables involved, and also post the results you want from that data.
    Explain, using specific examples, how you get those results from that data.
    Always say which version of Oracle you're using (e.g., 11.2.0.2.0).
    See the forum FAQ: https://forums.oracle.com/message/9362002

  • How to get only the first result in extract function

    do you know how to get only the first element of the function extract.
    v_result := p_response.doc.extract('//'||p_name||'/child::text()').getstringval();
    if i have 5 responses like '100','100',100','200','200' e get '100100100200200' and i want only '100'.
    thanks in advance

    Two ways .....
    1. Use Javascript E4X instead ...there are nice functions for getting children of parents.
    2. Cycle through all of the form1.nodes and look for objects that have a className of "subform". For loops are useful for this task.
    Make sense?
    Paul

  • How to get know the Sales Order IDOC#, if I know the created Sales Order#?

    Hi Experts,
    Let me know that, How to get know the IODC #, if I know the Sales Order#?
    Scenario is that, sales order(say 12345678) was created from Inbound EDI. I also Know the MATERIAL too.
    So, How to pull the associated Inbound ORDERS idoc, which is created this Sales order-12345678?
    Is it from EDID4 table? or EDIDC? or any thing else?
    reples r appreciated.
    thanq
    Edited by: SAP ABAPer on Sep 8, 2008 5:29 AM

    Hello
    This can be done much easier using fm SREL_GET_NEXT_NEIGHBORS:
    Input:
    OBJECT-OBJKEY = <number of sales order>  " with leading zeros!!!
    OBJECT-OBJTYPE = 'BUS2032'
    MAX_HOPS = '01'
    Result:
    NEIGHBORS-OBJKEY = <IDoc number with leading zeros>
    NEIGHBORS-OBJTYPE = 'IDOC'
    NEIGHBORS-ROLETYPE = 'INIDOC'.
    Regards
      Uwe

  • How to get all the values of a variable with F4 with checkboxes to select

    Dear Experts,
    After Executing a query by giving let 3 values(Out of 10 Values) to a variable.
    To give 2 more input values to the same variable(i.e.,total I wanted to give 5 inputs this time ),after refreshing the query,for that variable if I click F4, I am seeing the historical values(i.e.,3) and remaining 7 values also But with out any Check Boxes besides them to select the 2 inputs.
    In the same F4 Screen, If I click all values(an Icon at The bottom),then also Im seeing but no check Box.
    I hve tried by deleting the Delete Personalization also,but no use.
    Please tell me How to get all the values with F4 with check boxes to select ,whatever I want??
    Thanks in advance

    Take a look at the InfoObject and go to the Business Explorer tab. If the 'Query Def. Filter Value Selection' is set to 'Only Values in InfoProvider', you're only going to get the values in F4 that exist in the InfoProvider, not everything in the Master Data. This would need to be changed to the value of 'Values in Master Data Table' if you want it to show everything possible when F4 is chosen.
    Likewise, you're going to need to look at the query and go to the Advanced tab for the InfoObject. Make sure that the radio button for 'Values in Master Data Table' is selected. If not, then you should change that selection.

  • Trying to get into the app store and it asks for my password. The problem is that it is showing an Apple ID I don't use ghosted in. I can't figure out how to use my correct ID.

    Trying to get into the App Store to update some apss. It asks for my password but the problem is that it is showing ghosted an Apple ID I don't use. Can't figure out how to fix it.

    You installed a hacked app, originally from the Mac App Store. It contains the receipt for a different app, downloaded using an account that you don't control. You need to identify and remove the hacked app.
    Important: The app you need to remove is not necessarily the one named in the App Store alert. For example, if the App Store says you need to update "Twitter," the hacked app may be "Angry Birds" or something else entirely. Don't make any assumptions about which app you're looking for. To find it, you have to carry out a systematic search.
    Triple-click anywhere in the line of text below on this page to select it:
    kMDItemAppStoreHasReceipt=1
    Copy the selected text to the Clipboard by pressing the key combination command-C.
    In the Finder, press command-F to open a search window, or select
    File ▹ Find
    from the menu bar. In the search window, select
    Search: This Mac
    from the row of tokens below the toolbar. Below that is a popup menu initially showing Kind. From that menu, select  Other...
    A sheet will drop down. In that sheet, select Raw Query and click OK or press return.
    Now there will be a text box to the right of popup menu. Click in that box and paste (command-V).
    The search window will show all the App Store products you've installed. Compare those search results with the list of your purchases from the App Store. To see the complete list, you may need to unhide hidden purchases. If any apps were download from the App Store using other Apple ID accounts that you control, sign in to the store under each of those ID's and check the purchases.
    At least one of the items listed in the search window is not among your purchases in the App Store. Move each such item to the Trash. You may be prompted for your administrator password. Empty the Trash.
    Log out and log back in. Test.

  • How to get into your ipad if you forgot your password

    How to get into your ipad  mini if you forgot your password

    Locked Out, Forgot Lock or Restrictions Passcode, or Need to Restore Your Device: Several Alternative Solutions
    A
    1. iOS- Forgotten passcode or device disabled after entering wrong passcode
    2. iPhone, iPad, iPod touch: Wrong passcode results in red disabled screen
    3. Restoring iPod touch after forgotten passcode
    4. What to Do If You've Forgotten Your iPhone's Passcode
    5. iOS- Understanding passcodes
    6. iTunes 10 for Mac- Update and restore software on iPod, iPhone, or iPad
    7. iOS - Unable to update or restore
    Forgotten Restrictions Passcode Help
                iPad,iPod,iPod Touch Recovery Mode
    You will need to restore your device as New to remove a Restrictions passcode. Go through the normal process to restore your device, but when you see the options to restore as New or from a backup, be sure to choose New.
    You can restore from a backup if you have one from BEFORE you set the restrictions passcode.
    Also, see iTunes- Restoring iOS software.

  • OMB Plus : how to get all the generated messages into a text file ?

    Hello,
    I wrote an OMB TCL script and I would like to know how to get all the messages generated during the exécution into a text file.
    I tried this, but it works only for a puts command :
    set DesProjet ACT_1
    set filename [ open "c:\\temp\\INFDE_010_IMPORT_REPOSITORY_$DesProjet.log" w]
    puts "test"
    Thank you for your help

    Hello Alain, you should try the OMBLOG variable. If you set it inside OMBPlus:
    set OMBLOG c:/temp/mylog.txtthen all the OWB specific commands are logged with their output. By OWB specific I mean all those that start with OMB.
    This is more than what you see in the interface, because:
    - messages inside procedures are logged; you wouldn't see them on std.output when you call a proc
    - variables are resolved, so if you issue the command
    set my_var VERY_IMPORTANT_TABLE
    OMBDROP TABLE '$v_myvar'the log will show:
    OMBDROP TABLE 'VERY_IMPORTANT_TABLE'
    Table dropped
    and you know something is wrong... so OMBLOG is very useful to intercept all manipulations on you repository.
    If what you want instead is a dump of the screen output when you execute a script, I suggest you redirect standard output from the operating system command line. Unfortunately OMBPlus doesn't support all advanced redirection and tracing features of the TCL language.
    Hope this helps, Antonio

  • How to get all the values from the dropdown menu

    How to get all the values from the dropdown menu
    I need to be able to extract all values from the dropdown menu; I know how to get all those values as a string, but I need to be able to access each item; (the value in a dropdown menu will change dynamically)
    How do I get number of item is selection dropdown?
    How do I extract a ?name? for each value, one by one?
    How do I change a selection by referring to particular index of the item in a dropdown menu?
    Here is the Path to dropdown menu that I'm trying to access (form contains number of similar dropdowns)
    RSWApp.om.GetElementByPath "window(index=0).form(id=""aspnetForm"" | action=""advancedsearch.aspx"" | index=0).formelement[SELECT](name=""ctl00$MainContent$hardwareBrand"" | id=""ctl00_MainContent_hardwareBrand"" | index=16)", element
    Message was edited by: testtest

    The findElement method allows various attributes to be used to search. Take the following two examples for the element below:
    <Select Name=ProdType ID=testProd>
    </Select>
    I can find the element based on its name or any other attribute, I just need to specify what I am looking for. To find it by name I would do the following:
    Set x = RSWApp.om.FindElement("ProdType","SELECT","Name")
    If I want to search by id I could do the following:
    Set x = RSWApp.om.FindElement("testProd","SELECT","ID")
    Usually you will use whatever is available. Since the select element has no name or ID on the Empirix home page, I used the onChange attribute. You can use any attribute as long as you specify which one you are using (last argument in these examples)
    You can use the FindElement to grab links, text boxes, etc.
    The next example grabs from a link on a page
    Home
    Set x = RSWApp.om.FindElement("Home","A","innerText")
    I hope this helps clear it up.

  • How to get all the values in one column of a JTable

    How to get all the values in one column of a JTable as a Collection of String.
    I don;t want to write a for loop to say getValueAt(row, 1) eg for 2nd column.

    I don;t want to write a for loop to say getValueAt(row, 1) eg for 2nd column. You could always write a custom TableModel that stores the data in the format you want it. It would probably be about 50 lines of code. Or you could write a loop in 3 lines of code. I'll let you decide which approach you want to take.

Maybe you are looking for

  • Patching dynamic library in a running process

    Hello. I am planning a tool that uses a special feature of my graphics card. Therefore I plan to use sysi86() to alter the IOPL and access the graphics card using asm("outb"). I already wrote a similar tool so this part is not a problem for me. The a

  • Lightroom 5 redemption code in not working.

    I purchased lightroom 5 from best buy. When I was installing it, it kept saying that my redemption code had not been activated. So I went back to best buy, they gave me a whole new lightroom and told me that it should work. It says the same exact thi

  • How to resize a window with out a mouse

    Hello There are times that I rather not use a mouse, my question is How do I resize a window or drag it to make it larger not using a mouse but using the touch-pad and keyboard. I usually put the mouse pointer in the bottom right hand conner of the w

  • IPhoto Hangs When Opened

    When I try to open iPhoto, it says Loading Images and just hangs. I've tried the Command-Option Open thing but that doesn't work either. What should I do next?

  • Problems with opening Indesign

    I have installed AI & PS on my Mac. They work perfectly. I have also installed ID but when I try to open it this error pops up: "Adobe InDesign kan ikke startes, da du ikke har tilstrækkelige tilladelser til at få adgang til indstillingsmapperne. Sør