RFC LDAPRFC_BIND return code of -1

RFC LDAPRFC_BIND, called from SAP FM LDAP_COMMONBIND, is generating a return code of -1.  Does anyone know what this return code signifies?

hi,
return code 1 means NO_AUTHORIZNo Authorization-
Prabhudas

Similar Messages

  • How to Catch Return Code(RFC) in  XI

    Hi
    Can any help me out,
    I have a scenario , which is posting the data into SAPR/3 through RFC and alternately I would like to catch the exceptions . I need to catch return code in my scenrio, which will be show successfully posted or not as E or U.
    My RFC returning the error codes like E, S, and U..so these error codes i need to catch and update into my DATABASE.
    This is scenrio , i need to do very urgent manner..please let me know, should i use schronous or fault message types?
    please give me logical steps for how to do this?
    If it sync messae type, please tell me what is the output message type and input message type..
    thank you,
    Regards..rambarki!

    Hi Rambarki,
    Just for your information I'll tell you what all you have to develop to complete this scenario.
    <b>1></b> Two datatypes. one for the Request(data coming from JDBC Sender) and one for the Response(data going through JDBC Receiver).
    <b>2></b> Two corresponding Messagetypes.
    <b>3></b> Five Message Interfaces.
              i) OutBound/Async with Request.
             ii) Abstract/Async with Request.
            iii) Abstract/Sync with Request and Response.
             iv) Abstract/Async with Response.
              v) InBound/Async with Response.
    <b>4></b> Message Mapping
              i) Message Mapping between the Request and imported RFC.
             ii) Mapping between RFC.Response and Response.
    <b>5></b> Single Interface Mapping with Source as Abstract/Sync interface and target as RFC with two mapping programs corresponding to Request and Response.
    <b>6></b> Integration Process
             i) Create container element for request and response interfaces.
            ii) Receive step(Asynchronous), Send step(Synchronous), Send step(Asynchronous).
    Receiver Determinations
    i)   JDBC --> Integration Process (imported from IR)(OutBInterface: OutBound/Async, InBnterface: Abs/Async)
    ii)  Integration Process --> R/3 (OutBInterface: Abs/Sync, InBInterface: RFC with mapping program)
    iii) Integration Process --> JDBC. (OutBInterface: Abs/Async, InBInterface: InBound/Async).
    Hope this works for you.

  • RFC Communication - error CPIC return code 020, SAP return code 665

    Hello,
    I have created RFC destination for connecting SCM system from Solution Manager. Both the systems are Unicode.
    I am getting the following error --
    ERROR                service '?' unknown
    LOCATION             SAP-Gateway on host gva4103 / sapgw00
    COMPONENT            NI (network interface)
    COUNTER              4028
    MODULE
    LINE
    RETURN CODE          -3
    SUBRC                    0
    RELEASE              640
    TIME                 Mon Apr 24 11:28:21 2006
    VERSION              37
    And in SM21, I am getting following description
    Communication error, CPIC return code 020, SAP return code 665
    Following are the things I have checked..
    1. RFC destination user checked, password reset in SM59 and in the target system
    2. checked entries in /etc/services - Entry sapgw03 is present.
    Please let me know what all things I need to check.
    Thanks and Regards,
    Vaibhav

    I solved the problem by myself.
    The problem was with the entry in services file only.
    I was checking the file on Target system, which had the entry. There was no entry in Host system services file. After modifying the file, the connection now works fine.
    Thus for RFC connection, entry of the target system gateway MUST be there in /etc/service of Host system.
    Regards,
    Vaibhav

  • Transport Request Ended with return code:  === 12 ===

    Hi
    Good day to you.
    We are able to move Transport Request from Development BW Client (with respect to an SEM-BCS Configuration) to Quality BW Client smoothly.
    But when we move the same TR to Production client, we are getting the following error message. I would be very grateful if somebody could throw light on why it is happening, what could be its implications and what to do to avoid the same
      Execution of programs after import (XPRA)
      Transport request   : DBWK901288
      System              : PBW
      tp path             : tp
      Version and release: 340.16.37 640
      Post-import methods for change/transport request: DBWK901288
         on the application server: sapbwpd
      Post-import method FINB_TR_AFTER_IMP_METHOD started for UCREPGROUP T, date and time: 20081029144344
      Post-processing taking place in client 300
      Import carried out using RFC destination PBWCLNT300
      Communication error: Destination PBWCLNT300 -> long text
      Errors occurred during post-handling FINB_TR_AFTER_IMP_METHOD for UCREPGROUP T
      FINB_TR_AFTER_IMP_METHOD belongs to package FINB_TRANSPORT_TOOL
      The errors affect the following components:
         FIN-FB (Financials Basis)
      Post-import method FINB_TR_AFTER_IMP_METHOD completed for UCREPGROUP T, date and time: 20081029144351
      Post-import methods of change/transport request DBWK901288 completed
           Start of subsequent processing ... 20081029144344
           End of subsequent processing... 20081029144351
      Execute reports for change/transport request: DBWK901288
         on the application server: sapbwpd
      There are no reports to execute
      Execution of programs after import (XPRA)
      End date and time : 20081029144351
      Ended with return code:  ===> 12 <===
    Regards
    Siddique

    Hi Siddique,
    Looks like your RFC destination is wrong. The proper syntax is FINBTR@<system>CLNT <client>.
    See also the note 644610.

  • Call RFC that return structure using VB

    Hi, anyone has a sample code to call a custom RFC that returns table structure?
    The RFC expect parameters to pinpoint the record and return it in a structure.
    *Local Interface:
    IMPORTING
    VALUE(CUSTOMER) LIKE KNA1-KUNNR
    VALUE(MATERIAL) LIKE MARA-MATNR
    VALUE(POSTING_DATEFR) LIKE BKPF-BUDAT
    VALUE(POSTING_DATETO) LIKE BKPF-BUDAT
    TABLES
    SALES_VOLUME STRUCTURE ZRRPS_SALES
    Here's my vb code, but it return zero entries (I'm sure it should return records).
    ***Login Process Here***
    Set objFunc = objSAPLogon.Add("Z_CUSTOM_SALES_DATA")
    Set objSALES = objFunc.Tables("SALES_VOLUME")
    With objFunc
    .Exports("CUSTOMER") = "1234567"
    .Exports("MATERIAL") = "1234"
    .Exports("POSTING_DATEFR") = "10012005"
    .Exports("POSTING_DATETO") = "10312005"
    End With
    If Not objFunc.Call Then
    Debug.Print objFunc.Exception
    Exit Sub
    End If
    Debug.Print objSALES.RowCount ==> 0
    From here, I dont know what to do next. Am I missing something? Please help.
    Thanks in advance!
    /Noel

    Yes, the RFC developer told me to use this format mmddyyyy.
    I think the Exports portion is not working, and I dont know why. I tried remarking the Exports portion and it gives the same result, zero entries.
    Thanks!

  • Error in Webservice Call HTTP error (return code 404, message conn failed)

    Hi
    We wish to call  a standard EP7 webservice through ABAP.
    When we try to create consumer proxy , we get the following error.
    HTTP error (return code 404, message "conn failed")
    Message no. SPRX090
    ==> Display Error Document
    If you want to generate a proxy for an external WSDL document by specifying a URL, check that the proxy settings of the system are correct (transaction SICF - Client - Proxy Settings). If you want to generate a proxy for an XI Repository object, check the connection to the Enterprise Services Builder as follows:
    Check List for Setting Up a Connection to the Service Repository
    1. The address of the Enterprise Services Repository must be known in the SAP system
    Check with report SPROX_CHECK_IFR_ADDRESS
    The address is taken from the following parameters in the exchange profile ('Connections' section):
    com.sap.aii.connect.repository.name: Server (for example,pwdf0436)
    com.sap.aii.connect.repository.httpport: Port (for example, 1080)
    com.sap.aii.connect.repository.contextroot: Root (for example,rep)
    The logon data is also read from the exchange profile ('ApplicationSystem' section):
    com.sap.aii.applicationsystem.serviceuser.name: User
    com.sap.aii.applicationsystem.serviceuser.pwd: Password
    As an alternative to using the exchange profile, you can maintain the RFC destination SAP_PROXY_ESR. If this RFC destination is maintained it will be used by the proxy generation in place of data from the exchange profile to access the Service Repository. In this case, the Exchange Profile will even not be read.
    The RFC destination has to be set up using transaction SM59 and should look like this:
    RFC Destination: SAP_PROXY_ESR
    Connection Type: G (HTTP Connection to External Serv)
    Description1: ESR for Proxy Generation
    Target Host: esr_host
    Service No: 1080
    Path Prefix: rep
    Logon and Security:
    Basic Authentication: active
    User: esr_user
    Password: esr_password
    2. The HTTP Framework of the Web Application Server must function
    Check with report SPROX_CHECK_HTTP_COMMUNICATION
    If necessary, contact your system administrator. Please be aware of the fact, that the HTTP framework is depending on the application server. Thus the result of the report may differ for different application servers.
    3. Proxy generation must interpret the data of the Enterprise Services Repository correctly
    Check with report SPROX_CHECK_IFR_RESPONSE
    you can also login in dev and go to Xn se91
    enter msg id SPRX and msg no 090
    select the message and click on long text..
    you get the same message in a formatted manner..
    How to get rid of this ?
    Regards
    Rajendra

    Hi
    we have given the correct path as we have tested the webserive from
    other technology (.net) by providing the same path.
    regards
    Rajendra

  • OCS Package ALL, tp step "6", return code 0012

    Hello everybody,
       i have been trying to upload the patch SAPKB70019, it generate the error
         The following details help you to analyze the problem:
          -   Error in phase: IMPORT_PROPER
          -   Reason for error: TP_STEP_FAILURE
          -   Return code: 0012
          -   Error message: OCS Package ALL, tp step "6", return code 0012
    After the error generate, i again try to upload the same, now it is continue executing in MAIN IMPORT from last 2 Hr.
    so please suggest me How to solve the same.
    I have check all the Logs but it not seem to error message.
    Thanks
    Ganesh

    Hello guys,  Hi Pravin
    I´m faccing with the same problem... I try to import the last level of SPAM but it stuck at more than one hour in phase Main Import.
    When I check the Slog file it show this:
    WARNING:
    SAPQASsapmnt     rans     mpSAPKKD70036.QAS is already in use (330), I'm waiting 3 sec (20091102172802). My name: pid 5544 on SAPQAS (APServiceQAS)
    STOP  imp all              QAS   7006 20091102172825              SAP_BASIS    SAPQAS 20091102171132     
    ERROR: RFC function TRINT_PROGRESS_INDICATOR returned 18
    START imp all              QAS        20091102173924              SAP_BASIS    SAPQAS 20091102173924     
    INFO: event SAP_IMPORT_START triggered successfully
    INFO  TBATG CONVERSION OF  QAS N      not needed                  SAP_BASIS    SAPQAS 20091102173924     
    START MOVE NAMETABS        QAS 6      20091102173925              SAP_BASIS    SAPQAS 20091102173924     
    START tp_getprots          QAS P      20091102173925              SAP_BASIS    SAPQAS 20091102173924     
    STOP  tp_getprots          QAS P      20091102173928              SAP_BASIS    SAPQAS 20091102173924     
    STOP  MOVE NAMETABS        QAS 6      20091102173928              SAP_BASIS    SAPQAS 20091102173924     
    START MAIN IMPORT          QAS I      20091102173928              SAP_BASIS    SAPQAS 20091102173924
    In past I already delete the SAPKKD70036. in directory and kill the TP process in Task manager (like it said in note 12746).
    And after that I restarted the importing of SPAM... and still show me the same error it stuck in that process it show in status bar the information "MAIN IMPORT"
    (By the way when I stopped the transaction I saw that this was in the phase IMPORT_PROPER !!)
    What I have to do for solve this error and finish this simple import... spam importe!... I don´t get it!!
    Help me please,
    Thank you
    João Dimas - Portugal

  • Publishing issue: return code 120 was returned from the server.

    Hi
    I'm working on an issue when attempting to publish a crystal report using the sap toolbar. When I try to publish I am seeing the following error
    An error occurred while saving and/or publishing. The return code 120 was returned from the server.
    Does anyone know what this return code means or where I can look it up?
    Thanks
    Daniel

    Hi Alexander,
    Looks like you are encountering the same issue as us. The issue seems to be just being able to save the report to bw.
    We are on sp2 fix pack 2.3 but experienced this behavior on sp2 as well
    We tried a few tests against the server with sp2 installed
    Client machine 1 # older version (just base install)
    Configuration
    Bobj client 12.1.0.882
    crystal reports 2008 sp 1 12.1.0.892
    sap ik 12.1.0.890
    Behavior
    -open a report in bw and preview in crystal - ok
    -open a report preview and save report in bw using same name - ok
    -create a folder under sap bw role using save as dialog box that comes up when selecting save as on the sap toolbar - ok
    -open a report preview and save report under different name - ok
    - create a new report and save ok
    Client machine 2 # same version as server with sp2 installed
    Configuration 2 bobj 3.1 sp2 fix pack 2.3
    Bobj client 12.2.3.467
    crystal reports 2008 sp 1 12.2.3.467
    sap ik 12.2.3.467
    Behavior
    -open a report in bw and preview in crystal - ok
    -open a report preview and save report in bw using same name - ok
    -create a folder under sap bw role using save as dialog box that comes up when selecting save as on the sap toolbar - ok
    -open a report preview and save report under different name I get the 120 error
    - create a new report and save I get the 120 error
    We ran rfc traces, authorization traces and found nothing.
    Our support ticket is with the SAP BW team now and we are waiting to work with them. I will update the thread as we find more information.
    Thanks,
    Daniel

  • DB connect failed return code 000256 --- disp_work ended

    Hi Friends,
    I have installed ides ECC 6 on oracle 10g on windows 2003 server.Now I am unable to start SAP console. While starting the disp+work getting ended. I found form the log that the DB connect failed return code 000256 in dev_disp.
    snapshot is given below for the reference. Please advice with the resolution.Appreciate for an early response.
    trc file: "dev_w0", trc level: 1, release: "700"
    ACTIVE TRACE LEVEL           1
    ACTIVE TRACE COMPONENTS      all, MJ

    B Mon May 18 17:14:23 2009
    B  create_con (con_name=R/3)
    B  Loading DB library 'D:\usr\sap\ECC\DVEBMGS04\exe\dboraslib.dll' ...
    B  Library 'D:\usr\sap\ECC\DVEBMGS04\exe\dboraslib.dll' loaded
    B  Version of 'D:\usr\sap\ECC\DVEBMGS04\exe\dboraslib.dll' is "700.08", patchlevel (0.46)
    B  New connection 0 created
    M sysno      04
    M sid        ECC
    M systemid   560 (PC with Windows NT)
    M relno      7000
    M patchlevel 0
    M patchno    52
    M intno      20050900
    M make:      multithreaded, Unicode, optimized
    M pid        3096
    M
    M  kernel runs with dp version 210000(ext=109000) (@(#) DPLIB-INT-VERSION-210000-UC)
    M  length of sys_adm_ext is 572 bytes
    M  ***LOG Q0Q=> tskh_init, WPStart (Workproc 0 3096) [dpxxdisp.c   1293]
    I  MtxInit: 30000 0 0

    M Mon May 18 17:14:24 2009
    M  DpSysAdmExtCreate: ABAP is active
    M  DpSysAdmExtCreate: VMC (JAVA VM in WP) is not active
    M  DpShMCreate: sizeof(wp_adm)          18304     (1408)
    M  DpShMCreate: sizeof(tm_adm)          3954072     (19672)
    M  DpShMCreate: sizeof(wp_ca_adm)          24000     (80)
    M  DpShMCreate: sizeof(appc_ca_adm)     8000     (80)
    M  DpCommTableSize: max/headSize/ftSize/tableSize=500/8/528056/528064
    M  DpShMCreate: sizeof(comm_adm)          528064     (1048)
    M  DpFileTableSize: max/headSize/ftSize/tableSize=0/0/0/0
    M  DpShMCreate: sizeof(file_adm)          0     (72)
    M  DpShMCreate: sizeof(vmc_adm)          0     (1452)
    M  DpShMCreate: sizeof(wall_adm)          (38456/34360/64/184)
    M  DpShMCreate: sizeof(gw_adm)     48
    M  DpShMCreate: SHM_DP_ADM_KEY          (addr: 06510040, size: 4613144)
    M  DpShMCreate: allocated sys_adm at 06510040
    M  DpShMCreate: allocated wp_adm at 06511E28
    M  DpShMCreate: allocated tm_adm_list at 065165A8
    M  DpShMCreate: allocated tm_adm at 065165D8
    M  DpShMCreate: allocated wp_ca_adm at 068DBB70
    M  DpShMCreate: allocated appc_ca_adm at 068E1930
    M  DpShMCreate: allocated comm_adm at 068E3870
    M  DpShMCreate: system runs without file table
    M  DpShMCreate: allocated vmc_adm_list at 06964730
    M  DpShMCreate: allocated gw_adm at 06964770
    M  DpShMCreate: system runs without vmc_adm
    M  DpShMCreate: allocated ca_info at 069647A0
    M  DpShMCreate: allocated wall_adm at 069647A8
    X  EmInit: MmSetImplementation( 2 ).
    X  MM diagnostic options set: 0
    X  <ES> client 0 initializing ....
    X  Using implementation flat
    M  <EsNT> Memory Reset disabled as NT default
    X  ES initialized.
    M  ThInit: running on host ecc6

    M Mon May 18 17:14:26 2009
    M  calling db_connect ...
    C  Prepending D:\usr\sap\ECC\DVEBMGS04\exe to Path.
    C  Client NLS settings: AMERICAN_AMERICA.UTF8
    C  Logon as OPS$-user to get SAPSR3's password
    C  Connecting as /@C11 on connection 0 (nls_hdl 0) ... (dbsl 700 240106)
    C  Nls CharacterSet                 NationalCharSet              C      EnvHp      ErrHp ErrHpBatch
    C    0 UTF8                                                      1   06B2C998   0597F194   0597EA1C
    C  Attaching to DB Server C11 (con_hdl=0,svchp=0597E968,svrhp=06B41714)
    C  Starting user session (con_hdl=0,svchp=0597E968,srvhp=06B41714,usrhp=06B8CD88)
    C  Now '/@C11' is connected (con_hdl 0, nls_hdl 0).
    C  Got SAPSR3's password from OPS$-user
    C  Disconnecting from connection 0 ...
    C  Closing user session (con_hdl=0,svchp=0597E968,usrhp=06B8CD88)
    C  Now I'm disconnected from ORACLE
    C  Connecting as SAPSR3/<pwd>@C11 on connection 0 (nls_hdl 0) ... (dbsl 700 240106)
    C  Nls CharacterSet                 NationalCharSet              C      EnvHp      ErrHp ErrHpBatch
    C    0 UTF8                                                      1   06B2C998   0597F194   0597EA1C
    C  Starting user session (con_hdl=0,svchp=0597E968,srvhp=06B41714,usrhp=06B8CD88)
    C  *** ERROR => OCI-call 'OCISessionBegin' failed: rc = 28000
    [dboci.c      4345]
    C  Detaching from DB Server (con_hdl=0,svchp=0597E968,srvhp=06B41714)
    C  *** ERROR => CONNECT failed with sql error '28000'
    [dbsloci.c    10704]
    B  ***LOG BY2=> sql error 28000  performing CON [dbsh#2 @ 1204] [dbsh    1204 ]
    B  ***LOG BY0=> ORA-28000: the account is locked [dbsh#2 @ 1204] [dbsh    1204 ]
    B  ***LOG BY2=> sql error 28000  performing CON [dblink#3 @ 431] [dblink  0431 ]
    B  ***LOG BY0=> ORA-28000: the account is locked [dblink#3 @ 431] [dblink  0431 ]
    M  ***LOG R19=> ThInit, db_connect ( DB-Connect 000256) [thxxhead.c   1403]
    M  in_ThErrHandle: 1
    M  *** ERROR => ThInit: db_connect (step 1, th_errno 13, action 3, level 1) [thxxhead.c   10019]

    M  Info for wp 0

    M    stat = 4
    M    reqtype = 1
    M    act_reqtype = -1
    M    rq_info = 0
    M    tid = -1
    M    mode = 255
    M    len = -1
    M    rq_id = 65535
    M    rq_source = 255
    M    last_tid = 0
    M    last_mode = 0
    M    semaphore = 0
    M    act_cs_count = 0
    M    control_flag = 0
    M    int_checked_resource(RFC) = 0
    M    ext_checked_resource(RFC) = 0
    M    int_checked_resource(HTTP) = 0
    M    ext_checked_resource(HTTP) = 0
    M    report = >                                        <
    M    action = 0
    M    tab_name = >                              <
    M    vm = V-1

    M  *****************************************************************************
    M  *
    M  *  LOCATION    SAP-Server ecc6_ECC_04 on host ecc6 (wp 0)
    M  *  ERROR       ThInit: db_connect
    M  *
    M  *  TIME        Mon May 18 17:14:26 2009
    M  *  RELEASE     700
    M  *  COMPONENT   Taskhandler
    M  *  VERSION     1
    M  *  RC          13
    M  *  MODULE      thxxhead.c
    M  *  LINE        10204
    M  *  COUNTER     1
    M  *
    M  *****************************************************************************

    M  PfStatDisconnect: disconnect statistics
    M  Entering TH_CALLHOOKS
    M  ThCallHooks: call hook >ThrSaveSPAFields< for event BEFORE_DUMP
    M  *** ERROR => ThrSaveSPAFields: no valid thr_wpadm [thxxrun1.c   720]
    M  *** ERROR => ThCallHooks: event handler ThrSaveSPAFields for event BEFORE_DUMP failed [thxxtool3.c  260]
    M  Entering ThSetStatError
    M  ThIErrHandle: do not call ThrCoreInfo (no_core_info=0, in_dynp_env=0)
    M  Entering ThReadDetachMode
    M  call ThrShutDown (1)...
    M  ***LOG Q02=> wp_halt, WPStop (Workproc 0 3096) [dpnttool.c   327]
    Regard's
    Shashi

    > C  *** ERROR => CONNECT failed with sql error '28000'
    >  [dbsloci.c    10704]
    > B  ***LOG BY2=> sql error 28000  performing CON [dbsh#2 @ 1204] [dbsh    1204 ]
    > B  ***LOG BY0=> ORA-28000: the account is locked [dbsh#2 @ 1204] [dbsh    1204 ]
    > B  ***LOG BY2=> sql error 28000  performing CON [dblink#3 @ 431] [dblink  0431 ]
    > B  ***LOG BY0=> ORA-28000: the account is locked [dblink#3 @ 431] [dblink  0431 ]
    > M  ***LOG R19=> ThInit, db_connect ( DB-Connect 000256) [thxxhead.c   1403]
    Read Note  951167       ORA-28000: the account is locked
    Markus

  • Return Code value using 'starting new task' and 'wait until'

    I'm having a minor issue with some return code values in my ABAP.
    This is what part of it used to look like before I modified it:
    With Code in version 1, the sy-subrc was not always zero, sometimes it would be 4.
    That was fine, and my abap would do something based on the non-zero RC.
    had a need to implement an RFC timeout, the only way I could see to do it was to use 'starting new task' etc as seen in Version 2.
    However, with my changes, sy-subrc is always zero.
    The ABAP runs fine but I know that sy-subrc should sometimes be 4, even when it returns within the allotted 60 seconds.
    Maybe I've coded it incorrectly.
    Can someone point me in the right direction?
    #>> Start of VERSION 1
      call function 'MY_FUNCTION_MODULE'
           destination RFCDEST
           tables
                orders_list          = t_orders_packet
                apo_orders_list      = t_apo_orders
                apo_resources        = t_apo_resources
           exceptions
                COMMUNICATION_FAILURE    = 1 MESSAGE MSG_TEXT
                SYSTEM_FAILURE           = 2 MESSAGE MSG_TEXT
                NO_ORDERS_SUPPLIED       = 3
                NO_PEGGED_ORDERS_FOUND   = 4
                ORDERID_CONVERSION_ERROR = 5
                OTHERS                   = 6.
    if sy-subrc is initial.
      * do some stuff as RC was 0
    else.
    * log non-zero return code etc
    endif.
    * << End of Version 1

    And now Version 2.
    I didn't put this into the 1st post as the formatting goes bonkers.
    #>> Start of VERSION 2
      call function 'MY_FUNCTION_MODULE'
           destination RFCDEST
           starting new task 'taskname'
           performing receive_result on end of task
           tables
                orders_list          = t_orders_packet
                apo_orders_list      = t_apo_orders
                apo_resources        = t_apo_resources
           exceptions
                COMMUNICATION_FAILURE    = 1 MESSAGE MSG_TEXT
                SYSTEM_FAILURE           = 2 MESSAGE MSG_TEXT
                NO_ORDERS_SUPPLIED       = 3
                NO_PEGGED_ORDERS_FOUND   = 4
                ORDERID_CONVERSION_ERROR = 5
                OTHERS                   = 6.
      WAIT UNTIL results_received = 'X' UP TO 60 SECONDS.
    if sy-subrc is initial.   << Now this is always ZERO
      * do some stuff as RC was 0
    else.
    * log non-zero return code etc
    endif.
    FORM receive_result USING iv_taskname.
      RECEIVE RESULTS FROM FUNCTION 'MY_FUNCTION_MODULE'
           tables
                orders_list          = t_orders_packet
                apo_orders_list      = t_apo_orders
                apo_resources        = t_apo_resources
           exceptions
                COMMUNICATION_FAILURE    = 1 MESSAGE MSG_TEXT
                SYSTEM_FAILURE           = 2 MESSAGE MSG_TEXT
                NO_ORDERS_SUPPLIED       = 3
                NO_PEGGED_ORDERS_FOUND   = 4
                ORDERID_CONVERSION_ERROR = 5
                OTHERS                   = 6.
      results_received = 'X'.
    endform.                    "receive_result
    * < End of Version 2

  • DBM_CONNECT error, return code -11, tp error

    Hello
    I have an SCM 5.0 ABAP-only system (sid=APC) not correctly communicating with a 7.6.0.3 liveCache.  In transaction LC10, clicking the monitoring button for any DB connection results in:
    Name and Server     : LPC - dngdbs07                         
    DBMRFC Function     : DBM_CONNECT                            
    Error               : DBM Error
    Return Code         :        -11
    Error Message       : tp error: sapparam: SAPSYSTEMNAME neithe
    Notice how error message is cut off ...
    1.  LCA, LDA, and LEA connection tests in DB59 all fail with the same error.
    2.  From transaction SM49, dbmcli -d LPC -n dngdbs07 -tpp no_longer_used -tpi APC -tpc LCA <any command> fails with the same error.
    3.  From the command-line, dbmcli -d LPC -n dngdbs07 -tpp no_longer_used -tpi APC -tpc LCA <any command> succeeds for both apcadm and SAPserviceAPC users.  (ABAP system is Windows, liveCache system is HP-UX.)
    4.  RFC destinations SAPDB_DBM, SAPDB_DBM_DAEMON, and SAPXPG_DBDEST_<HOSTNAME> are all successful.
    5.  I un-checked the Central Authorization checkbox in LC10 --> Integration and the error goes away, so I can then see the liveCache system status.
    I tried debugging the ABAP and it appears sapxpg is having trouble calling the external command when Central Authorization is enabled.  Does anyone have any ideas about what's wrong with this? 
    SAP_BASIS SP 14
    NW 700 kernel patch 159
    non-unicode
    Thanks

    > Name and Server     : LPC - dngdbs07                         
    > DBMRFC Function     : DBM_CONNECT                            
    > Error               : DBM Error
    > Return Code         :        -11
    > Error Message       : tp error: sapparam: SAPSYSTEMNAME neithe
    >
    > Notice how error message is cut off ...
    Ok, the cutoff is just due to the error handling routine - I believe the full error message would be "SAPSYSTMNAME neiter in environment or parameterfile specified" or something like this.
    > 1.  LCA, LDA, and LEA connection tests in DB59 all fail with the same error.
    Of course they do - they are all the same connection setup, just for different purposes.
    > 2.  From transaction SM49, dbmcli -d LPC -n dngdbs07 -tpp no_longer_used -tpi APC -tpc LCA <any command> fails with the same error.
    Of course it does. The TP is used to get logon data from the SCM database (central authorization) for the logon to the liveCache. with the -tpp -tpi -tpc arguments you tell dbmcli to use TP.
    > 3.  From the command-line, dbmcli -d LPC -n dngdbs07 -tpp no_longer_used -tpi APC -tpc LCA <any command> succeeds for both apcadm and SAPserviceAPC users.  (ABAP system is Windows, liveCache system is HP-UX.)
    Well, perhaps you've  a different environment setup here? On Windows it's a quite common issue that everything works fine as <SID>adm but the SAP workprocesses run as SAPSERVICE<SID> ... so checking the environment variables for both might be a good idea.
    > 4.  RFC destinations SAPDB_DBM, SAPDB_DBM_DAEMON, and SAPXPG_DBDEST_<HOSTNAME> are all successful.
    Sure - they've nothing to do with TP. Instead these are just calls to the dbmcli command. SAPDB_DBM is just running one command and returning the result, where SAPDB_DBM_DEAMON is used for multiple commands in one DBM session.
    > 5.  I un-checked the Central Authorization checkbox in LC10 --> Integration and the error goes away, so I can then see the liveCache system status.
    Also quite clear - TP is only used with dbmcli when central authorization is used. If it's not used, then XUSER data is used to connect to the liveCache.
    > I tried debugging the ABAP and it appears sapxpg is having trouble calling the external command when Central Authorization is enabled.  Does anyone have any ideas about what's wrong with this? 
    As already said: check the environment variables. Also check the Transportprofile (TMS).
    If you don't succeed: open a support message.
    regards,
    Lars

  • Return code 8: while importing req in target system

    Hi friends,
    i created one transport request for transporting custom appset to quality system.
    while importing in quality i'm getting request status in red . checked log:
      Post-import method RS_AFTER_IMPORT started for APPS L, date and time: xxxxxxxxxxx                                             
      Post-processing taking place in client 999                                                                               
    Start of the after-import method RS_APPS_AFTER_IMPORT for object type(s) APPS (Activation Mode)                                  
      Start After Import for AppSet XXXX in Client 999 for RFC
      Import Step UPDPTAB completed without errors                                                                               
    Import Step ADMIN_DEF_UPD completed without errors                                                                               
    Import Step APPS_ADD completed without errors                                                                               
    Import Step DIM_ADD completed without errors                                                                               
    Characteristic /CPMB/NUD8H9B: Lower case makes selection of char. values difficult                                               
      Attribute /CPMB/MBRSEQ from characteristic /CPMB/NUD8H9B not (actively) available                                                
      Error in activating the InfoObjects                                                                               
    Failed to activate SAP NetWeaver BI InfoObject for dimension                                                                     
      Failed to create dimension attribute                                                                               
    End of after import methode RS_APPS_AFTER_IMPORT (Activation Mode) - runtime: 00:02:32                                                                               
    Start of the after-import method RS_APPS_AFTER_IMPORT for object type(s) APPS (Delete Mode)                                      
      Nothing to delete.                                                                               
    End of after import methode RS_APPS_AFTER_IMPORT (Delete Mode) - runtime: 00:00:00                                               
      Errors occurred during post-handling RS_AFTER_IMPORT for APPS L                                                                  
      RS_AFTER_IMPORT belongs to package RS                                                                               
    The errors affect the following components:                                                                               
    BW-WHM (Warehouse Management)                                                                               
    Post-import method RS_AFTER_IMPORT completed for APPS L, date and time: xxxxxxxx                                           
          Ended with return code:  ===> 8 <===  
    Return code 8 means:
    8: Transport carried out with errors.
    Individual objects could not be transported successfully.
    Examples:
    - The original object was not overwritten
    - A repaired object was not overwritten
    Could anyone eloborate usage of ujs_activate_content? we are on bpc75nw sp04
    any suggestions pls to import request correctly.
    Is there any specific steps to be followed for importing requsts in target system or just to import requests?
    thanks.

    hi Gersh,
    I checked in dev system, infoObject /CPMB/NUD8H9B and its' attribute/CPMB/MBRSEQ. Both are active and  infoObject /CPMB/NUD8H9B  is under infoarea "custom appset".
    But if i check it in target system both are inactive status and  infoObject /CPMB/NUD8H9B  is under unassigned node infoarea.  
    When i tried to activate infoobject via sap program, system couldn't do that and saying attribute is not in active state. Like wise several /cpmb/xxxxxx infoobjects are in status "inactive".
    Do i need to activate standard appshell via ujs_activate_content program in order to activate all /cpmb/xxxx related infoobjects.
    Or can i follow method of delete custom appset from target system and  shadow table contents in source system. Then freshly creating new req in dev system. Is this solves my problem?
    any suggestions pls.
    thanks

  • TP return code 0249 /  No connect due to DbSl Load Lib Failure

    Hi,
    When I try to release a Transport in Transaction - SE01, we are
    encountering the following error and the task gets released but the
    Transport doesn't get released. Please find the error message below:
    Test call of transport control program (tp) ended with return code 0249
    Message no. TK094
    Diagnosis
    Your transport request could not be exported, since all requirements were not fulfilled.
    Calling the transport control program tp
    "tp EXPCHK RDDK123345 pf=C:\usr\sap\trans\bin\TP_DOMAIN_R3D.PFL
    -Dtransdir=C:\usr\sa"
    which checks the export requirements, returned the following
    information:
    Return code from tp: 0249
    Error text from tp: ERROR: No connect due to DbSl Load Lib Failure
    System response
    Further processing is terminated.
    Procedure
    Check the following points:
    o Feasibility of the transport control program tp
    o Parameter settings in the transport profile
    o Availability of the transport directory and the subdirectories
    (cofiles, data, log, sapnames, bin)
    o Write authorization for the subdirectories
    o Write authorization for the files of the subdirectories cofiles,
    data, log, sapnames
    Release the request again when the error has been removed
    Appreciate any help to resolve this error.
    Thanks,
    Rajesh

    Hi!
    I have the same issue, but the windows enviroment variable has been set or should the parameter be set in the instance profile?
    Thanks!
    rollo
    //solved
    It was an issue with the RFC's and some mising services in the service file
    Edited by: rollo on Jan 12, 2009 2:40 PM

  • Problem with Connection to message server "DB-Connect Failed, Return Code "

    Hello,
    I have the problem that disp+work exe start but after one minute the precedure stopped.  The Messages in syslog are "Message server disconnected DB-Connect Failed, Return Code  008192. Can anybody help me?
    Best regards Mohamed

    trc file: "dev_w0", trc level: 1, release: "700"
    ACTIVE TRACE LEVEL           1
    ACTIVE TRACE COMPONENTS      all, MJ

    B Tue Oct 09 19:07:25 2007
    B  create_con (con_name=R/3)
    B  Loading DB library 'F:\usr\sap\BI7\DVEBMGS70\exe\dbmssslib.dll' ...
    B  Library 'F:\usr\sap\BI7\DVEBMGS70\exe\dbmssslib.dll' loaded
    B  Version of 'F:\usr\sap\BI7\DVEBMGS70\exe\dbmssslib.dll' is "700.08", patchlevel (0.72)
    B  New connection 0 created
    M sysno      70
    M sid        BI7
    M systemid   560 (PC with Windows NT)
    M relno      7000
    M patchlevel 0
    M patchno    80
    M intno      20050900
    M make:      multithreaded, ASCII, optimized
    M pid        7580
    M
    M  kernel runs with dp version 217(ext=109) (@(#) DPLIB-INT-VERSION-217)
    M  length of sys_adm_ext is 360 bytes
    M  ***LOG Q0Q=> tskh_init, WPStart (Workproc 0 7580) [dpxxdisp.c   1301]
    I  MtxInit: 30000 0 0
    M  DpSysAdmExtCreate: ABAP is active
    M  DpSysAdmExtCreate: VMC (JAVA VM in WP) is not active
    M  DpShMCreate: sizeof(wp_adm)          11440     (880)
    M  DpShMCreate: sizeof(tm_adm)          3397704     (16904)
    M  DpShMCreate: sizeof(wp_ca_adm)          18000     (60)
    M  DpShMCreate: sizeof(appc_ca_adm)     6000     (60)
    M  DpCommTableSize: max/headSize/ftSize/tableSize=500/8/528040/528048
    M  DpShMCreate: sizeof(comm_adm)          528048     (1048)
    M  DpFileTableSize: max/headSize/ftSize/tableSize=0/0/0/0
    M  DpShMCreate: sizeof(file_adm)          0     (72)
    M  DpShMCreate: sizeof(vmc_adm)          0     (1196)
    M  DpShMCreate: sizeof(wall_adm)          (22440/34344/56/100)
    M  DpShMCreate: sizeof(gw_adm)     48
    M  DpShMCreate: SHM_DP_ADM_KEY          (addr: 06350040, size: 4024776)
    M  DpShMCreate: allocated sys_adm at 06350040
    M  DpShMCreate: allocated wp_adm at 063519F0
    M  DpShMCreate: allocated tm_adm_list at 063546A0
    M  DpShMCreate: allocated tm_adm at 063546D0
    M  DpShMCreate: allocated wp_ca_adm at 06691F18
    M  DpShMCreate: allocated appc_ca_adm at 06696568
    M  DpShMCreate: allocated comm_adm at 06697CD8
    M  DpShMCreate: system runs without file table
    M  DpShMCreate: allocated vmc_adm_list at 06718B88
    M  DpShMCreate: allocated gw_adm at 06718BC8
    M  DpShMCreate: system runs without vmc_adm
    M  DpShMCreate: allocated ca_info at 06718BF8
    M  DpShMCreate: allocated wall_adm at 06718C00
    X  EmInit: MmSetImplementation( 2 ).
    X  MM global diagnostic options set: 0
    X  <ES> client 0 initializing ....
    X  Using implementation flat
    M  <EsNT> Memory Reset disabled as NT default
    X  ES initialized.
    M  ThInit: running on host ATTNWSRV

    M Tue Oct 09 19:07:26 2007
    M  calling db_connect ...
    C  Process 7580
    C  GetProfileParameter( wait_and_see ) returned [<null>]
    C  GetProfileParameter( deadlock_priority ) returned [<null>]
    C  GetProfileParameter( packet_size ) returned [8192]
    C  GetProfileParameter( rpc_batch ) returned [<null>]
    C  batched RPC will be used
    C  GetProfileParameter( dbsl_profile ) returned [1]
    C  dbsl profile written to dbsl_w0
    C  GetProfileParameter( pn_cache_size ) returned [20000]
    C  GetProfileParameter( par_stmt_cache_size ) returned [500]
    C  GetProfileParameter( dbcon_pn_size ) returned [<null>]
    C  GetProfileParameter( dbcon_par_stmt_cache_size ) returned [<null>]
    C  GetProfileParameter( stats_on ) returned [1]
    C  GetProfileParameter( network ) returned [<null>]
    C  GetProfileParameter( sp_prefix ) returned [<null>]
    C  GetProfileParameter( rdisp/TRACE ) returned [1]
    C  GetProfileParameter( set_rowcount ) returned [<null>]
    C  GetProfileParameter( set_fast1 ) returned [<null>]
    C  GetProfileParameter( use_integrated_security ) returned [<null>]
    C  GetProfileParameter( conn_str ) returned [<null>]
    C  GetProfileParameter( ignore_moduledrop ) returned [<null>]
    C  GetProfileParameter( use_cursor ) returned [<null>]
    C  GetProfileParameter( cursor_type ) returned [<null>]
    C  GetProfileParameter( fupd_cursor_type ) returned [<null>]
    C  GetProfileParameter( set_topn ) returned [<null>]
    C  GetProfileParameter( short_col_headers ) returned [<null>]
    C  GetProfileParameter( update_with_updlock ) returned [<null>]
    C  GetProfileParameter( maxincnt ) returned [<null>]
    C  GetProfileParameter( transmit_defaults ) returned [<null>]
    C  GetProfileParameter( square_brackets ) returned [<null>]
    C  GetProfileParameter( with_recompile ) returned [<null>]
    C  GetProfileParameter( max_duration ) returned [<null>]
    C  GetProfileParameter( irow_supported ) returned [<null>]
    C  GetProfileParameter( ins_block_increment ) returned [<null>]
    C  GetProfileParameter( max_ins_block_columns ) returned [<null>]
    C  GetProfileParameter( unc_rd_begin_tran ) returned [<null>]
    C  GetProfileParameter( use_rpc_call_string ) returned [<null>]
    C  GetProfileParameter( perm_stmt_reuse_cnt ) returned [<null>]
    C  GetProfileParameter( batch_stmt_reuse_cnt ) returned [<null>]
    C  GetProfileParameter( temp_stmt_reuse_cnt ) returned [<null>]
    C  GetProfileParameter( prepare ) returned [<null>]
    C  GetProfileParameter( par_stmt_prepare ) returned [<null>]
    C  GetProfileParameter( profile_with_timestamp ) returned [<null>]
    C  GetProfileParameter( no_utab_workaround ) returned [<null>]
    C  GetProfileParameter( use_block_fetch ) returned [<null>]
    C  GetProfileParameter( connect_retries ) returned [<null>]
    C  GetProfileParameter( connect_timeout ) returned [<null>]
    C  GetProfileParameter( use_system_locale ) returned [<null>]
    C  GetProfileParameter( ignore_stmtids ) returned [<null>]
    C  GetProfileParameter( recompile_par_stmts ) returned [0]
    C  GetProfileParameter( subst_params ) returned [<null>]
    C  GetProfileParameter( provider ) returned [<null>]
    C  GetProfileParameter( lob_rc ) returned [<null>]
    C  GetProfileParameter( buffer_cvarlobs ) returned [<null>]
    C  GetProfileParameter( allow_multipleconnections ) returned [<null>]
    C  GetProfileParameter( fupdorder ) returned [<null>]
    C  GetProfileParameter( no_vbdata_workaround ) returned [<null>]
    C  GetProfileParameter( use_mars ) returned [<null>]
    C  GetProfileParameter( as_c ) returned [<null>]
    C  GetProfileParameter( save_stmt_string ) returned [<null>]
    C  GetProfileParameter( server ) returned [ATTNWSRV]
    C  GetProfileParameter( user ) returned [<null>]
    C  GetProfileParameter( passwd ) returned [<null>]
    C  GetProfileParameter( dbname ) returned [BI7]
    C  GetProfileParameter( schema ) returned [dbo]
    C  Warning: Env(MSSQL_SCHEMA) [bi7] <> Prof(dbs/mss/schema) [dbo]. Profile value will be used.
    C  GetProfileParameter( auth/shadow_upgrade ) returned [<null>]
    C  GetProfileParameter( add_procs ) returned [<null>]
    C  Thread ID:7584
    C  Thank You for using the SLOLEDB-interface
    C  Using dynamic link library 'F:\usr\sap\BI7\DVEBMGS70\exe\dbmssslib.dll'
    C  dbmssslib.dll patch info
    C    patchlevel   0
    C    patchno      72
    C    patchcomment MSSQL: Thread check in DbSlDisconnect (969143)
    C  COMPUTERNAME: ATTNWSRV
    C  np:(local) connection used on ATTNWSRV
    C  CopyLocalParameters: dbuser is 'dbo'
    C  Formatted connect string : [Driver=SQL Server;Server=np:(local);Trusted_Connection=yes;WSID=ATTNWSRV;APP=R3D00(0)comm rd [MDAC] OLEDB]

    C Tue Oct 09 19:07:27 2007
    C  Provider SQLNCLI could not be initialized. See note #734034 for more information.
    C  Using provider SQLOLEDB instead.
    C  OpenOledbConnection: MARS property was not set.
    C  Packet size is set to: 8192
    C  OpenOledbConnection: line 23391. hr: 0x8000ffff Login failed for user 'ATTNWSRV\SAPServiceBI7'.
    C  sloledb.cpp [OpenOledbConnection,line 23391]: Error/Message: (err 18456, sev 0), Login failed for user 'ATTNWSRV\SAPServiceBI7'.
    C  Procname: [OpenOledbConnection - no proc]
    C  sloledb.cpp [OpenOledbConnection,line 23391]: Error/Message: (err 0, sev 0), Invalid connection string attribute
    C  Procname: [OpenOledbConnection - no proc]
    C  Provider SQLNCLI could not be initialized. See note #734034 for more information.
    C  Using provider SQLOLEDB instead.
    C  Packet size is set to: 8192
    C  OpenOledbConnection: line 23391. hr: 0x8000ffff Login failed for user 'ATTNWSRV\SAPServiceBI7'.
    C  sloledb.cpp [OpenOledbConnection,line 23391]: Error/Message: (err 18456, sev 0), Login failed for user 'ATTNWSRV\SAPServiceBI7'.
    C  Procname: [OpenOledbConnection - no proc]
    C  sloledb.cpp [OpenOledbConnection,line 23391]: Error/Message: (err 0, sev 0), Invalid connection string attribute
    C  Procname: [OpenOledbConnection - no proc]
    C  Provider SQLNCLI could not be initialized. See note #734034 for more information.
    C  Using provider SQLOLEDB instead.
    C  Packet size is set to: 8192
    C  OpenOledbConnection: line 23391. hr: 0x8000ffff Login failed for user 'ATTNWSRV\SAPServiceBI7'.
    C  sloledb.cpp [OpenOledbConnection,line 23391]: Error/Message: (err 18456, sev 0), Login failed for user 'ATTNWSRV\SAPServiceBI7'.
    C  Procname: [OpenOledbConnection - no proc]
    C  sloledb.cpp [OpenOledbConnection,line 23391]: Error/Message: (err 0, sev 0), Invalid connection string attribute
    C  Procname: [OpenOledbConnection - no proc]
    C  failed to establish conn to np:(local).
    C  Retrying without protocol specifier: (local)
    C  Formatted connect string : [Driver=SQL Server;Server=(local);Trusted_Connection=yes;WSID=ATTNWSRV;APP=R3D00(0)comm rd [MDAC] OLEDB]
    C  Provider SQLNCLI could not be initialized. See note #734034 for more information.
    C  Using provider SQLOLEDB instead.
    C  Packet size is set to: 8192
    C  OpenOledbConnection: line 23391. hr: 0x8000ffff Login failed for user 'ATTNWSRV\SAPServiceBI7'.
    C  sloledb.cpp [OpenOledbConnection,line 23391]: Error/Message: (err 18456, sev 0), Login failed for user 'ATTNWSRV\SAPServiceBI7'.
    C  Procname: [OpenOledbConnection - no proc]
    C  sloledb.cpp [OpenOledbConnection,line 23391]: Error/Message: (err 0, sev 0), Invalid connection string attribute
    C  Procname: [OpenOledbConnection - no proc]
    C  Provider SQLNCLI could not be initialized. See note #734034 for more information.
    C  Using provider SQLOLEDB instead.
    C  Packet size is set to: 8192
    C  OpenOledbConnection: line 23391. hr: 0x8000ffff Login failed for user 'ATTNWSRV\SAPServiceBI7'.
    C  sloledb.cpp [OpenOledbConnection,line 23391]: Error/Message: (err 18456, sev 0), Login failed for user 'ATTNWSRV\SAPServiceBI7'.
    C  Procname: [OpenOledbConnection - no proc]
    C  sloledb.cpp [OpenOledbConnection,line 23391]: Error/Message: (err 0, sev 0), Invalid connection string attribute
    C  Procname: [OpenOledbConnection - no proc]

    C Tue Oct 09 19:07:28 2007
    C  Provider SQLNCLI could not be initialized. See note #734034 for more information.
    C  Using provider SQLOLEDB instead.
    C  Packet size is set to: 8192
    C  OpenOledbConnection: line 23391. hr: 0x8000ffff Login failed for user 'ATTNWSRV\SAPServiceBI7'.
    C  sloledb.cpp [OpenOledbConnection,line 23391]: Error/Message: (err 18456, sev 0), Login failed for user 'ATTNWSRV\SAPServiceBI7'.
    C  Procname: [OpenOledbConnection - no proc]
    C  sloledb.cpp [OpenOledbConnection,line 23391]: Error/Message: (err 0, sev 0), Invalid connection string attribute
    C  Procname: [OpenOledbConnection - no proc]
    C  failed to establish conn. 0
    B  ***LOG BY2=> sql error 0      performing CON [dbsh#2 @ 1204] [dbsh    1204 ]
    B  ***LOG BY0=> <message text not available> [dbsh#2 @ 1204] [dbsh    1204 ]
    B  ***LOG BY2=> sql error 0      performing CON [dblink#3 @ 431] [dblink  0431 ]
    B  ***LOG BY0=> <message text not available> [dblink#3 @ 431] [dblink  0431 ]
    M  ***LOG R19=> ThInit, db_connect ( DB-Connect 000256) [thxxhead.c   1411]
    M  in_ThErrHandle: 1
    M  *** ERROR => ThInit: db_connect (step 1, th_errno 13, action 3, level 1) [thxxhead.c   10169]

    M  Info for wp 0

    M    stat = 4
    M    reqtype = 1
    M    act_reqtype = -1
    M    rq_info = 0
    M    tid = -1
    M    mode = 255
    M    len = -1
    M    rq_id = 65535
    M    rq_source = 255
    M    last_tid = 0
    M    last_mode = 0
    M    semaphore = 0
    M    act_cs_count = 0
    M    control_flag = 0
    M    int_checked_resource(RFC) = 0
    M    ext_checked_resource(RFC) = 0
    M    int_checked_resource(HTTP) = 0
    M    ext_checked_resource(HTTP) = 0
    M    report = >                                        <
    M    action = 0
    M    tab_name = >                              <
    M    vm = no VM

    M  *****************************************************************************
    M  *
    M  *  LOCATION    SAP-Server ATTNWSRV_BI7_70 on host ATTNWSRV (wp 0)
    M  *  ERROR       ThInit: db_connect
    M  *
    M  *  TIME        Tue Oct 09 19:07:28 2007
    M  *  RELEASE     700
    M  *  COMPONENT   Taskhandler
    M  *  VERSION     1
    M  *  RC          13
    M  *  MODULE      thxxhead.c
    M  *  LINE        10367
    M  *  COUNTER     1
    M  *
    M  *****************************************************************************

    M  PfStatDisconnect: disconnect statistics
    M  Entering TH_CALLHOOKS
    M  ThCallHooks: call hook >ThrSaveSPAFields< for event BEFORE_DUMP
    M  *** ERROR => ThrSaveSPAFields: no valid thr_wpadm [thxxrun1.c   720]
    M  *** ERROR => ThCallHooks: event handler ThrSaveSPAFields for event BEFORE_DUMP failed [thxxtool3.c  260]
    M  Entering ThSetStatError
    M  ThIErrHandle: do not call ThrCoreInfo (no_core_info=0, in_dynp_env=0)
    M  Entering ThReadDetachMode
    M  call ThrShutDown (1)...
    M  ***LOG Q02=> wp_halt, WPStop (Workproc 0 7580) [dpnttool.c   327]

  • Communication error CPIC return code 019 SAP return  code 728. Delta error

    Hello Experts,
    Would just like to ask if what we suspect is correct. We have running deltas in process chains occurring every early morning. However, upon checking the delta that should have run today, I found that the delta did not push through. I only found this one dump in SM21 that I think is related to the issue:
    MNo.
    R49 Communication error, CPIC return code 019, SAP return code 728
    R5A > Conversation ID: 61442686                                  
    R49 Communication error, CPIC return code 019, SAP return code 728
    R64 > CPI-C function: CMSEND(SAP)                                
    R5A > Conversation ID: 61443687                                  
    R64 > CPI-C function: CMSEND(SAP)                                
    R49 Communication error, CPIC return code 019, SAP return code 728
    R5A > Conversation ID: 61444687                                  
    R64 > CPI-C function: CMSEND(SAP)
    Now we think that the delta did not push through because we are encountering issues with regards to our SAP R/3 system (the source system) and it is currently inaccessible. Did the delta not push through because of the issues and inaccessibility/uber slow processing of our SAP R/3 server? And is the error specified above illustrating this? Any explanation would help. I have already tried looking for similar issues but cannot find anything. Please help. Thanks!

    Hi
    As far I know, The SAP Gateway carries out CPI-C services within the SAP world, which are based on TCP/IP. These services enable SAP Systems and external programs to communicate with one another.
    CPI-C services can be used either in the ABAP program or for the external programs via the interfaces.
    As RFC (remote function call) is based on CPI-C, all RFC connections also pass through the SAP Gateway.
    Errors When Starting Remote Programs Using Remote Shell
    When you use remote shell to start CPIC programs on other hosts, the following conditions apply:
    The (gateway) UNIX ID must be available on the other host
    The gateway host must be entered in the remote host in the file ".rhosts". This file must be located in the HOME directory of the (gateway) UNIX ID.
    The program you want to start must be installed in the HOME directory of the (gateway) UNIX ID on the remote host.
    Read more from help
    http://help.sap.com/saphelp_nw04s/helpdata/en/99/5f8c0bcb7d4280aa862254cffceada/frameset.htm

Maybe you are looking for

  • Goods receipt error

    Hello Gurus, I have a valid line item on the PO with Qty 2. When i am trying to do a goods receipt for this PO it errors saying PO xxxxxxxxxxx has no items. The PO is released and everything in the PO seems fine. Can you help me fix this and do a GR

  • HP external USB DVD Drive not recognized by computer.

    Have HP Mini-210 and HP external USB DVD Drive.  When attached, the DVD drive lights and spins but computor will not recognize it.  When checking Device Manager, it says no driver for DVD drive..  I try to reinstall the driver, and then it says I hav

  • HTML or PHP visibility div tag problem in IE

    Hi, I have a PHP search function on a travel site a programmer did for me. When you look at it in FF and Safari, it looks fine. But in IE, there is a big blank space where the calendar function goes. He has the div tag set to visibility:hidden. Any i

  • Error opening iTunes after update (its updated to 10.4  64-bit) ""itonersupport" could load in 64 bit mode"

    I know how to swhitch to 32-bit mode. But it have to support 64-bits.. Any suggestions?

  • Z 10 link wont upload right

    I have tried to upload link for my new Z10 and I cant get past the first page where it asks me to set up link. cant get past this page Solved! Go to Solution.