Getting Error in tcode sxmb_moni??

Hello All,
                Its giving error while PI picks the file and sends to BW.
===================================================================================================
Registration failed
What happened is?  The proclamation the URL http: //golit**03:8001/sap/xi/engine/ was interrupted based on more defectively registration data.  Reference
The registration was carried out in the system DBG(SID of BW).  The registration was carried out for the client 400 and the user and the language. 
What can you do?  If you control yet no user name, turn to your system administrator. 
Mistake code:  ICF-LE-http-c:400-l:-T:4-C:6-U:-P:-L:6
HTTP 401 - Unauthorized
Your SAP Internet Communication Framework team.
When I am trying to check from sxmb_moni,I am getting this error.Can you please help me.

Hi,
Please check this note 1292171
Extract from note
"The message monitor tool could be started directly via transaction sxmb_moni. The official transaction for all web service runtime tools is srt_tools. The message monitor could be also started from there with button Monitor for Processed XML Messages."
"Server receives HTTP code 401 "Unauthorized". Possible reasons: the user is locked, user/password are not set correctly in the logical port, the user does not have right to execute WS calls. If SSO is used there may not be trust relationship between consumer and provider."
Regards
Puneeth

Similar Messages

  • When i m running tcode ME43 m getting error

    when i m running tcode ME43 m getting error: program "SAPMXM06' tried to use screen '0301' which doesnot exist .
    how to resolve this

    XM06 function group contains few exits. Kindly check the enhancement MM06E005 in CMOD to find if any of the screen exits is active while the screen is not active. This might be a possible reason for your dump.
    Regards,
    Ankur

  • Getting error while posting the invoice "Different Local currency "

    Hello All,
    User created Non MRP PO with CNY currency for China and cost center entered which belongs to US country.
    User posted invoice for this PO and then he understood that cost center which has been entered in the PO was wrong.
    and he tried to cancel the invoice with Tcode MR8M and with MIRO credit Memo as well.
    But getting error "Different Local currency from CNY to USD"
    How this can be solved,pls suggest.
    Thanks...
    Trupti

    hi
    please check that you might have changed the currency of PO
    please reset it and then reverse the MIRO
    Note 592312 - MIRO: Termination M8396 'Different local currency'
    Edited by: Kunal Ingale on Nov 12, 2010 8:15 AM

  • Getting Error in ALE Service....

    Hi All,
    I am getting error when i am sending the IDOC...
    The error is Entry in outbound table not found
    Status 29
    My selection Program is as following:
    *& Report  ZDS_CUST_IDOC
    REPORT  ZDS_CUST_IDOC MESSAGE-ID YM.
    TABLES:ZDSCUSTHDR.
    DATA: S_CONTROL_RECORD LIKE EDIDC, "IDOC CONTROL RECORD
          S_Z1DSEGMENT1 LIKE Z1DSEGMENT1. " CUSTOMER HEADER
    DATA: T_CUSTHDR LIKE ZDSCUSTHDR OCCURS 0 WITH HEADER LINE,
          T_EDIDD LIKE EDIDD OCCURS 0 WITH HEADER LINE,
          T_COMM_IDOC LIKE EDIDC OCCURS 0 WITH HEADER LINE.
    CONSTANTS: C_Z1SEG LIKE EDIDD-SEGNAM VALUE 'Z1DSEGMENT1'.
    SELECT-OPTIONS : S_KUNNR for ZDSCUSTHDR-KUNNR.
    START-OF-SELECTION.
    PERFORM FETCH_CUSTHDR.
    PERFORM CONTROL_REC.
    PERFORM MASTER_IDOC_DISTRIBUTE.
    END-OF-SELECTION.
    *&      Form  FETCH_CUSTHDR
          text
    -->  p1        text
    <--  p2        text
    FORM FETCH_CUSTHDR .
    SELECT *
      FROM ZDSCUSTHDR
      INTO TABLE T_CUSTHDR
      WHERE KUNNR IN S_KUNNR.
    LOOP AT T_CUSTHDR.
      S_Z1DSEGMENT1-KUNNR = T_CUSTHDR-KUNNR.
      S_Z1DSEGMENT1-NAME1 = T_CUSTHDR-NAME1.
      S_Z1DSEGMENT1-ADD1 = T_CUSTHDR-ADD1.
      S_Z1DSEGMENT1-REGIO = T_CUSTHDR-REGIO.
      T_EDIDD-SEGNAM = C_Z1SEG.
      T_EDIDD-SDATA = S_Z1DSEGMENT1.
      APPEND T_EDIDD.
      CLEAR T_EDIDD.
    ENDLOOP.
    ENDFORM.                    " FETCH_CUSTHDR
    *&      Form  CONTROL_REC
          text
    -->  p1        text
    <--  p2        text
    FORM CONTROL_REC .
    S_CONTROL_RECORD-MESTYP = 'ZDCUSHDR'. " MESSAGE TYPE
    S_CONTROL_RECORD-IDOCTP = 'ZDCUSIDOC'. " BASIC IDOC TYPE
    S_CONTROL_RECORD-RCVPRT = 'LS'. " PARTNER TYPE.
    S_CONTROL_RECORD-RCVPRN = 'ZDCU810'. "PARTNER NO.
    S_CONTROL_RECORD-RCVPOR = 'A000000068'. "PORT NO.
    ENDFORM.                    " CONTROL_REC
    *&      Form  MASTER_IDOC_DISTRIBUTE
          text
    -->  p1        text
    <--  p2        text
    FORM MASTER_IDOC_DISTRIBUTE .
    CALL FUNCTION 'MASTER_IDOC_DISTRIBUTE'
      EXPORTING
        MASTER_IDOC_CONTROL                  = S_CONTROL_RECORD
      OBJ_TYPE                             = ''
      CHNUM                                = ''
      TABLES
        COMMUNICATION_IDOC_CONTROL           = T_COMM_IDOC
        MASTER_IDOC_DATA                     = T_EDIDD
    EXCEPTIONS
       ERROR_IN_IDOC_CONTROL                = 1
       ERROR_WRITING_IDOC_STATUS            = 2
       ERROR_IN_IDOC_DATA                   = 3
       SENDING_LOGICAL_SYSTEM_UNKNOWN       = 4
       OTHERS                               = 5
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
             WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    LOOP AT T_COMM_IDOC.
      WRITE:/ 'NO. OF IDOC GENERATED:',T_COMM_IDOC-DOCNUM.
    ENDLOOP.
    ENDFORM.                    " MASTER_IDOC_DISTRIBUTE
    Please help me out asap.....
    Regards,
    Dhruv Shah

    Hi Dhruv..
    There are 2 issues:
    1. Error 29 comes when u did not maintain the PARTNER PROFILE for this message type in Tcode WE20. Check it.
    2. After calling the MASTER_IDOC_DISTRIBUTE you must execute COMMIT WORK.
    START-OF-SELECTION.
    PERFORM FETCH_CUSTHDR.
    PERFORM CONTROL_REC.
    PERFORM MASTER_IDOC_DISTRIBUTE.
    commit work. "Updates the Communication Idocs in Database
    <b>Reward if Helpful.</b>

  • Getting error in XI"RFC Program Not Found"

    Hi All,
    I am getting error in SXMB_MONI "RFC Program not found via SAP XI".
    So please suggest me what is the problem behind this..For these SAP XI and R/3 i made 3 to 4 RFC program but only 1 RFC program name not getting Via SAP XI.
    Thanks
    Amit

    Hi,
    I am calling RFC FM via SAP XI.
    Main Records are coming from siebel and recevied by SAP XI and XI will do some changes in records and calling REC FM from SAP R/3.
    Problem is siebel to xi records coming fine but xi to sap R/3 error message coming "Program not Found".
    Thanks
    Amit

  • Getting error in distribution of Maintenance Certificate via SDCCN

    Hello All,
                    While executing SPAU in ECC 6.0 I am getting error in distribution of Maintenance Certificate via SDCCN.
    While I am trying to download note 0001293657 Fehler bei Verteilung von Wartungszertifikaten über SDCCN- I am getting error in distribution of Maintenance Certificate via SDCCN...Please suggest

    Hi,
    Check wheather your Maintenance certificate is valid or not.
    For checking the same goto Slicense TCODE.
    Thanks
    Anil

  • Why aren't adapter errors visible in SXMB_MONI?

    My client has an integration scenario that updates an Oracle database through a JDBC receiver channel.  Occasionally an insert/update statement will fail.  The adapter engine logs the Oracle error message, but that error message doesn’t show up in SXMB_MONI.   SXMB_MONI happily displays the checkered flag.  You can only see the adapter error in runtime workbench. 
    Why aren’t adapter errors “visible” in SXMB_MONI?

    > It seems odd that error messages aren’t propagated
    > from one stack to the other so that we  have a
    > COMPLETE view of the lifecycle of our messages.  The
    > left hand doesn't communicate with the right.
    You can't propagate an error which occurs in a later point of the pipeline to a previous point.
    They error may occurr in the adapter, but when the message gets to the AE, the Integration Engine pipeline is already complete.
    But you know, the later point can carry on errors occurred at a earlier point. That is why you can see the Integration Engine errors in the Messsage Monitoring.
    It is a matter of culture. SAP consultants, in general, are more confortable with ABAP stack (SXMB_MONI) than with Java Stack (Message Monitoring). But, in this case, the Java tool is more complete.
    Regards,
    Henrique.

  • Getting error in RWB

    Scenario:file to file
    Source Structure: 2 fields( Fname & Lname)
    Target Structure :1 field(Full_name)
    i m getting below error in RWB when i start sender communication channel.
    error"Conversion of file content to XML failed at position 0: java.lang.Exception: ERROR converting document line no. 1 according to structure 'ROW':java.lang.Exception: ERROR in configuration / structure 'ROW.': More elements in file csv structure than field names specified!"
    my csv file has only two fields that is "aaaaa,bbbbbb" and i saved it as hello.txt
    help me how to resolve it.
    send your solutions simple as possible

    hi,
    i took pay load from sxmb_moni and checked it in mapping and it showed error
    payload form SXMB_MONI
      <?xml version="1.0" encoding="utf-8" ?>
    - <ns:MT_SNDRSUN1 xmlns:ns="http://suntosun">
    - <Recordset>
    - <ROW>
      <FNAME>BBBBBBBBBB</FNAME>
      <LNAME>aaaaaaaa</LNAME>
      </ROW>
      </Recordset>
      </ns:MT_SNDRSUN1>
    Below Xml Code is normaly i copied from test->source text view from message mapping
    <?xml version="1.0" encoding="UTF-8"?>
    <ns0:MT_SNDRSUN1 xmlns:ns0="http://suntosun">
       <ROW>
          <FNAME/>
          <LNAME/>
       </ROW>
    </ns0:MT_SNDRSUN1>
    *can u mention wat error it may be

  • Capturing Application Error log from SXMB_Moni

    Hi,
    I wanted to capture the error information from Application error log from ECC sxmb_moni and forward that as email alert.
    We have already alert configuration in place with alert category using standard variables. Was wondering if I have to capture application error log from sxmb_moni what would be steps involved. Please let me know if anybody has worked on this and appreciate your help on this.
    Sample Error message from sxmb_moni of ECC system
    MT_Fault
    Error in Application System
    Detailed Information
    Process Order invalid
    Thanks
    Selvam
    Edited by: Selvam_muthu on Jun 23, 2011 5:40 PM

    Hi Selvam,
    As the exception is raised in ECC system, alert cannot be trigger, alert will get trigger when there is a error in PI system. To raise a email, write additional code in ECC to trigger the e-mail with proper error content

  • Detailed error message in sxmb_moni

    Hi guys,
    is it possible to get detailed error information in sxmb_moni like the error information in the integration repository when using the test tag
    sample error message in test tab
    +ns0:ZMOZPRUCK_envelope_update/ns0:ZMOZZFZT_update[4]/ns0:dbTableName/ns0:access/ns0:SPRAS.+
    in sxmb_moni the error message is truncated
    sample
    +During mapping com/sap/xi/tf/_JDBC_ZPRUCK_2_ZMOZPRUCK_envelope_u~ a RuntimeException occurred. com.sap.aii.utilxi.misc.api.BaseRuntimeException:RuntimeException in Message-Mapping transformation: Cannot produce target element /ns0:ZMOZPRUCK_en~</+
    This will save myself for copy/paste the payload in the test tab. In case of big message the Java GUI of the ESR lacks and it is impossible to test the mapping with such big messages.
    any suggestions on that?
    Thanks

    Gugel,
    Check this thread and the blog:
    level of trace
    /people/michal.krawczyk2/blog/2005/05/10/xi-i-cannot-see-some-of-my-messages-in-the-sxmbmoni
    Usually 1 should be good in prod.
    Regards,
    ---Satish

  • Getting error in each and every scenario

    Hi,
    I am getting Error as "HTTP response contains status code 503 with the description service unavailable" at SXMB_MONI in each every scenario like
    FIle to File,
    FIle to IDOC and vice versa,
    IDOC to JMS and vice versa,
    File to JDBC,
    HTTP to IDOC,
    JMS to JDBC,
    RFC to SOAP etc.
    Earlier the above scenarios all are working fine.i.e without any Error.
    Can any body help me to resolve this problem.
    Regards
    Sridhar Raju Mahali

    hi sridhar..
    got design.. -> tools -> transfer from SLD -> import s/w component version...
    and import the below 2 components 
    SAP J2EE ENGINE 6.40     sap.com     SAP-JEE     6.40     01200615320200006685
         SAP BASIS 6.40     sap.com     SAP_BASIS     640     01200615320200005507
    if imported, re-import....
    hit the fulll cache refresh then ..and restart ur IR ID...
    ( confirm with ur basis guys, how to go abt)
    regards..
    vishal

  • Getting error "enter valid parameter"

    Hi,
    I am getting  error "enter valid parameter" in R/3 while trying to process inbound messages thru XI. I have assigned partner type as "KU" and store number as partner number in mapping. sxmb_moni shows that messages have been successfully sent to R/3 system.
    But in R/3, transaction WPER shows above error and partner type as "LS" in control recod of idoc.
    please help me in understanding how inbound idoc in R/3 is showing "LS" as partner type and picking the corresponding logical partner profile, instead of customer type partner profile.
    Since in retail,  store number is customer number , inbound sales data should  be posted against this customer.

    Hi Shaik,
    just check when you send IDOC data from XI, then you are mapping the partner type field to which data.....map it to constant KU.............then on SAP R/3 in we20, add the IDOC in inbound parameter for KU partner and give processing code for it.
    Hope this may solve your query.
    Thanks,
    Rajeev Gupta

  • Batch Job for ME59N getting error SE133 - Net value could not be determined

    HI,
    We can convert the PO automatically when run manually tcode ME59N  successfully.
    But when We schedule a batch job to run ME59N (RM06BB30) to create AUTO Purchase order for services item Purchase requistion.
    Getting error message SE133 "Net value could not be determined".  PO canot be converted automatically.

    Hi,
    Price/ Net value not picking!
    Check  info record  based on  Material Group for your service PR which need to be converted to PO.
    Also check activation of  Automatic Purchase order creation for Service requisitions in t.code: ML91.
    Check vendor master , schema group of vendor and check MM pricing procedure, the availability of condition type for service master for service PO.
    For more please read note 635511
    Regards,
    Biju K

  • Getting Error SAPHTML_E_CALL_METHOD_FAILED while displaying payload in MONI

    HI Experts,
    Iam getting error " SAPHTML_E_CALL_METHOD_FAILED:" While displaying message payloads in SXMB_MONI.
    Facing this problem for all the messages,Issue is in production system.
    Cloud you please help me in in resolving this error.
    Thanks in Advance,
    Regards,
    Seshu.K

    Hi,
    This seems like some Basis config issue. might be a problem in your MONI settings,
    Go to SXMB_ADM and inside Integration Engine configuration
    ->add LOGGING and LOGGING_SYNC under category RUNTIME and give current value = 1 (active). Save it then.
    Also check if sapgui version if the latest one. Maybe you can solve the problem by upgrading sapgui.
    The following SAP notes might help: 1018948, 1072109
    Regards,
    Souvik

  • Error in tcode sproxy

    hey guys i m tryin to create a server proxy but getting a runtime error in tcode sproxy GETWA_NOT_ASSIGNED.
    any idea where is the problem?
    thanx
    ahmad

    Ahmad,
    Check this thread where your issues is discussed very clearly:
    Is There....
    ---Satish

Maybe you are looking for

  • I've been using PScc for 2 months and suddenly when I open a file in camera raw and attempt to use the

    radial, graduated and adjustment filters those and all the other options which do work  are immediately  "greyed out" and I've got to restart the computer to get rid. Assistance would be greatly appreciated.  Win 8.1 64 bit

  • How to gracefully import CSV files into Numbers.app v3?

    I've posted this as a question at Stack Exchange, also- I have a process, which has worked faithfully for years in Numbers '09, whereby I download my Bank account data in CSV format, then drag that data directly into my Numbers sheet (after creating

  • Urgent help with Pages 5.0 needed

    Hi guys, I need urgent help! I deleted Pages 5.0 (as I HATED it) but now can't open a very important document. Can someone please tell me how to reinstall it?? Thanks Kellie

  • 5800 music problem

    so i have a nokia 5800 and i am very happy with it...well except for the music player. i was hoping that it would be fixed with the new firmware upgrade but sadly, it has not. so when i'm jamming my tunes at random moments a song will start playing a

  • (foreign) keyboard mapping problems

    Many people, myself included, have voiced problems with keyboard mappings since updating to Leopard. It appears to particularly afflict people with non-US keyboards, but I may be wrong. Does anybody out there have a generic fix? Manually modifying th