Action Box config to return data from external transaction

Hi All,
My problem is that we need to config the action box on the win client to call an external transaction in R/3, return some data ( room reservation line items ) and then add them as service order line items into the CIC once the user has completed the external transaction.
We've configured the action box to call a BOR method on R/3 which runs the room reservation program in R/3 and gets the results. I've configured the action box to pass data from the BDD into the R/3 system which works fine (via data flow).
I have set-up a return parameter in the data flow in the action box config but I'm not sure how to get the data out of the return parameter. I can't find any documentation telling me where the return parameters can be accessed. Are these parameters just dumped into the BDD?
I know how to create line items in the service order but I don't know where to put my code.
Please help
Richard

Hello Richard,
do you know SAP Note 322517?
Regards
Gregor

Similar Messages

  • Error while selecting date from external table

    Hello all,
    I am getting the follwing error while selecting data from external table. Any idea why?
    SQL> CREATE TABLE SE2_EXT (SE_REF_NO VARCHAR2(255),
      2        SE_CUST_ID NUMBER(38),
      3        SE_TRAN_AMT_LCY FLOAT(126),
      4        SE_REVERSAL_MARKER VARCHAR2(255))
      5  ORGANIZATION EXTERNAL (
      6    TYPE ORACLE_LOADER
      7    DEFAULT DIRECTORY ext_tables
      8    ACCESS PARAMETERS (
      9      RECORDS DELIMITED BY NEWLINE
    10      FIELDS TERMINATED BY ','
    11      MISSING FIELD VALUES ARE NULL
    12      (
    13        country_code      CHAR(5),
    14        country_name      CHAR(50),
    15        country_language  CHAR(50)
    16      )
    17    )
    18    LOCATION ('SE2.csv')
    19  )
    20  PARALLEL 5
    21  REJECT LIMIT UNLIMITED;
    Table created.
    SQL> select * from se2_ext;
    SQL> select count(*) from se2_ext;
    select count(*) from se2_ext
    ERROR at line 1:
    ORA-29913: error in executing ODCIEXTTABLEOPEN callout
    ORA-29400: data cartridge error
    KUP-04043: table column not found in external source: SE_REF_NO
    ORA-06512: at "SYS.ORACLE_LOADER", line 19

    It would appear that you external table definition and the external data file data do not match up. Post a few input records so someone can duplicate the problem and determine the fix.
    HTH -- Mark D Powell --

  • After a Lion clean install, how do I retrieve my data from external back-up? Following Apple advice for use of Migration Assistant did not work creating similar issues leading to clean install.

    After a Lion clean install, how do I retrieve my data from external hard drive?
    Following Apple advice I used Migration Assistant which crashed new system twice which is why I had to clean install Lion in the first place.
    Is there a sure way of doing it?
    I have only a few programs that I will have to install myself and that should not be a problem.
    I just want my data, music and photos back where I can use them.

    Time machine backups. I went to migration assistant a few hours ago and limited my selection to "users", no need for applications, settings and other files.  Stuff started moving over at a fast pace but has now seemed to stall.
    I will let it run overnight as there are lots of songs and photos as well as a few movies.
    If that does not work, then I will go into TM and try restore. I have restored some things in the past such a mail files and it has worked well. 
    The Apple fellow at the store told me to go right into TM, he may have had a point. I'll get it eventually.

  • Return data from all columns apart from a certain data type.

    Bit stuck on something, hope somebody here can help:
    I want to do a 'select * from ' a table, to return all columns except ones of a certain datatype. ie. I want to return data from all columns, excluding columns of datatype 'SDO_GEOMETRY'.
    This gives me the list of columns:
    SELECT COLUMN_NAME
    FROM   USER_TAB_COLUMNS
    WHERE TABLE_NAME = 'ORDER_ITEM'
    AND   DATA_TYPE <> 'SDO_GEOMETRY'; But I can't seem to take it any further...
    Now if I knew the columns beforehand, then of course I could just list them, excluding the geometry column, but this is to be used for a plug-in for MS Word, where a user can pick database columns to dynamically fill a report from - but I don't want the geometry columns as these can't be handled in this way.

    Hi Reggie,
    > connects to the database and presents a list of tables
    My guess is that this macro is written so it selects from all_tab_cols.
    Change that plugin and let it select from a view like the one above. That way, the users won't be able to see/pick anything that you are not able/willing to present for them.
    Edit:
    You could even tease your users, and let them see the columns, but not being able to pick them.
    create or replace view available_tab_columns
    as
       select decode(pickable.data_type, null, 0, 1) pickable
             ,atc.* -- narrow down yourself
         from all_tab_cols atc  -- or maybe user_tab_cols
             ,(select 'CHAR' data_type from dual union all
               select 'DATE' from dual union all
            select 'NUMBER' from dual
               -- complete positive list, yourself
              ) pickable
        where atc.data_type = pickable.data_type(+);Regards
    Peter
    Message was edited by:
    Peter Gjelstrup

  • The ways to return data from a stored procedure.

    Hi, I know there are three ways to pass out a value from a Microsoft SQL stored procedure, but I have no clear idea what Oracle SP can do, I know Oracle doesn't support multi-recordset(v8), can not return a recordset by a inner select query, but I do know there is a cursor object, which doesn't like its counterpart in Microsoft SQL server, is a choice under most situation. Here I wonder anyone who is good at Oracle can give a list of all ways to return data from a SP, including example is more better, thanks.

    Here is a way to get return a record from a function and a procedure. You need to be familiar with Oracle packages as well as stored procedures and functions:
    CREATE OR REPLACE PACKAGE EmpPkg AS
    cursor cEmp(pEmpno in number) is
    select empno, ename, job, hiredate, sal
    from emp
    where empno = pEmpno;
    FUNCTION GetEmployee(pnEmpNo in number) RETURN cEmp%rowtype;
    PROCEDURE GetEmployee(pnEmpNo in number, prEmp out cEmp%rowtype);
    END;
    CREATE OR REPLACE PACKAGE BODY EmpPkg AS
    FUNCTION GetEmployee(pnEmpNo in number) RETURN cEmp%rowtype IS
    rEmp cEmp%rowtype;
    BEGIN
    open cEmp(pnEmpNo);
    fetch cEmp into rEmp;
    close cEmp;
    return rEmp;
    END;
    PROCEDURE GetEmployee(pnEmpNo in number, prEmp out cEmp%rowtype) IS
    BEGIN
    open cEmp(pnEmpNo);
    fetch cEmp into prEmp;
    close cEmp;
    END;
    END;
    Here's how you use the package:
    DECLARE
    rEmp EmpPkg.cEmp%rowtype;
    BEGIN
    rEmp := EmpPkg.GetEmployee(7782);
    dbms_output.put_line(rEmp.ename);
    EmpPkg.GetEmployee(7902, rEmp);
    dbms_output.put_line(rEmp.ename);
    END;
    Note that you can return any Oracle data type from a function. Likewise, you can specify any Oracle data type as an out parameter in a procedure. Also, you can make a parameter both an in and an out datatype like this:
    PROCEDURE GetEmployee(pnEmpNo in out number);
    I hope this puts you in the right direction.
    null

  • Copy Data from external hard drive to  tc via usb

    how do iCopy Data from external hard drive to tc via usb

    you can't - unless you're willing to void your warranty by removing the TC's HD from the device, put it in an external enclosure, and connect that to your computer.

  • Recovering data from external hard drive

    I backed up music,pictures and personal documents
    It said backup was successful, I they to retrieve some documents and none of the those files were in that restored folder

    Very similar with your experience 
    Last time when I was in Rio, I took part in the famous Carnival there with my boyfriend and we took a lot of interesting photos there. About one week ago, one of my friends asked me to show her the photos. However, it turned out to be inaccessible and the PC can not read the data on the drive. And the PC suggested me to format the external hard drive for reusing it again.
    people often lose their data from External hard drive, a handy external hard drive data recovery software will be highly recommended to you, ---- EaseUS Data Recovery Wizard
    Launch EaseUS Data Recovery Wizard, Then click next button
    Select the disk where you lost your data and click Scan button, the software will quickly scan the selected disk to find your target files.
    Watch the video below, step by step, you can recover your data.
     https://youtu.be/ZA4XzL1mD1s

  • Install data from external hard drive?

    Hi, we have our old macbook data saved on external hard drive (old laptop had water damage but able to retrieve data). I now have new macbook, how do I install data from external hard drive to new macbook? Is it super easy? I didn't want to set up new laptop until I could understand how to install all our old data. Thanks

    Do you have the appropriate cable to connect the external drive to to new Macbook?
    If you do, the rest is easy. Connect the drive and start up the new Mac. The first steps in the setup will be to enter information about yourself, etc. etc. As you proceed you will be asked if you want to bring in data from another place. Just follow the directions, and the Mac Setup Assistant will do everything for you.
    The critical part is making sure the external is corectly connected to the new computer.

  • Hard drive replaced on imac how to restore data from external hard drive

    Hard drive crashed, replaced by authorized dealer.  Need to transfer all data from external hard drive to repaired computer.

    http://web.me.com/pondini/Time_Machine/14.html
    See especially C.

  • Recover data from external hard drive that was Windows format and connected on a Macbook Pro. Did I lose everything? What happened?

    Hi there this is my first question here!
    I connected my external hard drive originally formatted on PC on my new Macbook. The first time I connected it I could see all my files but today I connected it and after I couldn't see any file nor even on my pc appears as NO NAME with a different name and nothing on it. I think was reformatted, any help to recover all my data?
    It's really important stuff for me

    If the Apple Store couldn't get files off of the drive, it is unlikely that you will be able to. If you have backups, those would be the best way to go. You could also try booting up the computer and holding down T to boot into Target Disk Mode. Plug the broken computer into another one with FireWire and see if it works to recover data from external hard drive. If you can see it, try booting up the broken computer while holding down Option. Choose Recovery HD from the menu, then choose to Reinstall OS X.
    It is unlikely that this will work, because I'm pretty sure that the Apple Store would have tried this. You could try using expensive software to get files off the drive, but it would be risky and the results might not be any good.
    https://discussions.apple.com/docs/DOC-4273

  • How do I retrieve data from external hard drive

    How do I retrieve data from external hard drive

    What problem are you encountering?
    Normally you would connect it to your Mac and just drag and drop.

  • Hi,disc wiped ,OSX10.9 back on ,how do I restore my data from external hard drive ?Any help welcome .

    Hi,disc wiped ,OSX10.9 back on ,how do I restore my data from external hard drive ?Any help welcome .

    There's Setup Assistant and Migration Assistant. The cleanest way to do it is Setup Assistant, but you only get that option once when you fire up a fresh install of OSX. If you're past that, you could reinstall OSX by booting with Command-R, or you could use Migration Assistant.
    Setup/Migration Assistant instructions:
    http://support.apple.com/kb/HT5872

  • Transferred backed-up data from external hard disk to new hard drive on my MacBook Pro which seemed to be successful. I now find that some (or maybe all) old emails have been resent. Can anyone tell me what has happened?

    Transferred backed-up data from external hard disk to new hard drive on my MacBook Pro which seemed to be successful. I now find that some (or maybe all) old emails have been resent. Can anyone tell me what has happened?

    Greetings,
    I've never seen this issue, and I handle many iPads, of all versions. WiFi issues are generally local to the WiFi router - they are not all of the same quality, range, immunity to interference, etc. You have distance, building construction, and the biggie - interference.
    At home, I use Apple routers, and have no issues with any of my WiFi enabled devices, computers, mobile devices, etc - even the lowly PeeCees. I have locations where I have Juniper Networks, as well as Aruba, and a few Netgears - all of them work as they should.
    The cheaper routers, Linksys, D-Link, Seimens home units, and many other no name devices have caused issues of various kinds, and even connectivity.
    I have no idea what Starbucks uses, but I always have a good connection, and I go there nearly every morning and get some work done, as well as play.
    You could try changing channels, 2.4 to 5 Gigs, changing locations of the router. I have had to do all of these at one time or another over the many years that I have been a Network Engineer.
    Good Luck - Cheers,
    M.

  • Return data from spark list itemrenderer

    Does anybody no how to return data from the itemrender for a spark list. say i had a checkbx in my itemrenderer how can I get that info back to my main component if its selected or not. I looked at datagrid and itemeditor but I really rather use a spark list. Thanks

    thanks I also found another way to doing it. A click handler on my list when that fires I can check if checkbx has been selected by doing event.target.document.mycheckBx.selected this will not work if using currentTarget cause it take the info from the itemRenderer. Now I understand the difference between currentTarget and target.
    not sure if this is a better way to access the data I think I might still just dispatch a event and do it your way.
    Its weird that mx:list has a editItemRenderer  and s:list does not
    thanks again TK

  • Getting data from external system

    Hi,
    What other methods that are used to get data from external system to BW? I know that DB Connect is one of the methods. Also, falt files is one of them.
    Thanks,
    RT

    Hi,
    Is there a BAPI that I can look at and start programming to get data from Informatica?
    Right now we are using CSV files. Would anyone have sample code for the doing this using BAPI? Appreciate any.
    Is there any How to paper to do this?
    Thanks,
    RT
    Message was edited by: Rob  Thomas
    Message was edited by: Rob  Thomas

Maybe you are looking for

  • Cant figure out how to add text fields etc. in dreamweaver, layout made in photoshop

    hi all ok...  first of all i want to say im sorry for posting such a noob question,  but im new to this, so please take a few minutes to help me out so i have kind of an annoying problem. ive made an webpage layoout in photoshop. ive made "boxes" i w

  • Thunderbolt 2 external displays support under bootcamp

    The faq says win7 and bootcamp would support just 1 external thunderbolt display... I am trying to build a 3 monitors rig to play iriacing, and i really hoped that my 27" imac would do the job by just buying two additional monitors but it seems not t

  • Warning on close when downloading

    How can I get a warning if I close Firefox 4 whilst a download is it progress - I thought I had this in FF3.6.

  • Order Numbers of VARCHAR2 Type

    Hey, what I need to do is order columns filled with VARCHAR2 Datatypes by number. The problem is, the numbers are index values and are such that they cannot be converted into numbers. The numbers that need to be sorted are numbers like '10.8.1.9'. Is

  • Httpservlet   and javax sourcepath

    ok what is the story with setting class paths I am using Jbuilder to write servlets but it keeps saying that httpSaervlet is not found in the class. Even when I open httpServlet beside it.I was just seeting the source path to where the javax file was