Error in using one interface in other

Hello,
I have two interfaces , interface1 & interface 2 . Interface 1 is a temp which is used by interface2 as a source.
I'm trying to set the property "Use Temporary interface as derived table" but the check box is disabled and i cannot modify it. , Interface 1 has target temp table.
Any advise ?
In technology for oracle support derived table is already selected.
thx

Hi Matt
I'm using the same FM but it's not working. Can you please share what data you are passing in the FM.
After debugging I found that my confirmation is getting created but it's not getting saved.
Please enlighten me.
Thanks
Ankit

Similar Messages

  • Can i use one interface to load data into 2 different tables

    Hi Folks,
    Can i use one interface to load data into 2 different tables(same schema or different schemas) from one source table with same structure ?
    Please give me advice
    Thanks
    Raj
    Edited by: user11410176 on Oct 21, 2009 9:55 AM

    Hi Lucky,
    Thanks for your reply,
    What iam trying is ...Iam trying to load the data from legacy tables(3) into oracle staging tables.But i need to load the same source data into two staging tables(these staging tables are in two different schemas)
    can i load this source data into two staging tables by using single standard interface(some business logic is there)
    If i can then give me some suggestion how to do that
    Thanks in advance
    Raj

  • How do I set upmy Imac to allow using both my computer speakers and a Bose SoundLink system as outputs at the same time.  I can use one or the other, but not both.

    how do I set up my Imac to allow using both my computer speakers and a Bose SoundLink system as outputs at the same time.  I can use one or the other, but not both.  From systems Preferences I must select one or the other.  I want both to work all the time.

    Hi,
    I would recommend you to use 0FI_AP_4 rather using both, particularly for many reasons -
    1. DS: 0FI_AP_4  replaces DataSource 0FI_AP_3 and still uses the same extraction structure. For more details refer to the OSS note 410797.
    2. You can run the 0FI_AP_4 independent of any other FI datasources like 0FI_AR_4 and 0FI_GL_4 or even 0FI_GL_14. For more details refer to the OSS note: 551044.
    3. Map the 0FI_AP_4 to DSO: 0FIAP_O03 (or create a Z one as per your requirement).
    4. Load the same to a InfoCube (0FIAP_C03).
    Hope this helps.
    Thanks.
    Nazeer

  • Tab Form LOV uses one of the other columns in that report.

    Hi All.
    i created a Tabular Form using the Wizard.
    i want to change one of the columns in the report to be an LOV.
    the LOV has a WHERE that uses one of the other columns in that report.
    i tried to do something like that:
    SELECT <display_value>, <return_value>
    FROM <some_table>
    WHERE <my_column> = #ANOTHER_COLUMN_FROM_REPORT#
    it doesnt work...
    anyone know how to do it?
    thanks in advance
    Alberto

    See
    http://htmldb.oracle.com/pls/otn/f?p=18326:54:::::P54_ID:1282
    Also see the discussion at
    http://forums.oracle.com/forums/thread.jspa?messageID=1222153

  • I have  my photoshop cc installed on my Mac and my windows laptop is it true that I can only use one or the other now? and if this is the case if my mac were turned off should my laptop now work? I am on the photoshop photography program

    i have  my photoshop cc installed on my Mac and my windows laptop is it true that I can only use one or the other now? and if this is the case if my mac were turned off should my laptop now work? I am on the photoshop photography program its just that i have never noticed tho before i have my mac turned on and the laptop PS works fine on the Mac but not on the Laptop

    Hello,
    see >>> http://helpx.adobe.com/creative-cloud/help/install-apps.html  here >>> How many computers can I install on
    I quote: You may install software on up to two computers. These two computers can be Windows, Mac OS, or one each.
    If you install on a third computer, it will request you to de-activate on the other two computers. You can then reactivate one of the previous two computers, and use Creative Cloud apps on it.
    Good luck!
    Hans-Günter

  • Error in using one's collection values in other collection

    hi,
    I want to fetch cursor s values based upon cursor r part_no column to populate childbkp table.but i m getting eror .plz help me to resolve.in code it might b many mistakes also.
    declare
              TYPE PartNum IS TABLE OF parent.part_num%TYPE
              INDEX BY BINARY_INTEGER;
              pnum_t PartNum;
              TYPE PartName IS TABLE OF parent.part_name%TYPE
              INDEX BY BINARY_INTEGER;
              pnam_t PartName;
              CURSOR r IS
                   SELECT part_num, part_name
                   FROM parent;
              type r_part_num_arry IS TABLE OF r%rowtype;
              r_part_num r_part_num_arry;
              r_pnum_t parent.PART_NO%type;
              CURSOR s IS
                   SELECT part_num, part_name
                   FROM parent p where rownum=1 and p.PART_NO = r_pnum_t ;          
    BEGIN
    OPEN r;
    LOOP
    FETCH r BULK COLLECT INTO pnum_t, pnam_t LIMIT 1000;
         FORALL i IN pnum_t.FIRST .. pnum_t.LAST
         INSERT INTO child
         (part_num, part_name)
         VALUES
         (pnum_t(i), pnam_t(i));
         COMMIT;
                   begin
                             OPEN s;
                             LOOP
                                  r_pnum_t := pnum_t(i);
                             FETCH s BULK COLLECT INTO pnum_t, pnam_t LIMIT 1000;
                                  FORALL i IN pnum_t.FIRST .. pnum_t.LAST
                                  INSERT INTO child_bkp
                                  (part_num, part_name)
                                  VALUES
                                  (pnum_t(i), pnam_t(i));
                                  COMMIT;
                             EXIT WHEN s%NOTFOUND;
                             END LOOP;
                             COMMIT;
                             CLOSE s;     
                   end;
    EXIT WHEN r%NOTFOUND;
    END LOOP;
    COMMIT;
    CLOSE r;
    END ;

    i need to run 1st qry based upoin below senerio.i need to do this work in collection case also.how to do it by collection.
    declare
         CURSOR r IS
              SELECT part_num, part_name
              FROM parent;
              r_pnum_t parent.PART_Num%type;
              pnum_t      parent.PART_Num%type;
              pnam_t      parent.PART_Name%type;
              CURSOR s IS
              SELECT part_num, part_name
              FROM parent p where rownum=1 and p.PART_Num = r_pnum_t ;
    BEGIN
         OPEN r;
         LOOP
              FETCH r INTO pnum_t, pnam_t ;
              INSERT INTO child(part_num, part_name)
              VALUES(pnum_t, pnam_t);
                                  begin
                                       OPEN s;
                                       LOOP
                                            r_pnum_t := pnum_t ;
                                            FETCH s INTO pnum_t, pnam_t ;
                                            INSERT INTO child_bkp(part_num, part_name)
                                                 VALUES(pnum_t, pnam_t);
                                            COMMIT;
                                       EXIT WHEN s%NOTFOUND;
                                       END LOOP;
                                  COMMIT;
                                  CLOSE s;
                                  end;          
         EXIT WHEN r%NOTFOUND;
         END LOOP;
         COMMIT;
         CLOSE r;
         END

  • Error in using BAPI_CONFEC_CREATE : Interface data contains Errors

    Hi,
    I am using this BAPI BAPI_CONFEC_CREATE to create confirmations locally in SRM for a PO. I am following Documentation available for this BAPI.  But when I excuted with below data getting error " INTERFACE DATA CONTAINS ERRORS"
    I am passing these data:
    Hedaer: Ref_doc_no - PO Number
                  Description:
                 Process Type: "CONF"
    Header_cust:  parent_guid : PO GUID
    Item: Parent: PO Header GUID
            PO Number: PO number
            PO GUID: PO HEDAER GUD
            PO ITEM Number: PO item Number
           PO_ITEM_GUID: po item guid
    Account:
                   Parent_GUID : PO Item GUID
                   G/L acct : Po G/l acct
                   cost center : PO cost center
    what are the data sholud be passed to this BAPI?
    Am I missing any input data to this BAPI? Please let me know.
    Am I using correct Function Module to create a confirmation for a PO in Stand alone scenario?
    Thanks.
    Shears
    Edited by: Shears80 on Sep 10, 2010 1:39 AM

    Hi Matt
    I'm using the same FM but it's not working. Can you please share what data you are passing in the FM.
    After debugging I found that my confirmation is getting created but it's not getting saved.
    Please enlighten me.
    Thanks
    Ankit

  • Automate flat IDOC to XML IDOC using one interface

    Hello all,
    We are currently going through a migration process where XI will be replacing a legacy system.  As part of our testing procedure, we are using historical data pairings from the legacy system and using an automated tool to compare if the interfaces we develop in XI match.  The catch is we need the data that we are comparing in XML format for the automated tool to be able to do the comparison, and unfortunately the legacy data is a flat format.  So now I would like to automate a way to convert this data to XML format.
    Specifically for IDOCs, I would like to have an interface which picks up the flat files, transforms them to XML, and then drops them back into another file directory in the XML format.  It would need to be able to pick up any kind of IDOC (given that XI has the metadata already imported), recognize what message type it is, then do the conversion.
    I have been reading on SDN and found that there is a standard tool to do the conversion, but it appears it can only handle one kind of IDOC at a time, and it appears it only picks up one specifically named file at a time.
    Has anybody tried to implement a scenario like this?  Any help is appreciated (A walkthrough would be the best!).
    Thanks in advance,
    Mike

    Mike,
    What version of PI will you be using? PI 7.11 can now auto-convert Flat File IDocs to XML IDoc and vice versa.
    Here is the documentation:
    http://help.sap.com/saphelp_nwpi711/helpdata/en/b5/bd93642dd3410f90ebea702399fac4/frameset.htm (flat to XML)
    http://help.sap.com/saphelp_nwpi711/helpdata/en/74/a45bc07e2043fb9b63295229178903/frameset.htm (XML to flat)
    I have not tried this personally, but seems like you might be able to use a "File to File" scenario with no mapping, and use the "IDOCFlatToXmlConvertor" Module in your File Adapter Comms Channel and it may just work, giving you files that are the IDoc XML version of the flat file it is reading. It looks like it does an RFC call to the back-end SAP system where the IDocs are originally from (or could be any system as long as you know the IDocs in there are identical), and reads the IDoc metadata (which has always included flat file field offsets for each IDoc Segment Field), and applies that either to convert from flat file IDoc to XML IDoc, or XML IDoc to flat file IDoc.
    It does mention that there is a limitation that there can only be one IDoc in the source flat file - could be a problem if you have many in one file, which is pretty typical.
    Regards,
    Brendan

  • Using one class into other class??

    Hey,I need to pass one class's object to another class's constructor.problem is which class I should compile first because both classes are using each other so when i compile any of these file it gives error in refering other as other file is not compiled.I am using as follows:
    package p;
    class test1
    //statements
    test2(this);
    Here is my second class:
    package p;
    class test2
    test2(test1 t)
    //some statements

    surely you can put them on one page/file and compile?? (i m just givin a suggestion, i am by no means an expert! :) )

  • I have elements 10 and lightroom 3. Is there an advantage to using one rather the other to organize?

    Both lightroom 3 and photoshop elements 10 have well developed organizing schemes and associated interfaces. I am new to both programs and am not sure whether to go with one or both and if one - which one?.  I am tempted to use lightroom 3's tools and ignore elements' scheme. What, if anything, would I be losing. Is this topic discussed anywhere?

    In my opinion, there is never a good reason to use two organizing programs simultaneously, as this just causes extra work, confusion and disorganization.
    So, if you have to pick one, I would strongly recommend using Lightroom as Organizer and Editor, and PSE as auxiliary editor. Lightroom's Library Module provides a much nicer workflow than the PSE Editor, has a nicer interface and (very importantly) has dramatically fewer bugs.
    What would you be losing by select Lightroom3 over PSE10? You would be losing the major bugs in the PSE Organizer. However, you would also lose the ability to do face tagging in PSE (but even if you wanted to have that feature, in my opinion its just not worth it because of the advantages of LR in workflow) and you would be losing PSE's ability to make "creations", like photobooks. And that's about it, as far as I know.

  • Error while using the interface IWDClientUser

    Hi All,
    Im getting the error while capturing the ESS user by the interface IWDClientUser.
    *ERROR Details:-* This Compilation unit indirectly referencesthe missing type com.sap.security.api.IUser (typically some required class file is referring a type outside the class path)
    Ihave imported following namespaces also
    com.sap.tc.webdynpro.services.sal.um.api.IWDClientUser;
    com.sap.tc.webdynpro.services.sal.um.api.WDClientUser;
    Regards,
    Sumankumar

    Hi,
    To resolve this
    NW04s
    In WebDynpro Explorer Window, select your project->DC Metadata->DCDefinition->Right click on Used DCs and selecte add used DCs
    select SAP-J2E, choose the com.sap.security.api.sda and finish.
    Ce
    Right Click Dc->Dc Properties->ENGINEAPI->choose com.sap.security.api.sda
    If needed do an Organize Import.
    Regards
    Ayyapparaj

  • Getting error while Using BAPI Interface in VB

    Hi,
    I m getting error message while creating object of SAP.BAPI.1
    Error message is "out of memory : run time error 7".
    do I need to install any patch to my local PC? If yes then from where could i get that patch.
    Plz help me out.
    Thanks & Regards,
    Sagar

    Hi Sagar,
    Please varify the version of SAP client you use. I have noticed that this error with SAP Frontend Package 6.20, and was able to over come the follwing issue by upgrading to the SAP Frontend Package 6.40.
    Regards,
    Randima

  • FF4.0 causes my Incredimail client to NOT work. How can I fix this? I luv 4.0 but I can only use one or the other. I need to keep the e-mail client operational, so I reverted back to 3.6.15 for now.

    Ok finally I found a place where I can actually submit a bug report and ask for help. Honestly, this web site is the pitz for user friendliness! Firefox 4.0 is causing my Incredimail client program to NOT work. As soon as I degraded back to 3.6.15 then Incredimail worked just fine again, but will not work if I have installed 4.0. That seems to be the only problem I have found.

    I'm relieved to know that I am not the only one who has experienced this problem. But why is Mozilla/Firefox developers or troubleshooters not posting any comments on this like perhaps . . . "We are aware of this problem and are working on a fix."
    I have not received any communication from them on this forum or on twitter or anywhere else. Anyway I really love FF4.0 and really would like to use both programs together, As it is I have had to go back to 3.6.16 in order to use Incredimail. Firefox/Mozilla, please respond in some form to this request.

  • What to do if I have 2 apple ID's.How to use one and the other just as a email?

    I have 2 apple ID's, an old moble me email and a new Apple ID using my Gmail How to use the new @gmail Apple ID as my primary and the @me.com just as an email?

    For the primary account sign in at settings > iCloud and for the secondary account sign in at settings > mail, contacts, calendars.

  • Forcing a Mac with 2 connected ethernet ports to use one over the other

    I have a G5 Quad and a Mac Pro that are connected to a large network (including internet) on ETHERNET 1, and they are also directly connected over ETHERNET 2 (using Jumbo Frames). I need to ensure the G5 uses ETHERNET 2, and not ETHERNET 1, to connect to the Mac Pro. They must use both connections. How do I do this?
    Tim

    I've solved the problem. When connecting to the other computer, don't map the drive from the Finder sidebar. Instead, go to the Finder, hit Cmd+K, or select Go > Connect to Server..., then type the IP address of the other computer's ethernet port that you are directly connected to. Then write an Applescript to automatically mount the drive on startup.
    Example Applescript:
    +mount volume "afp://192.168.1.1/"+
    Compile and Save the script as an Application with none of the Options checked. Place the script on the remote computer (the G5 Quad in my situation) in a suitable location like the Documents folder for your Username.
    Next, on the remote computer, open System Preferences > Accounts, and select the correct account. Select the Login Items tab, and click the + to add your Applescript application to the list. After adding the Applescript, check the Hide checkbox so the script runs in the background. Close System Preferences and you're done. Reboot the computer to verify it connects, and voila!
    Tim

Maybe you are looking for

  • Down payment to recipient 28000437 0 area 01 amount 575.50 not cleared in

    IN CJ88 Down payment to recipient 28000437 0 area 01 amount          575.50 not cleared Message no. AW605 Diagnosis All downpayments were not cleared for the asset under construction for the receiver 28000437 0 in area 01. An amount of          575.5

  • Where are Optimizer settings stored?

    I need to deploy PDF Optimizer settings throughout my organization, like I did with joboptions. So far I have been unsuccessful in searching for a file with the name into which I saved my optimizer settings. Where are the optimizer settings stored? 

  • Haw much time needed to transfer data from one mac to another throughout FireWire

    It has been 15 hours since I started transferring data from my old mac to my new one and I cant get throughout the process any tip about the estimated time the amount of data in GB is around 200

  • DataGrid itemrenderer with switch statement

    Hi, I have datagrid control with this columns <mx:DataGrid id="dgvParagraphs" >     <mx:columns>         <mx:DataGridColumn dataField="type" headerText="Type"/>         <mx:DataGridColumn dataField="title" headerText="Title"/>         <mx:DataGridCol

  • Find Sum of grouped events by date

    I'm using Report Builder 10.50.2500.0 I've been trying to do this for awhile and have run out of ideas to try.  I think it's a simple solution but I can't figure it out. I have a database that is used for events. A booking can have several different