Starting external programms via SAP XI

Hello everybody,
is it possible to start external programms via SAP XI?
I have following scenario:
A user in a webapplication should approve a process. Then a file which is on a fileserver should be encrypted und should be sent via ISDN (external programms are responsible for this doing).
Can SAP XI handle this requirement? Does it make sense? Or should the webapplication starts this programms without SAP XI?
Best regards,
Jürgen

Hi,
               webservice                         File Adapter
Website-->>>>>>>>>>>>>>>>  XI  >>>>>>>>>>>>>FILE
                Soap Adapter
Regards
Hemant
Reward points if find helpful

Similar Messages

  • External printin via SAP

    Hello experts!
    I would like your help regarding printing external files via SAP.
    I tried the following code :
    create object gs_word 'WORD.APPLICATION'.
    set property of gs_word 'Visible' = '0' .
    call method of gs_word 'Documents' = gs_documents.
    call method of gs_documents 'Open' = gs_newdoc
    exporting #1 = 'C:\My Documents\test.doc' .
    exporting #1 = p_file .
    call method of gs_word 'ActiveDocument' = gs_actdoc .
    call method of gs_actdoc 'PrintOut' .
    call method of gs_actdoc 'Close'.
    call method of gs_word 'Quit
    and it works fine with microsoft word documents. But how about .xls or .pdf or any other file format????
    Please give me abny hint..
    Thanks in advance!!!!!!!!

    Hi Iria,
    Hope this helps:
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/a9f3e590-0201-0010-4da9-c195623f88c3
    Kindly Reward Points If You Find The Reply Helpful.
    Cheers,
    Chaitanya.

  • Printing existing PDF-File via SAP-Spool

    Hi to all,
    I'm looking for a solution to print existing PDF-Files (external Directory) via SAP-Spool, in order to create a set of documents in correct succession, where some of them are created within SAP and others beeing created externally (PDF-Files).
    We use NW7.0 and have AdobeDocumentServices activated.
    I don't want to create PDF-Files out of SAP-Spool-Requests.
    Thank you for any helpful hint.
    Best Regards
    Christian

    Thanks for this, having a look through at the moment, just one question do I have to install this SDK just to automatically print an existing PDF document from a 3rd party application when I have only the Reader installed?
    Thanks

  • Stop and start the system via the SAP GUI

    ........ although I don't know the answer!
    We have SAP running on an iSeries/DB2 format.
    And we of course have stopped and started our SAP systems many times before via an iSeries screen.
    One thing we have never had to do, is stop and start the system via the SAP GUI.
    Is this possible? If so, how is it done?
    Surprisingly difficult to find a solution online.
    Edited by: Juan Reyes on Aug 10, 2010 11:10 AM

    Paui,
    You can also do a soft shutdown, which waits till the active users/sessions are logged out (Draing out the sesstions) and no more new users are allowed to login during that time.
    Goto SM51, select the instace/server you want to stop then menu --> Goto --> Server Name --> Administration --> Shut Down Server (soft).
    Here you can also select a hard shutdown if the situation demands by following the same menu path.
    Even though your question is answered but I still wanted to update you the options to select.
    -Mahesh

  • Extract data from SAP and send to external system via Webmethods & IDOC's

    Hi,
    We need to Extract data from SAP and send to an external system via Webmethods middlewear using IDOCs. I have never used webmethods before and would like to know more about how to implement this scenario. I have used IDOCS in an EDI scenario before but not used it along with WebMethods.
    Any pointers would be of great help. Thanks

    If you have already ABAP programs /BAPI's in place then try to develop RFC interface and write some back ground programs to scheudl BAPI's and develop scenario but you need to implement error handling , data validation in PI mapping level.
    or
    take help from ABAPer to design in ABAP like writing Proxy program to pull data and send it PI.
    if you are dealing with master data bit risky(correctness) but can be achived using PI.

  • Start/Stop a tablespace via SAP transaction

    Dear All,
    I'm just wondering about start/stop a tablespace via SAP transactions. Is it possible? At the moment i'm working on SAP Netweaver (DB Server:DB2 8.1/z/os 1.7, AS:AIX 5.2).
    Many thanks for your help.
    Regards,

    Thanks Thomas for the fast answer!
    Starting right now to write my commands
    Best regards,
    Andrea

  • Sending external email via SAPCONNECT

    Hi all,
    I want to know how to send external email through sap.
    Thanks in advance,
    Manosh.

    HI,
    Try this  code:
    *& Report  ZSENDEMAIL                                                  *
    *& Example of sending external email via SAPCONNECT                    *
    REPORT  zsendemail                    .
    PARAMETERS: psubject(40) type c default  'Hello',
                p_email(40)   type c default '[email protected]' .
    data:   it_packing_list like sopcklsti1 occurs 0 with header line,
            it_contents like solisti1 occurs 0 with header line,
            it_receivers like somlreci1 occurs 0 with header line,
            it_attachment like solisti1 occurs 0 with header line,
            gd_cnt type i,
            gd_sent_all(1) type c,
            gd_doc_data like sodocchgi1,
            gd_error type sy-subrc.
    data:   it_message type standard table of SOLISTI1 initial size 0
                    with header line.
    *START-OF-SELECTION.
    START-OF-SELECTION.
    Perform populate_message_table.
    *Send email message, although is not sent from SAP until mail send
    *program has been executed(rsconn01)
    PERFORM send_email_message.
    *Instructs mail send program for SAPCONNECT to send email(rsconn01)
    perform initiate_mail_execute_program.
    *&      Form  POPULATE_MESSAGE_TABLE
          Adds text to email text table
    form populate_message_table.
      Append 'Email line 1' to it_message.
      Append 'Email line 2' to it_message.
      Append 'Email line 3' to it_message.
      Append 'Email line 4' to it_message.
    endform.                    " POPULATE_MESSAGE_TABLE
    *&      Form  SEND_EMAIL_MESSAGE
          Send email message
    form send_email_message.
    Fill the document data.
      gd_doc_data-doc_size = 1.
    Populate the subject/generic message attributes
      gd_doc_data-obj_langu = sy-langu.
      gd_doc_data-obj_name  = 'SAPRPT'.
      gd_doc_data-obj_descr = psubject.
      gd_doc_data-sensitivty = 'F'.
    Describe the body of the message
      clear it_packing_list.
      refresh it_packing_list.
      it_packing_list-transf_bin = space.
      it_packing_list-head_start = 1.
      it_packing_list-head_num = 0.
      it_packing_list-body_start = 1.
      describe table it_message lines it_packing_list-body_num.
      it_packing_list-doc_type = 'RAW'.
      append it_packing_list.
    Add the recipients email address
      clear it_receivers.
      refresh it_receivers.
      it_receivers-receiver = p_email.
      it_receivers-rec_type = 'U'.
      it_receivers-com_type = 'INT'.
      it_receivers-notif_del = 'X'.
      it_receivers-notif_ndel = 'X'.
      append it_receivers.
    Call the FM to post the message to SAPMAIL
      call function 'SO_NEW_DOCUMENT_ATT_SEND_API1'
           exporting
                document_data              = gd_doc_data
                put_in_outbox              = 'X'
           importing
                sent_to_all                = gd_sent_all
           tables
                packing_list               = it_packing_list
                contents_txt               = it_message
                receivers                  = it_receivers
           exceptions
                too_many_receivers         = 1
                document_not_sent          = 2
                document_type_not_exist    = 3
                operation_no_authorization = 4
                parameter_error            = 5
                x_error                    = 6
                enqueue_error              = 7
                others                     = 8.
    Store function module return code
      gd_error = sy-subrc.
    Get it_receivers return code
      loop at it_receivers.
      endloop.
    endform.                    " SEND_EMAIL_MESSAGE
    *&      Form  INITIATE_MAIL_EXECUTE_PROGRAM
          Instructs mail send program for SAPCONNECT to send email.
    form initiate_mail_execute_program.
      wait up to 2 seconds.
      if gd_error eq 0.
          submit rsconn01 with mode = 'INT'
                        with output = 'X'
                        and return.
      endif.
    endform.                    " INITIATE_MAIL_EXECUTE_PROGRAM
    Reward points if found helpful....
    Cheers,
    Chandra Sekhar.

  • Sending external email from SAP with following requirements...

    Hi All,
           I need to send external emails from SAP by meeting following requirements.
    1) With subject line more than 100 characters.
    2) No attachments, only body which has specific format (blueprint/layout) and would be amended often, hence code shouldn't be touched during amendments.
    3) Should be able to know the success/failure of mail sending at program level.

    Hi,
    The code below demonstrates how to send an email to an external email address
    *& Report  ZSENDEMAIL                                                  *
    *& Example of sending external email via SAPCONNECT                    *
    REPORT  zsendemail                    .
    PARAMETERS: psubject(40) type c default  'Hello',
                p_email(40)   type c default '[email protected]' .
    data:   it_packing_list like sopcklsti1 occurs 0 with header line,
            it_contents like solisti1 occurs 0 with header line,
            it_receivers like somlreci1 occurs 0 with header line,
            it_attachment like solisti1 occurs 0 with header line,
            gd_cnt type i,
            gd_sent_all(1) type c,
            gd_doc_data like sodocchgi1,
            gd_error type sy-subrc.
    data:   it_message type standard table of SOLISTI1 initial size 0
                    with header line.
    *START-OF-SELECTION.
    START-OF-SELECTION.
    Perform populate_message_table.
    *Send email message, although is not sent from SAP until mail send
    *program has been executed(rsconn01)
    PERFORM send_email_message.
    *Instructs mail send program for SAPCONNECT to send email(rsconn01)
    perform initiate_mail_execute_program.
    *&      Form  POPULATE_MESSAGE_TABLE
          Adds text to email text table
    form populate_message_table.
      Append 'Email line 1' to it_message.
      Append 'Email line 2' to it_message.
      Append 'Email line 3' to it_message.
      Append 'Email line 4' to it_message.
    endform.                    " POPULATE_MESSAGE_TABLE
    *&      Form  SEND_EMAIL_MESSAGE
          Send email message
    form send_email_message.
    Fill the document data.
      gd_doc_data-doc_size = 1.
    Populate the subject/generic message attributes
      gd_doc_data-obj_langu = sy-langu.
      gd_doc_data-obj_name  = 'SAPRPT'.
      gd_doc_data-obj_descr = psubject.
      gd_doc_data-sensitivty = 'F'.
    Describe the body of the message
      clear it_packing_list.
      refresh it_packing_list.
      it_packing_list-transf_bin = space.
      it_packing_list-head_start = 1.
      it_packing_list-head_num = 0.
      it_packing_list-body_start = 1.
      describe table it_message lines it_packing_list-body_num.
      it_packing_list-doc_type = 'RAW'.
      append it_packing_list.
    Add the recipients email address
      clear it_receivers.
      refresh it_receivers.
      it_receivers-receiver = p_email.
      it_receivers-rec_type = 'U'.
      it_receivers-com_type = 'INT'.
      it_receivers-notif_del = 'X'.
      it_receivers-notif_ndel = 'X'.
      append it_receivers.
    Call the FM to post the message to SAPMAIL
      call function 'SO_NEW_DOCUMENT_ATT_SEND_API1'
           exporting
                document_data              = gd_doc_data
                put_in_outbox              = 'X'
           importing
                sent_to_all                = gd_sent_all
           tables
                packing_list               = it_packing_list
                contents_txt               = it_message
                receivers                  = it_receivers
           exceptions
                too_many_receivers         = 1
                document_not_sent          = 2
                document_type_not_exist    = 3
                operation_no_authorization = 4
                parameter_error            = 5
                x_error                    = 6
                enqueue_error              = 7
                others                     = 8.
    Store function module return code
      gd_error = sy-subrc.
    Get it_receivers return code
      loop at it_receivers.
      endloop.
    endform.                    " SEND_EMAIL_MESSAGE
    *&      Form  INITIATE_MAIL_EXECUTE_PROGRAM
          Instructs mail send program for SAPCONNECT to send email.
    form initiate_mail_execute_program.
      wait up to 2 seconds.
      if gd_error eq 0.
          submit rsconn01 with mode = 'INT'
                        with output = 'X'
                        and return.
      endif.
    endform.                    " INITIATE_MAIL_EXECUTE_PROGRAM
    Hope this helps.
    Reward if helpful.
    Regards,
    Sipra

  • Problem with T61 and DVI External Monitor (via Advanced Mini-Dock)

    Ever since I upgraded to Vista SP1 on my ThinkPad T61 (with an Intel integrated 965 series graphics card), I've been having problems when I try to use an external monitor via the DVI port in my Advanced Mini-dock.  I'm curious if other people have experienced this problem.
    The problems surfaces when I first boot up, or sometimes after my ThinkPad has been running for awhile (particularly when I do something graphics related, such as right-clicking to open display properties).  The picture starts to flicker (or disappear and reappear, like the screen does when changing graphics resolutions).  I also hear the "ba-bum" sound that you hear when disconnecting a piece of hardware, followed by the "bum-ba" reconnection sound - these two sounds happen repeatedly (sometimes as fast as once per second).  If I don't do anything, sometimes I'll get a bluescreen.
    Not long ago, I found a fix of sorts: to stop the flickering/reconnecting, I just open Task Manager and stop the process called "igfxpers" (an Intel driver problem).  The problem always disappears after I do this, although I have to remember to do it every time I reboot or else the problem comes back.  So it's not an ideal fix.
    This problem doesn't happen when I connect an external monitor using the analog VGA port, or when I'm just using the notebook LCD.  It's limited to just the DVI connection.  I've tried two different digital monitors (one LG, the other BenQ) as well as two DVI cables - the problem is still the same.  So it seems like a driver problem of some sort - unfortunately, the Intel drivers haven't been updated since last February.
    I should also note that I've tried reinstalling my OS two or three times, and the problem always comes back.  Has anyone else had this problem, and is a fix on the way?

    Error Message:
    Input signal out of range. Translation:
    You will see this on an otherwise blank screen. Assuming that the data cable is plugged in correctly, the video card is feeding the monitor a signal stream in excess of what the monitor can accommodate. The two main causes for this are that the user has set either the resolution or the vertical frequency rate too high. For example, you might set a new graphics card to display at 1,280 x 1,024, but if the monitor is only capable of 1,024 x 768 resolution, you’ll get a Sync Out of Range error. This is especially common in 14-inch monitors.
    Solution:
    Because you obviously can’t make settings changes from within regular Windows, you’ll need to reboot into Windows Safe Mode. When you restart the system, there is a point during boot up when the system switches from reporting diagnostics and detected components to loading Windows. This point is usually accompanied by a beep and the screen going black. Just before this point, you want to start repeatedly pressing the F8 key. This should bring up a menu of Windows boot options. The one you want to pick is Safe Mode.
    From Safe Mode right-click the Desktop and select Properties. Go to the Settings tab and use the slider to drop your resolution a notch or two. Reboot and let Windows try to go into Normal mode. If this still doesn’t work, go back into Safe Mode and get to the Settings tab of Display Properties. Click the Advanced button, go to the Monitor tab, and check your refresh rate. The lowest advisable rate is usually 60Hz, although this works better for LCDs (liquid-crystal displays) than CRTs (cathode ray tubes). Apply the change and reboot.

  • Why do I get error "The LDAP server is unavailable" while connecting to external domain via sync connection in SharePoint UPSA ?

    Hello,
    I am trying to connect to external domain via UPS Account having "Replicate Directory changes" permission on external domain while creating sync connection in UPSA.
    I have checked below URLS :
    http://social.technet.microsoft.com/Forums/en-US/1912bf88-8fec-4b5d-9d1e-a42db8318e33/ldap-server-is-unavailable-sharepoint-2010-user-synchronization?forum=sharepointadminprevious
    http://social.technet.microsoft.com/Forums/en-US/6525d3aa-9197-42a2-aea0-190b84ac8356/the-ldap-server-is-unavailable?forum=sharepointadminprevious
    And looks like its network connectivity issue - and hence I have verified that port 389 is open by infra team.
    Note : I am able to connect to local AD , does it make sense that port is not open for external domain ? 
    Can anyone please let me know what can be the issue ? 
    Your help will be highly appreciated as I am struggling to fix this issue since  quite long time but no luck yet.
    Thank you in advance.
    Kind regards,
    Dipti Chhatrapati

    Hi Dipti,
    If you have Two-Way trust relationship then not sure if you have tried below:
    Create a folder on the SharePoint server
    Go to Folder properties - Security tab
    Try adding user of the external domain on the folder
    Please let us know if you are able to add the user or not. If you are able to add then it means that the connection and trust is proper and you should be able to create sync connection in UPA without any issues or else there is some issue with the connectivity
    or the trust which is configured.
    Please also make sure that you have given permissions to sync account as per below TechNet:
    http://technet.microsoft.com/en-us/library/hh296982(v=office.15).aspx
    Replicate Directory changes permissions are also required on cn=configuration container, below are the steps:
    Grant Replicate Directory Changes permission on the cn=configuration container
    Use this procedure to grant Replicate Directory Changes permission on the cn=configuration container to an account.
    To grant Replicate Directory Changes permission on the cn=configuration container
    On the domain controller, click Start, click Run, type adsiedit.msc, and then click OK.
    If the Configuration node is not already present, do the following:
    In the navigation pane, click ADSI Edit.
    On the Action menu, click Connect to.
    In the Connection Point area of the Connection Settings dialog box, click Select
    a well know Naming Context, select Configuration from the drop-down list, and then click OK.
    Expand the Configuration node, right-click the CN=Configuration... node, and then click Properties.
    In the Properties dialog box, click the Security tab.
    In the Group or user names section, click Add.
    Type the name of the synchronization account, and then click OK.
    In the Group or user names section, select the synchronization account.
    In the Permissions section, select the Allow check box next to the Replicating
    Directory Changes (Replicate Directory Changes on Windows Server 2003) permission, and then click OK.
    Kind regards,
    Bhavik K Jain
    Please ensure that you mark a question as Answered once you receive a satisfactory response.

  • How to start a process via web service with automatically run first screen

    Hi guys,
    we want to start the process via web service and skip the inbox presentation of the first human activity of the process. It means that the first activity should start automatically by clicking the link (wsdl link).
    Is there any opportunity to realize this thought?
    THX
    Regrads
    Phil

    Hi Phil,
    You may refer to my blog series for steop by step procedure on how to initiate a BPM workflow through webservice. Below are the links:
    /people/arafat.farooqui/blog/2009/08/13/introduction-to-sap-netweaver-bpm-part-4
    /people/arafat.farooqui/blog/2010/06/23/introduction-to-sap-netweaver-bpm-part-5
    Hope this helps!!
    Regards,
    Arafat

  • How to display document from external archive via archivelink?

    Hi,
    I would like to display in SAP (via ArchiveLink) scanned document which was stored in an external archive (FileNet). The archive system is connected to SAP via ArchiveLink. However the scanned document isn't stored in the archive system via SAP so I don't know the ARCHIV_DOC_ID. I only know OBJECT_ID as far as the metadata of document is considered.
    I tried to use ARCHIVOBJECT_DISPLAY function module with object_id and arvchiv_id but I get the message no. OA512 (Parameter info was not transferred for command docId). I can only display scanned document entering the right value of ARCHIV_DOC_ID parameter. But actually I don't know the value of this parameter from the level of SAP system.
    Could anybody give me some clue or hints?
    Best regards,
    Zacaria

    Hi
    Just as Fred written SAP needs to be linked to external archiving system by a Contenent Repository (transaction OAC0).
    The menu for ArchivLink setting is in customazing:
    Was it done that?
    Max

  • Essbase External Security via Shared Services

    I have hit a problem with essbase external security via shared services, might be fairly trivial, first time doing this.
    In the install guide for essbase 9.3.1 it mentions not to use the user 'admin' when firing up essbase server console mode for the first time if you intend to externalise security to shared services in the future.
    I have followed this recommendation and used a different username 'essadmin' for the first time essbase server is started up. While still in native security mode, I sign in via EAS 9.3.1 and create myself another admin account just in case.
    I cold backup shared services SQL repository and OpenLDAP repositry before externalising essbase security. Also I backup the essbase sec and cfg files just in case.
    Then I start it all up, go into EAS and select to externalise security, this takes a few seconds, and all seems well.
    Now in shared services I can see the essadmin user ID and everything appears to be OK. However when I look under the projects node, I see "Analytic Servers:myhost:1", then below that another green icon "Analytic Servers:myhost:1", but when I click on the second green icon I get "Login fails due to invalid login credentials".
    What have I done wrong ?

    Hi,
    I don't think you've done anything wrong. You just need to provision your shared services user with access to Essbase. Right-click on your user, select provision and then give them the required Essbase rights.
    Hope that helps,
    Gee

  • Call to Web Sevice in external system from SAP CRM

    Hi,
    I have to make a call to External system from SAP CRM 5.0 system. The external system will provide a sample webservice which SAP will try to initiate
    Can you please tell me:
    1. What settings/object needs to be maintained in SAP in order to make this call.
    2. how I can make a call to this Web-Service from a BADI and pass the values to web service and also capture the returning value.
    Please explain in detail
    Thanks,
    Mike

    Mike,
    You should honestly search the SDN site for consuming web services with ABAP.  There are some good examples.
    However the general procedure is easy:
    1.  Generate an ABAP proxy using the WSDL provided to you by the external program
    2.  Configure an HTTP destination for the server of the web services (needed for HTTPS calls)
    3.  Configure the logical port for the web service using lpconfig
    4.  Write the abap code to call the webservice via the proxy.  Works very similar to FM call in my opinion.
    To expose a webservice(bapi being called from outside) you need to do a little more work
    1.  Create a web services for the RFC enabled function module via SE80
    2.  Use wsadmin and wsconfig to make the service available
    3.  Publish the service out to the UDDI as needed.
    Once again this code is pretty well documented in the standard help and SDN.  Do a simple search on ABAP proxies and you will find what you need.
    Take care,
    Stephen

  • Starting external progran SAPXPG failed (SM69)

    System Information:
    ECC 6, Oracle 10.2, AIX 5.3, Kernel Patch level 147
    Hi all,
    We were encountered problems when try to scheduled actions in DB13.
    We had install CI & DB on separate server and the rfc SAPXPG_DBDEST_<Destination> is not working.
    We tried to use RSH in SM49/SM69 to start external program SAPXPG in target host remotely, however, it return External program terminated with exit code 1 when we executed it.
    *External command we used
    Rsh
    Target host u2013l <sid>adm sapxpg
    Logs of dev_cp:
    Trace file of control program (trace level 3)
    < Function: BtcTrcInit> Function: main  SAPXPG 700
    2009-02-05--21-18-10 : Before BtcXpgDetach
      > Function: BtcXpgDetach  < Function: BtcXpgDetach  Accept RFC connection from R/3 system
    2009-02-05--21-18-10 : Before RfcAccept
    2009-02-05--21-18-10 : RfcAccept returned OK
    security check switched OFF
      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
    2009-02-05--21-18-10 : Before first call of RFCDispatch
      > Function: BtcXpgStartXpgLong
    2009-02-05--21-18-10 : Beginning of BtcXpgStartXpgLong
        > Function: BtcXpgStartXpgImportLong      > Function: BtcXpgParam      < Function: BtcXpgParam      > Function: BtcXpgParam      < Function: BtcXpgParam      > Function: BtcXpgParam      < Function: BtcXpgParam      > Function: BtcXpgParam      < Function: BtcXpgParam      > Function: BtcXpgParam      < Function: BtcXpgParam      > Function: BtcXpgParam      < Function: BtcXpgParam      > Function: BtcXpgParam      < Function: BtcXpgParam      > Function: BtcXpgParam      < Function: BtcXpgParam      > Function: BtcXpgTable      < Function: BtcXpgTable    < Function: BtcXpgStartXpgImportLong
    BtcXpgStartXpgLong: special_trace_flag = <3>
        > Function: BtcXpgStartXpgInt      > Function: BtcXpgItTransfer        Content of source log table:
              Line  Text
              <No StdOut/StdErr output reported>
            Target log table is not identical to source
            ItGetLine terminated with NULL
          < Function: BtcXpgItTransfer      > Function: BtcTrcReset      < Function: BtcTrcReset      Call mode: VIA RFC
          Input arguments of BtcXpgStartXpg:
            External program: rsh
          tracecntl = : 3
            Program argument string: bir-hrerpdb -l prdadm sappxpg
            Contents of control flags:
              StdIn control flag: redirect StdIn
              StdOut control flag: store StdOut output in memory
              StdErr control flag: store StdErr output in memory
              Trace control flag: unknown contents
              Termination control flag: control program will wait for termination
          > Function: BtcXpgCheck        > Function: BtcXpgArgv
              parameter number 1:
              Scanned parameter: bir-hrerpdb
              parameter number 2:
              Scanned parameter: -l
              parameter number 3:
              Scanned parameter: prdadm
              parameter number 4:
              Scanned parameter: sappxpg
              Total number of arguments scanned: 4
              Argument argv[0]: rsh
            < Function: BtcXpgArgv      < Function: BtcXpgCheck      > Function: BtcXpgSigInst        set signal handler for SIGCHLD to SIG_DFL
            old signal handler for SIGCHLD: SIG_DFL
          < Function: BtcXpgSigInst      > Function: BtcXpgStart        Process id: 172232
            Parent process id: 352710
            > Function: BtcTrcIni      Start status of external program: external program successfully started
          Id of external process: 0000323746
          StdOut/StdErr collected in memory
            Line  Text
            <No StdOut/StdErr output reported>
        < Function: BtcXpgStartXpgInt    > Function: BtcXpgStartXpgExport      > Function: BtcXpgParam      < Function: BtcXpgParam      > Function: BtcXpgParam      < Function: BtcXpgParam      > Function: BtcXpgParam      < Function: BtcXpgParam    < Function: BtcXpgStartXpgExport
    2009-02-05--21-18-10 : End of BtcXpgStartXpgLong
      < Function: BtcXpgStartXpgLong
    2009-02-05--21-18-10 : After first call of RFCDispatch
      Wait for RFC call SAPXPG_END_XPG
    2009-02-05--21-18-10 : Before second call of RFCDispatch
      > Function: BtcXpgEndXpg
    2009-02-05--21-18-10 : Beginning of BtcXpgEndXpg
        > Function: BtcXpgStartXpgExport      > Function: BtcXpgTable      < Function: BtcXpgTable    < Function: BtcXpgEndXpgImport    > Function: BtcXpgEndXpgInt      > Function: BtcXpgItTransfer        Content of source log table:
              Line  Text
              <No StdOut/StdErr output reported>
            Target log table is not identical to source
            ItGetLine terminated with NULL
          < Function: BtcXpgItTransfer      > Function: BtcXpgReadChild        Process executing external program has terminated
          < Function: BtcXpgReadChild      > Function: BtcXpgEnd        > Function: BtcXpgLog
              Log message (44 byte): External program terminated with exit code 1
            < Function: BtcXpgLog
          < Function: BtcXpgEnd      Termination status of external program: program terminated with error code 1
          StdOut/StdErr collected in memory
        < Function: BtcXpgEndXpgInt    > Function: BtcXpgEndXpgExport      > Function: BtcXpgParam      < Function: BtcXpgParam      > Function: BtcXpgParam      < Function: BtcXpgParam    < Function: BtcXpgEndXpgExport
    2009-02-05--21-18-10 : End of BtcXpgEndXpg
      < Function: BtcXpgEndXpg
    2009-02-05--21-18-10 : After second call of RFCDispatch
    2009-02-05--21-18-10 : After call of RfcClose (wait)
    < Function: main
    2009-02-05--21-18-10 : End of SAPXPG: main
    We couldnu2019t located any clear error indication that might help us in troubleshooting.
    We already configured settings in .rhosts file & we had resolve the permission problem
    We executed the following commands as user <sid>adm:
    In DB host, we executed rsh <CI host> date & it works.
    But in DB hosts, its doesn't work when we executed rsh <DB host> date
    Is this issue should be isolated as AIX OS issue?
    We couldn't execute any activities from DB13 as the DB rfc destination is not working.
    Is that alternative way that we can execute sapxpg on DB host?
    Or we have to install standalone gateway as solution? It's that any impact if we installing standalone gateway at DB host now (It's production system)?
    Thanks.
    BR,
    Terry

    Hi Guru,
    When we tried to execute the following command from host DB:
    rsh <Host CI> date
    it was return results.
    However, if we tried to execute from host CI:
    rsh <Host DB> data
    it was return no results.
    That's means we could'nt remotely start any of external command at DB host from CI host.
    Start external program error was isolated within operating system level.
    Any luck on this?
    Thanks.
    BR,
    Terry

Maybe you are looking for

  • How to designate a program for all avi files

    hi. i dl-ed the vlc player recently, but i dont know how to set it as the default player for all avi files. i secondary click on a avi file and go to others... and select the vlc player with 'always use this program' checked, but this allows only tha

  • Need advice on how to make my website look better!

    ive made a website for a security company but im just not 100% happy with it, i dont know if it doesnt look professional enough or things need changing design wise. i am open to any ideas on how to make my website look better, i also dont mind if any

  • Capital One Platinum?

    I have just begun my credit rebuilding journey. About a month ago, I applied for a secured card from my bank and was approved for $300 minimum. I sent them the $300, and read that CapOne is pretty lenient with approving secured cards, so I applied wi

  • Single artist is appearing twice in My Music

    One artist, one album, saved in one folder on my PC. Yet she appears twice in My Music. In one of the appearances there is one track, in the other are the rest. They both appear in My Music with the same artist name and same album name. How do I merg

  • Widget on i phone

    what widget icon on i phone for? why is it blank. do I have to add something before it can be use