ABAP PROXY--Commit missing

Hi,
I am working on a scenario outbound from SAP Using Proxies :
When I check SXMB_MONI in R/3 the message has the status
Message Recorded(commit missing).
Can any one help me on this .
I guess we have to manage queues(SXMB_ADM).If so Please let me know how can i do.
Thanks,
Ravi P

Hi Udo,
Thanks ya.
I guess Commit work is not requried when we are working on the synchronous proxies.Correct me if i am wrong.
Ravi P

Similar Messages

  • ABAP Proxy comm channel not seen in Comm Channel monitoring

    We have configured JDBC sender to ABAP proxy receiver.
    We are unable to see the receiver channel in comm channel monitoring. Is this normal or are we missing something?
    Also, the XI adapter cannot be seen in adapter monitoring...I hope thats fine...
    We are able to generate the ABAP proxy but we need to see the comm channel to troubleshoot.
    Any help will be appreciated.
    Thanks

    Hi SAP PI,
    As with the above commens this link may help u how to debug proxies.. you may try with this..
    For -- Debugging Proxies
    https://weblogs.sdn.sap.com/pub/wlg/4098--Debugging [original link is broken] [original link is broken] [original link is broken]
    For -- Testing Proxies
    XI: Debug your inbound ABAP Proxy implementation
    regards,
    Kishore

  • Missing asyn abap proxy client message in ECC

    Hi,
    I have a asyn scenario which an abap program will send data from ECC to PI using abap proxy client. My problem is i notice some of the message was no send to PI. Checked in PI SXMB_MONI no message was found. Any idea where the message was stuck? I check on smq1 in ECC also found nothing in the queue.
    Thanks.

    Hi ,
    KIndly check with the abap program if its thrwing any dump . If every thing is fine with ABAP program then might be its issue of RFC destination . check with transaction SPROXY are u able to connect and your sender interface is reflecting there if yes then double click on your interface open the proxy andthen click on GOto and click on connection test if nay issue is in connection then it will display the error here .might be some rfc DESTINATION is missing or authnetication error .
    Regards,
    Saurabh

  • ABAP Proxy and commit issue

    Hi,
    I want to send data using an ABAP proxy from SAP ECC to PI.
    The location where I call the method is in MV50AFZ1 Form uxerexit_delete_document
    In my opinion it is not wise to execute a commit work statement in this location. The proxy however needs a commit work to send the data.
    I also tried using a CALL FUNCTION ... IN UPDATE TASK. This also doesn't trigger the proxy to send the data.
    (and it is not allowed te execute a commit in update task .. .because it's already a "commit".
    Is there a way to get this thing working in this way? Or do you always have to program a separate program for sending the data with a proxy??
    Thanks
    Ron

    Hi Ron,
    Try submitting a report as a background job from the user exit...and inside this report you can write the code to call the proxy + commit.
    *Submit report as job(i.e. in background)
    data: jobname like tbtcjob-jobname value
    ' TRANSFER TRANSLATION'.
    data: jobcount like tbtcjob-jobcount,
    host like msxxlist-host.
    data: begin of starttime.
    include structure tbtcstrt.
    data: end of starttime.
    data: starttimeimmediate like btch0000-char1.
    Job open
    call function 'JOB_OPEN'
    exporting
    delanfrep = ' '
    jobgroup = ' '
    jobname = jobname
    sdlstrtdt = sy-datum
    sdlstrttm = sy-uzeit
    importing
    jobcount = jobcount
    exceptions
    cant_create_job = 01
    invalid_job_data = 02
    jobname_missing = 03.
    if sy-subrc ne 0.
    "error processing
    endif.
    Insert process into job
    SUBMIT zreport and return
    with p_param1 = 'value'
    with p_param2 = 'value'
    user sy-uname
    via job jobname
    number jobcount.
    if sy-subrc > 0.
    "error processing
    endif.
    Close job
    starttime-sdlstrtdt = sy-datum + 1.
    starttime-sdlstrttm = '220000'.
    call function 'JOB_CLOSE'
    exporting
    event_id = starttime-eventid
    event_param = starttime-eventparm
    event_periodic = starttime-periodic
    jobcount = jobcount
    jobname = jobname
    laststrtdt = starttime-laststrtdt
    laststrttm = starttime-laststrttm
    prddays = 1
    prdhours = 0
    prdmins = 0
    prdmonths = 0
    prdweeks = 0
    sdlstrtdt = starttime-sdlstrtdt
    sdlstrttm = starttime-sdlstrttm
    strtimmed = starttimeimmediate
    targetsystem = host
    exceptions
    cant_start_immediate = 01
    invalid_startdate = 02
    jobname_missing = 03
    job_close_failed = 04
    job_nosteps = 05
    job_notex = 06
    lock_failed = 07
    others = 99.
    if sy-subrc eq 0.
    "error processing
    endif.

  • Missing parameter in abap proxy implementing class

    we have a XI 3.0 (DR0) and a XI 7.0 (DR8) systems. We have exported a
    message interface from system DR0 and imported in DR8, then we have
    generated the abap proxy. The problem is in differences between abap
    proxy generated in XI 3.0 and the one generated in XI 7.0. The most
    sostantial difference is in parameters of implementing class where, how
    you can see from attached document, the CONTROLLER parameter is missing.Please, we need a support for this issue.

    maybe this field is not inlcuded in the version u are using (XI 7.0). but this shud not be a show stopper. u can go to the class editor and check out if the req strucutres and fields are present WRT to the I/B and O/B interface.

  • Outbound Proxy - Message Recorded(Commit Missing)

    Dear All,
    The proxy's are configured correctly, and when tested the message getting created with status as Message Recorded(Commit Missing).
    SLDCHECK transcation is also sucessfull!
    No application Log exist at transaction SLG1!
    What could be the reason for message not processed further?
    Thanks & Regards,
    Jilan Bhasha

    Do the messages in ur ECC sxmb_moni show a green flag...oif so it a simple commit use..
    Write this code at the end of your Proxy call  -
    Commit work.
    regards,
    arvind R

  • Problems with 'COMMIT MISSING' - when using ABAP client proxies

    Hi
       We have a requirement - wherein while SAP std inbound IDOCs are being processed in the R/3 system- we need to monitor the processing of idocs - by sending relevant information out of the R3 system to a monitoring dashboard - outside of the R/3 environment.
    Inorder to accomplish the above, we generated a async. client proxy class in the R3 system by pointing to a XI o/b message interface and that interface mapped on to DB calls - from which the dashboard was bringing up status of idocs being processed in R3
    We made a call to the async class method from within the idoc user exit that lies  within IDOC_INPUT_ORDERS FM . The user exit chosen to make the call was - after the salesorder processing for the inbound idoc was done in the above FM. We have not given any COMMIT WORK statement after the async client proxy method call within the user exit - since the call was being made from within user exit and we did not want to upset SAP std processing flow.
    Now, when the inbound idoc processing is being done by using SAP std program rbdapp01 using parallel processing option of packets, the outbound message generated is in 'COMMIT MISSING' status - whereas - when rbdapp01 is executed in normal mode - the proxy message is sent out ok out of the R3 integration engine.
    The program rbdapp01 has a COMMIT WORK statement after each IDOC packet is processed - but still with the parallel processing option - the proxy message stays in th R3 box - with the status 'COMMIT MISSING'
    Any thoughts/ pointers on this is appreciated....

    Hi Karthik,
    I don't think you can get this to work using an asynchronous proxy - except perhaps by spawning an update task to send the data.
    Perhaps you can re-cast this as a synchronous interface?
    Regards,
    Thorsten

  • Issues with ABAP Proxy in XI 3.0

    Hi,
    We are on XI 3.0.  We are doing a scenario of file >XI> R/3 (ABAP Proxy).
    The XML message is going to R/3 with no errors as indicated in the monitors on both XI and R/3.  The XML messages has the status of 'Message Processed'.  But, the proxy never gets executed.  Is there a step I must perform to execute the Proxy?  My understanding is that if the Receiver Communication Channel is of XI type, it will automatically execute the Proxy on the R/3 (receiving) system.
    We tested the proxy using the report SPRX_TEST_INBOUND, and it works as expected.
    Please advise.
    Thanks in advance.
    Best Regards,
    Doo

    Hi Doo,
    how do you know, that the proxy was not called?
    If you are missing database updates, check if you have a commit work in the code.
    Regards
    Stefan

  • Problem with Synchronous abap proxy time out

    Hi there.
    I have the following scenario:
                      sync                   sync
    3rd party <-->  PI    <--
    >  ERP
                       http                    abap proxy
    In the implementing class on the abap proxy i'm calling an standard BAPI, followed by a commit and returning the result.
    The 3rd party app has a mechanism that when a message fails, he'll retry each 5 mins until it gets the response.
    Last night there where some delays on ERP that cause the sync mesages to timeout, the 3rd party retried about 10 times to send the message until it finally went off. This morning i check and i have the same message 11 times on ERP!!, to my understanding if the sync comm timed out the process will abort and  the message will not be processed on ERP, does anybody knows if im missing some configuration for this to work this way??.
    Kind Regards,
    Roberto.

    Hi Roberto.
    There are a lot of time out configures in PI .
    Follow the link that explain about this:
    How to Investigate Timeouts In Synchronous XI PI Scenarios
    http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/c059d583-a551-2c10-e095-eb5d95e03747
    I hope to help you.
    If you still keep this problem, you can ask me more about it.
    Regards..
    Bruno.

  • ABAP Proxy outbound not showing in sxmb_moni

    Hi All,
    All my ABAP proxy scenarios are inbound, however I need to do a outbound ABAP Proxy scenario.
    So, I created a Assyn interface in Integration Builder and created a proxy on outbound message interface in SPROXY. (ZCO_ITF_FILE_***).
    R/3 --> SQL server
    In my simple example I created a program in se38 as shown below
    DATA prxy TYPE REF TO ZCO_ITF_FILE_***.
    CREATE OBJECT prxy.
    DATA it TYPE ZMTP_FILE_***.
    TRY.
        it-MTP_FILE_***-id = '12'.
        CALL METHOD prxy->execute_asynchronous
          EXPORTING
            output = it.
    commit work.
    CATCH cx_ai_system_fault .
        DATA fault TYPE REF TO cx_ai_system_fault .
        CREATE OBJECT fault.
        WRITE :/ fault->errortext.
    ENDTRY.
    I want to send just one field called ID.
    The program works fine, the "commit work" is called but It doesn´t reach the XI. It doesn´t appear in SXMB_MONI.
    As I said before I have Inbound Abap Proxies interfaces, so, I got the sxmb_admin configured.
    What am I missing ?
    Thanks
    Diego

    Hi
    Thare are no error in SMQ2. The message shwon is
    Cl     | User      | Func. Module             |  Queue       |  Date          | Time      | Status Text 
    310    ABAP01  SXMS_ASYNC_EXEC   XBTS0005     26.05.2009  11:23:59  Transaction recorded
    When I press F6 the message goes to XI. the message reach the sxmb_moni in XI.
    But in XI I am facing with another error (the receiver could not be determined).
    Thanks
    Diego

  • ABAP Proxy does not send data to XI system.

    I have a very simple program to test an ABAP Proxy:
    REPORT  Z_TEST_PERSON_OB.
    DATA prxy TYPE REF TO Z996CO_PERSON_OB2.
    CREATE OBJECT prxy.
    DATA person TYPE Z996PERSON_MT  .
    *TRY.
    person-person_mt-first_name = 'Ken and Kenneth'.
    person-person_mt-Series = 'The Fast Show'.
    person-person_mt-motto = 'Ooh, suit you Sir!'.
    CALL METHOD prxy->execute_asynchronous
    EXPORTING
    output = person.
    commit work.
    I removed any exception handling to see if it would dump. Nothing. Seems to work fine, but no data appears in the XI Integration Engine monitor. I checked the scenario in XI and tested it; again, seems to work fine.
    Could I have missed something in setting up the system? Any pointers highly appreciated.
    BR,
    Tony.

    Try the Message Monitoring -> Messages from component 'Proxy Runtime <...>'.
    That's where I found my Messages back (Status: To Be Delivered...)
    If this is the case, probably your Proxy Runtime does send the messages to the Integration Engine.
    Check the queues:
    Transaction SXMB_ADM on the Business system (the system that sends the Proxy)
    Integration Engine > Administration > Manage Queues
    All queues should be checked
    Click ‘Register Queues’. Status bar should display a ‘Success message’.
    Click ‘Activate Queues’. Status bar should display a ‘Success message’.
    If it still does not work, maybe the is no connection between Integration Builder and Runtime Workbench.
    Check SM59 on your ECC-business system (the system that sends the Proxy). It should have the Connection INTEGRATION_DIRECTORY_HMI (type H). If not, this is the problem.
    Create a new connection INTEGRATION_DIRECTORY_HMI, type H.
    Tab Technical settings:
    Target Host is your XI-host
    Service No. 5xx00 (xx is the instance number of your XI-system)
    Path Prefix is "/dir/hmi_cache_refresh_service/ext" (without quotes)
    Tab Logon & Security
    Logon Procedure is "Basic Authentication"
    Logon using XIISUSER (or PIISUSER)
    Tab special Options
    Specify timeout: set to 900 msec.
    Compression Status should be 'inactive'
    Compressed response: No
    Accept Cookies: Yes (all)
    Save configuration and test connection. Popup about cookies appears. Check the "Accept All Further Cookies"option.
    The response should have HTTP/1.1 200 OK in the first line of the response header.
    Now your Proxy Runtime should be able to connect the Integration Engine.
    Greetings,  Frank

  • SAP PI 7.4 SOAP - ABAP Proxy Synchronous Webservice

    Hi Everyone,
    I am developing the following scenario:
    3rd party makes a SOAP call to SAP (via PI) to determine whether a vendor exists or not in the SAP system. The link for the call is provided by us from the Integrated Configuration.
    The request comes in, calls an ABAP Proxy to check if a vendor exists and sends a response back to the SOAP call with a 'Y' or an 'N'.
    I've read a lot about various scenarios but I'm having trouble connecting the dots as I'm fairly new to PI. I'd appreciate any help.
    I've made the following set-up based on assuming I need separate Service Interfaces for the SOAP Request & Proxy Response
    ESR
    1. Message Types
         SOAP (MT_SOAP_REQ & MT_SOAP_RESP) - PROXY (MT_PRXY_REQ & MT_PRXY_REQ)
    2.  Message Mappings
         MM_REQUEST    which maps MT_SOAP_REQ   to  MT_PRXY_REQ)
         MM_RESPONSE which maps MT_PRXY_RESP   to MT_SOAP_RESP)
    3. Service Interfaces (Synchronous)
        (SOAP Request)
        SI_IN (Inbound Interface)       with Request = MT_SOAP_REQ and Response = MT_SOAP_RESP
       (Proxy Response)
        SI_OUT (Outbound Interface) with Request = MT_PRXY_REQ and Response  = MT_PRXY_RESP 
    4. Operation Mapping
        OM_LOOKUP which maps SI_IN to SI_OUT with Request    (MT_SOAP_REQ  to MT_PRXY_REQ)
                                                                        and  Response (MT_SOAP_RESP to MT_PRXY_RESP)
    I create the ABAP Proxies for each Service Interface. SI_IN contains the required coded method to check if there is a vendor.
    I create the webservice and binding for SI_IN in SOAMANAGER
    At this point I'm somewhat unsure - what do I need to do for SI_OUT ? Do I need to create a logical port ? how is SI_OUT associated to SI_IN (apart from the Operation)  to get the response.
    ID
    In the Integration Directory I've created a SOAP_SENDER communication channel for System A and SOAP_RECEIVER channel for SAP.  For the SOAP Receiver I need to specify a URL - what should this be ? Is it meant to point to the web service for SI_IN in SICF or just to the generic http://host:8000/sap/xi/engine?type=entry 
    Do I need to use the HTTP_AAE adapter for the receiver instead of SOAP ?
    I created an Integrated Configuration for the SI_IN Service Interface with comm channel SOAP_SENDER from System A and SOAP_RECEIVER for SAP backend.  I then got the WSDL for this to provide to the 3rd Party to test (via SOAP UI)  . Again my concern is how is the SI_IN linked to the SI_OUT to achieve the response ?
    I appreciate you taking the time to go through this .  Any help is greatly appreciated.
    Thanks very much
    Gary

    I create the webservice and binding for SI_IN in SOAMANAGER
    At this point I'm somewhat unsure - what do I need to do for SI_OUT ? Do I need to create a logical port ? how is SI_OUT associated to SI_IN (apart from the Operation)  to get the response.
    >>>>No need to do anything in SOAMANAGER
    Do I need to use the HTTP_AAE adapter for the receiver instead of SOAP ?
    >>> No. Soap adapter is fine. Configure your receiver channel as explianed in the below blog (section 4.3)
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/70066f78-7794-2c10-2e8c-cb967cef407b?overridelayout=t…
    Again my concern is how is the SI_IN linked to the SI_OUT to achieve the response ?
    >>>>Your receiver determination and interface determination takes care of this.(receiver interface  & outbound processing tabs in ICo)

  • OBJECTS_OBJREF_NOT_ASSIGNED  error while executing ABAP proxy

    Hi ,
    I am getting the following error when i try to execute an abap proxy .
    Unit ID in Background RFC     001EC9D184F702ECAA8DBC7401DC13E0
    Name of First Function Module     SRT_SEQ_SCD_DLV_TRM_QRFC_NEW_C
    Inbound Destination Name     WS_SERVICE_02DCA4961A0B_IN
    Transaction Code                     SE38
    Name of qRFC Queue                     SRTQC_001EC9D184F702ECAA8DBC6FE29753DB
    Created On                     28.01.2009
    No. of Predecessors                   1
    Created At                                    12:44:10
    Executed At                     12:44:13
    Created At (Time Stamp)     20.090.128.114.410,9989340
    User name                                     DEVELOPER
    Tcode/program                      CL_SOAP_SCHEDULER_QRFC_NEW====CP
    ID of Lock in Background RFC     001EC9D184F702DCAA8DBCA25EC41F5E
    Lock Reason                     System error; not executed
    Background RFC Scheduler ID              1
    Message number                       341
    Language Key                            EN
    Status Text                               Unit has execution errors
    Execution State                             Access using a 'ZERO' object reference is not possible.
    Number of Called Function Modules     1
    Number of Locks                                    1
    Commit Check Disabled               X
    Message Class                                  0
    Message Variable                             OBJECTS_OBJREF_NOT_ASSIGNED
    Executed On                             28.01.2009
    and in ST22 transaction i am getting the following dump
    Runtime Errors  : OBJECTS_OBJREF_NOT_ASSIGNED
    Exception         :CX_SY_RF_IS_INITIAL
    Error analysis
        An exception occurred that is explained in detail below.
        The exception, which is assigned to class 'CX_SY_REF_IS_INITIAL', was not
         caught in
        procedure "WSRM_CLONE_FOR_SPECIFIC_OPS" "(METHOD)", nor was it propagated by a
         RAISING clause.
        Since the caller of the procedure could not have anticipated that the
        exception would occur, the current program is terminated.
        The reason for the exception is:
        An attempt was made to access a component (variable: "ME->M_CTX") with a 'ZERO'
        object reference (points to 'nothing').
        An object reference must point to an object (an instance of a class)
        before it can be used to access a component.
        Either the reference has not yet been set or it was set to 'ZERO' using
        a CLEAR statement.
    Please help in solving this issue.
    Thanks&Regards,
    Hamsa Shree

    Hi
    Runtime Errors : OBJECTS_OBJREF_NOT_ASSIGNED
    Check with the SAP Notes Note
    557770 - SAP BP: Short dump OBJECTS_OBJREF_NOT_ASSIGNED
    may be you get the exact help
    Regards
    Abhishek

  • Error while create abap proxy

    Hi,
    I need to create abap proxy in sap system to push the data from sap system to XI.
    when i create ABAP PROXY in sap system in Tcode SPROXY,System displays a error
    "objects from other name spaces missing" .
    So i am not able to activate the abap proxy.
    kindly let me know how to solve this error.
    Regards,
    Ganesh

    Are you using the message type created in external system?
    Are any of your Data type element refer structure to other namespace.
    Error mention that it does not find the detail structure of any of Datatype element. Check all link are available properly.
    Gaurav Jain
    Points if answer is helpful

  • Error while generating ABAP proxy

    Hi,
    We created a WSDL using lotus notes (Domino) tools. While creating a proxy object using ABAP (transaction SE80), we get the error message "Cannot generate proxy (object  missing in WSDL, see long text)"  Message no. SPRX084.
    We looked at OSS notes and applied 1046046 - Proxy generation problem with external definitions and all dependent notes as we are on a lower support pack. (WAS 6.40. SAPKB64019).
    We are wondering if it is anything to do with the format/defintions in the WSDL. Can anyone send me a sample WSDL file that has been used to create an ABAP proxy object successfully. We would like compare the domino generated file.  Please note that XI is not involved, we are using ABAP to call a webservice in the internal network application.
    Thanks,
    Girish

    Hi,
    I've implemented this proxy without problem and it's working fine in my case (I didn't have to store WSDL file localy and do any changes in it - Netweaver 7.2). If it's not SAP issue as Brad proposed then maybe network admins have set filters that are blocking communication with this service
    Best regards
    Marcin Cholewczuk

Maybe you are looking for

  • Safari keeps crashing and it's getting worse.

    I pretty much a lay persone here. I can follow most of directions, if anyone can help me out. below is what error message keeps coming up. Does it have something to do with Java? (only copied a little bit...it goes on and on) Process:         Safari

  • APEX 3.1.2 install with sso, error "requested url ../plsapex/f.. not found"

    Question: why is sso rewriting the url from .../pls/apex/f?p=.. to .../plsapex/f?p=? Can anyone help? Thanks. Abstract: APEX 3.1.2.00.02 install with sso config, error "requested url ../plsapex/f .. was not found" Situation: Upgraded from Apex 3.0.0.

  • LOOP in LDB

    Hi, I am debugging a custom program, which is a copy of standarad one. This used logical database. In END-OF-SELECTION, I see a LOOP statement without internal table name. But the values are coming to the workarea T. I would like to know how the data

  • Connecting to Personal Hotspot via Bluetooth?

    Last night I discovered my daughter can connect her iPod Touch 5 (iOS 8.0.2) to my iPhone 5 (also iOS 8.0.2) using the Personal Hotspot function (via Bluetooth) even when Personal Hotspot is set to OFF on my phone.  Is that really working as intended

  • TD Shipment ouput - New filed in condition table

    Hello, We are using TD Shipment functionality. We have an output type defined under "Bulk transportation scheduling". FOr this output currently we have an access sequence which has only one table with key field as "Transportation Planning Point". Now