Status text error

Hi all,
    I need help in resolving this issue. When viewing a production order status in COOIS transaction, I am getting a popup information message " Status text for object ORXXXXXXXX in order XXXXXXXXXX could not be determined". After that in the next screen (Order Information system), if i try to save that order, program terminates giving a runtime error "Message_type_X". Someone help in this regard.

Hi,
For changing the user status you can use this function module.
STATUS_CHANGE_EXTERN.
Hope thsi will help.
Regards,
Swarna Munukoti.

Similar Messages

  • IDOCs in trfc with status text as error

    Hi,
    I have IDOCs in trfc queue with status text as 'The ABAP/4 Open SQL array insert results in duplicate database records'.
    How to reach this error point and rectify the same.
    Regards,
    Sheetal

    Hi Sheetal,
    Please refer the link,
    Successfully posted IDOC from XI but not reflected in Receiver R/3 system
    Best Regards.
    Reward points if it is useful.

  • Status Text 000

    Hello
    I tried an Idoc. It doesn't reach XI. It does not appear in SXMB_MONI. In SM58, I see status text 000. What does that mean ?
    However when I go to WEO2 I see Current Status as 03.
    What should I do and how woiuld I proceed ?
    Midhun

    Hello Ravi
    When I double click on it, I get this : : 000
    I don't find anything more
    I went to SM59, RFC Destination from QAS of XI, then did a Utilities -> Test -> Authorization Test
    I got this as a result.
    Logon Cancel
    Error Details Name or Password is incorrect (repeat logon)
    So there is an Error with SM 59 that I created to ECC from XI.
    Midhun

  • Sap RFC status text chinese

    Hi forum,
    My process chain crashed this night.
    When I look in my transactional RFC I see this rfc:
    Caller     ALEREMOTE
    Function Module     RSAR_TRFC_DATA_RECEIVED
    Target System     BWPCLNT020
    Date     28.01.2011
    Time     02:54:59
    Status Text     挀漀渀渀攀挀琀椀漀渀 挀氀漀猀攀搀 ⠀渀漀 搀愀琀愀
    Strange.
    Could you help me to find how to solve this error ?
    Thank you,
    Philippe

    did you install chinese  language in your system?

  • QA 32 - Status check error

    HI All,
    When i execute the QA32 transaction for ABC Material,it is showing only one inspection lot.when i select it and click the Usage decision button,it is shoing the error.
    "Status check error" - The Function you selected cannot be carried out
    Transaction analaysis:
    Transaction  Access usage decision
    Influence of syst.status on transactions
    Stat Description                    Inflnce
    UD   Usage decision has been made   Disallowed
    STIC Short-term insp. completed     Allowed
    CALC Sample calculated              Allowed
    Please help me on this issue.
    Thanks
    Srini

    Hi,
    I checked in SU53.It is showing that the last transaction is successful.
    How do i know that the UD has been already taken /made?
    Stat Text
    CRTD Created
    PREQ Plan/specific. required
    CHCR Characterist. must be created
    SPRQ Quantity posting required
    This is the status now.
    Please help me
    Thanks
    Srini

  • CS5 - Text format for classic text error

    will now have to re-edit every part.
    Clearly you can get around this by other formats but fact is if you have a document that has negative spacing dont open it in CS5 cause you
    This may have been in recent update.
    Flash now resets them when you open the file to 0, if you notice or not.
    when you have negative (-20) set in spacing, usually used when you have margins.
    Classic Text Error
    Flash CS5

    Here's a workaround.
    FixTextIndent is a class with static methods that
    provides a workaround for the Flash CS5 text formatting
    bug.  The Flash CS5 IDE will not remember the text
    indent setting for either static or dynamic text fields.
    We can set the indent in Actionscript for dynamic fields,
    so to use this class, convert your fields to dynamic,
    then set the left margin.
    When you call FixTextIndent methods, they will set
    the indent to the negative of the left margin.
    Gary Weinfurther, 12/17/2010
    package com.keysoft.util
        import flash.display.DisplayObject;
        import flash.display.DisplayObjectContainer;
        import flash.text.TextField;
        import flash.text.TextFormat;
        public class FixTextIndent
             Fixes the line indent of all dynamic text fields
             in a given display object container so that
             the indent is the negative of their left margin.
            public static function FixContainer(container:DisplayObjectContainer):void
                for(var i:int = container.numChildren - 1; i >= 0; --i)
                    var obj:DisplayObject = container.getChildAt(i);
                    if (obj is TextField)
                        FixTextField(obj as TextField);
             Fixes the line indent of a dynamic text field
             to the negative of its left margin
            public static function FixTextField(tf:TextField):void
                var format:TextFormat = tf.getTextFormat();
                if (format.leftMargin != null && format.leftMargin > 0)
                    format.indent = -(format.leftMargin as Number);
                    tf.setTextFormat(format);

  • Processing status code error

    Hi all,
    What does processing status code "Error" indicate in rcv_headers_interface.There is no error message in po_interface_errors.There is nothing available in the log of Receiving Transaction Processor.Can someone guide me what exactly this means?
    Thanks in advance!!

    Hi Sandy;
    Please see below notes which could be helpful
    Resolving records stuck in the Receiving Transactions Interface [ID 50903.1]
    http://docs.oracle.com/cd/E19509-01/820-4390/ggtrm/index.html
    Regard
    Helios

  • ERROR at line 1: ORA-29855: error occurred in the execution of ODCIINDEXCREATE routine ORA-20000: Oracle Text error: DRG-10700: preference does not exist: global_lexer ORA-06512: at "CTXSYS.DRUE", line 160 ORA-06512: at "CTXSYS.TEXTINDEXMETHODS", line 366

    database version 11.2.0.4
    rac two node
    CREATE INDEX MAXIMO.ACTCI_NDX3 ON MAXIMO.ACTCI
    (DESCRIPTION)
    INDEXTYPE IS CTXSYS.CONTEXT
    PARAMETERS('lexer global_lexer language column LANGCODE')
    ERROR at line 1:
    ORA-29855: error occurred in the execution of ODCIINDEXCREATE routine
    ORA-20000: Oracle Text error:
    DRG-10700: preference does not exist: global_lexer
    ORA-06512: at "CTXSYS.DRUE", line 160
    ORA-06512: at "CTXSYS.TEXTINDEXMETHODS", line 366

    Like the error message says, you don't have a global_lexer.  So, you need to create a global_lexer and that lexer must have at least a default sub_lexer, then you can use that global_lexer in your index parameters.  Please see the demonstration below, including reproduction of the error and solution.
    SCOTT@orcl12c> -- reproduction of problem:
    SCOTT@orcl12c> CREATE TABLE actci
      2    (description  VARCHAR2(60),
      3      langcode     VARCHAR2(30))
      4  /
    Table created.
    SCOTT@orcl12c> CREATE INDEX ACTCI_NDX3 ON ACTCI (DESCRIPTION)
      2  INDEXTYPE IS CTXSYS.CONTEXT
      3  PARAMETERS('lexer global_lexer language column LANGCODE')
      4  /
    CREATE INDEX ACTCI_NDX3 ON ACTCI (DESCRIPTION)
    ERROR at line 1:
    ORA-29855: error occurred in the execution of ODCIINDEXCREATE routine
    ORA-20000: Oracle Text error:
    DRG-10700: preference does not exist: global_lexer
    ORA-06512: at "CTXSYS.DRUE", line 160
    ORA-06512: at "CTXSYS.TEXTINDEXMETHODS", line 366
    SCOTT@orcl12c> -- solution:
    SCOTT@orcl12c> DROP INDEX actci_ndx3
      2  /
    Index dropped.
    SCOTT@orcl12c> BEGIN
      2    CTX_DDL.CREATE_PREFERENCE ('global_lexer', 'multi_lexer');
      3    CTX_DDL.CREATE_PREFERENCE ('english_lexer', 'basic_lexer');
      4    CTX_DDL.ADD_SUB_LEXER ('global_lexer', 'default', 'english_lexer');
      5  END;
      6  /
    PL/SQL procedure successfully completed.
    SCOTT@orcl12c> CREATE INDEX ACTCI_NDX3 ON ACTCI (DESCRIPTION)
      2  INDEXTYPE IS CTXSYS.CONTEXT
      3  PARAMETERS('lexer global_lexer language column LANGCODE')
      4  /
    Index created.

  • SM58 status text " No service for system SAPERP, client 800 in integr "

    In Idoc to file scenario:
    i have fallowed this blog to configure ALE settings
    /people/swaroopa.vishwanath/blog/2007/01/22/ale-configuration-for-pushing-idocs-from-sap-to-xi
    I have generated one idoc successfuly from sap r/3 system.
    but i didn't find any idoc in xi server.
    control records are
    receiver:A000000036,(RFC DESTINATION->LS_XI_100( Remote login sucessful for xi system))
          LS_XI_100
          LS
    Sender: SAPERP
         LS_SAP_800
         LS
    ID: Adapter specific identifiers are( LS->LS_SAP800, R/3->ERP,CLIENT,800)
    so i have gone to tcode sm58 in sap r/3
       where i found the status text "No service for system SAPERP, client 800 in integr)
    Please help me from this problem.
    Regards,
    Deviprasad.

    Hi Deviparasad,
    please create a techincal system and busniess system of type ABAP in XI SLD if you have already created the techincal system and busniess system  then check whether client 800 is used or not if include client 800.
    please reward points
    Regards
    Sreeram.G.Reddy

  • Exit CL_HRASR00_POBJ_WF_EXIT triggered exeception for event STATE_CHG and (target) status READY- ERROR EVENT_RAISED - Error updating the process object

    Hi All
    I have set up a simple custom HCM process and Form regarding Infotype TO CREATE AND CHANGE POSITION. I have checked the process and form consistency and it seems fine. Now when I run the process from HRASR_DT it generates a process number but it also gives an error workflow could not start.I get following error (SWIA log - Step history)
    Executing flow work item - Transaction brackets of the workflow has been damaged
    Exception occurred - Error when starting work item 000000007031
    PROCESS_NODE - Error when processing node '0000000014' (ParForEach index 000000)
    CREATE - Error when creating a component of type 'Step'
    CREATE_WIM_HANDLE - Error when creating a work item
    CREATE_VIA_WFM - Exit CL_HRASR00_POBJ_WF_EXIT triggered exeception for event CREATED and (target) status
    EVENT_RAISED - Error updating the process object
    Executing flow work item - Exit CL_HRASR00_POBJ_WF_EXIT triggered exeception for event STATE_CHG and (target) status READY->ERROR
    EVENT_RAISED - Error updating the process object
    Executing flow work item - Transaction brackets of the workflow has been damaged
    Executing flow work item - Work item 000000007031: Object FLOWITEM method EXECUTE cannot be executed
    Executing flow work item - Error when processing node '0000000014' (ParForEach index 000000)
    Points to be noted:
    1) I have searched few SAP notes such as 1384961(Notes for 6.0.4) but our system is in higher level patch 6.0.5
    2) WF-BATCH have SAP_NEW and SAP_ALL authorization.
    Appreciate your valuable suggestions.
    Thanks
    Ragav

    Hi Ragav
    did you try to debug this? maybe something is missing in config of P&F?
    Since you are on 605, the following note would be there in your system....use it to debug:
    1422496 - Debugging background workflow tasks in HCM P&F
    This will help you find the root cause.
    regards,
    modak

  • What does "status code error" mean when trying to sign into the APP Store?

    APP Store
    When trying to install a free APP (Duplicate Cleaner for iPhoto) I receive this error message "Status Code Error" and it does not let me proceed. What does this mean? and How can I proceed?

    Apple’s having trouble with the iTunes Store servers right now. Wait for them to resolve the issue.
    (123888)

  • Error in idoc with status 20 "Error triggering EDI Subsystem"

    Dear All,
    I have query related to IDOC Status 20.
    I am tirggering IDOC with standard t-code from IS-Retail system. I have created two ports a) TRFC port and b)File port .
    <b>We are having sending and receiveing application on two different OS i.e one XI on Windows and IS Retail on AIX(Unix). I am not able to send idoc to another system. I am getting these IDOC status in WE05 (STATUS 01 , 30 , 03 , 20 )</b>
    Keeping the above fatcs in mind could you please tell me how to remove the <b>error with status 20 "Error triggering EDI Subsystem".</b>

    Hi prabhat,
    You should have checked the automatic triggering possible at the file port level and the partner profile setting could be 'start subsytem'.
    Go to WE21 and do the access test for the file port.
    Once you done and find no issues then go to SM59 and test the connection for the RFC destination assigned to the ports.Possibly it has to do with the RFC destination.
    Other reasons could be yours is a test client and got refreshed recently.so the production client settings might be causing this error.Check with your basis to get it working.
    other reason could be the logical system assigned to the client should be having production client's name.
    Check these.
    I am sure you should be able to solve this issue.
    Thank you.
    regards,
    karun.M

  • 5 IDOC with status 29 Error in ALE service

    hi there,
    im looking at this similar problem with less information on me the only info i got is this can anyone help me out pls
    IDOC Status Outbox:
    IDOC failure between 13/07/2008 to 14/07/2009
    1 IDOC with status 02 Error passing data to port
    5 IDOC with status 29 Error in ALE service
    IDOC Status InBox:
    88 IDOC with status 51 Application document not posted
    regards
    raju

    Hi,
    Check this thread.
    DB13-DBCHECK by saving log-throwing DUMP:TSV_TNEW_BLOCKS_NO_ROLL_MEMORY
    Regards.

  • How to Change  status text in ESS travel managemnet screen

    Dear All,
    What is the procedure to change the status/processing status text change in travel management  ESS screen.
    Regards,
    Palia

    Hi Pailia and all,
    I am with a client who has the same requirement (to customise the standard "processing status" wording which is shown against each trip in the ESS screen).  So far, I have not been able to identify where these texts can be changed.  If anyone can help that would be much appreciated?
    Many Thanks,
    Jack

  • Keep getting "renderable text" error when I need to OCR PDF's from FrameMaker.

    My solution has been to individually extract all those pages, then open them up in Photoshop, flatten them and
    widen the canvas size to standard 8.5 x 11.
    But that's a little tedious and time-consuming and you have to delete the original page from your document, after
    importing the OCR-friendly page.
    Is there a printer definition, or something you can set up when you're generating your PDF's in the first place,
    that will get rid of that annoying "renderable text" error?

    Ok...
    I don’t know how it happens but after I save my work in FrameMaker or MS Word, and print
    to PDF for the final output, there are often pages with text in them that isn’t recognizable,
    or that can’t be found with a CTRL+F search.
    That is a serious issue, and one we might be able to help you with, but really, quite separate from the issue here. It's too late to try and fix this once it is a PDF.
    What is it that’s lost when OCR is run?
    Quality. Small file size. Tags (which might be required legally). Almost everything except the basic text, and that might also be lost given that OCR is not guaranteed to work. This is NOT the right way to solve your problem.
    The translator doesn’t have any Adobe products except Reader, so I’m limited to Acrobat
    to show her how the words and pictures are laid out on a page.
    In order for her to copy and paste that text – or search it, to find all of the places where the
    same word might be used – I need to make sure every word is there for her to grab.
    I have heard of translators trying to work with PDFs, and few that succeed. You can reasonably expect a transation service to support FrameMaker. But if they don't I recommend you extract the text from FrameMaker to a simple Word or text file. They should be fine using the PDF as a visual reference, and having the text to translate, and for you to flow back into the original layout. (Again, something I'd expect a full service translation to do themselves, but there are advantages to keeping control too).
    Those were the 2 pages that gave the ‘renderable text’ error. Don’t ask me why or how, they
    look like all the other pages in that document. Except Acrobat thinks they’re scanned graphics,
    that’s how they present when you wave the cursor around in them, hunting for text.
    Renderable text is just text. It means that somewhere on that page there is text. Surely there is layout, page numbers, whatever from FrameMaker on the pages. If not, we really need to look at your production methods - back to the first point.

Maybe you are looking for

  • Firefox won't start up at all, I can't figure out how to fix it?

    I've already looked at older posts on the forum, but nothing seems to work. When I click on the firefox logo nothing happens at all (It will try load for around 2 seconds then it stops). I can't run it in safe mode, I've tried making a new profile, I

  • Sync SHARED Outlook calendar with iPhone (possible fix!)

    Hey all, My business uses a shared calendar in Microsoft Outlook 2007. Our personal calendars sync fine. However, the shared calendar does not appear in iTunes. POSSIBLE FIX: If you create a local copy of the shared calendar by clicking and dragging

  • Adding special prices to items query.

    Hi, I'm just wondering if anybody can help me work out how to add special prices to items on a volume basis. say if i sold one item there would be no discount but if i sold 10 then i would automatically want a 5% discount to be given, I've had a look

  • ITunes saying iPod over capacity, iPod says different

    Yesterday I accidentally deleted all of my podcasts.  I spent a considerable amount of time rebuilding everything, and as the delete happened, it deleted all of them off of my iPod Classic as well. After rebuilding all of the stuff in iTunes, I went

  • Transparent video (with 3d model) output

    Good morning, Today I decide to give Photoshop CS4 extended a crack by working with a feature I was waiting on: better 3D controls and animation keyframing. I was easily able to open up the U3D file I was working with, get the animation correct, and