Secure the file/data transfer between XI and any third-party system

Hi All,,
I would like to use to "secure" SSH on OS Level the file/data transfer between XI and any third-party system Run OS Command before processing and OS command After processing. right now my XI server installed on iSeries OS.
with ISeries we can't call the Unix commands hope we need to go for AS400 (CL) Programming. If we created the AS400 programm how i can call that in XI.
If any one have idea pls let me know weather it will work or not.
Thanks in adavance.
Venkat

Hi,
Thanks for your reply.
I have red some blogs like /people/krishna.moorthyp/blog/2007/07/31/sftp-vs-ftps-in-sap-pi to call the Unix Shell script in XI.
But as i know in iSeries OS we can write the shell script we need to go for AS400 programe. If we go with AS400 how we need to call that programe and it will work or not i am not sure there i need some help please.
Thanks,
Venkat

Similar Messages

  • I can't get Safari to load period. It quits immediately. According to the troubleshooting, I'm to un-install any third party plug ins. Can anyone tell me what I should be looking for? I don't recall installing anything that wasn't an upgrade.

    I can't get Safari to load period. It quits immediately. According to the troubleshooting, I'm to un-install any third party plug ins. Can anyone tell me what I should be looking for? I don't recall installing anything that wasn't an upgrade.

    Unplug your iBook from the AC power, shut it down and take the main battery out for about fifteen minutes. Then you can put the battery back in, plug the power back in and restart. This should reset the USB and FireWire ports.
    If that doesn't help, you could reset the Power Management Unit. Follow the instructions in Knowledge Base Article #14449 for resetting your PMU.
    You probably should also startup from your Mac OS X install disk and run the Disk Utility to "repair disk" on your hard drive. This will determine if you've got some kind of file directory/software problems with the files on your hard drive.
    I'm not much at decoding kernel panic logs, but this line jumps out:
    Kernel loadable modules in backtrace (with dependencies):
    com.apple.filesystems.udf(1.4.1)@0x28a79000
    Did you have a DVD movie in the drive at the time? DVD movie disks are UDF format, but not much else is.
    -Doug

  • Most efficient data transfer between RT and FPGA

    This post is related to THIS post about DMA overhead.
    I am currently investigating themost efficient way to transfer a set of variables to a FPGA target for out application.  We have been using DMA FIFOs for communications in both directions (to and from FPGA) but I'm recently questioning whether this is the most efficient approach.
    Our application must communicate several parameters (around 120 different variables in total) to the FPGA.  Approximately 16 of these are critical meaning that they must be sent every iteration of our RT control loop.  The others are also important but can be sent at a slightly slower rate without jeopardising the integrity of our system.  Until now we have sent these 16 critical parameters plus ONE non-critical parameter over a DMA to the FPGA card.  Each 32-bit value sent incorporates an ID which allows the FPGA to demultiplex to the appropriate global variables on the FPGA.  Thus over time (we run a 20kHz control loop on the RT system - we have a complete set of paramaters sent @ approx. 200Hz).  The DMA transfers are currently a relatively large factor in limiting the execution speed of our RT loop.  Of the 50us available per time-slot running at 20kHz approximately 12-20us of these are the DMA transfers to and from the FPGA target.  Our FPGA loop is running at 8MHz.
    According to NI the most efficient way to transfer data to a FPGA target is via DMA.  While this may in general be true, I have found that for SMALL amounts of data, DMA is not terribly efficient in terms of speed.  Below is a screenshot of a benchmark program I have been using to test the efficiency of different types of transfer to the FPGA.  In the test I create a 32MB data set (Except for the FXP values which are only present for comparison - they have no pertinence to this issue at the moment) which is sent to the FPGA over DMA in differing sized blocks (with the number of DMA writes times the array size being constant).  We thus move from a single really large DMA transfer to a multitude of extremely small transfers and monitor the time taken for each mode and data type.  The FPGA sends a response to the DMA transfers so that we can be sure that when reading the response DMA that ALL of the data has actually arrived on the FPGA target and is not simply buffered by the system.
    We see that the minimum round-time for the DMA Write and subsequent DMA read for confirmation is approximately 30us.  When sending less than 800 Bytes, this time is essentially constant per packet.  Only when we start sending more than 800 Bytes at a time do we see an increase in the time taken per packet.  A packet of 1 Byte and a packet of 800 Bytes take approxiamtely the SAME time to transfer.  Our application is sending 64 Bytes of critical information to the FPGA target each time meaning that we are clearly in the "less efficient" region of DMA transfers.
    If we compare the times taken when communication over FP controls we see that irrespective of how many controls we write at a time, the overall throughput is constant with a timing of 2.7us for 80 Bytes.  For a small dedicated set of parameters, the usage of front panel controls seems to be significantly faster than sending per DMA.  Once we need to send more than 800 Bytes, the DMA starts to become rapidly more efficient.
    Say hello to my little friend.
    RFC 2323 FHE-Compliant

    So to continue:
    For small data sets the usage of FP controls may be faster than DMAs.  OK.  But we're always told that each and every FP control takes up resources, so how much more expensive is the varsion with FP controls over the DMA.
    According to the resource usage guide for the card I'm using (HERE) the following is true:
    DMA (1023 Elements, I32, no Arbitration) : 604 Flip-Flops 733 LUT 1 Block RAM
    1x I32 FP Control: 52 Flip-Flops 32 LUTs 0 Block RAM
    So the comparison would seem to yield the following result (for 16 elements).
    DMA : 604 FLip-Flops 733 LUT 1 Block RAM
    FP : 832 FLip-Flops 512 LUT 0 Block RAM
    We require more FLip-Flops, less LUTs and no Block RAM.  It's a swings and roundabouts scenario.  Depending on which resources are actually limited on the target, one version or the other may be preferred.
    However, upon thinking further I realised something else.  When we use the DMA, it is purely a communications channel.  Upon arrival, we unpack the values and store them into global variables in order to make the values available within the FPGA program.  We also multiplex other values in the DMA so we can't simply arrange the code to be fed directly from the DMA which would negate the need for the globals at all.  The FP controls, however, ARE already persistent data storage values and assuming we pass the values along a wire into subVIs, we don't need additional globals in this scenario.  So the burning question is "How expensive are globals?".  The PDF linked to above does not explicitly mention the difference in cost between FP controls and globals so I'll have to assume they're similar.  This of course massively changes the conclusion arrived to earlier.
    The comparison now becomes:
    DMA + Globals : 1436 Flip-Flops 1245 LUTs 1 Block RAM
    FP : 832 FLip-Flops 512 LUT 0 Block RAM
    This seems very surprising to me.  I'm suspiscious of my own conclusion here.  Can someone with more knowledge of the resource requirements differences between Globals and FP controls weigh in?  If this is really the case, we need to re-think our approach to communications between RT and FPGA to most likely employ a hybrid approach.
    Shane.
    Say hello to my little friend.
    RFC 2323 FHE-Compliant

  • Data Transfer Between HR and Erec

    Hi all,
    We are using having 2 backend systems 1 for HR other than Erec and another one for erec.
    Now we have setup the ALE data transfer using Message type HRMD_ABA.
    In erec we have only ERECRUIT Component deployed in backend,no EA HR or SAP HR component deployed.
    MEaning no PA* tables.
    Now when Transfer personnel number(HR!001-A008 with Position) to erec box,it says no pernr exist.
    Howver i cannot tranfer the pernr from ECC to Erec as we dont have PA* tables in Erec.
    Can you share me the object types that are transferred from ECC to EREc and EREC and ECC.
    What are the components to be deployed in backend Erec box.
    In Portal for requistions application which should backend(System Object) and for recruiter and recruitment admin applications which should be the backend system(System Object).
    Thanks,
    Nachy

    Hi ,
    1) First get your users created with roles in your Erec system
    Example recruiter ,Manager ,Recruitment Admin
    2) Get your Structure created in your HR back end system .
    3)Make sure you maintain your basic Infotypes with 0105 miantained (System user name /Email id )
    Assign the user to 0105 subtype 0001
    4)ALE that you have setup first move Org structure moved
      next move the person (Pers no ) .
    ALE chose the insert mode and goto WE10 if yoru IDOCS are clean without errors .
    Make sure all the personal data including address ,postal code is all maintained .
    Let me knwo if it helps
    Regards
    Santosh

  • Configuring the POS in ECC w/o having any third party tool and SAP IS Retai

    Hi All,
    I would like to know whether is there any way of configuring the POS in ECC without having any third party tool and SAP IS Retail.
    Becuse client can't efford to invest for the sake of small functionality like just sales and service at his compay owned outlets.
    Hope the query is clear to you all.
    Best regards,
    sushil kumar

    Hi Guru's
    I am closing this thread due to no reply  nor solutions from the forum
    Thanks for your time
    Regards,
    sushil

  • File adapter polling stops after reboot of third party system

    Hi,
    We noticed that whenever we reboot our third party system, XI File Adapter is losing it's connection to that third party system and polling stops. As a result File Adapter is not processing any files from that particular server.
    To fix this problem, we either reboot XI Server or refresh communication channel (Go to change mode and save it).
    File adapter is configured to  use FTP  to transfer the files between Windows Server and Unix Server.
    Is there a better way to fix this problem?
    Thanks in advance.
    Regards
    Chandu

    Hi,
    Make the connect mode as PER FILE TRANSFER in the file adapter.
    <i>Connect Mode
    Permanently
    An existing connection to the FTP server is used permanently.
    The connection is reestablished automatically if it is closed by the server.
    Per File Transfer
    A new connection to the FTP server is established for each file transfer.</i>
    http://help.sap.com/saphelp_nw04/helpdata/en/e3/94007075cae04f930cc4c034e411e1/content.htm
    Regards,
    Bhavesh

  • Data transfer between SAP and SRM

    Hi all,
    I'm new with SRM and like from a help.
    Working with SAP 4.7 and now with SRM 5.0, I need make the two systems if communicate.
    I need send from SAP to SRM the master data, Material, Customer, Material Group, Cost Center.
    I need send the shop car from SRM for create a PR in SAP.
    I need send the documents RFQ, PO and Contract from SAP to SRM. For RFQ need receive in SAP the data of price updated by the customer.
    How to make this conection? There are standard interface for these data? What are these interfaces?
    Thanks,
    Luciano Lessa

    Hello Ashutosh,
    Thanks your help.
    I have one question about replicate of the material master. In step by step say for complete the CRMSUBTAB table with following values:
    User  ObjectName  U/D             Obj. Class   Function  Obj. Type  Funct. Name
    CRM       empty       Download    Material        empty      empty       CRS_MATERIAL_EXTRACT
    CRM       empty       Download    Material        empty      empty       CRS_CUSTOMIZING_EXTRACT
    CRM       empty       Download    Material        empty      empty       CRS_SERVICE_EXTRACT
    In our system is so:
    User  ObjectName  U/D             Obj. Class                    Function  Obj. Type  Funct. Name
    CRM       empty       Download    Material                        empty      empty       CRS_MATERIAL_EXTRACT
    CRM       empty       Download    CUSTOMIZING             empty      empty       CRS_CUSTOMIZING_EXTRACT
    CRM       empty       Download    SERVICE_MASTER      empty      empty       CRS_SERVICE_EXTRACT
    This configuration is correct?
    The field OBJ.CLASS is key of table, so not is possible add three like values. 
    Thanks,
    Luciano Lessa

  • Data transfer from R3 and BW TO external system

    Hi experts
    I got one question which I couldnt find good answer.
    it concerns...data transfer from both R3 system and BW(here data is master data) to an external system.
    what are the various options to do this both from BW side and R3 side?
    which of them offers best performance?
    Thanks
    BR
    Amanda
    Edited by: amanda ciders on Nov 20, 2008 2:17 PM

    Hi
    Im aware that I can use OpenHub Functionality for this.Can anyone explain how to do this as I am unable to implement this for this situation.....
    do anybody know other solutions like creating views or FM like that...
    .it will be of great help if u can explain any solution in greater detail(including open hub)..
    Thanks
    BR
    Amanda
    Edited by: amanda ciders on Nov 20, 2008 2:26 PM

  • Data Transfer between BW and BO

    I have two servers in different networks, there is a firewall between the two networks.One get through to the Internet, and the other one get through to the Enterprise Intranet. BusinessObjects Enterprise XI 3.1 SP3 is setup in one server which can get through to the Internet,and Busniess Warehouse is setup on another server which can only get through to the Enterprise  ntranet. My question is how to deploy BusinessObjects, so that we can transfer the data in BW to BO.

    HI Roland
    When I create a new connection with SAP Business Warehouse, there is a error.
    DBD:canu2019t connect to the SAP BW Server CMALLC:rc=27>Connect from SAP gateway to RFC server failed Connect_PM GWHOST=192.168.1.66, GWSERV=sapgw00,SYSNR=00
    Location SAP-Gateway on host saptest/sapgw00
    Error   timeout during allocate
    Time   Tue Feb 22 15:25:58 2011
    Release  720
    Component SAP-Gateway
    Version  2
    RC      242
    Module  gwr3cpic.c
    Line     1911
    Detail    no connect of TP sapdp00 from host 192.168.1.66 after 20 sec
    Counter  2
    Is it relation with the BOE solution kit? I have some error when Importing SAP Roles in CMC.
    Exception in JSP: /jsp/auth/sapsec_import_role.jsp:22 19: 20: <% 21: String context=secSAPR3ImportRoleBean.getContextPath(); 22: secSAPR3ImportRoleBean.init(request); 23: response.setHeader("Expires", "0"); 24: %> 25: Stacktrace:
    Thank you very much!

  • IDOC data transfer between 2 SAP Clients on same system

    HI All,
    i was transferring data through standard IDOC from table A609 in client 100(say) to client 301(say).
    Sender    u2013 100  (sender side)
    Receiver u2013 301  (receiver side)
    I did all configurations that were required for transferring data.
    But at receiving side i.e. client 301, data is not populating in the table A609.
    The status at sender side is:
    status 03: Data Passed to port OK.
    But the status is at the receiving side is:
    status 64: IDOC ready to be transferred to application (yellow light)
    My query is why the data is not getting populated in table at receiver end.
    Waiting for your responses.......

    Hi,
    Instead of using idoc ..
    You can write code in RFC function module and update the table directly.
    If it is a Application i mean transaction back end many tables need to update on that case Idoc is necessary other wise use RFC preferabble,
    Program RBDMANI2 for status 51 & 52
    Program RBDAPP01 for status 64 ,66                       "Run this Program By Passing Idoc number it will turn to Green and Table wil be updated
    Program RBDAGAIE for status 32 and 69 (Edited IDocs)
    Program RBDSYNER for status 26
    Program RSEOUT00 for status 30
    re-process IDocs failing in 29 status, use program RBDAGAIN.
    transactions WEINBQUEUE and WEOUTQUEUE to control the individual queues
    Regards,
    Prabhuads

  • Errors in loading iWork's, iPhoto, iMovie, and any third party since having a mountain lion crash two days ago and reloaded  mountain lion

    have crashes in all apple products (iphoto11, imovie, iworks 8) etc since a crah with mountain lion.  Works in safe mode except itb will not load documents that are saved on Imac.

    have crashes in all apple products (iphoto11, imovie, iworks 8) etc since a crah with mountain lion.  Works in safe mode except itb will not load documents that are saved on Imac.

  • Data transfer between SAP & Java and Vice versa using IDOC Process

    Dear Experts,
            We are working on one of the good requirement related to data transfer between SAP and Java software. Client requirement is, they want to transfer the data in both the ways (from SAP --> Java and Vice versa also).
    In detail is, after sales order creation using one custom program loading plan details will be calculated. Once loading dates are confirmed then, user will release the sales document to transfer the data from SAP to Java using "Outbound IDOC processing". Similarly in that JAVA software some shipment details will be performed, once completed from JAVA software again details needs to be pumped back to SAP as "Inbound IDOC Processing".
    For this fields are already identified from external software SAP and we are looking for the same to perform the steps in SAP.
    At this stage, I need your expert opinion  / feedback how to go  about at this stage.
    Meaning,  
                     1. What are the customizing steps needs to be done in SAP..?
                     2. How to trigger the :Outbound IDOC process" once the documents are "Released" from custom transaction
                     3. How to create the link between SAP and JAVA to transfer the data between these 2 software
                     4. How to trigger the "Inbound IDOC Process" from JAVA software to SAP and how to store the data in SAP
    Experts, please give your feedback in terms of reply or by sending the step by step process to fulfill this client requirement.
    Thanks for your cooperation.
    Regards,
    Ramesh

    Maybe too many open questions in the same document.
    Maybe you should repost a more specific question in a technical forum.
    This looks like a small project where you already know what you want, maybe you should contract a technical specialist so he proceeds to the implementation!

  • Data upload from third party system to GRT table.

    Hello,
            Can you please let  me know how we can upload payroll data from a legacy system (to be more clear, how to upload data that we receive from a third party system) into GRT table. 
    Note:The file should be tab delimited text file.
    As of now, i figured out 2 FMs which I thought can be used.....BAPI_EXTPAYROLL_INSERT_OUT and BAPI_EXTPAYROLL_INSERT_LEGACY.
    Please let me know the steps to upload the same (start to end).  A code snippet will be of much help to me.
    Regards,
    RK

    Are you looking for loading your legacy payroll data into SAP ?
    SAP have a standard tables (T588B & T588C) that can be used along with standard schema (XLK0) for updating payroll results.
    They also have a utility program to upload data into T588B & C.
    Search for  Legacy Data Transfer in IMG and yo will find the relevant steps.
    Regards
    Ravikumar

  • How to configure https to send wsdl file to third party systems

    Hi Experts,
    instead of using http, i need to use https. so for this in xi system what steps do i need to follow to send wsdl file to any third party systems. here iam using pi 7.1 as a xi system.
    please help me in this.
    thanks
    jas

    >> to send wsdl file to any third party
    In no communication you send wsdl to third party. You always send related http message.
    For HTTPS, in the receiver channel, use HTTP Destination.
    Goto sm59 in PI and create RFC destination type G. There under "Logon & Security", set SSL as Active.
    For this to work, certificates should be imported on ABAP stack using STRUST.
    Regards,
    Prateek

  • Sending Data from BI to Third Party System through CIB Interface

    Hi Experts ,
    We have a requirement where we need to send data from BI to any Third Party System through CIB Interface . We do not have to use the OHD's . Please share the documents for the same .
    Regards
    Garima

    Hi,
          My problem is solved.
    Sol:  Getting wrong data from third party sytem. They are adding spaces in front of the payload and end of the payload so it was not processing. After deleting that spaces its is working fine.
            Thanks for your help.
    Thanks & Regards,
    Purshothamm

Maybe you are looking for