Interface discription for data transfer to PSCD

Hi everybody,
planning an application (not SAP) there is the requirement to provide periodically data to PSCD. Both ways should be possible: "online connection to PSCD" and "file-interface".
Now the question: Is there a defined "published" interface from external applications to PSCD.
Thanks in advance
Hartmut

Try one of these bapis:
BAPI_ISU_CONNOBJ_PROXY_UPLOAD
BAPI_ISU_POD_PROXY_UPLOAD   
Regards,
Ravi

Similar Messages

  • Need to build communication redundancy using serial RS-232 for Data Transfer b/w Host and RT irrespective of TCP/IP Data Transfer

    Hi - I would like to build the logic in which it should accomodate the communication redundancy using serial RS-232 for Data Transfer b/w Host and RT irrespective of TCP/IP Data Transfer.
    I want to do data transfer b/w host and RT through RS232 VISA portal whenever TCP/IP ethernet cable has been unplugged from the controller continuosly , it should keep on checking for TCP/IP link re-establishing also , when ever the tcp/ip link established again that time the communication should be using in that link only. This is accomplished by deploying the RT vi as execuatbale file. I made some logic regards to the above said logic , bur it was not working as much I expected.
    I request you to go through the attached two VI's and let me know , what I did wrong in that,
    Please do the needful.
    Attachments:
    TCP_Serial_Host.vi ‏33 KB
    TCP_Serial_RT.vi ‏41 KB

    even i am new to this topic and i am trying to get familiar with these protocols
    refer to tcp server/client examples in labview examples

  • HT5287 If DVD Movies, Audio CD's and even burning CD and DVD's are not supported, what is the point of DVD & CD Sharing then? Wouldn't it just be better to remote in or use a thumb drive if it's only able to be used for data transfer?

    If DVD Movies, Audio CD's and even burning CD and DVD's are not supported, what is the point of DVD & CD Sharing then? Wouldn't it just be better to remote in or use a thumb drive if it's only able to be used for data transfer?
    Or am I missing the bigger picture?

    As long as you have a Superdrive or an external burner/drive, burning, watching, installing, etc. from CD or DVD will work just fine. And so will sharing.

  • Advantages of using BAPI over LSMW for data transfer

    Hellow,
    Can anybody please give an input for advantages of using BAPIs in data transfer compare to LSMW. If we use BAPI for data transfer of master and transaction data how it is more usefull compare to LSMWs developed.
    Thanks in advance
    Raghav

    Hi Raghavendra,
    Refer the links..may help.....
    [http://www.*******************/search?q=BAPIandLSMW+comparision]
    [http://www.*******************/search?q=bapi]
    Regards,
    Mdi.Deeba

  • [svn:osmf:] 11205: Fix bug FM-169: Trait support for data transfer sample doesn' t display bytes loaded and bytes total for SWF element

    Revision: 11205
    Author:   [email protected]
    Date:     2009-10-27 15:04:26 -0700 (Tue, 27 Oct 2009)
    Log Message:
    Fix bug FM-169: Trait support for data transfer sample doesn't display bytes loaded and bytes total for SWF element
    Ticket Links:
        http://bugs.adobe.com/jira/browse/FM-169
    Modified Paths:
        osmf/trunk/apps/samples/framework/PluginSample/src/PluginSample.mxml
        osmf/trunk/apps/samples/framework/PluginSample/src/org/osmf/model/Model.as

    The bug is known, and a patch has been submitted: https://bugs.freedesktop.org/show_bug.cgi?id=80151. There's been no update since friday, so I wonder what the current status is, or if it's up for review at all.
    Does anyone know how we can be notified when this patch hits the kernel?

  • JPA - Best Practice For Data Transfer?

    I've been considering an alternative method for data transfer between applications, by using Serialized or Encoded to File JPA Entities. (either Binary or XML)
    I know this procedure may have several draw backs as compared to traditional exported SQL queries or data manipulation statements, however, I want to know if anyone has considered or used this process for data transfer?
    The process would be to
    - query the database and load the JPA Entities
    - Serialize or Encode them to file
    - zip up the entire folder with the JPA entities
    - transfer the data to destination machine
    - extract the data to a temp directory
    - reload the JPA entities by de-serializing and persisting them to the database
    The reason I'm considering this process, is basically because I have a desktop application (manages member records, names, dates, contributions, etc) used by different organisations in different locations (which are not related except by purpose ie clubs or churches) and would like to have a simple way of transporting all data associated with a single profile (information about a member of the organisation) from one location to another in a simple way, ie users interact only with the application without the need for any database management tool or such.
    I'm also considering this because it is not easy to generate an SQL Script file without using a dedicated Database Management Tool, which I do not want the application users to have to learn how to use.
    I would appreciate ANY suggestions and probable alternative solutions for this problem. FYI: I'm using a Java DB database.
    ICE

    jschell wrote:
    In summary you are moving data from one database to another. True
    You only discussed flow one way. Well the process is meant to be bi-directional. Basically what I envision would to have something like:
    - the user goes to File -> Export Profile...
    - then selects one or more profiles to export
    - the export process completes and the zip archive is created and transfered (copied, mailed, etc) to the destination location
    then on the destination pc
    - the user goes to File -> Import Profile
    - selects the profile package
    - the app extracts, processes and imports the data (JPA serialized for example)
    Flow both ways is significantly more complicated in general.Well if well done it shouldn't be
    And what does this have to do with users creating anything?Well as shown above the user would be generating the Zip Archive (assuming that is the final format)
    Does this make the problem clearer?
    ICE

  • Is there any support for data transfer compression in oracle XE?

    Hi
    Thank you for reading my post.
    I am wondering whether it is possible to ask database and JDBC driver to use some sort of compression for data transfer?
    I want to reduce the network workload as much as possible.
    Thanks

    AFAIK, Not directly from Oracle.

  • The i pod module for data transfer

    Recently i put i pod into enable disk use function so i could use the i pod for data transfer i went into MY computer then located the i pod service module i went to put it onto my desktop but it said module is being used by another program but it isnt atall. When i put in data like my spreadsheets onto the module dragging them it doesnt appear on the i pod module in the i tunes why is that? What do i have to do to make sure i can see that the data is recieved onto the i pod thanks mr roberts

    Hi,
      Retrieve data file from presentation server(Upload from PC)
    DATA: i_file like rlgrap-filename value '/usr/sap/tmp/file.txt'. 
    DATA: begin of it_datatab occurs 0,
      row(500) type c,
    end of it_datatab.
      CALL FUNCTION <b>'GUI_UPLOAD'</b>
           EXPORTING
                filename        = i_file
                filetype        = 'ASC'
           TABLES
                data_tab        = it_datatab  "ITBL_IN_RECORD[]
           EXCEPTIONS
                file_open_error = 1
                OTHERS          = 2.
    Pls reward points.
    Regards,
    Ameet

  • E-Rec: XI for data transfer

    Hello Experts,
    I am working on an implementation project where SAP E-Rec is on different box. We are on EhP5. We have XI for data transfer between both the systems (ECC and E-Rec). Now, when we use RFC to connect these systems, we use PA48 in ECC to hire candidates as employees which in turn pulls data from T752F table. Now as we are using XI, how/where does data flow?
    Also, please guide in case candidate is a rehire, how and where to capture his previous perr number to validate candidate is actually an old employee? Instead of T752F, which table is populated which creates an entry in HR admin's UWL. Please help understand.
    Thanks and regards,
    E-Rec Beginner!

    Hello,
    Please have a look at the attachment of note 997181 where the HR integration process is explained.
    Regards
    Nicole

  • Establish a connection through RF modem's on client & server side & to set up PPP communication for data transfer

    hi
    can any1 over here help me out in how to establish connection between 2 RF modem's for data transfer , between client & server USing LABVIEW?
    I want to establish a connection between 2 PC's through  RF modem on client & server side & to set up PPP communication for data transfer.
    (I have tried data transfer through RS-232 using TCP/IP whn the 2 PC's are connected over ethernet... which is working.
    I also tried connecting loopback cable between 2 PC's COM port & geting data transfer using VIsa configure serial port & other visa functions  ... which is working)
    can u guide me how to establish connection between 2 RF modem's using LABview?
    & how does the data transfer take place between 2 RF modems through RS-232?
    is it using TCP/IP?
    If you got any links to go abt this issue do send me related links .. or any examples .....
    I am currently using Labview version 8.
    Waiting in anticipation.. reply ASAP..
    thanking you
    Regards
    Yogan..

    Howdy yogan,
    Maybe you could clarify a few things for me, and we'll see how we can help ya. TCP/IP protocol occurs through an ethernet connection; RS-232 communication occurs through an RS-232 serial connection, typically through a cable that has a DB9 connector on both ends. Do you mean that the RF modems in question have the option to communicate via RS-232 and/or via TCP/IP ethernet? Specific information like the manufacturer of your RF modems, the model number of your RF modems, and how you connect the modems to the PC would enable us to give you more efficient support.
    You can check our Instrument Driver Network (IDNet) to see if a plug-and-play/IVI driver already exists for your RF modem. (You'll need to know its manufacturer and model number.) In the case that you do find an IDNet driver for your modem, you can use this KnowledgeBase article for instructions on how to use the driver.
    Another excellent resource to consider is the NI Example Finder. You can access this within LabVIEW by navigating to Help»Find Examples and then searching for serial or TCP/IP examples.
    Message Edited by pBerg on 03-10-2008 04:35 PM
    Warm regards,
    pBerg

  • Control parameters for data transfer

    Hi!
    There are no data in SBIW source system - General Settings - Maintain Control Parameters for Data Transfer.
    How does it have an influence on loading data?

    Hi,
    Maximum size of a data packet in kilo bytes
    The individual records are sent in packages of varying sizes in the data transfer to the Business Information Warehouse. Using these parameters you determine the maximum size of such a package and therefore how much of the main memory may be used for the creation of the data package. SAP recommends a data package size between 10 and 50 MB.
    Frequency with which status Idocs are sent
    With this frequency you establish how many data IDocs should be sent in an Info IDoc.
    Standard settings
    Frequency 1 means, for example, that there is an Info IDoc for every data IDoc. In general, you should choose a frequency between 5 and 10 but not greater than 20.
    Recommendation
    The larger the packet size for a data IDoc, the smaller you should set the frequency. By doing this, you make it possible to get information on the respective data load status in relatively short time periods when uploading data.
    Maximum number of parallel processes for data transfer
    Select a number greater than 0.
    Parallel processes can be set from the SAP core release 3.1I onwards.
    These parameters are, therefore, ignored in releases before 3.1I.
    However, there is a possibility of importing the SAP release 3.1I into earlier releases.
    The more parallel processes that can run the better the performance of your system will be. However, you must bear in mind the number of available dialog processes here.
    It will be fine and more effective if you use sap recomended values in those respective fields

  • Using Nokia 1200 CA45 connection for data transfer

    I have a USB CA45 connector but am unable to connect my 1200 to PC for data transfer. Is this simply because this entry level phone is not able to connect to PC. If so why does it have a CA45 connector installed?
    Any help or advice appreciated
    ottoman62

    About my problem above, i followed the process below which is written in the user guide :
    "So that you can use a connection by cable, a pilot of cable of data USB must be installed on your PC. You can use the Transfert functionality of data without installing of pilot of cable of data USB. Select Menu > Connectiv. > Câble USB. You can connect your apparatus to a compatible PC using a cable of data USB.
    Connect the cable of data USB on the basis of the apparatus. To
    change the type of equipment that you normally connect to your
    apparatus using the cable of data, support on the joystick. [...]
    Transfer of data - Reach data such as audio or photo files on your computer and transfer them since this one by using a connection by cable of data. To use the Transfer mode of data, take care not to select the type of connection USB in
    the parameters Manage connections of Nokia PC Continuation. Insert a memory board in your apparatus, connect this one to a compatible computer using the cable of data USB and, when the apparatus you request to indicate the mode used, select Transfert of data. In this mode, your apparatus plays the part of peripheral of storage of mass and, on your computer, it seems a removable hard disk."
    The USB cable used is a Nokia device.

  • Scenario for data transfer from CRM to BW

    Hi Guru's,
    Could any one tell me what kind of scenario (e.g. file to file, Idoc to file etc) is used to transfer the data between the following systems using XI interface:
    Also, tell me how we can do it......
    1. CRM to BW
    2. Informatica to BW
    3. R3 to BW
    4. Oracle to BW
    Thanks in advance.  I will assign you the points
    Regards,

    Hi Bharath,
    it mainly depends on:
    1) what you have to transfer, custom data, standard data (for SAP business logic e.g. customer/delivery)
    2) how you need the transfer mode to be (synch/asynch)
    3) the volume of data
    4) the frequency of data transfer
    Consider that a typical scenario for interfacing SAP systems like CRM/R3 with XI is mainly based on IDocs/RFCs/proxy,..
    In general when communicating from XI to BW you should prefer Proxy (the first link explains in details why).
    I suggest you to have a look at these links:
    How to Push Data into BW from XI
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/18dfe590-0201-0010-6b8b-d21dfa9929c9
    How to do BW - XI scenario
    How to do BW - XI scenario.
    XI-BI Integration
    /people/kamaljeet.kharbanda/blog/2005/09/16/xi-bi-integration
    Re: SAP BI and SAP XI integration
    BI-XI Integration
    Informatica to BW
    http://www.informatica.com/FR/solutions/integration/sap/informatica_sap_bw.pdf
    Getting data from external system
    Getting data from external system
    Real World Scenarios of SAP XI
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/e17fdb90-0201-0010-2cb6-fe937f3bfd97#search=%22CRM%20to%20XI%20scenario%20site%3Asdn.sap.com%22
    CRM - XI integration
    XI to CRM XIF Connection
    Kind Regards,
    Sergio

  • Solution for Data transfer from Non-network location

    If i  needed 10 non-networked locations around Australia to submit data (say text files ranging from 20 - 100 mb each) each day to my server, and the data loaded and manipulated into a database in a secure environment, would you be able to describe the key points and a possible solution to this problem ?

    Hi Amar,
    FTP [File Transfer Protocol] alone isnu2019t a viable option to give the insight, security, performance, and, ultimately, the risk mitigation necessary to responsibly conduct business.One of the solution to protecting and transferring sensitive or mission-critical data securely is Managed File Transfer (MFT). Managed File Transfer solutions provide a greater level of security, meet strict regulatory compliance standards and give you the reliability you need in a data transfer solution.
    Points to look for in a solution:
    a.  Providing file transfer transparency throughout your entire organization.
    b. Solution should support the most modern security standards and methodology including SSL encryption, X.509 certificates and proxy certificates.
    c. The solution should streamline the audit process while also being able to access that audit information from a central point, saving you time and money.
    d. Solution should include functionality that allows data to be pre-and post-processed.
    e.  Solutions should ensure that all interrupted file transfers resume where they left off after a connection failure without manual intervention.
    f. Should tightly integrate with your existing job scheduling solution to issue alerts if connections are not re-established after an acceptable time interval.
    g. Should adhere to current security and audit requirements including SOX, GLBA and HIPAA.
    Hope this helps.
    Regards,
    Jimmy

  • Tranform templateu00B4s Excel files into *.txt for Data Transfer Workbench

    I have some problems transforming the data files to import since Data Transfer Workbench.
    I haven't the extructure of de Excel templates of SAP BO.
    What is more important: I'm transforming the data with Access consults, and I use Access for convert the Excel to *.txt files. So, somebody could tell me another way to do this?

    Hello,
    You can have the structure of all DTW templates in C:\Program Files\SAP\Data Transfer Workbench\Templates.
    They are in csv format, but I think this is more easy to save them in txt format (with tab), because you will be able to use "," in the numbers easily.
    For more help on how to fill the templates, you can have a look at DI API help (in the SDK folder). You will find the explanation of every column of your templates.
    HTH,
    Thibault

Maybe you are looking for

  • I upgraded to Mountain Lion and now Firefox doesn't work, also it asked to install Java to run Adobe Illustrator

    I just upgraded my iMac from OS 10.7.5 to 10.8.3. Firefox was my default browser and has all my bookmarks. Now when I try to load a page, the content is all jumbled and doesn't display correctly. I just updated Firefox to 20.0 but it still doesn't wo

  • Help with this div - can I overlap divs?

    Hello there, I used the search function to find an answer to this, but got nothing concrete so thought I should make this thread My problem is shown in the screenshots below. I created a div id for the banner, a div id for the button "home". There is

  • Export from iStopMotion Pro to edit in iMovie 09

    Hi, I'd like to export a time-lapse movie I created in iStopMotion Pro (I started from very high quality JPG's, shot with a Nikon D700), so I can edit it in iMovie 09. Apparantly, iMovie does not import .mov files, so I tried "DV-PAL 16-9". Now, I do

  • Siebel EAI Value Maps

    HI, I need to understand how we use the EAI value Maps for mapping values for external System. I am using Siebel 8.0 and need to map values for 2 fields before sending the SOAP message using Outbound Web Service. I can send it and receive the respons

  • Does Oracle Service Registry Support non SOA artifacts?

    I read through some of the Oracle Service registry documentation and it seems like it only supports storing only these 4 types of artifacts in the registry. Oracle Service Registry provides you with functionality to register the following resources: