IDOCs in status 12 not reaching the Legacy System

Hi Experts,
I am facing problem with a specific set of IDOCs in R/3.
the IDOCs are with status 12.
Queues are fine. SMQ1, SMQ2 are clear.
Also I don’t find any communication errors : (SM58 in XI)
All adapters were also working fine
<b>And in SXMB_MONI we found messages with “still waiting acknowledgement”</b>
Can anybody give me an idea about what might went Wrong.
I performed all the necessary checking but couldn't trace any errors.

Hi Santosh
There may be a problem in ur configurations. Please check the status of our idoc in the tcode : sm58 (in R/3).
I think your IDOC was strucked here. Check the status.
**Award the Points if it is useful**
Cheers...
Vasu

Similar Messages

  • Idoc in status 03 - not received by receiving system

    Hello All,
    I have researched a lot on this topic on the forum - but what I am facing is something peculiar - so posting the complete scenario.
    I have three interfaces based on change pointers mechanism where change pointers have been activated for message type HRMD_A.
    There are three distribution models which filter the same message type and send to receiving system GIS – for the logical systems:
    FI
    Concur
    Russia
    When IDoc is triggered using standard program RHALESMD (transaction RE_RHALESMD - HR: Evaluate ALE Change Pointers), there could be three or less IDocs produced depending on the filter criteria.
    For example, you could have an IDoc each for all above three partners.
    When the above program is triggered in the development system all three IDocs reach GIS.
    All the custom code and configuration is transported from DEv to QA. When I trigger the above program in QA, not all  IDoc reaches GIS. Others stay in the system in status 03.
    If I check tRFC queue (transaction BD75), there are no IDocs in the queue.
    If I use another program to change status from 03 to 12, the status changes, but IDoc still does not reach receiving system.
    I have compared Dev and QA systems, deleted and generated partner profile, distribution model, port in QA – but nothing works.
    Not all IDocs reach GIS.
    I read on the forum that I need a commit work. But because I am using a standard program - RHALESMD - where do I commit work?
    Your inputs will be helpful.

    Hi Suneel,
    Please go to transaction SM58 and check if the IDocs are stucked up on the t-rfc queue. If so, you can right click and choose Execute LUW to release them.
    or
    Execute the program RSARFCRD and get the corresponding Transaction id and then execute the program RSARFCSE for processing the entries in TRFC Queue.
    Regards,
    Ferry Lianto

  • IDocs in Status 03 not transferring -

    Hi All,
    I am facing some issue with transferring IDcos from one R/3 system to another R/3.
    Idocs are getting created at the application level and are in green status(03) But not reaching the receiving system.
    If I modify the status of Idoc to 30 and process them manually using BD87, they are reaching the receiving system.
    I have checked the partner profile, ports and other setting comparing with other message types which are working OK. I could not find any difference. Please note that custom program is creating Idoc, where the basic type and message are standard.
    Please advice.
    Thanks.
    Mark

    Thanks to all who responded to my message. Appreciate the help.
    With a commit work statement I was able to fix the issue.
    Thanks Advait.
    Mark.

  • The message is not reaching the outgoing communication channel

    hi forum help..............
    i have a IDOC-XI--JDBC scenario...
    my xi receives an idoc from a sap ecc.....does a simple mapping to a jdbc structuuure and then writes to a databse....
    it was working fine..... but now i had to change the JDBC adapter configuration..means in the integration builder(configuration).. i changed the name of my database server.....
    now after making that change ....... the message is not reaching the outgoing communication channel....
    i cant see any error in the sxmb_moni....
    but there is no log for the message processing in the communication channel in the RWB............

    hi,
    Is the Database is running on the same server  and the same tables and all are existed with same structure.
    Database name is changed then you would have to check all . and after changes , did you activated ?
    If every thing is correct, then refresh Cache.
    For cache related see the below links
    /people/sravya.talanki2/blog/2005/12/02/sxicache--ripped-off - SXI_CACHE - Ripped Off
    XI Runtime cache error: Cache contents are obsolete
    Cache Refresh - SAI_CACHE_REFRESH
    /people/sravya.talanki2/blog/2005/11/03/cache-refresh-errors--new-phenomena
    Regards
    Chilla

  • Skinned scrollbar thumb does not reach the bottom of the track

    I have an application in Flex 4.1 where there is a vertical List, bound to an array. As long as the List scrollbar is not skinned, everything is ok, the thumb oscillates from top to bottom of the track. But after adding a skin it works bad. The thumb never goes to the very bottom of the track when scrolling, but locks somewhere in between. For very long list of elements, it even stops halfway.
    Despite of this behavior, the list is in fact scrolled to the last element - so the problem is not with some elements at the bottom of the list being unreachable, but it is only about the thumb not reaching the bottom of the track, which looks as if the list was locked halfway. The skin is very simple and it is just about defining an image for the track and thumb. Is there any method to ensure that the thumb always goes to the bottom of the track, regardless list size?

    I have 3 skins: for the scrollbar itself, for the track and for the thumb.Thumb and track skins are using fxg vector images, but exactly the same negative result is without fxg images, e.g. only using simple filled rectangles in place of the fxg - I just checked it.
    For Scrollbar:
    <?xml version="1.0" encoding="utf-8"?>
    <s:SparkSkin
            xmlns:flex="http://ns.adobe.com/mxml/2009"
            xmlns:s="library://ns.adobe.com/flex/spark"   
            minWidth="15" minHeight="35" alpha.disabled="0.5" alpha.inactive="0.5" >
         <s:states>
            <s:State name="normal" />
             <s:State name="inactive" />
            <s:State name="disabled" />
        </s:states>
        <s:Button id="track" 
                  focusEnabled="false" alpha="0.3"
                  skinClass="skins.VPhotoScrollbarTrackSkin" />
        <s:Button id="thumb"
                  focusEnabled="false" visible.inactive="false" alpha="0.5" left="-5"
                  skinClass="skins.VPhotoScrollbarThumbSkin" />
    </s:SparkSkin>
    For the thumb:
    <?xml version="1.0" encoding="utf-8"?>
    <s:SparkSkin
        xmlns:flex="http://ns.adobe.com/mxml/2009"
        xmlns:s="library://ns.adobe.com/flex/spark"
        xmlns:fxg="fxg.*"
    >
        <s:states>
            <s:State name="up" />
            <s:State name="over" />
            <s:State name="down" />
            <s:State name="disabled" />
        </s:states>
        <fxg:thumb />
    </s:SparkSkin>
    For the track:
    <?xml version="1.0" encoding="utf-8"?>
    <s:SparkSkin
        xmlns:flex="http://ns.adobe.com/mxml/2009"
                 xmlns:s="library://ns.adobe.com/flex/spark"
                xmlns:fxg="fxg.*"
    >
        <s:states>
            <s:State name="up" />
            <s:State name="down" />
            <s:State name="over" />
            <s:State name="disabled" />
        </s:states>
        <fxg:track  />
    </s:SparkSkin>

  • Why does my image not reach the edges of the page when printed, but appears fine as pdf?

    Why does my image not reach the edges of the page when printed, but appears fine as pdf?

    Check a printable area of your printer.
    Make a (grey) rectangle that is larger than the paper size. Print it,
    you'll get a message that some cropping will occur, that's okay. Then take a
    ruler and measure the dimensions of the rectangle printed on the paper or
    the white borders around the printed rectangle.

  • Does anyone know why I am having formatting issues with my tablet and phone sites? I only have the desktop layout. There are banners and footers not reaching the edge of the screen.

    I only have the desktop layout. As I was having such problems with the tablet and phone layouts. However there are banners and footers not reaching the edge of the screen. This is only a problem when accessing the site via a phone or tablet.
    the site is www.excellententertainment.biz
    Cheers
    Hughie

    Do a Select all on your pages (Most likely a master page if it effects all pages) and you will likely find an empty element or element that extends past the design edges in your desktop design.

  • I can not reach the screen to enter passcode, the main sreen is where im stuck, i cant play music, the home button works but icant get pass the whole unlock thing, i can receive calls but can answer because when i touch the screen it wont do.

    i can not reach the screen to enter passcorde, the main screen is where im stuk, i cant play music,i can recive calls

    Try to Reset your device. 
    Press and hold both the Sleep/Wake button and the Home button for at least ten seconds, until the Apple logo appears (ignore the Slide to Power Off that shows up first).

  • Please helpJ2EE  engine JCO did  not reach the "starting application" state

    Hi,
    I get the following error "J2EE  engine JCO did  not reach the "starting application" state"   when I try to install my Java components  using SAP Development  Studio.
    When I checked my std_servero.out the get the following error
    [GC 65868K->39262K(128320K), 0.0173335 secs]
    [GC 65942K->39031K(128320K), 0.0071339 secs]
    [GC Full GC[Unloading class com.sap.engine.customizing.ccms.CustomizePerformanceMTEObjectImpl0]
    [Unloading class com.sap.engine.customizing.ccms.CustomizeSingleMessageMTEHomeImpl0]

    Hello Santhi
    The GC messages you see are just an indication of the garbage collector activity. It is not an error.
    I'm not sure about what you are doing with the Developer Studio. I guess your WAS Java is already installed, is it right? Are you able to start the visual administrator? Please, paste here the exact error you receive.
    Regards,
    Désiré

  • I could not reach the 4-digits code in my ipod touch for unlocking it

    i could not reach the 4-digits code in my ipod touch for unlocking it

    If you mean that the screen does not respond to your touch or you forgot you passcode. place the iPod in recovery mode and than connect it to your syncing computer and restore the iPod via iTunes.  For recovery mode see:
    iPhone and iPod touch: Unable to update or restore

  • When mac email changed to icloud a while ago i lost all my emails and things i have an email subscription to send emails but they do not reach the email that i updated with the same address any help?

    When mac email changed to icloud a while ago i lost all my emails and things i have an email subscription to send emails but they do not reach the email that i updated with the same address any help?

    If you purchased about 2 years ago new I am sure it is a Intel iMac. To find out what type of iMac you have just click on the Apple menu item in the finder and select about this Mac. I would check the ISP mail site and get the correct outgoing mail server info.   

  • Could not access the central system - CUA problem

    Hi all,
    Please help me with this problem.
    Its just a test scenario, when everything will be good here, i have to do the same for Production.
    We just did upgrade our R3 system from 4.6 to ECC6.0.
    I created CUA on DB1100 ( Dev BW 4.6 ) with two child systems 1) DC1150 ( Dev CRM 4.6)
    2) DE1400 ( DEV ECC 6.0 ).
    Now everything is working fine between DB1100 and DC1150..
    It works like CUA ( DB1100) and child (DC1150) systems as it should be.
    But connection between DB1100 and DE1400 is not working fine. When you go to SU01 in DE1400, it does not allow me to change anything. It means connection is there and DB1100 is taking DE1400 as child system but when i am updating any user information or roles in DB1100 it is not updating child system DE1400.
    And when i went to tcode SCUA in DE1400 it gave me this error.
    "Could not access the central system DB1100".
    I dont know whats happening. I did same config in DE1400 as i did in DC1150. DC1150 is working fine but not DE1400. 
    The most weird thing is that DB1100 is thinking DE1400 as child system and i can not make any changes to DE1400 directly.
    please help me with this. What i can do to make this working between DB1100 and DE1400??
    i need to do the same in production if it gets passed.
    Thanks in Advance.

    Hi mala_swa,
    seems that you have a problem with the rfc-connections....
    Please check in both directions. The connection have to work without problems.
    Check SCUL in DB1100 - what is the status of the distributed users? Errors, unconfirmed?
    Check idocs in DE1400. Are there some? What is their status?
    The most common error is coming from not working rfc-connections. That brings for instance problems while generationg partner profiles, etc. Also the strict naming convention (log. system name=system name in CUA landscape = name of used RFC-connections) has to be considered....
    So that are some points, that you could check.
    good luck,
    Bernhard

  • CUA roles sometimes do not match the target system

    Hi,
    We are using CUA on Solution manager to assign roles to our different systems.  Every now and then what is in CUA does not match the target System.
    I know that you can look at the idocs using WE05 and see what the root cause was, fix it and then re-assign the role.
    The problem is that when you assign the role using CUA, it doesn't warn you that the transmission failed on the target system.
    We just went live last week, so I am added and removing roles from many different users using SU01 and SU10 and I do not think it is a valuable use of time to sift through the idoc logs every time I make a change.  Especially, since most of the time it works.
    Is there a better way to monitor the Idoc logs?  Can you have it send a notification (email for example) when there is an error?  Is there a better process then WE05?
    Thank you in advance for the help!
    Neil

    Neil. It was a long time I played around with CUA. But I am remembering some transaction where you had the logs. Think it is SCUL.
    I searched saphelp and got the following hits for you:
    http://help.sap.com/saphelp_nw70/helpdata/EN/c1/db4063fd3111d5997a00508b6b8b11/frameset.htm
    http://help.sap.com/saphelp_nw70/helpdata/EN/cc/50b43be7492354e10000000a114084/frameset.htm
    Best of luck to you!
    Regards Fredrik

  • Solution Import Failure Message: Cannot add a Root Component 'GUID' of type 29 because it is not in the target system

    Hi all,
    Please refer to the error:
    Root Components import: FAILURE
    [2015-04-10 17:04:48.126] Process: w3wp |Organization:0937f109-45df-e411-80cf-0050560100db |Thread:   43 |Category: Exception |User: ac011cf7-ad36-405b-91cf-2155ca15efb1 |Level: Error |ReqId: d3924c06-ad4b-4d5e-a204-70f8170016e1 | CrmException..ctor
     ilOffset = 0x30
    at CrmException..ctor(String formattedErrorMessage, Int32 errorCode, Object[] arguments)  ilOffset = 0x30
    at ImportRootComponentsHandler.GetSolutionRootsCollection(Boolean throwIfMissing, Boolean skipRibbonCustomization)  ilOffset = 0x209
    at ImportRootComponentsHandler.ImportItem()  ilOffset = 0x8
    at ImportHandler.Import()  ilOffset = 0x43
    at RootImportHandler.ImportAndUpdateProgress(ImportHandler ih)  ilOffset = 0x7
    at RootImportHandler.HandleNonMetadataHandlers(String[] ImportEntities, ImportHandler& ihForCurrentPath)  ilOffset = 0x33
    at RootImportHandler.RunImport(String[] ImportEntities)  ilOffset = 0x1D8
    at ImportXml.RunImport(String[] ImportEntities)  ilOffset = 0xE
    at ImportXml.RunImport()  ilOffset = 0x5BF
    at ImportXmlService.ImportSolutionSkipCapable(Boolean overwriteUnmanagedCustomizations, Boolean publishWorkflows, Byte[] customizationFile, Guid importJobId, Boolean convertToManaged, Boolean skipProductUpdateDependencies,
    ExecutionContext context)  ilOffset = 0x46
    at RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)  ilOffset = 0xFFFFFFFF
    at RuntimeMethodInfo.UnsafeInvokeInternal(Object obj, Object[] parameters, Object[] arguments)  ilOffset = 0x25
    at RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)  ilOffset = 0xCF
    at LogicalMethodInfo.Invoke(Object target, Object[] values)  ilOffset = 0x4F
    at InternalOperationPlugin.Execute(IServiceProvider serviceProvider)  ilOffset = 0x57
    at V5PluginProxyStep.ExecuteInternal(PipelineExecutionContext context)  ilOffset = 0x200
    at VersionedPluginProxyStepBase.Execute(PipelineExecutionContext context)  ilOffset = 0x65
    at Pipeline.Execute(PipelineExecutionContext context)  ilOffset = 0x65
    at MessageProcessor.Execute(PipelineExecutionContext context)  ilOffset = 0x1C5
    at InternalMessageDispatcher.Execute(PipelineExecutionContext context)  ilOffset = 0xE4
    at ExternalMessageDispatcher.ExecuteInternal(IInProcessOrganizationServiceFactory serviceFactory, IPlatformMessageDispatcherFactory dispatcherFactory, String messageName, String requestName, Int32 primaryObjectTypeCode,
    Int32 secondaryObjectTypeCode, ParameterCollection fields, CorrelationToken correlationToken, CallerOriginToken originToken, UserAuth userAuth, Guid callerId, Guid transactionContextId, Int32 invocationSource, Nullable`1 requestId, Version endpointVersion)
     ilOffset = 0x16E
    at OrganizationSdkServiceInternal.ExecuteRequest(OrganizationRequest request, CorrelationToken correlationToken, CallerOriginToken callerOriginToken, WebServiceType serviceType, UserAuth userAuth, Guid targetUserId,
    OrganizationContext context, Boolean returnResponse, Boolean checkAdminMode)  ilOffset = 0x1F1
    at OrganizationSdkServiceInternal.ExecuteRequest(OrganizationRequest request, CorrelationToken correlationToken, CallerOriginToken callerOriginToken, WebServiceType serviceType, Boolean checkAdminMode)  ilOffset
    = 0x2D
    at OrganizationSdkServiceInternal.Execute(OrganizationRequest request, CorrelationToken correlationToken, CallerOriginToken callerOriginToken, WebServiceType serviceType, Boolean checkAdminMode)  ilOffset = 0x26
    at InprocessServiceProxy.ExecuteCore(OrganizationRequest request)  ilOffset = 0x34
    at PlatformCommand.XrmExecuteInternal()  ilOffset = 0xF6
    at ImportSolutionCommand.Execute()  ilOffset = 0x20
    at DataSource.ImportSolution(Byte[] customizationFile, Boolean overwriteUnmanagedCustomizations, Boolean publishWorkflows, Guid importJobId, Boolean convertToManaged, Boolean skipProductUpdateDependencies, IOrganizationContext
    context)  ilOffset = 0x0
    at SolutionImportProcessPage.ImportSolution()  ilOffset = 0x123
    at SolutionImportProcessPage.ProcessRequestData()  ilOffset = 0x4A
    at SolutionImportProcessPage.ProcessAction(String action)  ilOffset = 0x92
    at AppUIPage.OnPreRender(EventArgs e)  ilOffset = 0xD
    at Control.PreRenderRecursiveInternal()  ilOffset = 0x54
    at Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)  ilOffset = 0x6D3
    at Page.ProcessRequest(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)  ilOffset = 0x3C
    at Page.ProcessRequest()  ilOffset = 0x14
    at Page.ProcessRequest(HttpContext context)  ilOffset = 0x33
    at CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()  ilOffset = 0x18D
    at HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)  ilOffset = 0x15
    at ApplicationStepManager.ResumeSteps(Exception error)  ilOffset = 0x10A
    at HttpApplication.System.Web.IHttpAsyncHandler.BeginProcessRequest(HttpContext context, AsyncCallback cb, Object extraData)  ilOffset = 0x5C
    at HttpRuntime.ProcessRequestInternal(HttpWorkerRequest wr)  ilOffset = 0x16A
    at ISAPIRuntime.ProcessRequest(IntPtr ecb, Int32 iWRType)  ilOffset = 0x4B
    >Crm Exception: Message: Cannot add a Root Component 0ffbcde4-61c1-4355-aa89-aa1d7b2b8792 of type 29 because it is not in the target system., ErrorCode: -2147188705
    [2015-04-10 17:04:48.126] Process: w3wp |Organization:0937f109-45df-e411-80cf-0050560100db |Thread:   43 |Category: Platform.Sql |User: ac011cf7-ad36-405b-91cf-2155ca15efb1 |Level: Info |ReqId: d3924c06-ad4b-4d5e-a204-70f8170016e1 | BusinessProcessObject.ExecuteNonQuery
     ilOffset = 0x28
    I am getting this coming up in the error log when I attempt to import an unmanaged solution.
    After searching on google Type 29 refers to a workflow.
    I go into the source system and query the database by the GUID and discover that it is actually a Business Process Flow called 'Phone to Case Process'. 
    I do not have this process in my target system as I deleted it.
    Looks like this is one of the out of the box ones. I don't think we we have changed this one much.
    What does this mean and what should I be looking for??
    Anyway how do I remove this offending process from the unmanaged solution xml file and attempt to re-import it? 
    It doesn't look like I can generate the solution again without the offending workflow/process..

    I managed to resolve this issue after looking at this thread:
    https://social.microsoft.com/Forums/en-US/fddff17f-1cca-4d33-a666-60c08ad76b0c/crm-2011-import-failure?forum=crmdevelopment
    Just modify both solution and customizations xml by searching for the guid and removing the root component

  • I'm trying to download the trial version of Adobe Illustrator. An error message says that the OS does not meet the minimum system requirements for the installer. 10.6.0 is the minimum required for installation. How do I get my mac to be a 10.6.0 ?

    I'm trying to download the trial version of Adobe Illustrator. An error message says that the OS does not meet the minimum system requirements for the installer. 10.6.0 is the minimum required for installation. How do I get my mac to be a 10.6.0 ? Right now I have a 10.5.8 is there a way to upgrade or something?

    Buy the Snow Leopard retail installer (http://store.apple.com/us/product/MC573Z/A?fnode=MTY1NDAzOA).
    That will take you to 10.6.3.
    If required you can then use the combo updater to get to the latest version, 10.6.8 (http://support.apple.com/kb/DL1399)
    SL system reqmts;

Maybe you are looking for

  • Ipod not connecting with itunes

    My itunes works fine until I plug my ipod in. Then is won't respond and recognize that I connected the ipod. When I disconnect my ipod is says "The required folder cannot be found" If any one could help me with this problem I would be very grateful.

  • Accessing database on a computer through a phone connected to it

    how to make a moile phone connected to a system access the database on that particular system... i am not able to find any documentation on this...i was reading in cldc specification that it does not support jdbc .. is it possible to have such a case

  • Photoshop CC problem trying to launch application

    I have Elements 12 installed on my Windows 7 PC. After I purchased and installed Photoshop CC, I get a sign on screen to a trial version when I try to launch Photoshop CC. What's wrong?

  • SQL 2014 changed my NTFS permission - default backup directory setup

    Hello everybody. Today I realize that new SQL 2014 changed my existing folder permissions (NTFS). This folder was shared for domain users and had set NTFS permissions for domain users and local administrators. In setup of SQL I set backup directory t

  • Create calendar on ical on ipad2

    I have 3 calendars and 3 e-mail accounts that i used to sync. Now I can not creat another calendar in my ipad2.. the same calendar is at my Macbook air and my imac, but i can not create the same calendar on my ipad ...