IDoc does not change from state 30 to 03

Hello,
I am trying to send out an IDoc via tRFC Port. The IDoc in some cases is transferred successfully trough the port. In some cases it stays in state 30 on sender side. I tried to post-process the IDoc via transaction BD87 and via report RSEOUT00. Nevertheless the IDoc stays in state 30. I do not receive an error message. The only message that is displayed by a popup window tells that 1 IDoc has been selected.
Btw, I am using IDocs of version 3.0/3.1. The sending system is ECC6.0.
Can anyone help me? Thanks a lot in advance!

Hi Ron,
just to add to what was already said, please not that when sending idoc in queue mode from ECC, if the idoc is generated from WE19 it will always be stuck in WEOUTQUEUE Until you will activate it there and release it.
Note that for EOIO Idoc stuck in the inbound queue of ECC instead you have WEINBQUEUE.
Additionally note that status 03 is a temporary status that does not mean that the idoc was delivered to the target system but only passed to the port.
The final status is 12, you can get it scheduling the report RBDMOIND that updates the status.
Regards,
Sergio

Similar Messages

  • Message status does not change from in-transit [SAP Exchange Connector]

    We have a Exchange Server 2003  and SXC 2.05. and we are on R/3 4.6C.
    Using the SXC we can send e-mail from SAP to any internet address. But in sap we only have the following status:
    "Message transferred by node to communication system".
    If the message was sent correct or not by the Exchange Server, the SAP can not obtain this status. And currently the messages are being lost. s
    Anyone had gone through this problem ? Any tips will be very useful.
    Regards
    Ballie

    we are using the SMTP node
    these are the messages for the documents send.
    1. Document sent 
    2. Wait for communications service 
    3. Message transferred to node 
    4. Document deleted from queue 
    but they still remain in 'in-transit' state, and it is not possible to detemine why the mails are being lost
    if you can help on getting a detaield trace of the mesages on the connector and excahnge end.

  • How do I set the size of the font so that it does not change from site to site or page to page?

    The font size happens when I visit a new site or move from page to page in any given site. I want to have the same size font at all times with out having to manually change it all the time.

    If you need to adjust the font size on websites then look at:
    * Default FullZoom Level - https://addons.mozilla.org/firefox/addon/6965
    * NoSquint - https://addons.mozilla.org/firefox/addon/2592

  • JButton state does not changes at first click

    requirement of flow is that when jButton1 is pressed
    if it has text "Check" then execute second if statement
    and is it has text "Refresh" then
    have to execute first if statement.
    The problem is that when jButton1 has text "Refresh" it executes first if condition and refreshes the jTextField1, choice1, and jTextArea1 but does not changes the states of buttons as required
    if(!(recPresent) || jButton1.getText().equals("Refresh"))
              jButton1.setText("Check");
          jButton4.setEnabled(false);
          jButton2.setEnabled(true);part of if condition.
    plz some one point out that why buttons dont change their state.
    And if i press jButton1 second time then buttons change state as required.
    but y not at first time?
    Following is code used..................
    public void jButton1_mouseClicked(MouseEvent e)
      boolean recPresent = false;
    if (!(jTextField1.getText().equalsIgnoreCase("")))
                recPresent = Connect.preCheck(jTextField1.getText());
          if(!(recPresent) || jButton1.getText().equals("Refresh"))
             jButton1.setText("Check");
          jButton4.setEnabled(false);
          jButton2.setEnabled(true);
    jTextField1.setText("");
              choice1.select(0);
              jTextArea1.setText("");
          if (recPresent && jButton1.getText().equals("Check") )
            jButton1.setText("Refresh");
            jButton4.setEnabled(true);
            jButton2.setEnabled(false);
            choice1.select (Connect.getReason(jTextField1.getText()));
            jTextArea1.setText(Connect.fetchComments(jTextField1.getText()));
            recPresent = false;
    }

    Use the java.awt.EventQueue invokeLater method to place your GUI changes on the event dispatch thread. For example:
    if (!(recPresent) || jButton1.getText().equals("Refresh"))
      EventQueue.invokeLater(new Runnable() {
        public void run() {
         jButton1.setText("Check");
         jButton4.setEnabled(false);
         jButton2.setEnabled(true);
    }

  • From time to time when I click a searched link the colr of visited links does not change. It works fine after I delete history and cookies. Can I fix that. I am using windows XP. Thankste

    From time to time when I click a searched link the color of visited links does not change. It works fine after I delete history and cookies. Can I fix that. I am using windows XP. Thanks

    Here's the error message I get.
    Note the TC is connected to my Airport Extreme via ethernet and my iMac is also connected to the AX via ethernet so it's not a wifi issue.
    I can see the TC in the finder so it's not 'gone' from the network either.
    Also note that just then the TM system pref pane was claiming a backup error, citing my 'network password' and still refusing to backup.  I waited 5 minutes and did some tidying of my office while I pondered this and then tried again and voila it worked ok.

  • SQL execution does not change, but consistent read get higher

    Hi,
    Our SQL query execution does not change, but consistent reads get higher in our test enviroment but query looks fine in our development and production environments.
    In the Development instance the trace is:
    STAT #18446744071526492680 id=1 cnt=1 pid=0 pos=1 obj=7151 op='TABLE ACCESS BY INDEX ROWID MEMBER_CMS_SITE_ACCESS (cr=4 pr=0 pw=0 time=153 us cost=3 size=68 card=1)'
    STAT #18446744071526492680 id=2 cnt=1 pid=1 pos=1 obj=7152 op='INDEX UNIQUE SCAN MEMBER_SITE__MEMBERID_SITEID (cr=3 pr=0 pw=0 time=104 us cost=2 size=0 card=1)'
    So - we read 3 blocks from the index and then 1 from the table ( to make 4)
    In the Test instance the trace is:
    STAT #18446744071411593144 id=1 cnt=1 pid=0 pos=1 obj=7151 op='TABLE ACCESS BY INDEX ROWID MEMBER_CMS_SITE_ACCESS (cr=112 pr=0 pw=0 time=2820 us cost=3 size=70 card=1)'
    STAT #18446744071411593144 id=2 cnt=1 pid=1 pos=1 obj=7152 op='INDEX UNIQUE SCAN MEMBER_SITE__MEMBERID_SITEID (cr=3 pr=0 pw=0 time=90 us cost=2 size=0 card=1)'
    We read 3 blocks from the index but the table needs 109 more which cannot possibly be right.
    It looks like we are applying UNDO and those 109 are the work needed to do so.
    I have tried flushing the shared pool, and killing some sessions that could possibly be the cause... but with nothing in V$TRANSACTION
    I could understand this if there was a long-running transaction that's created a lot of dirty blocks, but there are no transactions at all... so it's not that.
    Thanks

    The SQL is very simple with only one predication in the where cluse and that is indexed,just like
    "select * from table where a=:b0"
    Column a is indexed. But ORACLE choose FTS not INDEX SCAN because of out-of-date stats maybe.
    So I updated the stats expecting to see ORACLE will choose INDEX SCAN. The fact is that ORACLE will not change existing FTS to INDEX until I flush the entire share pool.That's the problem.

  • When I convert my pdf doc to word, the fonts go really weird and it also puts some text into boxes. when I try to select the test and change the font, it does not change it properly?

    When I convert my pdf doc to word, the fonts go really weird and it also puts some text into boxes. when I try to select the text and change the font, it does not change it properly? This is making it impossible to amend.

    Hi Janedance1,
    If the PDF that you converted already has searchable text, please try disabling OCR as described in this document: How to disable Optical Character Recognition (OCR) when converting PDF to Word or Excel. (If the PDF was created from a scanned document and doesn't already have searchable text, disabling OCR isn't a great option, as the text won't be searchable/editable in the converted Word doc.)
    Please let us know how it goes.
    Best,
    Sara

  • Tables are deleted but database size does not change in sql server 2008r2

    Hi All,
    20GB Tables are deleted in my database but database size does not change and disk size showing same size.

    Hi ,
    I have ran the Disk usage by Top Tables report and Identified couple of tables with unwanted data for last 5 years. I have deleted the data for the first 3 years and then ran the Disk usage by Top Tables report again. When I compared the report before
    and after the data deletion, I have noticed certain facts which is not matching with what I know or learned from experts like you. The following are the points where I am looking for clarification:
    1.Reserved (KB) has been reduced. I was expecting the data Reserved (KB) will remain the same after the data deletion. 
    2. The Data(KB) and Indexes(KB) fields have been reduced as expected. The Unused(KB) field have been increased as expected.
    I was expecting the total of Data(KB) and Indexes(KB) field space gained will be equal to the Unused(KB) field gained after deleting the data. But that is not the case. When I deducted(subtracted) the difference in  the Reserved(KB)(Difference before
    and after data deletion) field from the Total of space gained from the data deletion is equal to the Unused(KB) gained field value.
    I am not a SQL expert and not questioning but trying to understand whether we really gain space by deleting data from the tables. Also keen to get the concepts right, but my testing by deleting some records confused me.
    Looking ahead to all your expert advice.
    Thanks,
    Vennayat

  • STMS problem ( import status - import runnig does not change)

    I have the same problem like this:
    While Transporting request in our production server the status of request from import running (truck sign) does not change.
    But the effect of the request is seen in the production but status does not change.
    see :Re: STMS problem ( import status - import runnig does not change)
    I did se14 as experts suggested, the history truck sign go away,seem work fine,
    but when new request need STMS to trans, the truck sign happened again,
    I need you help,thank you!

    thanks for all reply,
    the last two answers are the same,I think this is the right key,
    I'm a ABAPer actually,yesterday I asked our headquarters  basis to help,
    and I don't know what he did,now this problem is be solved,
    PS:I use AL11 to find .LOB now,but not find(maybe it's deleted by our basis),
    thanks again!

  • When Matching Users Via Email, Changing Email Address Does Not Change Login

    Well, the subject pretty much says it all, but here're some examples of what's going on:
    Initial Data
    - Create 2 Business Partners in SAP, C1 and C2.
    - Create 2 Contact Employees in SAP, Adam with email adam at eden.org in C1 and Eve with no email in C2.
    Synch
    - Run Initial Synch followed by Standard Synch (for good measure).
    - Web Tools gets user Adam with username adam at eden.org.
    - Web Tools gets user Eve with username 2, the unique key for SAP's Contact Employee.
    Data Change In SAP
    - Adam's email is removed.
    - Eve's email is populated with eve at eden.org.
    Resynch
    - Run Standard Synch.
    - Web Tools changes both email addresses, with Adam's being erased and Eve's becoming eve at eden.org.
    - Web Tools does not change the UserID, leaving Adam's as adam at eden.org and Eve's as 2.
    That last bullet is the big problem: if a user changes an email address, the username doesn't change. Is there any way to change this across the board, or perhaps even force users to login via their current email address?

    Also, there is a field in the Users table called EmailLogin. I have tried without success to change this field so that the user would use this field to login instead of the UserID, but have been unsuccessful in getting it to work.
    As an alternative, the login control in /plugins/loginblock.ascx contains, as a portion, the following code:
        protected void loginMain_LoggedIn(object sender, EventArgs e) {
            NPUser user = new NPUser(loginMain.UserName);
            ((NPBasePage)Page).Login(user.UserID, user.AccountID, false);
    Wouldn't it be simple to do the following?
        protected void GetUserIDFromDBByEmail(string email) {
            string userid;
            System.Data.SqlClient.SqlConnection conn = new System.Data.SqlClient.SqlConnection();
            System.Data.SqlClient.SqlCommand cmd = new System.Data.SqlClient.SqlCommand(conn, "SELECT Users.UserID FROM Users WHERE Users.Email='" + email.Replace("'", "''") + "'");
            userid = (string)cmd.ExecuteScalar();
            cmd.Connection.Close();
            conn.Close();
        protected void loginMain_LoggedIn(object sender, EventArgs e) {
            string userid;
            // Though we're passing the "username" from the form,
            // we know that we're expecting the email to be in it
            userid = GetUserIDFromDBByEmail(loginMain.UserName);
            NPUser user = new NPUser(userid);
            ((NPBasePage)Page).Login(user.UserID, user.AccountID, false);
    Again, the benefit to this is that you can synch using the Internal B1 Contact Code, which will remain constant and unique, and have the availability to change the way the user logs in by modifying the email address. Of course, email addresses would have to remain unique as well, but that's an easy enough thing to check for.

  • My keyboard does not change language in facebook log in

    I just bought MacBook Pro 15'4 I am in general new user with mac !!! My primary keyboard language is English and my secondary is Greek. When i try to log in to my facebook account i wrote my e-mail (in english of course) and my password is in greek and when i change the input source to greek does not change and greek became transparent in the language bar at the top !! I don't have an idea why cannot let me change the language only in this step to put my psw. I am using Safari and Chrome too, and is happening in both browsers too !!! I would be greateful and apriciated if someone can help me !!!

    thanks a lot for your help !!! i downoladed firefox and the same problem when i will go to put my psw only in this step cannot let me change from english to greek !!!! why this is happening ??? i think that,this is a browser problem not macbook's or keybord problem !?!
    *and it still does it when i change the primary language to greek again

  • Import status- import running does not change during the mass import of TR

    Dear All,
    I have successfully imported single requests in my newly installed SAP ECC EHP4 PRD system but when I have tried to import 8 transport requests(Mass Import) then the Import status is not changing from import running (Truck button still appears).
    But the effect of the request is seen in the production system but the status does not change.
    I have checked the logs and found that all the requests have been imported successfully but the Truck status does not change.
    I have restated the system but no use still the same.
    Thanks in Advance...
    Latha

    Import Running for a long time on ECC 6.0
    The background job RDDIMPDP is running on client 000 as well as the relevant client.
    Below is the TP System Log:
    WARNING: System CC6. Warning. 20090914042136 :
    WARNING: Background job not running properly. Function: G Jobcount: 04512801 Status: S.
    Please check the system. Use transactions SM21, SM37, SM50.
    WARNING: (This warning is harmless if no further warnings follow.)
    As per NOTE: 26966, it could be b'cause the background job process slots are occupied,
    Regards
    Vikas Nagar

  • InputListOfValues. returnPopupListener does not change Value in ADFTable.

    Hello!
    Maybe my approach is incorrect? I want, that inputListOfValues has returned values in two fields of ADFtable.
    I have inputListOfValues. It has returnPopupListener = returnListener.
    <af:inputListOfValues label="#{bindings.myCVO1.hints.ID.label}"
    popupTitle=""
    id="IDid"
    value="#{row.ID}"
    returnPopupListener="#{backingBeanScope.backing.returnListener}"
    model="#{bindings.IDListOfValue.listOfValuesModel}"
    searchDesc=""/>
    Problem: In ADFTable value does not change. And in viewobject value has changed.
    public void returnListener(ReturnPopupEvent returnPopupEvent) { 
    //access UI component instance from return event
    RichInputListOfValues lovField =
    (RichInputListOfValues)returnPopupEvent.getSource();
    //The LOVModel gives us access to the Collection Model and
    //ADF tree binding used to populate the lookup table
    ListOfValuesModel lovModel = lovField.getModel();
    CollectionModel collectionModel =
    lovModel.getTableModel().getCollectionModel();
    //The collection model wraps an instance of the ADF
    //FacesCtrlHierBinding, which is casted to JUCtrlHierBinding
    JUCtrlHierBinding treeBinding =
    (JUCtrlHierBinding) collectionModel.getWrappedData();
    //the selected rows are defined in a RowKeySet.As the LOV table only
    //supports single selections, there is only one entry in the rks
    RowKeySet rks = (RowKeySet) returnPopupEvent.getReturnValue();
    //the ADF Faces table row key is a list. The list contains the
    //oracle.jbo.Key
    List tableRowKey = (List) rks.iterator().next();
    //get the iterator binding for the LOV lookup table binding
    DCIteratorBinding dciter = treeBinding.getDCIteratorBinding();
    //get the selected row by its JBO key
    Key key = (Key) tableRowKey.get(0);
    Row rw = dciter.findRowByKeyString(key.toStringFormat(true));
    DCBindingContainer binding=(DCBindingContainer)BindingContext.getCurrent().getCurrentBindingsEntry();
    DCIteratorBinding iterator=binding.findIteratorBinding("myIterator");
    ViewObjectImpl vo=(ViewObjectImpl)iterator.getViewObject();
    Row row=vo.getCurrentRow();
    System.out.println(vo.getCurrentRowIndex());
    row.setAttribute("ID",rw.getAttribute(0));
    row.setAttribute("Name",rw.getAttribute(1));
    //In viewobject value has changed.
    System.out.println(row.getAttribute("ID")+" - "+row.getAttribute("Name"));
    }

    Frank, I have defined in the model multiple attributes:
    <ListBinding
    Name="LOV_SpecialServiceGid"
    ListVOName="AccessorialCodeVO1"
    ListRangeSize="10"
    NullValueFlag="none"
    NullValueId="LOV_SpecialServiceGid_LOVUIHints_NullValueId"
    MRUCount="0">
    *<AttrArray Name="AttrNames">*
    *<Item Value="SpecialServiceGid"/>*
    *</AttrArray>*
    *<AttrArray Name="DerivedAttrNames">*
    *<Item Value="SpecialServiceDesc"/>*
    *</AttrArray>*
    *<AttrArray Name="ListAttrNames">*
    *<Item Value="AccessorialCodeGid"/>*
    *<Item Value="AccessorialDesc"/>*
    *</AttrArray>*
    <AttrArray Name="ListDisplayAttrNames">
    <Item Value="AccessorialCodeGid"/>
    <Item Value="AccessorialDesc"/>
    </AttrArray>
    <DisplayCriteria/>
    </ListBinding>
    But value is returned only in SpecialServiceGid, in SpecialServiceDesc is not returned.
    In pageDefinition has defined:
    <listOfValues StaticList="false" IterBinding="ShipmentStatusCVO1Iterator"
    Uses="LOV_SpecialServiceGid" id="SpecialServiceGidListOfValue"/>
    Maybe I have not identified all in pageDefinition?

  • IOS8.1 does not recover from soft reset on iPhone 6

    My iPhone 6 does not recover from a soft reset (holding the home and power key until you see the apple).  It stays in the white screen with the black apple and never returns.  The reset was necessary due to a profile change request. What is the solution and how are correct resets performed?

    Hello jeffrey281,
    Thanks for using Apple Support Communities.
    To troubleshoot this issue where your iPhone will not boot past the Apple logo, please follow the steps in the article linked to below.
    iOS: Not responding or does not turn on
    Take care,
    Alex H.

  • Changing animation frame rate when rendering in photoshop does not change the length of the video?

    I made a walk cycle animation in Photoshop CS6 and want to render it into a quicktime format. I'd like it to be 12 fps, but when I rendered it at 12 fps the video seemed to be missing frames, and the video was 3 seconds long. I have 98 frames to my animation; doing the math, at 12 fps it should be 8 seconds long. Not 3.
    I was confused and for curiosity's sake I rendered the video at 6 fps, trying to really slow it down. The video ended up being STILL 3 seconds long and only maybe 20 frames. I was missing literally 70 frames. I'm so upset with this rendering thing, I could chuck my computer at the wall.
    Does anybody know of a solution to this?
    edit: If it means anything, I've tried rendering it straight from the frame view and the timeline view. Each time I render it I have the timeline frame rate match the rendering frame rate as well.

    floriannaart wrote:
    Changing animation frame rate when rendering in photoshop does not change the length of the video?
    Photoshop CS6 and CC support two types of animation Frame animations and a Video Timeline
    Changing the frame rate should not change the length of a video timeline. It should just change the number of frames that are rendered.  To change the length of a video you need to change the length of the video timeline.  If you increase the length of the timeline and there is audio I'm quite sure there will be a problem with it,  The Video part will most likely be better then the sound. The required number of extra frames can be generated however the video may look like slow motion. If you decrease the length the motion will speed up.  The length of a video is normally done be editing video clips which are trimmed and stitched together to get the desired duration. Not normally done by altering the duration of a clip.
    The duration a of Frame animation is the sum of the times each frame is displayed.  In a frame animation the length of time a frame is displayed can be varied it not a normal motion picture video.  To have a smooth frame animation you need a sufficient number of frames that are different from each other to show smooth motion.  You can use Photoshop Frame animation tween feature to have Photoshop manufacture frames to help with a smoothing the animation.   Once you have a frame animation the length with the motion you want you can have Photoshop convert it to a video timeline and render a normal motion picture video.  It will not have audio but you can add audio to it.

Maybe you are looking for

  • [svn:fx-trunk] 13741: Changes made by sbannur.

    Revision: 13741 Revision: 13741 Author:   [email protected] Date:     2010-01-24 20:51:01 -0800 (Sun, 24 Jan 2010) Log Message: Changes made by sbannur. Removed patent related comments from the files. Reviewed By: Sameer Bhatt Modified Paths:     fle

  • Availibity

    HR guru's, can anyone please tell me which Table and Extractor of HR module in R/3 give information about employee's available hours or availibility ?? thanks akash.

  • Source list "PODCASTS" # doesn't match actual # of Podcasts

    The sourcelist under "Podcasts" indicates I have 29 Podcasts. When I highlite the item, I see only 7 blue dots and actual podcasts. I watched several downloads progress and complete. Why aren't they in my library?

  • Command line command for combine jpeg files into a pdf file

    I want to learn if we have any command line sentence to combine jpg files. normally from the windows explorer window i can select all jpg files and when i click on right button on the window they shows Combine supported files in acrobat and then i ch

  • Creating a network with SBC DSL...

    I have a series of questions both trouble shooting and opinionated concerning setting up a wireless network with my new Airport Express and my current DSL provider: SBC. Just for information purposes my account ends in @sbcglobal.net. Now I have an o