MI: the data objects in the SCV dont have the active DOE triggered adapter

We try to use SDOE_LOAD on MI7.1 to do the initial load.
However, we get the error:
"the data objects in the SCV dont have the active DOE triggered adapter."
We cannot find a fix anywhere.
Please help. thanks a lot!

Hi,
Assuming that you are using 7.1 in non-backward compatibility mode.
1. The client post the update/delete/insert request to DOE in bound queue.
2. The DoE post these messages to the BE.
3. Meanwhile, after posting all the message client starts reading outbound messages in DoE till the outbound queue is empty.
4. WHILE the client is reading outbound messages in 3. above the BE has validated the update/delete/insert request and posted a confirmation/rejection messages to DoE outbound queue the message will flow down to the client in the same sync cycle.
However, if it's posted to DoE after the client has finishing syncing with DoE the message will flow down to the client in the next sync.
So you see it cannot be guaranteed that the ocnfirmation/rehection message will flow down to the client in the same sync cycle.It may or may not happen.
I hope this clarifies.
Best Regards,
Amit

Similar Messages

  • HT1349 Does apple replace batteries in the ipod touch even if you dont have the warrenty?

    I was just wondering if apple does battery replacement for ipod touches even if you dont have the warrent.

    "Warranty". Yes, for a fee. You are posting in the iPhone forum.

  • How do I insert the date to be continuous but not have the current time inserted using the NOW Formula?

    I am using the NOW formula to have the current dated inserted when ever I open my sheet, but I can not figure out how to keep the current time from also being added.

    Thank you, but I tried that.  This cell formating seems to only work when the cell contains only the formula.  I have text included in my formula, so the formating does not allow for it. It reverts to the default and as you see it wont even let you change the date format.

  • Can i buy online the mac snow leopard if i dont have the app world?

    I want to updgarde my computer to the mac snow leopard 10.6  software in order to have the mac app world. The only problem is that i cant seem to find the online version of the snow leopard!

    Snow Leopard has to be purchased on a DVD...there is no down load for it....
    store.apple.com/us/product/MC573Z/A?fnode=MTY1NDAzOA&mco=MTc1ODgwMjE

  • I had to change my apple ID due to someone else using it and changing the password, so now i can't sign out of icloud as the email is wrong and i dont have the password to turn off find my iphone. Help!

    Basically, someone was hacking my apple account for a while and kept changing the password so i kept resetting it, now i've had to change my email as icloud still wouldn't accept my new passwords - even after being updated. Now i can't sign out of icloud due to it being the wrong email and an unknown previous password, as i can't turn off find my phone.ipad. How do i solve this without losing everything as i can't just delete the account and the usb ports on my laptop have gone so i can't back up to my laptop. I'm running completely on icloud but desperately need it to update so i don't lose all my uni work as well off my ipad.

    If you mean that Find My Phone is asking for a password to a different Apple ID to your current Apple ID and that ID is a previous version of your current ID, not an entirely different one.
    This feature has been introduced to make stolen phones useless to those that have stolen them.
    However it can also arise when the user has changed their Apple ID details with Apple and not made the same changes to their iCloud account/Find My Phone on their device before upgrading to iOS 7, or if you restore from a previous back up made before you changed your details and some other circumstances.
    The only solution is to change your Apple ID back to its previous state with Apple at My Apple ID using your current password, you don’t need access to this address if it’s previously been used with your Apple ID, once you have saved these details enter the password as requested on your device and then turn off "find my phone" and delete the account from your device. It may take a short while to remove the account.
    You should then change your Apple ID back to its current state, save it once again and then log back in using your current Apple ID. Finally, turn "find my phone" back on once again.
    This article provides more information about Activation Lock.
    This is answer is provided from my own database of boilerplate responses and the content was last reviewed and tested on: 2014/05/23

  • I have dont have the app store application...how do i get it?

    I don not have the app store on my dock. looking to upgrade to moutain lion from the snowleopard but cannot because i dont have the app store. How do i go about this?

    I said:
    If you have 10.6, but something lower than 10.6.6, you can run a simple Software Update.
    But since you DON'T have 10.6, you will need to call Apple and order it. Good luck.
    I should also add, you might consider upgrading to something even later (but you will still need 10.6 first), since not all App Store applications support 10.6, but may support 10.7 or 10.8.

  • How do I reference the data object in a DataGrid to show an image correctly in Acrobat?

    I'm creating an inferface for an Acrobat application  and I'm having a issue with displaying an image in a grid.  When I hard code the source="statusNONE.png" it works as intended (with an image, not the image associated with each grid item), however, when I try to use the source="{data.@icon}" to reference the dataProvider (XMLListCollection) I get nothing.  Not a broken image or anything.  I think I may just not be referencing the XMLListCollection correctly, otherwise I don't know why it would work with hard coding vs. fetching the string from the XML.
    //Application Header (Flex 4.5)
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
                                     xmlns:s="library://ns.adobe.com/flex/spark"
                                     xmlns:mx="library://ns.adobe.com/flex/mx"
                                     width="100%" height="100%" creationComplete="eaton_creationCompleteHandler(event)"
                                     currentState="Review">
    //Sample of XML that gets used as basis for XMLListCollection
    <Annots>
         <Annot name='TEST' index='14' feedback='' canConstruct='0' icon='statusNONE.png'/>
    </Annots>
    //creation of the XMLListCollection from String
    [Bindable] protected var fullXML:XML;
    [Bindable] protected var fullXMLCol:XMLListCollection;
    protected function loadXML(xmlString:String):void
          fullXML = new XML(xmlString);
         var fullXMLList:XMLList = fullXML.children();
          fullXMLCol = new XMLListCollection(fullXMLList);
    //DataGrid
    <s:DataGrid left="0" top="0" bottom="0" width="142" dataProvider="{fullXMLCol}"
                                            requestedRowCount="4" rowHeight="30"
                                            top.Confirm="87">
                        <s:columns>
                                  <s:ArrayList>
                                            <s:GridColumn dataField="@name" headerText="Annotations"></s:GridColumn>
                                            <s:GridColumn headerText="status" width="30" >
                                                      <s:itemRenderer>
                                                                <fx:Component>
                                                                          <s:GridItemRenderer>
                                                                                    <s:Image width="30" height="30" source="{data.@icon}"/> //THIS IS THE PART THAT SEEMS TO BE GIVNG ME TROUBLE!
                                                                          </s:GridItemRenderer>
                                                                </fx:Component>
                                                      </s:itemRenderer>
                                            </s:GridColumn>
                                  </s:ArrayList>
                        </s:columns>
                        <s:typicalItem>
                                  <fx:Object dataField1="Sample Data" dataField2="Sample Data" dataField3="Sample Data"></fx:Object>
                        </s:typicalItem>
              </s:DataGrid>
    Additional information.  I'm using the resources tab for the flash embedding in Acrobat for my images. This works when I am hard coding the file name string works for the source without having to add a full path, the images are not technically bundled into the swf.   I just don't understand why using the data object to get that same string would show different results.
    tl;dr: GridItemRenderer works to show images when hard coded but not when using {data}.
    UPDATE: Figured it out, needed to add a toString() to the data.@icon.   I had assumed it was a string being handed over, I assumed wrong.

    Probably because data.@icon isn't a String, it is an XMLList, and source property is an Object not a String so the runtime doesn't automatically convert it.
      Try [email protected]()

  • The data object "BSEG" does not have a component called "ZZREGION"

    Hi Friends,
    Getting ABAP runtime error while doing MIGO-Goods receipt .
    The data object "BSEG" does not have a component called "ZZREGION".
    Regards
    Ashu

    check/activate  table bseg in se11
    A.

  • The data object "FP_FORMOUTPUT" does not have a component called "XML"

    Hello All,
    When i tried to run a simple report with ADOBE form i got this message:
    The data object "FP_FORMOUTPUT" does not have a component called "XML"
    I saw that the field XML is really missing in structure fpformoutput!
    Also in structure sfpoutputparams the field GETXML is missing!
    Is there a note to fix this?
    The system status is:
    Database system      ORACLE
    Release              10.2.0.2.0
    SAP_BASIS     700     0012     SAPKB70012     SAP Basis Component
    SAP_ABA     700     0012     SAPKA70012     Cross-Application Component
    ST-PI     2008_1_700     0000          -     SAP Solution Tools Plug-In
    PI_BASIS     2005_1_700     0012     SAPKIPYJ7C     PI_BASIS 2005_1_700
    SAP_BW     700     0013     SAPKW70013     SAP NetWeaver BI 7.0
    SAP_AP     700     0009     SAPKNA7009     SAP Application Platform
    SAP_HR     600     0016     SAPKE60016     Human Resources
    SAP_APPL     600     0009     SAPKH60009     Logistics and Accounting
    EA-IPPE     400     0009     SAPKGPID09     SAP iPPE
    EA-HR     600     0016     SAPKGPHD16     SAP Enterprise Extension HR
    EA-GLTRADE     600     0009     SAPKGPGD09     SAP Enterprise Extension Global Trade
    EA-PS     600     0009     SAPKGPPD09     SAP Enterprise Extension Public Services
    EA-RETAIL     600     0009     SAPKGPRD09     SAP Enterprise Extension Retail
    EA-FINSERV     600     0009     SAPKGPFD09     SAP Enterprise Extension Financial Services
    EA-DFPS     600     0009     SAPKGPDD09     SAP Enterprise Extension Defense Forces & Public Security
    EA-APPL     600     0009     SAPKGPAD09     SAP Enterprise Extension PLM, SCM, Financials
    FINBASIS     600     0009     SAPK-60009INFINBASIS     Fin. Basis
    ECC-DIMP     600     0009     SAPK-60009INECCDIMP     DIMP
    ERECRUIT     600     0009     SAPK-60009INERECRUIT     E-Recruiting
    FI-CA     600     0009     SAPK-60009INFICA     FI-CA
    FI-CAX     600     0009     SAPK-60009INFICAX     FI-CA Extended
    INSURANCE     600     0009     SAPK-60009ININSURANC     SAP Insurance
    IS-CWM     600     0009     SAPK-60009INISCWM     Industry Solution Catch Weight Management
    IS-H     600     0009     SAPK-60009INISH     SAP Healthcare
    IS-M     600     0009     SAPK-60009INISM     SAP MEDIA
    IS-OIL     600     0009     SAPK-60009INISOIL     IS-OIL
    IS-PS-CA     600     0009     SAPK-60009INISPSCA     IS-PUBLIC SECTOR CONTRACT ACCOUNTING
    IS-UT     600     0009     SAPK-60009INISUT     SAP Utilities/Telecommunication
    LSOFE     600     0009     SAPK-60009INLSOFE     SAP Learning Solution Front-End
    SEM-BW     600     0009     SAPKGS6009     SEM-BW: Strategic Enterprise Management
    ST-A/PI     01L_ECC600     0000          -     Application Servicetools for ECC 600
    Thank you all In advance,
    Eran FOX

    Hello Otto,
    Thank you for your reply...
    If i enter se11 to see the structure of FPFORMOUTPUT for example... i get the following structure:
    PDF     FPCONTENT     RAWSTRING     0     0     Form Processing: Content from XFT, XFD, PDF, and so on
    PDL     FPCONTENT     RAWSTRING     0     0     Form Processing: Content from XFT, XFD, PDF, and so on
    PAGES     FPPAGECOUNT     INT4     10     0     Form Processing: Number of Pages Created
    LANGU     LANGU     LANG     1     0     Language Key
    can you see any XML field here?
    This is OLD as you said - but how can i get the proper one?
    Thanks again,
    Eran

  • Facing lot of problems with the DATA object  -- Urgent

    Hi,
    I am facing lot of problems with the data object in VC.
    1. I created the RFC initially and then imported the data object in to VC. Later i did some modifications to RFC Function module,and when i reload the data object, I am not able to see the new changes done to RFC in VC.
    2. Even if i delete the function module, after redeploying the IVIew, results are getting displayed.
    3. How stable is the VC?
      I restarted the sql server and portal connection to R3 is also made afresh.... still i am viewing such surprise results..
    please let me know what might be the problem.

    Hi Lior,
    Are u aware of this problem.
    If yes, please let me know...
    Thanks,
    Manjunatha.T.S

  • Can't open the Data Object Editor

    Hi everybody,
    I'm new to the OWB. Currently using the 11.2.0.1 version. Working with it is fine - but I got a major problem. I'm not able to start the Data Object Editor. I click open/new but nothing. The view doesn't change. What am I doing wrong?
    Help would be very appreciated.

    Hi everybody,
    I wanted to add some tips for newbies (like me). Yesterday I was setting up a mapping. I dropped a Joiner-Operator and weren't able to set the joiner options. If you search for a solution - in 99% the answer is Mapping Editor. But since the 11gr2 there is no editor. You just open the "Property Inspector" (under the view menu) - click on the operator (or table or ...) and there you got all the things you need. I hope this will help some of you.
    bye
    Edited by: Backlit on 20.05.2011 07:00

  • When i turn my ipod on it says i need to connect to itunes so when i plug it in it says i dont have the right driver and i tried updating it but it says it is up to date

    when i turn on my ipod it tells me i need to connect to itunes i try connecting to itunes and it tells me i dont have the right driver so i try updating it and it says it is up to date how do i fix it?

    Try here:
    iOS: Device not recognized in iTunes for Windows
    I would first remove and reinstall all the Apple software by:
    Removing and reinstalling iTunes, QuickTime, and other software components for Windows Vista or Windows 7
    Removing and Reinstalling iTunes, QuickTime, and other software components for Windows XP

  • HT201302 please help.. i lost all the data in my ipad after upgrade to ios 702 i want my 3500 pictures back.. please help.. because my i tune also dont have the data

    please help.. i lost all the data in my ipad after upgrade to ios 702 i want my 3500 pictures back.. please help.. because my i tune also dont have the data. please anybody help me...

    Only possible if you have made an iTune or iCloud backup before the update.

  • The data object "T_ACCIT" does not have a component called "XTRNDP"

    I am receiving an ABAP dumb following the execution of transaction MIGO (when posting the goods
    movement). Attached is a copy of the ABAP dump and below is part of a dev_w log file.
    I tried to look at table T_ACCIT in SE16 and I receive the message 'Table T_ACCIT is not active in the Dictionary'.
    A Tue May 20 15:19:26 2014
    A  *GENER* request remote generation: SAPLRWCL.

    A Tue May 20 15:19:27 2014
    A  *** ERROR => Syntax error in program SAPLRWCL                                 [abgen.c      1828]
    A  {root-id=6431504C36361EE3B88A6D67BE3C41DE}_{conn-id=00000000000000000000000000000000}_0
    A  *** ERROR => > Include FICA_SAPLRWCL=================E          line 5 [abgen.c      1830]
    A  {root-id=6431504C36361EE3B88A6D67BE3C41DE}_{conn-id=00000000000000000000000000000000}_0
    A  *** ERROR => > The data object "T_ACCIT" does not have a component called "XTRNDP". [abgen.c      1832]
    A  {root-id=6431504C36361EE3B88A6D67BE3C41DE}_{conn-id=00000000000000000000000000000000}_0
    A  TH VERBOSE LEVEL FULL
    A  ** RABAX: level LEV_RX_PXA_RELEASE_MTX entered.
    A  ** RABAX: level LEV_RX_PXA_RELEASE_MTX completed.
    A  ** RABAX: level LEV_RX_COVERAGE_ANALYSER entered.
    A  ** RABAX: level LEV_RX_COVERAGE_ANALYSER completed.
    A  ** RABAX: level LEV_RX_HOTSPOT_TRACE entered.
    A  ** RABAX: level LEV_RX_HOTSPOT_TRACE completed.
    A  ** RABAX: level LEV_RX_SAVE_SHMLOCKS entered.
    A  ** RABAX: level LEV_RX_SAVE_SHMLOCKS completed.
    A  ** RABAX: level LEV_RX_RESET_SHMLOCKS entered.
    A  ** RABAX: level LEV_RX_RESET_SHMLOCKS completed.
    A  ** RABAX: level LEV_RX_ROLLBACK entered.
    A  ** RABAX: level LEV_RX_ROLLBACK completed.
    A  ** RABAX: level LEV_RX_DB_ALIVE entered.
    A  ** RABAX: level LEV_RX_DB_ALIVE completed.
    A  ** RABAX: level LEV_RX_HOOKS entered.
    I  *** ERROR => SemRel: Inv. Operation. Units 1. Key=51 [semux.c      1393]
    I  {root-id=6431504C36361EE3B88A6D67BE3C41DE}_{conn-id=00000000000000000000000000000000}_0

    Hi,
    T_ACCIT is a table parameter of a fm and is of structure ACCIT. Also ACCIT can't be found in SE16 but in SE11.
    Regards,
    Klaus

  • How to use ADO(Microsoft ActiveX Data Objective 2.8 Library) to execute the store procedure of database in SQL server

    how to use ADO(Microsoft ActiveX Data Objective 2.8 Library) to execute the store procedure of database in SQL server?
    Does any body can tell me about this?
    thanks
    [email protected]

    Hi 
    Did you succeed to execute the procedure?
    How ?
    Thanks
    Shimon Zerbib

Maybe you are looking for

  • EAL extract fails with ORA-03113 end-of-file on communication channel error

    Hi, We are trying to run an EAL (v11.1.1.4) extract from an HFM (v9.3.1.4) environment onto Oracle database. We are able to run the extract successfully for few hundred records, but when the records exceeds 10 million we get the error below [03 Dec 2

  • Infopath form won't open from a URL, opens fine from form library.

    I have built a request process using SharePoint 2007 and InfoPath 2010 and a custom workflow designed in SPD. Everything works perfectly fine within the form library. However, I would prefer not to have my requestors go to the form library so I creat

  • How to clear downpayment of higher value than invoice

    Dear All, I'm tryig to establish new procedures at cutomer AP department and one of them is causing me a headache. Situation looks like this. - Vendors requests for Downpayment - Downpayment request is posted with F-47 (value 1000 USD) - Downpayment

  • Info on CCM 2.0 characteristics - Fields length, data types & Desc

    Dear All, Does anybody know how or where I can get information about CCM 2.0 standard characteristics data structure? Or maybe the table name that holds this information? I need the following info: 1. List of all Standard CCM 2.0 Characteristics 2. C

  • Does Chat ever work?

    I've got a problem, and one solution from Verizon is to try chat.  EVERY TIME I've tried I was told that chat is not available.  Now, maybe my time selection is bad, but geez, it's 10 am and it's not available.  Anyone ever gotten through on chat?  W