To set paramter connector.sap.rfc.job.bw = debug

Hello,
We are getting job stuck while running in redwood CPS8. We would like to set this parameter to get more information for the reason.
connector.sap.rfc.job.bw = debug.
Please let us know where to set this parameter.
Rg,
Sandeep.

Hello,
You can do this through Netweaver administration, which takes some time to figure out. The easiest way is to submit job System_Dynamic trace and fill in your debug string as the parameter. Then reproduce your issue, kill the dynamic trace job and report back the output of this job.
Regards Gerben

Similar Messages

  • Perl SAP::Rfc: how sets the export parameters correctly?

    Hi,
    we use SAP::RFC with Perl to read out some user details. We have a problem
    of reading the export parameter structure "address".
    Here is an example:
    #!/usr/bin/perl
    use strict;
    use SAP::Rfc;
    use Data::Dumper;
    my $rfc = new SAP::Rfc(
                ASHOST => ... );
    my $iface = $rfc->discover( "BAPI_USER_GET_DETAIL" );
    my $user = "TEST";
    $iface->USERNAME( $user );
    my $lastname = $iface->ADDRESS->{'LASTNAME'};
    print "lastname : $lastname\n";
    $rfc->callrfc( $iface );
    $rfc->close();
    Nothing is saved in the field "lastname". Can anybody help us?
    Thanks
    Helmut

    Answer is pure assumption
    Pls check this link, you may get a idea
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/c98bea06-0b01-0010-78bd-8592433ff6f2
    Regards
    Madhan D

  • How do I call a SAP RFC from an Oracle Form using webutils CLIENT_OLE2?

    Hi guys,
    Your help on this problem would be greatly appreciated.
    We have an older forms 6i application which we are currently updating to 10g (which is a pain itself... but that's a different story.) which currently uses unssupported c++ routines to connect to the SAP system, we want to do away with this c++.
    What I have so far is the following test code:
    PROCEDURE cmd_summary
    IS
    o_sap_log client_ole2.obj_type;
    o_sap_conn client_ole2.obj_type;
    o_sap_rfcc client_ole2.obj_type;
    -- o_sap_rfcx client_ole2.obj_type;
    -- o_sap_rfc client_ole2.obj_type;
    v_args ole2.list_type;
    v_logon BOOLEAN := FALSE;
    BEGIN
    :block3.txt_result := 'TEST Started!';
    --create logon control object
    o_sap_log := client_ole2.create_obj ('SAP.logoncontrol.1');
    --create the function object
    o_sap_rfcc := client_ole2.create_obj ('SAP.Functions');
    --create a new connection object
    o_sap_conn := client_ole2.invoke_obj (o_sap_log, 'NewConnection');
    --set the connection properties
    client_ole2.set_property (o_sap_conn, 'System', caps$get_sys_param ('SAP_DST'));
    client_ole2.set_property (o_sap_conn, 'MessageServer', caps$get_sys_param ('SAP_HST'));
    client_ole2.set_property (o_sap_conn, 'GroupName', 'DEVELOP');
    client_ole2.set_property (o_sap_conn, 'client', caps$get_sys_param ('SAP_CLT'));
    client_ole2.set_property (o_sap_conn, 'SystemNumber', caps$get_sys_param ('SAP_SYN'));
    client_ole2.set_property (o_sap_conn, 'User', caps$get_sys_param ('SAP_USR'));
    client_ole2.set_property (o_sap_conn, 'Password', caps$get_sys_param ('SAP_PWD'));
    client_ole2.set_property (o_sap_conn, 'language', caps$get_sys_param ('SAP_LNG'));
    --set up the logon arguements
    v_args := client_ole2.create_arglist;
    client_ole2.add_arg (v_args, 1);
    client_ole2.add_arg (v_args, TRUE);
    --run the logon function
    v_logon := client_ole2.get_bool_property (o_sap_conn, 'logon', v_args);
    client_ole2.destroy_arglist (v_args);
    IF v_logon
    THEN
    :block3.txt_result := :block3.txt_result || CHR (10) || 'LOGON Worked!!';
    ELSE
    :block3.txt_result := :block3.txt_result || CHR (10) || 'LOGON Failed!!';
    END IF;
    :block3.txt_result := :block3.txt_result || CHR (10) || 'TEST Ended!';
    EXCEPTION
    WHEN OTHERS
    THEN
    :block3.txt_result := :block3.txt_result || CHR (10) || SQLERRM (SQLCODE);
    END cmd_summary;
    NOTE: the get_sys_param functionis returning text from a table.
    This seems to work okay, the logon command returning a TRUE. All good so far.
    However, when I try to then use this connection for anything then I stumble and fall!
    I've seen an example in VB where the SAP RFC object is "assigned" the connection object by simply stating:
    Set oSAPrfc.Connection = oSAPconn
    Where oSAPconn is setup in a similar way to my o_Sap_conn in the above example.
    I have tried using the CLIENT_OLE2.SET_PROPERTY procedures but I don't think that's quite right.
    I've tried using invoke, to try and "run" the method like:
    v_args := CLIENT_OLE2.CREATE_ARGLIST;
    client_ole2.add_arg_obj(v_args,o_sap_conn);
    client_ole2.invoke(o_sap_rfcc,'Connection',v_args);
    client_ole2.destroy_arglist(v_args);
    but it fails.
    I have also tried using the actual Connection function directly:
    SAP_ISAPFUNCTIONS.connection(o_sap_rfcc, o_sap_conn);
    But that just causes the Forms Server to crash... :?
    Has anyone connected to SAP via Forms? I noticed one post on this forum which an example of some code using a SAPBAPI control but not WEBUTIL (Which I think I'd need to use because we are running 10g)
    As a side note we are also looking into SAP Adapter as a possible "other" route but this too is getting very complicated... And I can't see a way of connecting a form to the Adpater anyway :(
    Any advice would be very much appreciated.

    Can anyone help?
    Mike

  • Can U set breakpoint within a batch job and look at variables?

    Hello friends,
    I am trying to solve a problem that occurs within a program / transaction which can only be executed in background. The transaction in question is FPCOPARA and apparently this program cannot be executed in foreground.
    If I understand well, we cannot set breakpoints within a background job and as a result we cannot inspect variable etc. during job execution. So the question is how to achieve the same goal within a batch job? How did you do it? As this is a standard SAP transacrtion, no program modification can be applied.
    Your help is greatly appreciated.

    Hi......
    After u have executed ur batch job..
    go to sm37 >>select ur job using checkbox>>enter 'JDBG' in transaction box and press enter
    now debugger will start ..initial it will go through system code..after after a while the debugger will reach to your code and den you can debug the remaining report....
    all the best
    regards
    vivek

  • Create SAP RFC iView with a structure as import parameter

    Hello All,
    I'm creating a SAP RFC iView from Portal SAP 7.4.
    I try call a RFC that have as import parameter a structure with various fields, but the portal recognizes the structure as string field, then I cannot fill the fields values, and when  I do a preview the iview, the following error occurs:
    Function execution failed. Exception message: class java.lang.String:null incompatible with class com.sapportals.connectors.SAPCFConnector.execution.structures.RecordWrapper:sap.com/[email protected]MultiParentClassLoader@80d4ed6@alive
    And only is possible select a output object.
    Exists any way of receive a structure or a table as import parameter?, and as output parameters more of a element?
    Thanks for your collaboration.

    Hello All,
    I'm creating a SAP RFC iView from Portal SAP 7.4.
    I try call a RFC that have as import parameter a structure with various fields, but the portal recognizes the structure as string field, then I cannot fill the fields values, and when  I do a preview the iview, the following error occurs:
    Function execution failed. Exception message: class java.lang.String:null incompatible with class com.sapportals.connectors.SAPCFConnector.execution.structures.RecordWrapper:sap.com/[email protected]MultiParentClassLoader@80d4ed6@alive
    And only is possible select a output object.
    Exists any way of receive a structure or a table as import parameter?, and as output parameters more of a element?
    Thanks for your collaboration.

  • Please Help me! Start RFC Jobs Error

    Dear Experts,
    I'm installing SAP R/3 4.7 EX 2 SR1 - IDES (Unicode).
    Details of the system:
    Solaris 10, Oracle 9.2.0.7.
    R/3 Enterprise 4.7 X 2 SR1 - IDES (Unicode)
    I have received this error during installation Phase 34/37.
    This is about Starting RFC Jobs:
    FRF-00025 Unable to call function. Error message: Syntax error in program SAPLSTTM
    Message in trace file:
    >TS> Sat Nov 24 10:41:28 2007
    T:1 Error in program 'sapinste': ======>      Syntax error in program SAPLSTTM
    T:1 Error in program 'sapinste': <* RfcReceive [7] : returns 3:RFC_SYS_EXCEPTION
    T:1 Error in program 'sapinste': <* RfcCallReceive [7] : returns 3:RFC_SYS_EXCEPTION
    Some syntax error inside dev_wp0:
    A  Source LSGUIU03
    A  Error Code SYNTAX_ERROR.
    A  Module  $Id: //bas/640_REL/src/krn/runt/abgen.c#14 $ SAP.
    A  Function ab_genprog Line 1423.
    A  *** ERROR => Syntax error in program SAPLSTTM                                 [abgen.c      1389]
    A  *** ERROR => > Include LSTTMTOP                                 line 8 [abgen.c      1391]
    A  *** ERROR => > The type "CAT_SVARS_TABTYPE" is unknown. [abgen.c      1393]
    A  TH VERBOSE LEVEL FULL
    I could not find the reason of this error so far
    Thanks for your kind advise.
    Best Regards,
    Fausto

    The process has to be done in Non-Unicode

  • Calling SAP RFC from ODI

    I want to call SAP RFC from ODI. Client has provided only a set of RFC's. So I want to call these RFC's to extract data from SAP ERP system or BW to Oracle Staging using ODI. Would anyone please tell me how it will be possible?

    I want to call SAP RFC from ODI. Client has provided only a set of RFC's. So I want to call these RFC's to extract data from SAP ERP system or BW to Oracle Staging using ODI. Would anyone please tell me how it will be possible?

  • How to avoid syslog messages when connecting via Perl SAP::RFC ?

    Everything works fine with Perl SAP::RFC calls to our ERP 6.0 thanks to Piers Harding except numerous entrys in the SAP-syslog (SM21) which make that a little bit unclearly.
    Tracing is set to "0" when connecting via new SAP::Rfc( ASHOST .. , TRACE    => "0" ) from Perl.
    The syslog - entries look something like this:
    07:46:10 DIA 000                          R1  M Trace vom Remote Client übernommen.       
    07:46:18 UP2 062 011 MYRFCUSER              R1  L Trace für Benutzer MYRFCUSER deaktiviert.
    Even when tracing is set to "0" there is also a *.trc-File in the directory where the perl script resides on RFC client side.
    In this trace file one can see the followig excert:
    >>> RfcOpenEx ...
    Got following connect_param string:
       TRFC=0 LCHECK=0 UNICODE=0 PASSWD=******* USER=MYRFCUSER LANG=DE *TRACE=CLIENT=011* ASHOST=myhost SYSNR=00
    Send RFCHEADER: 01/LIT/IEEE/SPACE/1100
    Send UNICODE-RFCHEADER: cp:1100/ce:IGNORE/et:5/cs:1/rc:0x00000023
    Could someone please give me a hint what is going wrong here.
    Thank you.
    Martin

    May be set TRACE->'1' and got tracing messages ?

  • Java Connector and RFCs

    Hi Experts,
    i'm currently in a SAP IS-Retail implementation and i need to invoke RFCs (SAP RFCs) in a third-party system.
    If this third-party system is a java based application, may they use the SAP Java Connector to invoke our (SAP) RFCs???
    Thank you very much.
    Kind Regards,
    Paulo

    Hi Paulo,
    For the kind of situtaion you have stated, SAP JCo is the best answer and you can also see the number of recomendations you have got.
    CHECK-LIST for JCo
    First download the JCo connector from OSS which is compatibale to the version you are using.
    then
    1) install Java and configure the class path in Desktop > My computer ( Right-click) > properties > Environment variables > class path
    2) We have also used Tomcat and ant server, so please check them if you need.
    3) 'librfc32.dll' in WinowsNT > System32 > replace.
    4) sapjcorfc.dll and SAP JCO in the java class path, also the documents and other demo's place it in java folder.
    5) Create connections in java with the program given Example1.java and connections are given above.
    6) in SAP, go to RFC connection, in create connection we have to
    name as JCo
    Type as TCP/IP connections
    Description - anything you wish
    Activation type - Registered Sever Program
    Program -JCOSERVER01( as I remember)
    hope its useful.
    cheers
    ajay

  • INSTALLATION ERROR AT RFC JOB POST PROCESSING

    hi experts,
    i am trying to install IDES 4.7 WITH oracle 8i and windows xp
    with the same resource i had successfully installed atleast three times but since last two installation stops at last phase
    rfc job post processing and ask for PASSWORD OF DDIC
    i tried diffrent password like 19920706,05071992,pass,password,change_on_install nothing working.in the mean while i am able to login to sap system which starts with dump CONVERT_TSTMP_INCONSISTENT_TAB.dont know what to do.please guide

    Hi Sanjeev,
    After installation users sap*,ddic and earlywatch only exist in the system.Could you please tell me which user you logged into the system.What client you are logging in.
    If you are getting sap* and ddic does not exist then you can not change the password because the users themselves not there. you can create those users(su01) and assign profile sap_all and sap_new.
    Then login with sap* and ddic with the initial password and change the password then give those passwords at the time of installation.
    Regards
    Ashok

  • SAP Standard Jobs are getting canceled

    Hi Basis Gurus,
    In our Quality BW 3.5 system the SAP Standard jobs are getting canceled.
    The jobs are as follows
    SAP_APPLICATION_STAT_COLLECTOR
    SAP_CCMS_CPH_HRCOLL
    SAP_CCMS_MONI_BATCH_DP
    SAP_COLLECTOR_FOR_JOBSTATISTIC
    SAP_COLLECTOR_FOR_NONE_R3_STAT
    SAP_COLLECTOR_FOR_PERFMONITOR
    SAPCONNECT ALL SEND
    SAP_REORG_ABAPDUMPS
    SAP_REORG_SPOOL
    SAP_RSICFDLT
    In SM37 when i click on the job log for the above mentioned jobs the system is promting a message saying as "Error reading job log"
    Please let me know how can troubleshoot it and resolve this issue.
    Our is qulaity BW 3.5 system
    Solaris OS
    Oracle Database
    Please help me.
    Regards,
    Anil.

    Hi ,
    For log display reason, try the note suggested. Jobs cancel reason may be due to that the user who schedule that job are locked or not exist on that client. Or other reason will be clear only after log display.
    Ankit

  • How to Schedule SAP background job at OS Level

    Hi All,
    Can Anyone tell me how to Schedule SAP background job at OS Level (unix).
    Regards,
    Anil

    Hi Anil,
    I donu2019t know your requirements, anyway itu2019s possible to setup your SAP job in order to start after an event, and after that you can get the event triggered from the Operating System in the following way:
    - log into you Operating System with the SIDadm user id (at the Operating System level) and go to directory /usr/sap/SID/SYS/exe/run
    - Run the SAPEVT executable as follows:
    sapevt YOUR_EVENT -t pf=/usr/sap/SID/SYS/profile/DEV_DVEBMGS00_server001 nr=01
    This will raise the event, and cause the job scheduled within SAP to execute.
    You can periodically execute this job with crontab.
    Thanks,
    Federico Biavati

  • Need suggestion on importing BC SET : UKM_DCD_CUST in SAP ERP system

    Dear Gurus,
    Client wants me to import BC SET : UKM_DCD_CUST into SAP ERP system. I have found BC SET : UKM_DCD_CUST in T code SCPR20.
    I have read most of the SCN discussion and got two way to import BC SET into ERP system as given below. But I need the appropriate way to do this. Can any one help me in this?
    1. SCPR20 -> Activate BC set -> create customizing request to import into another system as per link :Business Configuration Sets (BC Sets) and their use - Basis Corner - SCN Wiki
    2. Create TR in SE01 in 000 and import into required client  as per below proc:
    Usual procedure
    1) BC SETS will be attached to SAP note usually. Download it and unzip it , you will get a *.bcs file
    2) Call transaction SCPR20  BC set --> Upload In the dialog box that then appears, specify the files that you unpacked
    Import the set BC into a package that you have defined. activate it with the "Expert mode"
    3) You will also get a *.txt file with prog id , obj etc entries , then you have to go to SE09 and create a transport request in the source client of your Solution Manager system (client 000). Open the *.txt and copy the entries it contains into the transport request. Use transaction SCC1 to import the data in your Solution Manager client(s)
    Thanks,
    Anand Aseri

    2). Client copies bring the Customization data but not WorkBench . So you might have to do transport of copies from Old Dev to >New Dev.
    So you are saying that the system copy from Production will not bring Workbench data and I need to bring Workbench data by transports?
    *system copy from Production will bring Workbench data also, but when you do client copy from development system again on top of client which already has production customization, data and workbench requests, Production customization and data will be overwritten from development customization and data (it depends on the profile you choose for the client copy) *
    However  Development Workbench requests are more and also has ongoing development work which might not be available in production client and those (Ongoing development workbench requests) you need to import in new system as transport of copies after the client copy
    3). If you do system copy from Production and do client copy from dev...obviously Prod customization will be overwritten with Dev rite ?
    That's what I expect to happen,
    Ok, however, You might need to get Development Work too from the old dev system and don't forget about setting up of partner profiles in WE20.
    It's just a thought ,  Do you have testing client in Dev, if not,You can leave the production client in development system and use it as testing client.
    Create new client which is client copy of Old Dev and import WorkBench requests *
    Thanks,
    Arjun

  • Tutorial SyBase Unwired with SAP RFC

    Hello everyone.
    Does anybody have a tutorial or books how create project with SAP RFC?
    I need to create a project approval Purchase Order (BAPI_PO_GETITEMSREL and BAPI_PO_RELEASE);
    Thank's.

    Hi Leandro,
    You can refer to the following video: http://www.youtube.com/watch?v=1ZcTJYsPzYQ
    It creates a MBO based on a the standard BAPI: "BAPI_FLIGHT_GETLIST" and then a Mobile Workflow Form.
    Althought version is 2.1 I've runned same test in version 2.0 and it worked fine.
    Hope it helps
    Cheers
    Pablo.

  • Error calling "RfcRegisterServer" with NW or SAP-RFC

    Hello,
    with our customer upgrading to the EHP 7.0 we run into an erroro while calling the function "RfcRegisterServer"
    with SAP-NetWeaver:
    Contents of structure “RFC_ERROR_INFO“:
    code = 1
    message = (0x0A)ERROR       service '?' unknown(0x0A)(0x0A)TIME        Thu Apr 10 15:24:30 2014(0x0A)RELEASE     711( 0x0A)COMPONENT   NI (network interface)(0x0A)VERSION     39(0x0A)RC -3(0x0A)DETAIL NiErrSet(0x0A)COUNTER     120(0x0A)
    key = RFC_COMMUNICATION_FAILURE
    group = 4
    abapMsgNumber =
    abapMsgClass =
    abapMsgType =
    abapMsgV1 =
    abapMsgV2 =
    abapMsgV3 =
    abapMsgV4 =
    Function “RfcWaitForRequest“ with classical SAP-RFC:
    Contents of structure “RFC_ERROR_INFO_EX“:
    key = RFC_ERROR_COMMUNICATION
    message = CPIC-CALL: 'SAP_CMACCPTP : rc=20(0x0A)(0x0A)LOCATION    SAP-Gateway on host dehensv233.de.henkelgroup.net / sapgw92(0x0A)ERROR       registration of tp master.down.wtr from host(0x0A) dewtdbtec03.de.henkelgroup.net not allowed(0x0A)(0x0A)TIME        Thu Apr 10 14:33:45 2014(0x0A)RELEASE 740(0x0A)COMPONENT   SAP-Gateway(0x0A)VERSION 2(0x0A)RC 720(0x0A)MODULE      /bas/740_REL/src/krn/si/gw/gwxxrd.c(0x0A)LINE 3536(0x0A)COUNTER     880458233(0x0A)
    Any thoughts of how we can fix this issue?
    With king regards.

    Hi Jan,
    Please go through SAP Note "1850230 - GW: "Registration of tp <program ID> not allowed" and try to again rerun this step where you are getting error.
    Regards,
    Jitendra

Maybe you are looking for

  • Install windows xp and windows 7 on mac pro

    I have Mac pro. I already installed windows xp on it but now i need to install windows 7 as well. So i need to have 3 os on my mac pro Mac os 10.6.2, Windows xp, and Windows 7. I m trying bootcamp (v3.0) to create one more partition for windows 7 but

  • [svn:osmf:] 14917: Fix unit tests for AdobeBootstrapBox

    Revision: 14917 Revision: 14917 Author:   [email protected] Date:     2010-03-22 14:02:22 -0700 (Mon, 22 Mar 2010) Log Message: Fix unit tests for AdobeBootstrapBox Modified Paths:     osmf/trunk/framework/OSMF/org/osmf/net/httpstreaming/f4f/AdobeSeg

  • Account is in use nokia n9

    Whenever i try to go online on facebook on my nokia N9 it doesnt allow me to go online. It says the account is in use when nobody is using the account at that time. Please help. Thankyou

  • Error in Demo Purchasing infopackage on CONVERSION_EXIT_PERI6_INPUT

    Hi all, when I load the Demo Purchasing info package from the Business Content of SAP Demo for file 0D_PU_C01_TD_2002_E.csv, I got an error as below: An error occurred in record                                                   1 during execution ofc

  • How do I synch calendar entires oniMac to iPhone?

    How do I synch calendar entires oniMac to iPhone?