SXPG_COMMAND_EXECUTE issue

Hello Experts,
We have this issue in client server.One of the batch job is frequently failing while executing this function module SXPG_COMMAND_EXECUTE with error as command_not_found.This error occurs frequently on a particular application server but not all the times it fails but we find some job failures 2 to 3 times a day,as this batch job is running every 15min.Please find the sample code below and advice.Many thanks in advance.
  CALL FUNCTION 'SXPG_COMMAND_EXECUTE'
       EXPORTING
            commandname                   = 'ZZ_YP_MKDIR'
            additional_parameters         = w_command
       TABLES
            exec_protocol                 = i_command_results
       EXCEPTIONS
            no_permission                 = 1
            command_not_found             = 2
            parameters_too_long           = 3
            security_risk                 = 4
            wrong_check_call_interface    = 5
            program_start_error           = 6
            program_termination_error     = 7
            x_error                       = 8
            parameter_expected            = 9
            too_many_parameters           = 10
            illegal_command               = 11
            wrong_asynchronous_parameters = 12
            cant_enq_tbtco_entry          = 13
            jobcount_generation_error     = 14
            OTHERS                        = 15.
  IF sy-subrc = 0.
    LOOP AT i_command_results.
      WRITE: / i_command_results-length,
               i_command_results-message.
      IF i_command_results-message <> space.
        w_error = 'X'.                                      "AN14112002
        MESSAGE i179(zv) WITH i_command_results-message
                              v_char_seqno.
        "'Make Directory failed'
      ENDIF.

Hi swathv     
That function is used for calling Unix scripts on the application server,
You can specify a unix script as a command on transaction SM69
and than you can call this command with function 'SXPG_COMMAND_EXECUTE'
Can you find this command in SM69 and related script,
and learn what is it used for?
Maybe you are using more than 1 application server,
and script file exist on a server but doesn't exist on other.
I hope it helps.

Similar Messages

  • Regards the issue on the db13 error is like SXPG_COMMAND_EXECUTE failed

    dear all,
    we are using
    os: windows 2003
    databse :oracle  10.2.0.4
    sap version: ecc 6.0
    & on the production system is on the cluster environment
    the issue is when ever i am firing any thing from the db13 it is throwing an error like
    SXPG_COMMAND_EXECUTE failed for BRBACKUP - Reason: program_start_error: For More Information, See SYS
    Job started
    Step 001 started (program RSDBAJOB, variant &0000000000013, user ID BASIs)
    Execute logical command BRBACKUP On host xxx
    Parameters:-u / -jid TAPIN20100403132120 -i force -c force -n 1 -v SCRATCH
    SXPG_STEP_XPG_START: is_local_host: rc = 403
    SXPG_STEP_XPG_START: host = xxx
    SXPG_STEP_XPG_START: is_local_r3_host: rc = 802
    SXPG_STEP_XPG_START: RFC_TCPIP_CONNECTION_OPEN: rc = 1003
    SXPG_STEP_COMMAND_START: SXPG_STEP_XPG_START returned: 1.003
    SXPG_COMMAND_EXECUTE(LONG)
    <timestamp> = 20100403132151
    COMMANDNAME = BRBACKUP
    ADDITIONAL_PARAMETERS =
    -u / -jid TAPIN20100403132120 -i force -c force -n
    1 -v SCRATCH
    LONG_PARAMS
    OPERATINGSYSTEM = ANYOS
    TARGETSYSTEM = xxx
    DESTINATION
    SY-SUBRC = 1003
    SXPG_COMMAND_EXECUTE failed for BRBACKUP - Reason: program_start_error: For More Information, See SYS
    Job cancelled after system exception ERROR_MESSAGE
    it had became very critical
    go live is very near for us
    so, kindly help me soon......................
    thanks in advance
    praveen kumar

    Hi,
    You have to install a  standalone gateway
    follow Note 657999 - Installing a Standalone Gateway in an MSCS Environment
    -Joel

  • Issue in moving files from data fodler to processed folder in background

    Hi All,
    I am facing one issue in moving files from data fodler to processed folder in case of background execution.
    When i am executing the file in the foreground, i can move the file from Data folder to processed folder. I am using SXPG_COMMAND_EXECUTE FM to move the file from data folder to processed folder.  I can see the file in processed folder once the program is executed.
    But in case of executing the same program in background, it is giving me the error "Failed to move the file to processed folder" in the spool of SM37 and i can see the file still laying in data folder.
    I tried to check other programs which acesses the same folder as the above program, whether they are able to move. They are able to move the file to processed fodler successfully both in foreground and background mode.
    Please help me in resolving this issue.
    Thanks,
    Deepa

    Hi Sanu,
                    Please use teh following code to move the file from source to target folder.
    This is a code showing how to create and use COPY command of UNIX in ABAP
    PARAMETERS:
    Input file path
    p_input TYPE localfile,
    Processed file path
    p_proc TYPE localfile.
    Declare the Types to file data
    TYPES: BEGIN OF L_X_OUTPUT,
    sys(200), " Please note, there are asterisk before and after sys (i.e.sys)
    END OF L_X_OUTPUT.
    * Internal table to store file data
    DATA l_i_output TYPE STANDARD TABLE OF l_x_output WITH HEADER LINE.
    * Variable for the UNIX command
    DATA: l_v_unix_comm(255) TYPE c.
    Copy command of UNIX
    CONCATENATE 'mv' p_input p_proc
    INTO l_v_unix_comm SEPARATED BY space.
    For example the Copy command is stored as below
    cp u2018/data/interfaces/input/input_fileu2019 u2018/data/interfaces/processed/processed_fileu2019
    Examples of UNIX Command *u2022 mv filename1 filename2 --- moves a file (i.e. gives it a different name, or moves it into a *different directory (see below) *u2022 cp filename1 filename2 --- copies a file
    Execute the UNIX Copy command.
    This command will copy the file from input file path to the processed file path
    CALL 'SYSTEM' ID 'COMMAND' FIELD l_v_unix_comm
    ID 'TAB'
    FIELD l_i_output-sys.
    IF sy-subrc eq 0.
    write: 'File is copied successfully using UNIX command in ABAP'.
    ENDIF.

  • Error BT616 when calling function module SXPG_COMMAND_EXECUTE in background

    Hi All,
    We use function module SXPG_COMMAND_EXECUTE with a custom command we defined in SM69 to move files in unix (mv command).
    The function module call has worked fine for almost a year and recently we have been seeing an error (BT616) in our job lob (SM37) when the program is run in background. We have not been able to reproduce the error in foreground mode and it seems to be occuring only periodically in the background. (The appropriate SAP authorization objects where assigned to the batch job ID and the steps on the batch job.) We are in the process of setting up the trace flag and performing analysis on the trace log via ST11 to help identify the issue.
    After perform analysis on SXPG_COMMAND_EXECUTE, the error is occurring when calling function module SAPXPG_END_XPG for exception 2, system failure, yet function module SAPXPG_END_XPG does not exist. I assume this is a program at the operating system level and is just a signature of the parameters to be passed to the operating system program.
    Below is part of the SAP function module SXPG_COMMAND_EXECUTE that is failing.
    * Now we have to wait for the termination of the external
    * command if the caller wants us to.
        IF TERMINATIONWAIT = 'X'.
          CALL FUNCTION 'SAPXPG_END_XPG'
            DESTINATION DESTINATION
            IMPORTING   EXITSTAT = STATUS
                        EXITCODE = EXITCODE
            TABLES      LOG      = LOG
            EXCEPTIONS  COMMUNICATION_FAILURE = 1 MESSAGE MSG
                        SYSTEM_FAILURE        = 2 MESSAGE MSG.
    I performed a where used on function module SXPG_COMMAND_EXECUTE, and most of SAP programs call the function module with the parameter TERMINATIONWAIT = 'X', so I assume we should pass ‘X’ as well.
    Any ideas on what could be causing this issue?
    Mike Vondran

    I also remember I have this kind of issue, as I have some UNIX script at OS( UNIX) level . The problem was with the ID , as it don’t have proper authorization at OS level ( UNIX ) . Please check this ID authorization. This could be the one of reasons if you’re sure from SAP standpoint.
    Hope this’ll give you some guide line..
    Thanks
    Bye

  • SXPG_COMMAND_EXECUTE failed for BRTOOLS -Reason: no_permission: Authorizati

    HI Experts.
    My BI consultants are not able to pull the data while execute the Tcode: LISTCUBE.
    I could not see any logs any short dumps but in RZ20 i found below error message.ora-00600
    SXPG_COMMAND_EXECUTE failed for BRTOOLS - Reason: no_permission: Authorization object S_LOG_COM miss.
    Even we checked with our security team even after they assigned full authorization they are getting the same problem.
    Could some one provide the solution for this.
    Regards
    JAN

    Seems to be confusing..
    Any error while executing LISTCUBE tcode ?
    If suspect authorization issue, did BI team run SU53 just after LISTCUBE ?
    For S_LOG_COM, did you see this note once ?
    Note 150315 - BW-Authorizations for Remote-User in BW and OLTP
    However, following error seems to be confusing containing the term BRTOOLS, not sure what BRTOOLS doing here
    SXPG_COMMAND_EXECUTE failed for BRTOOLS - Reason: no_permission: Authorization object S_LOG_COM miss
    SXPG error comes for external commands, once check the Notes using this search term. For eg
    Note 854060 - Authorizations for external commands
    Note 1336776 - External commands: Security for calling side

  • SXPG_COMMAND_EXECUTE - returns an error

    Hi All,
    I am using the FM SXPG_COMMAND_EXECUTE to run a unix script which fetches a pdf file written from ABAP code into
    application server.
    I have written the pdf file, and while run separately the Unix script is working fine.
    But the FM which calls the unix script, SXPG_COMMAND_EXECUTE, returns errors which say that the pdf file could not be opened. I have written the pdf file in binary form on the application server.
    Please help.
    This is my code:
    CALL FUNCTION 'CONVERT_OTF'
        EXPORTING
          format                = 'PDF'
          max_linewidth         = 132
        IMPORTING
          bin_filesize          = gv_bin_filesize
          bin_file              = gt_bin
        TABLES
          otf                   = gt_otf
          lines                 = gt_pdf_tab
        EXCEPTIONS
          err_max_linewidth     = 1
          err_format            = 2
          err_conv_not_possible = 3
          OTHERS                = 4.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
        WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
      data:    mstr_print_parms LIKE pri_params,
               gv_file type string value '/usr/sap/ABAP-TMP/',
               wa_pdf_tab like line of gt_pdf_tab,
               it_docs TYPE STANDARD TABLE OF docs,
               it_lines TYPE STANDARD TABLE OF tline,
               gv_frontfile type string ,
               wa_lines type tline.
    concatenate gv_file wa_final-pernr '.pdf' into gv_file.
    open dataset gv_file for output in binary mode.
    transfer gt_bin to gv_file.
    close dataset gv_file.
    CONSTANTS: c_extcom    TYPE sxpgcolist-name VALUE 'ZHRPAYSLIP',
               c_oper      TYPE syopsys VALUE 'Linux'.
    DATA: v_dir_input      TYPE sxpgcolist-parameters.  " Input Directory
    DATA: t_result         TYPE STANDARD TABLE OF btcxpm.
    concatenate wa_final-pernr
                gs_reclist-receiver
                '93210951'
                into v_dir_input
                separated by space.
    CALL FUNCTION 'SXPG_COMMAND_EXECUTE'
      EXPORTING
        commandname                   = c_extcom
        additional_parameters         = v_dir_input
        operatingsystem               = c_oper
      TABLES
        exec_protocol                 = t_result
      EXCEPTIONS
        no_permission                 = 1
        command_not_found             = 2
        parameters_too_long           = 3
        security_risk                 = 4
        wrong_check_call_interface    = 5
        program_start_error           = 6
        program_termination_error     = 7
        x_error                       = 8
        parameter_expected            = 9
        too_many_parameters           = 10
        illegal_command               = 11
        wrong_asynchronous_parameters = 12
        cant_enq_tbtco_entry          = 13
        jobcount_generation_error     = 14
        OTHERS                        = 15.
    Thanks,
    Anita

    Hi guys,
    Issue has been resolved. I was writing the pdf file in the application server, wheras the Unix script had some other directory as its present working directory.
    As we are using the same directory for the purpose, this directory and folder name was hard coded in the Unix script as well,
    so that the confusion of path is resolved.
    Thus this issue was resolved from the Unix script itself.
    Thanks.
    Anita Jeyan.

  • SXPG_COMMAND_EXECUTE failed

    Dear Experts ,
    We have almost completed all the config part ,Now when i am trying to encrypt file using RMSBulk command on Adrms server from "SAP transaction code SM49 or SXPG_COMMAND_EXECUTE " Its Showing encryption falied but Exit status is 'O' (Successfull) because of this status we are not able to Track what is the exact issue.Below are the log file  .
    """"""""""""""""""""""""""""""""""""""""""""""""""Log file"""""""""""""""""""""""""
    Scanning Started                                                                                                                                                                                                                                              
    [2014-08-06T11:22:15]: Scanning for tool prerequisites... Completed                                                                                                                                                                                           
    [2014-08-06T11:22:15]: Scanning for files... Done                                                                                                                                                                                                             
    [2014-08-06T11:22:15]: 1 files detected and will be processed.                                                                                                                                                                                                
    Scanning Completed                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
    [2014-08-06T11:22:15]: Encrypting files 1 of 1 - E:\sap-adrms\SAP_ADRMS\A3.xlsx ... Failed,
    The Manifest file with the tool is c                                                                                                                                                                                                                                                                                                                                                                                             
    Summary:                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
    Files Succeeded: 0                                                                                                                                                                                                                                            
    Files Failed: 1                                                                                                                                                                                                                                               
    Files Unsupported: 0
    The Manifest file with the tool is c   :->We are not able to trace this status .
    But when i am trying to run same RMSBulk command in ADRMS server its successfully run & make the file encrypt .
    Can you please guide me to resolve that issue .
    Our RFC  SAPXPG_DBDEST_SAPSIDDB (Automatically-generated RFC destination for SAPXPG to database host) is working fine .
    Thanks & Regards  ,
    Hemant Gulati

    Hi Ralf,
    Thanks for the reply.
    I could also found that answer on my own.
    regards
    padma

  • Fail SXPG_COMMAND_EXECUTE para BRCONNECT - program_start_error

    Hi,
    I have a issue with jobs in DBA Planning.
    In all task i get the error
    Ha fallado SXPG_COMMAND_EXECUTE para BRCONNECT - Causa: program_start_error: ViewSYSLOG
    DEV_RD
    R3ALLC: wait for connect
    GwListInsert: insert elem 36 into conn_search_list (at begin)
    GwListInsert: 1 elems in conn_search_list
    GwICheckSecInfo: check tp=sapxpg, user=ADMIN       , host=*, addr=10.4.33.64
    GwICheckSecInfo: check entry tp=, lu=
    GwICheckSecInfo: entry found, finish search, access=PERMIT
    GwISendConnReq: CONV: >78811344<
    NiHsLGetHostName: found address 10.4.33.64 in cache
    NiIGetHostName: addr 10.4.33.64 = hostname 'pbmdeaqbds01'
    GwISendConnReq: LU: >pbmdeaqbds01<
    GwIRemoteShell: start programm sapxpg on host pbmdeaqbds01 (/usr/bin/ssh)
    PRNG is not seeded
    GwStartProgram: started /usr/bin/ssh, pid=1101996
    : /usr/bin/ssh
    : pbmdeaqbds01
    : sapxpg
    : pbmdeaqcib01
    : sapgw01
    : 78811344
    : GWHOST=pbmdeaqcib01
    : GWSERV=sapgw01
    : CONVID=78811344
    : pf=/usr/sap/BQ1/SYS/profile/BQ1_DVEBMGS01_pbmdeaqcib01
    : CPIC_TRACE=2
    : IDX=36
    : SNC_MODE=0
    GwReadReqIndex: (process_id: -1)
    GwReadReqIndex: no filled request-index-block
    child (pid=1101996) exited with exit code 255
    DEV_Wx
    Mon Apr 25 14:42:47 2011
    LOCATION    SAP-Gateway on host pbmdeaqcib01 / sapgw01
    ERROR       timeout during allocate
    TIME        Mon Apr 25 14:42:47 2011
    RELEASE     701
    M  *  COMPONENT   SAP-Gateway
    M  *  VERSION     2
    M  *  RC          242
    M  *  MODULE      gwr3cpic.c
    M  *  LINE        2066
    M  *  DETAIL      no connect of TP sapxpg from host pbmdeaqbds01 after 20 sec
    M  *  COUNTER     1520
    M  *
    M  *****************************************************************************
    M
    A  RFC 1485  CONVID 74789811
    A   * CMRC=27 DATA=0 STATUS=0 SAPRC=242 ThSAPOCMINIT
    A  RFC> ABAP Programm: RSRFCPIN (Transaction: SM59)
    A  RFC> User: ADMIN (Client: 300)
    A  RFC> Destination: SAPXPG_DBDEST_PBMDEAQBDS01 (handle: 2, , )
    A  *** ERROR => RFC ======> CPIC-CALL: 'ThSAPOCMINIT' : cmRc=27 thRc=242
    Timeout al intentar establecer una comunicación (¿ interlocutor ok ?)
    A  *** ERROR => RFC Error RFCIO_ERROR_SYSERROR in abrfcpic.c : 1501
    CPIC-CALL: 'ThSAPOCMINIT' : cmRc=27 thRc=242
    Timeout al intentar establecer una comunicación (¿ interlocutor ok ?)
    DEST =SAPXPG_DBDEST_PBMDEAQBDS01
    HOST =pbmdeaqbds01
    PROG =sapxpg
    A  TH VERBOSE LEVEL FULL
    A  ** RABAX: end RX_GET_MESSAGE
    C
    Dev_rfc
    ======> CPIC-CALL: 'ThSAPOCMINIT' : cmRc=27 thRc=242
    Timeout al intentar establecer una comunicación (¿ interlocutor ok ?)
    ABAP Programm: RSRFCPIN (Transaction: SM59)
    User: ADMIN (Client: 300)
    Destination: SAPXPG_DBDEST_PBMDEAQBDS01 (handle: 2, , )
    Error RFCIO_ERROR_SYSERROR in abrfcpic.c : 1501
    CPIC-CALL: 'ThSAPOCMINIT' : cmRc=27 thRc=242
    Timeout al intentar establecer una comunicación (¿ interlocutor ok ?)
    DEST =SAPXPG_DBDEST_PBMDEAQBDS01
    HOST =10.4.33.64
    PROG =sapxpg
    The Database is in other host. The installation is distributed.
    Any suggestion?
    Many Thanks
    William Neira

    Hi Juan
    dev_xpg
    Name:       dev_xpg
    Trace file of external program (trace level 3)
    < Function: BtcTrcInit> Function: BtcXpgStart  External program: SAPXPG
      Process id: 553162
      Parent process id: 663780
      Rearrange StdErr to be collected in memory
      Rearrange StdOut to be collected in memory
    dev_cp
    Directory:  /usr/sap/BQ1/DVEBMGS01/work
    Name:       dev_cp
    Trace file of control program (trace level 3)
    < Function: BtcTrcInit> Function: main  SAPXPG 720
    2011-04-26--14-13-15 : Before BtcXpgDetach
      > Function: BtcXpgDetach  < Function: BtcXpgDetach  Accept RFC connection from R/3 system
    2011-04-26--14-13-15 : Before RfcAccept
    2011-04-26--14-13-15 : RfcAccept returned OK
    Begin of check_if_security_list
    security check switched OFF
    End of check_if_security_list
    Begin of check_trace_option
    End of check_trace_option
      Install RFC call SAPXPG_START_XPG
      Install RFC call SAPXPG_START_XPG_LONG
      Install RFC call SAPXPG_END_XPG
      Wait for RFC call SAPXPG_START_XPG or SAPXPG_START_XPG_LONG
    2011-04-26--14-13-15 : Before first call of RFCDispatch
    Security: rfcexec_logon_check
      rfcexec_logon_check: logon_user = ADMIN
      sapxpg_logon_check: rfc_attr.user = ADMIN
      rfcexec_logon_check: client = 300
    2011-04-26--14-13-15 : After first call of RFCDispatch
    2011-04-26--14-13-15 : Before call of RfcClose (sequencing error)
    2011-04-26--14-13-15 : After call of RfcClose (sequencing error)
    < Function: main
    2011-04-26--14-13-15 : End of SAPXPG: main
    Many thanks
    William Neira

  • SXPG_COMMAND_EXECUTE failed for BRBACKUP

    Dear All,
    OS : AIX,  DB :Oracle , SAP ECC6.0
    i got an error and  online backup has  scheduled in DB13 ( Production Server)
    when its  reach the backup time its showins error
    Status : not Available
    JOB LOG:
    30.11.2009     17:26:56     Job started
    30.11.2009     17:26:56     Step 001 started (program RSDBAJOB, variant &0000000000672, user ID BASIS)
    30.11.2009     17:26:56     No application server found on database host - rsh/gateway will be used
    30.11.2009     17:26:56     Execute logical command BRBACKUP On host PRODORADB
    30.11.2009     17:26:56     Parameters:-u / -jid ALLOG20091130172655 -c force -t online -m all -p initIRPoffsite.sap -a -c force -p initIRP
    30.11.2009     17:26:56     offsite.sap -cds
    30.11.2009     17:27:28     SXPG_STEP_XPG_START: is_local_host: rc = 403
    30.11.2009     17:27:28     SXPG_STEP_XPG_START: host = PRODORADB
    30.11.2009     17:27:28     SXPG_STEP_XPG_START: is_local_r3_host: rc = 802
    30.11.2009     17:27:28     SXPG_STEP_XPG_START: RFC_TCPIP_CONNECTION_OPEN: rc = 1003
    30.11.2009     17:27:28     SXPG_STEP_COMMAND_START: SXPG_STEP_XPG_START returned: 1.003
    30.11.2009     17:27:28     SXPG_COMMAND_EXECUTE(LONG)
    30.11.2009     17:27:28     <timestamp> = 20091130172728
    30.11.2009     17:27:28     COMMANDNAME = BRBACKUP
    30.11.2009     17:27:28     ADDITIONAL_PARAMETERS =
    30.11.2009     17:27:28     -u / -jid ALLOG20091130172655 -c force -t online -
    30.11.2009     17:27:28     m all -p initIRPoffsite.sap -a -c force -p initIRP
    30.11.2009     17:27:28     offsite.sap -cds
    30.11.2009     17:27:28     LONG_PARAMS
    30.11.2009     17:27:28     OPERATINGSYSTEM = ANYOS
    30.11.2009     17:27:28     TARGETSYSTEM = PRODORADB
    30.11.2009     17:27:28     DESTINATION
    30.11.2009     17:27:28     SY-SUBRC = 1003
    30.11.2009     17:27:28     SXPG_COMMAND_EXECUTE failed for BRBACKUP - Reason: program_start_error: For More Information, See SYS
    30.11.2009     17:27:28     Job cancelled after system exception ERROR_MESSAGE
    pls give suggestion to solve this issue
    regards
    satheesh

    Hi
    In Windows we can find Host & services from C:\WINDOWS\system32\drivers\etc
    we are using AIX for all servers
    below detail for reference
    ===================================================
    ROOT@PRDCIXI:/#ls
    .TTauthority         bosinst.data         perfdata
    .Xauthority          cdrom                proc
    .dt                  clverify_daemon.log  sapcd
    .dtprofile           configassist.log     sapcdd
    .java                dead.letter          sapmnt
    .mh_profile          dev                  sbin
    .profile             esa                  sdtstart.err
    .rhosts              etc                  smit.log
    .rhosts.previous     home                 smit.script
    .sdtgui              image.data           smit.transaction
    .sh_history          lib                  ss.txt
    .vi_history          lost+found           tftpboot
    .wmrc                lpp                  tk
    CSD                  mksysb               tmp
    IRPEXE               mnt                  u
    Mail                 mount.a1253462       unix
    TT_DB                opt                  usr
    audit                oracle               var
    backup               pay                  websm.script
    bin                  pay1
    ROOT@PRDCIXI:/#cat .rhosts
    PRODORADB_boot1
    PRODORADB_boot2
    PRODORADB_svc
    PRODORADB_ps
    PRDCIXI_boot1
    PRDCIXI_boot2
    PRDCIXI_svc
    PRDCIXI_ps
    ===================================================
    This is APP2 Instanece
    ROOT@PRDAPP2:/#ls
    .TTauthority      TT_DB             lpp               smit.log
    .Xauthority       audit             mksysb            smit.script
    .dt               bin               mnt               smit.transaction
    .dtprofile        bosinst.data      nmon              tftpboot
    .java             cdrom             opt               tk
    .profile          configassist.log  oracle            tmp
    .rhosts           dev               pay               u
    .rhosts.previous  esa               proc              unix
    .sdtgui           etc               sapcd             usr
    .sh_history       home              sapcdd            var
    .ssh              image.data        sapmnt            websm.script
    .vi_history       lib               sbin
    .wmrc             lost+found        sdtstart.err
    ROOT@PRDAPP2:/#cat .rhosts
    SAP-DEV-QAS root
    ROOT@PRDAPP2:/#cat .rhosts.previous
    SAP-DEV-QAS root
    ROOT@PRDAPP2:/#
    ========================================
    This is APP1 Instanece
    ROOT@PRDAPP1:/#ls
    .TTauthority      TT_DB             lpp               smit.log
    .Xauthority       audit             mksysb            smit.script
    .dt               bin               mnt               smit.transaction
    .dtprofile        bosinst.data      nmon              tftpboot
    .java             cdrom             opt               tk
    .profile          configassist.log  oracle            tmp
    .rhosts           dev               pay               u
    .rhosts.previous  esa               proc              unix
    .sdtgui           etc               sapcd             usr
    .sh_history       home              sapcdd            var
    .ssh              image.data        sapmnt            websm.script
    .vi_history       lib               sbin
    .wmrc             lost+found        sdtstart.err
    ROOT@PRDAPP1:/#cat .rhosts
    SAP-DEV-QAS root
    ROOT@PRDAPP1:/#
    You have mail in /usr/spool/mail/root
    ROOT@PRDAPP1:/#
    ROOT@PRDAPP1:/#cat .rhosts
    SAP-DEV-QAS root
    ROOT@PRDAPP1:/#cat .rhosts.previous
    SAP-DEV-QAS root
    ROOT@PRDAPP1:/#
    ============================================================
    kindly advise me i didnt get any hint from host file

  • SXPG_COMMAND_EXECUTE error

    Hi All,
    Jobs in db13 are failing with below error.
    04.08.2010     05:00:46     Job started
    04.08.2010     05:00:47     Step 001 started (program RSDBAJOB, variant &0000000000059, user ID xxxxx)
    04.08.2010     05:00:47     Execute logical command BRCONNECT On host dbSID
    04.08.2010     05:00:47     Parameters: -u / -jid STATS20100609000000 -c -f stats -t ALL
    04.08.2010     05:01:27     External communication error at program start (see system log)
    04.08.2010     05:01:27     SAPXPG_START_XPG_LONG: sy-subrc ne 0
    04.08.2010     05:01:27     destination = SAPXPG_DBDEST_DBSID
    04.08.2010     05:01:28     SXPG_STEP_XPG_START: execute_sapxpg: rc = 1.003
    04.08.2010     05:01:28     SXPG_STEP_COMMAND_START: SXPG_STEP_XPG_START returned: 1.003
    04.08.2010     05:01:28     SXPG_COMMAND_EXECUTE(LONG)
    04.08.2010     05:01:28     COMMANDNAME = BRCONNECT
    04.08.2010     05:01:28     OPERATINGSYSTEM = ANYOS
    04.08.2010     05:01:28     TARGETSYSTEM = dbSID
    04.08.2010     05:01:28     DESTINATION = SAPXPG_DBDEST_DBSID
    04.08.2010     05:01:28     SXPG_COMMAND_EXECUTE failed for BRCONNECT - Reason: program_start_error: For More Information, See SYS
    04.08.2010     05:01:28     Job cancelled after system exception ERROR_MESSAGE
    And SAPXPG_DBDEST_DBSID  rtc connection failed with timeout error.
    Logon     Connection Error
    Error Details     Error when opening an RFC connection
    Error Details     ERROR: timeout during allocate
    Error Details     LOCATION: SAP-Gateway on host ciSID.ncsbe.eu.jnj.com / sapgw52
    Error Details     DETAIL: no connect of TP sapxpg from host dbSID.ncsbe.eu.jnj.com after 20 sec
    Error Details     COMPONENT: SAP-Gateway
    Error Details     COUNTER: 98
    Error Details     MODULE: gwr3cpic.c
    Error Details     LINE: 2030
    Error Details     RETURN CODE: 242
    Error Details     SUBRC: 0
    Error Details     RELEASE: 701
    Error Details     TIME: Wed Aug  4 13:41:27 2010
    Error Details     VERSION: 2
    System log is showing " Error1005 when executing external command brtools on SAPXPG_DBDEST_DBSID (in=R,out=M,err=M,trc=0,trm=C. strtstat=,xpgid=0,convid=. msg :Error when openi)".
    When i check detail logs also it is throwing error " SXPG_COMMAND_EXECUTE failed for BRCONNECT - Reason: program_start_error: For More Information, See SYS ".
    DB and CI are on different hosts.
    SAP : SAP EHP 1 for SAP NetWeaver 7.0
    DB : Oracle 10.2.0.4.0
    OS : HP-UX
    Gateway is running, I see gateway profiles exist at OS level in /usr/sap/SID/SYS/profile.
    But gateway profiles haven't been created in RZ10.
    Is this causing the issue. Can you please help me out here.
    Thanks in advance.
    Edited by: SAP Basis on Aug 4, 2010 7:59 AM

    Error Details Error when opening an RFC connection
    Error Details ERROR: timeout during allocate
    Error Details LOCATION: SAP-Gateway on host ciSID.ncsbe.eu.jnj.com / sapgw52
    It's using RFC to connect so check SM59 -> TCP/IP Connections -> SAPXPG_DBDEST_<SID>
    Make sure the Technical Settings are correct and you can do a successful "Connection Test".
    Nelis

  • New DVR Issues (First Run, Channel Switching, etc.)

    I've spent the last 30 minutes trying to find answers through the search with no luck, so sorry if I missed something.
    I recently switched to FIOS from RCN cable in New York.  I've gone through trying to setup my DVR and am running into issues and was hoping for some answers.
    1.  I setup two programs to record at 8PM, I was watching another channel at the time and only half paying attention.  Around 8:02 I noticed a message had popped up asking if I would like to switch channels to start recording.  I was expecting it to force it to switch like my old DVR, but in this case it didn't switch and I missed the first two minutes of one of the shows.  I typically leave my DVR on all day and just turn off the TV, this dual show handling will cause issues with that if I forget to turn off the DVR.  Is there a setting I can change that will force the DVR to choose one of the recording channels?
    2.  I setup all my recordings for "First Run" because I only want to see the new episodes.  One show I setup was The Daily Show on comedy central, which is shown weeknights at 11pm and repeated 3-4 times throughout the day.  My scheduled recordings is showing all these as planned recordings even though only the 11pm show is really "new".  Most of the shows I've setup are once a week so they aren't a problem, but this seems like it will quickly fill my DVR.  Any fixes?
    Thanks for the help.
    Solved!
    Go to Solution.

    I came from RCN about a year ago.  Fios is different in several ways, not all of them desirable.  Here are several ways to get--and fix--unwanted recordings from a series recording setup.
    Some general principles. 
    Saving changes.  When you originally create a series with options, or if you go back to edit the options for an existing series, You MUST save the Series Options changes.  Pretty much everywhere else in the user interface, when you change an option, the change takes effect immediately--but not in Series Options.  Look at the Series Options window.  Look at the far right side.  There is a vertical "Save" bar, which you must navigate to and click OK on to actually save your changes.  Exiting the Series Options window without having first saved your changes loses all your attempted changes--immediately.
    Default Series Options.  This is accessed  from [Menu]--DVR--Settings--Default Series Options.  This will bring up the series options that will automatically be applied to the creation of a NEW series. The options for every previously created series will not be affected by a subsequent modification of the Default Series Options.  You should set these options to the way you would like them to be for the majority of series recordings that you are likely to create.  Be sure to SAVE your changes.  This is what you will get when you select "Create Series Recording" from the Guide.  When creating a new series recording where you think that you may want options different from the default, select "Create Series with Options" instead.  Series Options can always be changed for any individual series set up later--but not for all series at once.
    Non-series recordings.  With Fios you have no directly available options for these.  With RCN and most other DVRs, you can change the start and end times for individual episodes, including individual episodes that are also in a series.  With Fios, your workarounds are to create a series with options for a single program, then delete the series later;  change the series options if the program is already in a series, then undo the changes you made to the series options later; or schedule recordings of the preceding and/or following shows as needed.
    And now, to the unwanted repeats. 
    First, make sure your series options for the specific series in question--and not just the series default options--include "First Run Only".  If not, fix that and SAVE.  Then check you results by viewing the current options using the Series Manager app under the DVR menu.
    Second, and most annoying, the Guide can have repeat programs on your channel tagged as "New".  It happens.  Set the series option "Air Time" to "Selected Time".  To make this work correctly, you must have set up the original series recording after selecting the program in the Guide at the exact time of a first run showing (11pm, in your case), and not on a repeat entry in the Guide.  Then, even it The Daily Show is tagged as New for repeat showings, these will be ignored. 
    Third, another channel may air reruns of the program in your series recording, and the first showing of a rerun episode on the other channel may be tagged as "New".  These can be ignored in your series if you set the series option "Channel" to "Selected Channel".  Related to this, if there is both an SD and HD channel broadcasting you series program, you will record them both if the series option "Duplicates" is set to "Yes".  However, when the Channel option is set to "Selected Channel", the Duplicates Option is always effectively "No", regardless of what shows up on the options screen.  
    As for you missing two minutes,  I have sereral instances in which two programs start recording at the same time.  To the best of my recollection, whenever the warning message has appeared, ignoring it has not caused a loss of recording time.  You might have an older software version.  Newest is v.1.8.  Look at Menu--Settings--System Info.  Or, I might not have noticed the loss of minutes.  I regularly see up to a minute of previous programming at the start of a recording, or a few missing seconds at the beginning or end of a recording.  There are a lot of possibilities for that, but the DVR clock being incorrect is not one of them.  With RCN, the DVR clocks occasionally drifted off by as much as a minute and a half.

  • Pension issue Mid Month Leaving

    Dear All,
    As per rule sustem should deduct mid month joining/leaving/absences or transfer scenarios, the Pension/PF Basis will be correspondingly prorated. But our system is not doing this. In RT table i have found 3FC Pension Basis for Er c 01/2010                    0.00           6,500.00.
    Employee leaving date is 14.04.2010. system is picking pension amout as 541. Last year it was coming right.
    Please suggest.
    Ashwani

    Dear Jayanti,
    We required prorata basis pension in case of left employees and system is not doing this. This is the issue. As per our PF experts Pension amount should come on prorata basis for left employees in case they left mid of month.System is doing prorata basis last year but from this year it is deducting 541. I am giving two RT cases of different years.
    RT table for year 2010. DOL 26.04.2010
    /111 EPF Basis              01/2010                    0.00           8,750.00 
    /139 VPF Basis              01/2010                    0.00           8,750.00 
    /3F1 Ee PF contribution     01/2010                    0.00           1,050.00 
    /3F3 Er PF contribution     01/2010                    0.00             509.00 
    /3F5 Ee Mon PF contribution 01/2010                    0.00           1,050.00 
    /3F6 Ee Ann PF contribution 01/2010                    0.00          12,600.00 
    /3F9 PF adm chrgs * 1,00,00 01/2010                    0.00              96.25 
    /3FA PF basis for Ee contri 01/2010                    0.00           8,750.00 
    /3FB PF Basis for Er Contri 01/2010                    0.00           8,750.00 
    /3FJ VPF basis for Ee contr 01/2010                    0.00           8,750.00 
    /3FL PF Basis for Er Contri 01/2010                    0.00           6,500.00 
    /3F4 Er Pension contributio 01/2010                    0.00             541.00
    /3FC Pension Basis for Er c 01/2010                    0.00           6,500.00
    /3FB PF Basis for Er Contri 01/2010                    0.00           8,750.00
    /3FC Pension Basis for Er c 01/2010                    0.00           6,500.00
    /3FJ VPF basis for Ee contr 01/2010                    0.00           8,750.00
    /3FL PF Basis for Er Contri 01/2010                    0.00           6,500.00
    /3R3 Metro HRA Basis Amount 01/2010                    0.00           8,750.00
    1BAS Basic Salary           01/2010                    0.00           8,750.00
    RT table for year 2009. DOL 27.10.2009
                                                                                    /111 EPF Basis              07/2009                    0.00           9,016.13
    /139 VPF Basis              07/2009                    0.00           9,016.13
    /3F1 Ee PF contribution     07/2009                    0.00           1,082.00
    /3F3 Er PF contribution     07/2009                    0.00             628.00
    /3F5 Ee Mon PF contribution 07/2009                    0.00           1,082.00
    /3F6 Ee Ann PF contribution 07/2009                    0.00           8,822.00
    /3F9 PF adm chrgs * 1,00,00 07/2009                    0.00              99.18
    /3FA PF basis for Ee contri 07/2009                    0.00           9,016.00
    /3FB PF Basis for Er Contri 07/2009                    0.00           9,016.00
    /3FJ VPF basis for Ee contr 07/2009                    0.00           9,016.00
    /3FL PF Basis for Er Contri 07/2009                    0.00           5,452.00
    /3FB PF Basis for Er Contri 07/2009                    0.00           9,016.00 
    /3FC Pension Basis for Er c 07/2009                    0.00           5,452.00 
    /3FJ VPF basis for Ee contr 07/2009                    0.00           9,016.00 
    /3FL PF Basis for Er Contri 07/2009                    0.00           5,452.00 
    /3R4 Non-metro HRA Basis Am 07/2009                    0.00           9,016.13 
    1BAS Basic Salary           07/2009                    0.00           9,016.13 
    Now please suggest what to do. where is the problem  ? If have also checked EXIT_HINCALC0_002 but nothing written in it.
    With Regards
    Ashwani

  • Open PO Analysis - BW report issue

    Hello Friends
    I constructed a query in BW in order to show Open Purchase Orders. We have custom DSO populated with standard
    datasource 2lis_02_itm (Purcahse Order Item). In this DSO we mapped the field ELIKZ to the infoobject 0COMP_DEL
    (Delivery completed).
    We loaded the data from ECC system for all POs and found the following issue for Stock Transport Purchase orders (DocType = UB).
    We have a PO with 4 line items. For line items 10 and 20, Goods issued, Goods received and both the flags "Delivery
    complete" and "Final delivery" checked. For line items 30 and 40, only delivery indicator note is issued for zero
    quantity and Delivery complete flag is checked (Final delivery flag is not checked) in ECC system. For this PO, the
    delivery completion indicator is not properly updated in the DSO for line items 30 and 40. The data looks like the
    following:
    DOC_NUM     DOC_ITEM       DOCTYPE     COMP_DEL
    650000001       10     UB        X
    650000001       20     UB        X
    650000001       30     UB
    650000001       40     UB      
    When we run the Open PO analysis report on BW side this PO is appearing in the report but the same is closed in ECC
    system.
    Any help is appreciated in this regard.
    Thanks and Regards
    sampath

    Hi Priya and Reddy
       Thanks for your response.
                         Yes the indicator is checked in EKPO table for items 30 and 40 and delta is running regularly for more than 1 year and no issues with other POs. This is happening only for few POs of type Stock Transport (UB).
                        I already checked the changes in ME23N and the Delivery completed indicator was changed and it reflected in EKPO table. Further, i checked the PSA records for this PO and i am getting the records with the Delivery completed flag but when i update from PSA to DSO the delivery completed indicator is not updating properly.
                       In PSA, for item 30 i have the following entries. Record number 42 is capturing the value X for ELIKZ but after that i am getting two more records 43 and 44 with process key 10 and without X for ELIKZ. I think this is causing the problem.
    Record No.    Doc.No.                    Item              Processkey         Rocancel     Elikz
        41               6500000001            30                    11                            X           ---    
        42               6500000001            30                    11                            ---           X
        43               6500000001            30                    10                            X           ---
        44               6500000001            30                    10                            ---         ---
    (Here --- means blank)        
    Thanks and Regards
    sampath

  • HP LaserJet Enterprise 600 M602 driver issue

    Hello,
    I've got issue with 600-series printers. We use the latest UPD drivrer ver. 61.175.1.18849 and print from XenApp 6.5. The error occurs every time when users try to print jpg files from XenApp session. It only happens with 600 series printers and UPD.
    Also I've tried to assign native 600-series driver ver. 6.3.9600.16384 and it works good. But with that driver system says that it's color printer and it brokes our printing reports. These reports are very important for us. So we can't use printer and that driver as well.
    Printer installed on Windows Server 2012 R2. All clients are Windows 7 x64. XenApp Servers are Server 2008R2.
    Is it possible to get fixed UPD driver or correct native driver for Server 2012 R2?
    Regards,
    Anatoly

    I am sorry, but to get your issue more exposure I would suggest posting it in the commercial forums since this is a commercial printer. You can do this at Printers - LaserJet.
    Click on New Post.
    I hope this helps.
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" on the right to say “Thanks” for helping!
    Gemini02
    I work on behalf of HP

  • Windows 7 displays error message when exiting +cursor issue

    Two issues here. CS5 Phoshop on Wind 7 64 bit.
    Physical processor count: 8
    Processor speed: 3073 MHz
    Built-in memory: 12279 MB
    Free memory: 9577 MB
    Memory available to Photoshop: 10934 MB
    Memory used by Photoshop: 80 %
    Image tile size: 128K
    First issue is since the latest automatic Adobe update (why fix what isn't broken?) Every time I now exit Photoshop I get the message "Adobe QT Server has stoped working" and occasionally it happens when I exit bridge. Indesign is also behaving badly. I can no longer start a previous document from file manager without ID crashing out.
    The other is the cursors in Clone and erase lose their edge (become invisable) for no reason - well not quite. Noise Ninja crashed Photoshop when I tried to use it. I reinstalled it and all is well. The cursor issue seems to be intermittant but came back (for no reason) after I reinstalled NN. I can't seem to change the cursor, no matter what I do. The problem is now seriously affecting how I work. Almost enough to go back to Win XP which ran CS5 Photoshop flawlessly.
    Any help will be gratefully accepted.
    Doug

    function(){return A.apply(null,[this].concat($A(arguments)))}
    doug87510 wrote:
    The recent problem is the entire outline of the cursor (including the crosshair in the middle) was missing at any size of cursor. All I had was exactly what I'd get if I used a real spraygun.
    Well, that issue is simply a matter of hitting the Caps Lock key.  When Caps Lock is on, you'll see the cursor outline, and when it is off you'll see a crosshair.  That's a feature, not a bug.
    Glad to hear the 11.1 drivers are out.  I will download them and try them now myself.
    Regarding "Adobe QT" crashing...  QT brings to mind QuickTime, though that is Apple, not Adobe.  Do you have Apple QuickTime installed?
    Regarding memory usage, with 12 GB of installed RAM, you should be able to set Photoshop to use 90% or more in Edit - Preferences - Performance.
    -Noel

Maybe you are looking for

  • Slow reboot after 10.2.1.2977 update to Z10

    Hello, The first reboot after updating to software release 10.2.1.2977 (OS 10.2.1.3247) is taking a very long time (just over 22 hours now). The boot screen showed 97% before I went to sleep last night, and has been at 98% since I woke up ~6hrs ago..

  • Name and city not defined in FB60 for one time account

    Hello Guru's , We are on SAP ECC 6.0 and I have defined a one time vendor in the standard account group CPD One-time vend.(int.no.assgnmt). In the screen layout for that account group I have the address details for name1 and postal code, city defined

  • Synch rfc to file

    hi is synch asynch bridge used in synchronous rfc to file please? if so how does it work?

  • Podcasts, How to export to .OPML file in iTunes 11

    How do I export to .OPML podcast file in iTunes 11? I can't find this feature in version. Nothing in Help.

  • MySQL has stopped loading on start-up with 10.4.4?

    What it says on the label... Attempted access to my test phpshop using MySQL gave 'Can't connect to local MySQL server through socket '/var/mysql/mysql.sock'. MySQL is 4.0.0.18 Bob TI PB G4, 667   Mac OS X (10.4.4)