Mysterious message while processing PO in SRM 4.0

Hi
   We have a proxy communication between SRM 4.0 and XI 3.0 setup inorder to send out approved POs to vendors from SRM through XI.
The SRM business system has been setup in the SLD with the proper logical system name attached to the business system defn on the SLD -depicting the backend SRM system. The SLDCHECK done from the SRM system works fine and returns the name its entry from the SLD. The entries in SLDAPICUST also looks fine.
When we try to send out a PO from the SRM system - we get the following error message :
<b>An SLD system has not been assigned to logical system QBHCLNT180</b>
Any idea as to what we are missing here ?

Hi
   Thanks for your quick response. Yes, SRM system's logical name was there in the SLD' entry of the SRM business system . There is no problem in the SLD entry for the SRM business system.
For some strange reason, SAP has provided a configuration mapping between the SRM logical system and its business system name - this mapping entry has to be maintained as a part of the SRM config ( SPRO -->)why ?? why do we have SLDCHECK, SLDAPICUST etc - inorder to facilate SRM box accessing the central SLD ??
Anyway , that backend mapping is being referred when the PO is sent out - inorder to for the SRM system to get its business system name - to be passed on the outbound proxy message header....

Similar Messages

  • Mod_hlshttp [500]: Invalid timestamp found in the message while processing /hls-live/streams/rd-mp4

    Hi,
    We use  FMS 4.5.1 for streaming MP4 (H264/AAC) live streams to flash clients and iPads. Occassionally iPad viewers get error messages indicating that the video cannot be played. On these occasions we see error messages like this in our Apache logs:
    mod_hlshttp [500]: Invalid timestamp found in the message while processing /hls-live/streams/rd-mp4/events/noordoostpolder_1/liveevent/livestreamNum4390.ts
    Strangely enough this error message cannot be found anywhere in Adobe's documentation or anywhere else on the net (or perhaps I haven't searched well enough...)
    Has anyone else here encountered this problem and/or does anyone have an idea as to what causes these messages and this problem?
    Message was edited by: GRO-NIC: Does anyone have any idea? And/or can someone from Adobe respond? We are still receiving complaints from several of our customers about this.

    Hi,
    We use  FMS 4.5.1 for streaming MP4 (H264/AAC) live streams to flash clients and iPads. Occassionally iPad viewers get error messages indicating that the video cannot be played. On these occasions we see error messages like this in our Apache logs:
    mod_hlshttp [500]: Invalid timestamp found in the message while processing /hls-live/streams/rd-mp4/events/noordoostpolder_1/liveevent/livestreamNum4390.ts
    Strangely enough this error message cannot be found anywhere in Adobe's documentation or anywhere else on the net (or perhaps I haven't searched well enough...)
    Has anyone else here encountered this problem and/or does anyone have an idea as to what causes these messages and this problem?
    Message was edited by: GRO-NIC: Does anyone have any idea? And/or can someone from Adobe respond? We are still receiving complaints from several of our customers about this.

  • Message while processing Adobe form

    Hi,
             I am trying to display error message while running through an adobe form. Am using the below code to display the message but its running through the code and not display any kind of message. Just wondering if am missing any thing.
    DATA message_handler TYPE REF TO cl_hrbas_message_list.
    DATA: message_dummy1 TYPE string.
      DATA new_message TYPE symsg.
    CREATE OBJECT message_handler.
    MESSAGE e115(z_msg) INTO message_dummy1.    
    MOVE-CORRESPONDING sy TO new_message.    u201Cgetting the desc of msg. in new_message
    CALL METHOD message_handler->if_hrbas_message_handler~add_message
                      EXPORTING
                        message = new_message.
    Thanks,
    Kumar

    Hi,
    I have used the same kind of code as shown below. For me it triggers perfectly.
    data :      MESSAGE TYPE SYMSG,
                     MESSAGE_DUMMY TYPE STRING.
    MESSAGE E003(Z_EE_TEST) WITH INTO MESSAGE_DUMMY.
              MOVE-CORRESPONDING SY TO MESSAGE.
              MESSAGE_HANDLER->ADD_MESSAGE( EXPORTING MESSAGE = MESSAGE ).
              RETURN.
    Also please confirm whether the message class has been created correctly.
    Regards,
    Prabu

  • How to display a modal message while processing in a thread.

    I have difficulty in display a modal dialog while in processing in a background.
    I have created the following class.
    package fedex.screen.component;
    import java.awt.*;
    // This infobox is a modal dialog which display static text and stay
    // on screen without blocking proceeding code from execution and can
    // only close by issuing close method.
    public class ProcessInfoBox implements Runnable
         // Display dialog box
         private InfoBox dialog = null;
         // Thread to enable showing of Dialog Box
         private Thread thread = new Thread(this);
         // Determine if to close dialogbox
         private boolean isFinish = false;
         public ProcessInfoBox(Frame frame) {
              dialog = new InfoBox(frame,"Performing Operation","Processing...");
    thread.setPriority(Thread.MAX_PRIORITY);
         public void setTitle(String title) {
              dialog.setTitle(title);
         public void setText(String text) {
              dialog.getMessageLbl().setText(text);
         // The reference return will be ProcessInfoBox.InfoBox
         public InfoBox getInfoBox() {
              return dialog;
         // Thread method
         public void run() {
              dialog.setVisible(true);
              // If true return from thread and exit.
              while ( isFinish == false )
                   try
                        Thread.sleep(500); // 500 msec
                   catch ( InterruptedException e )
         // Start showing dialog
         final public void show() {
              thread.start();
              isFinish = false;
         final public void hide() {
              isFinish = true;
              dialog.setVisible(false);
         // Dialog box which show text.
         public class InfoBox extends Dialog
              private Label messageLbl = new Label("Processing ...");
              public InfoBox(Frame frame, String title, String message) {
                   super(frame,title,true);
                   initInfoBox();
              public Label getMessageLbl() {
                   return messageLbl;
              private void initInfoBox() {
                   setLayout(new BorderLayout());
                   add(messageLbl,BorderLayout.CENTER);
                   setSize(250,150);
    FormUtility.centerForm(this);
         public static void main(String[] args) {
              Frame frame = new Frame("BigMac");
              frame.setSize(600,600);
              frame.setVisible(true);
              ProcessInfoBox box = new ProcessInfoBox(frame);
              box.show();
              for ( int i = 1; i < 10000; i++ )
                   System.out.println(i);
              box.hide();
    To test the code I used the following section to test
    The main method in the class is used. In the simple
    example, the message did correctly update itself while
    i is increment. However, when I try on more complex
    application, the message just stalk there without
    updating itself as it is hanging.
    I have try to set piority to highest but without effect.
    Is there anything to rectify the situation
    thank

    The "please wait" dialog is a modal dialog. When u
    show it, the following code can not executed!
    That's the problem

  • Want to show a "Please Wait" message while processing

    Hi,
    I'm developing an image-processing tutorial applet where the user selects an image and then sets some parameters before pressing an update button which will run a JPEG compression on the image and show the compressed image.
    The compression takes a few seconds, so I want the program to show an image saying "Please wait" in the position that the compressed image will appear while the compression is done.
    Here is the relevant code:
    public void paint (Graphics g) {
      if (updating) {
        updating = false;
        g.setColor(getBackground ());
        g.fillRect(575, 370, 250, 250); //clear the area where the image will appear
        g.setColor(Color.white);
        g.drawImage(updatingImg, 575, 370, 250, 250, this); //updatingImg just displays a "Please Wait" message
        doImage = true;
      if (doImage) {
        doImage = false;
        //perform the compression to get the new image and then show it
        newImg = imagetest.compressImage(origImg, quantizationMat);          
        g.setColor(getBackground ());
        g.fillRect(575, 370, 250, 250);
        g.setColor(Color.white);
        g.drawImage(newImg, 575, 370, 250, 250, this);
    public void actionPerformed(ActionEvent evt) {
      if (evt.getSource() == update){
        //perform some error checking
        if (errorFound == false){
          updating = true;
          repaint();
    }The problem is that the "Please wait" image never gets shown.. while the compression is carried out that part of the screen remains blank and then the new image is shown.
    Can anyone tell me how to fix this?
    Thanks.

    Never mind, I've figured it out.. needed to put the time consuming code in a new thread.

  • Display a message while processing

    Hi,
    I am processing a lot of files and it take some time to do it. I want to display a message when a file is processing. And one message when the process of all files is finished.
    LOOP AT LT_FILES.
      CONCATENATE 'File processing: ' LT_FILES-NAME INTO LV_MSG
      MESSAGE LV_MSG TYPE 'S'.
      PERFORM F_PROCESS_FILE USING LT_FILES-NAME.
    ENDLOOP.
    MESSAGE 'The files are been processed' TYPE 'S'.
    But it doesn't show anything while the files are been processing, just at the end the last message appears. Someone knows how can I do this? Like parallel tasks or something like threads?
    Regards,
    Isaac Melendez

    Hi,
    Try using the FM  
    Increase the percentage for each loop        
    CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR'
                  EXPORTING
                    PERCENTAGE = 50
                    TEXT       = text-025.

  • Update Control message while processing VL10*

    When processing VL10A or VL10B in 'Background' a random 'Update Control' message will break on the screen. Pressing F3 will Esc this 'break' and continue with the process. I am unable to determine why this error is breaking on the screen and which orders are not getting deliveries created. Has anyone come across this before? and how did you resolve/fix the error? I am unable to find a OSS Note on this.
    Thank you Janelle

    Does this message has a class and a number (e.g. V2 100)? If so, you could set up a watchpoint in debugger for it and see where it appears...

  • Error Message while processing in invoice verification

    I am getting a error message as  " Address doesn't exist 22983".
    Can someone let me know why it is coming and how to rectify it?

    The address was already present. There was use of t code SM34 by a user which has made modification in the plants and vendors. And now when I try to open the change vendor transaction, there is a runtime error.

  • Error while processing csv file

    Hi,
    i get this messages while processing a csv file to load the content to database,
    [SSIS.Pipeline] Warning: Warning: Could not open global shared memory to communicate with performance DLL;
     data flow performance counters are not available.  To resolve, run this package as an administrator, or on the system's console.
    [SSIS.Pipeline] Warning: The output column "Copy of Column 13" (842) on output "Data Conversion Output" (798) and component
     "Data Conversion" (796) is not subsequently used in the Data Flow task. Removing this unused output column can increase Data Flow task performance.
    can someone please me with this.
    With Regards
    litu Here

    Hello Litu,
    Are you using: OLEDB Source and Destination ?
    Can you change the source and destination provider to ADO.NET and check if the issue still persist?
    Mark this post as "Answered" if this addresses your question. 
    Regards,
    Don Rohan [MSFT]
    Regards, Don Rohan [MSFT]

  • Budget issue while creating PO in SRM

    Hello All,
    We are using SRM_SERVER 5.5 SP level 11. We have extended classic scenario.
    Whenever we create PO assigned to account assignment category ORDER where ORDER is assigned with some fixed budget in R/3, we are able to create PO. But no budget details appears in PO. Budget tab in PO shows "No Budget Information Exists". BUDGET_CHECK_BADI is also deactivated.
    Why this message is displayed instead of Budget details?
    Is there any configuration required to be done for displaying budget details? What might be the issue? Please help.
    Thanks,
    Shital Nimje
    Edited by: Shital Nimje on Sep 22, 2009 4:13 AM

    Hi
    Is it a Direct material ?
    How did you create a Shopping cart?
    Hope you may not have accounting assignment in your Purchase order?
    Scenario plz?
    you might this error message while doing confirmation in SRM.
    "Enter Stor. location"
    Br
    Muthu

  • Error while processing message to remote system

    Hi,
    I am trying to load the data from flat file to R/3. I am using the file adapter to pick the file and RFC adapter to transfer into R/3. I am getting the success status in the sxmb_moni and adapter framework(green for both the adapters). But when i check the status in the RWB message monitoring, I am getting the error.
    I am using the message interface defined in the software component for R/3 system which has a different namespace. When i am trying to upload data, i am getting the error as namespace missing in RWB. The detailed error in RWB is as follows:
    Exception caught by adapter framework: error while processing message to remote system:com.sap.aii.af.rfc.core.client.RfcClientException: could not get functionname from XML requst: com.sap.aii.af.rfc.RfcAdapterException: failed to read funtionname from XML document: missing namespace declara
    Delivery of the message to the application using connection AFW failed, due to: error while processing message to remote system:com.sap.aii.af.rfc.core.client.RfcClientException: could not get functionname from XML requst: com.sap.aii.af.rfc.RfcAdapterException: failed to read funtionname from XML document: missing namespace declara.
    The previous thread relating this is:
    Process Integration (PI) & SOA Middleware
    Requesting for a solution.
    Regards,
    Raghavendra

    Hi,
    >>><i>So i tried creating a RFC(using sm59)in the R/3,
    When i try to import the RFC i have created, I am not able to see the one i have created.</i>
    In your R/3 system, go to se38, enter your RFC name. Go to attributes tab, and click on the radio button named "remote enabled"
    This will enable your RFC to be called by an application outside the R/3 system.
    >>><i>Can you please let me know as to what is it that it is connecting to the R/3(destination) and why am i not able to find my RFC.</i>
    You are tyring to log on to your R/3 system, from xi, in order to import the RFC that you have created. Hence you are asked for user id and password.
    You are not able to find your RFC since it has not been remotely enabled or has not been activated.
    Regards,
    Smitha.

  • File to RFC - error while processing message to remote system:com.sap.aii.

    Hi
    i m working on File to RFC scenario. the records are getting displayed in sender CC and receiver CC. But in receiver CC i m also getting the following error:
    Message processing failed. Cause: com.sap.engine.interfaces.messaging.api.exception.MessagingException: com.sap.aii.adapter.rfc.afcommunication.RfcAFWException: error while processing message to remote system:com.sap.aii.adapter.rfc.core.client.RfcClientException: JCO.Exception while calling ZRFC in remote system (RfcClient[CC_RIS_STC_PIMASTER_RECEIVER]):com.sap.mw.jco.JCO$Exception: (104) RFC_ERROR_SYSTEM_FAILURE:      Screen output without connection to user.    
    Error in processing caused by: com.sap.aii.adapter.rfc.afcommunication.RfcAFWException: error while processing message to remote system:com.sap.aii.adapter.rfc.core.client.RfcClientException: JCO.Exception while calling ZRFC in remote system (RfcClient[CC_RIS_STC_PIMASTER_RECEIVER]):com.sap.mw.jco.JCO$Exception: (104) RFC_ERROR_SYSTEM_FAILURE:      Screen output without connection to user.   
    It was working fine few hours earlier but showing this error now. i was giving a SUBMIT program , but stopped that now.
    But still facing the same problem. and in SXMB_MONI its showing recorded for Outbound processing.
    could anyone help.

    Hi
    I am Facing  Following Error When I am trying to call SAP Screen through JCO.jar
    com.sap.mw.jco.JCO$Exception: (104) RFC_ERROR_SYSTEM_FAILURE: Screen output without connection to user
    Please Guide Whethere it is possible to call SAP screen Through JCO.jar  ot NOT
    Please HELP if it is possible to Call SAP screen through JCO.jar with step and Code
    Thanks
    Vivek

  • Error while processing message payload Element 'CategoryCode&#39

    Hi Experts,
    I am trying to integrate SAP ECC with TM. I have transferred the sales order from ECC to TM, but its not triggering order based transportation requirement (OTR) instead giving an error Error while processing message payload Element &#39;CategoryCode&#39 and all the xml messages are stuck in inbound queue. The screen shot of the issue is as appended herewith. Please advise.
    Thanks & Regards,
    Aunkur De

    Hi Aunkur,
    The issue will generally  come when a mandatory field in XML which you are not sending either or missed.
    Please check if all mandatory fields are mapped properly.
    Best regards,
    Rohit

  • Error while processing message payload Element PI SXMB_MONI (ECC to TM)

    Dear Experts,
    while processing an XML message in TM using receiver interface IntracompanyTransportationRequestRequest_In , we encounter an error message.
    <SAP:Stack>Error while processing message payload Element &#39;StockTransportOrderReferenceIndicator&#39; missing</SAP:Stack>  
    <SAP:Retry>M</SAP:Retry>
    ssee screenshot attached.
    The field StockTransportOrderReferenceIndicator cannot be located in ECC and I cannot find what the system is expecting to populate here.
    Can somebody propose an approach on how to investigate into this error message for the solution?
    thanks a lot
    Salvador

    Hi Salvador,
    Thanks for your reply. We were able to fix that issue. As of now we have managed to send sales order to TM but getting the following error. Messages are getting failed in SAP TM. Even if the product exists in the system (TM) still the error message persists. I have CIFed location, business partner, product from ECC and everything exists in SAP TM with the same business system group. Kindly advise. Did you happen to face any similar kind of issue during your implementation ?
    Thanks & Regards,
    Aunkur De

  • Error while processing message

    I have WS2RFC interface that use to work. I recieve in the RWB this error message from the RFC Reciever.
    10/6/08 1:20:10 PM aa98b6f0-9398-11dd-94cf-0017a43cc516 Message processing failed. Cause: com.sap.aii.af.ra.ms.api.RecoverableException: error while processing message to remote system:com.sap.aii.af.rfc.core.client.RfcClientException: resource error: could not get a client from JCO.Pool: com.sap.mw.jco.JCO$Exception: (106) JCO_ERROR_RESOURCE: Connection pool RfcClient[RFC_Reciever]07cef9b030ce3c398f109f93020feffb is exhausted. The current pool size limit (max connections) is 1 connections.: com.sap.aii.af.rfc.afcommunication.RfcAFWException: error while processing message to remote system:com.sap.aii.af.rfc.core.client.RfcClientException: resource error: could not get a client from JCO.Pool: com.sap.mw.jco.JCO$Exception: (106) JCO_ERROR_RESOURCE: Connection pool RfcClient[RFC_Reciever]07cef9b030ce3c398f109f93020feffb is exhausted. The current pool size limit (max connections) is 1 connections.
    any ideas?
    Kfir

    In RFC channel increase the maximum connections paramter value to 5. Save and activate.
    Thanks,
    Gujjeti

Maybe you are looking for