What is QDX for data exchange with SAP

Hi,
Anyone know what is QDX. I was told that it is a Data Exchange Interface (in the higher layer than BAPI). I could not find any relevant information on the Web so far.
Please share with me if you have any information.
Thanks
Andy Tan

Hi,
Anyone know what is QDX. I was told that it is a Data Exchange Interface (in the higher layer than BAPI). I could not find any relevant information on the Web so far.
Please share with me if you have any information.
Thanks
Andy Tan

Similar Messages

  • Can a IDOC be used for data exchange from R/3 to CRM

    Hi All,
    First, can a IDOC be used for data exchange from R/3 to CRM
    I need to update few fields of SAP CRM Sales order with fields from SAP R/3 Work Order.
    To achive this can I use IDOC?
    Or do I update the R/3 sales order from R/3 Work order(using some interface or workflow), so that the sales order data flows from R/3 SO to CRM SO.
    Please respond immediately.
    Regards,
    Gopinath

    IDocs can be processed by the CRM system via XML/XIF adaptor. As this will be most probably a new interface that is not yet set up, it would be easier to change the orders in R/3 via an appropiate FM which should automatically generate a delta download BDoc.
    Even if they are not downloaded automatically a request download (defined via R3AR2 / 3 / 4) should take care of this.
    Hope this helps,
    Kai

  • Middleware technologies used for data exchange in Cloud for Customer system

    Hi Techies,
                     I would like to know what are the different middleware technologies like ALE,EDI and IDOC, Web Services or any other technology plays role in data exchange between SAP ERP and SAP Cloud for Customer system.
    My project includes implementation of SAP Cloud for Sales, I've read many documents and seen various videos for ERP Configuration and Cloud Configuration, I see that there is a standard report that we want to execute and specify the type of data to be exchanged between Cloud for Customer and SAP ERP via SAP NW PI system.
    When executing the report we select the IDOC Type and run the report, so once after execution all data is copied to SAP Cloud for Customer system.
    What about configuration of IDOCS ? Do we need to maintain port, partner profiles, logical system etc ? as usual we do when working on Interface between SAP to SAP systems ?
    Or is it maintained when we make all the communication settings between SAP ERP <-> SAP NW PI <-> SAP Cloud for Customer system ?
    Can anyone help to understand this better ?
    Thanks,
    Gowri Shankar

    Hi Gowri,
    The standard report does exactly that.
    It generates, the ports, partner profiles, RFC destinations and other objects required for communication configuration in SAP to connect to C4C.
    If you are not using HCI, you can directly connect to C4C, otherwise you will have to manually edit the RFC destination and provide the HCI worker node URL.
    Note that this report is part of an Add On which is applicable only after a specific SAP ECC version.
    If you are on lower version, you will have to create them manually.
    regards,
    Anirudh Vyas.

  • Error of data exchange with an external server

    Help to understand.
    There is a client which is connected to a server, data exchange with a server is realized through a method sendData(byte[] sendbytes, String code, int resplen)
    OutputStream socketOutputStream = null;
        public void connect() throws SeedLinkException, IOException {               
            try {           
                String host_name = sladdr.substring(0, sladdr.indexOf(':'));
                int nport = Integer.parseInt(sladdr.substring(sladdr.indexOf(':') + 1));
                // create and connect Socket
                Socket sock = new Socket();
                sock.setReceiveBufferSize(65536);
                sock.setReuseAddress(true);
                sock.setKeepAlive(true);
                sock.connect(new InetSocketAddress(host_name, nport));
                // Wait up to 10 seconds for the socket to be connected
                int timeout = 10;
                int i = 0;
                while (i++ < timeout && !sock.isConnected())
                if (!sock.isConnected()) {
                    String message = "[" + sladdr + "] socket connect time-out (" + timeout + "s)";
                    //sllog.log(true, 0,  message);
                    throw(new SeedLinkException(message));
                // socket connected
                sllog.log(false, 1, "[" + sladdr + "] network socket opened");
                // Set the KeepAlive socket option, not really useful in this case
                sock.setKeepAlive(true);
                this.socket = sock;
                this.socketInputStream = socket.getInputStream();
                this.socketOutputStream = socket.getOutputStream();
            } catch (Exception e) {
                //e.printStackTrace();
                errorLine = "cannot connect to SeedLink server: " + e.getMessage();
                throw(new SeedLinkException("[" + sladdr + "] cannot connect to SeedLink server: "
                        + e));
            // Everything should be connected, say hello
            try {
                sayHello();
            } catch (SeedLinkException sle) {
                try {
                    socket.close();
                    socket = null;
                } catch (Exception e1) {;}
                throw sle;
            } catch (IOException ioe) {
                try {
                    socket.close();
                    socket = null;
                } catch (Exception e1) {;}
                throw ioe;
        }     // End of connect()
    public byte[] sendData(byte[] sendbytes, String code, int resplen) throws SeedLinkException, IOException {
            try {
                socketOutputStream.write(sendbytes);
            } catch (IOException ioe) {
                throw(ioe);
            if (resplen <= 0)
                return(null);        // no response requested
            // If requested, wait up to 30 seconds for a response
            byte[] bytesread = null;
            int ackcnt = 0;               // counter for the read loop
            int ackpoll = 50;                  // poll at 0.05 seconds for reading
            int ackcntmax = 30000 / ackpoll;      // 30 second wait
            while ((bytesread = receiveData(resplen, code)) != null && bytesread.length == 0) {
                if (ackcnt > ackcntmax){
                    errorLine = "no response from SeedLink server to " + (new String(sendbytes,0,sendbytes.length-1));
                    throw (new SeedLinkException("[" + code +
                            "] no response from SeedLink server to '" +
                            (new String(sendbytes)) + "'"));
                Util.sleep(ackpoll);
                ackcnt++;
            if (bytesread == null)
                throw(new SeedLinkException("[" + code + "] bad response to '" + sendbytes + "'"));
            return(bytesread);
        }    // End of sendData()
        The given code is a part j2ee Web application.
    Why the specified method normally works in Tomcat a server,
    and at all refuses to work in Java System Application Sever 8 or 9. (data exchange does not occur)
    I can not understand in what the reason ...

    José,
    The 6036E User Manuals gives the best definition of the STARTSCAN, TRIG, and CONVERT* signals as well as their relationship to eachother. See 4-20 Connecting Timing Signals of the User Manual for this information as well as timing diagrams.
    NI 6034E/6035E/6036E User Manual
    http://digital.ni.com/manuals.nsf/websearch/B935FC073150374F86256BF10073995A?OpenDocument&node=132100_US
    You are correct that configuring your board for external timing is just as simple as connecting your external clock to a PFI line and using it as the STARTSCAN signal. The clock output of your GPS receiver will now be defining when scans are perform on your 6036E due to the synchronization between the two devices. The only synchronization issue you may encounter is
    propogation delay. This will be a factor of the cable length connecting your GPS clock to the 6036E.
    Regards,
    Justin Britten
    Applications Engineer
    National Instruments

  • Tip for Data Merge with Multiple Records (labels, etc.)

    I have seen many InDesign Data Merge questions about how to create sheets of mailing labels, especially the problem of getting only one label per page, when you need 30 or more.
    Adobe's instructions are poor and incomplete in that InDesign doesn't step out the records from a data source - it steps out the FRAMES that contain the data field placeholders.
    That is why you only need to place a text or image frame once on a single page - during the datamerge, InDesign will create the additional FRAMES for each record, and it will create the pages required to hold them.
    You do have to set the desired spacing on the
    If you create the frame on a Master page, ID allows you to update the data source (when it changes) in the Data Merge tool panel.
    These are very nice and robust features, but the documentation for them is confusing to many people.
    You will find more great in-depth help  for Data Merge, with screen captures and attachments, here in the forum.

    For a multiple record merge you need one set of placeholders, then set the margins and spacing in the merge options so the positioning is correct.
    Warning: Using Preview in a multiple record merge will corrupt the file. If you press the preview button, Undo after looking at the preview, then merge without using preview.

  • Plz send step by step process  for Outlook integration with SAP

    Hi Basis experts
    Plz send step by step process  for Outlookexpress  integration with SAP.
    plz send if anybody have at the earliest.
    advance Thanks& regards to all
    Supriya

    Dear Supriya,
    If it is in SAP then please go through the below mentioed site
    http://www.duet.com/
    please tell me where in you want to integrate?
    Outlook Configuration with SAP-EP is a PPT file.
    please mail me your id i will send it accross.

  • Standard XML schema for Vendor data exchange between SAP and other system

    Is there a SAP standard way of XML schema that we exchange between SAP and other system? Please let me know.
    Thanks.

    See SAP Interface Repository (http://ifr.sap.com).
    My proposal is to leave old SAP connectors staff and use SAP Exchange Infrastructure. There is a support of industry XML standards in XI 3.0 like xCBL.

  • How to use the (gigabit) ethernet for data exchange and WLAN for Internet?

    I have following setup:
    - MB Pro SL 10.6
    - Desktop PC Windows 7
    - Wireless Printer
    - Netgear WLAN Router
    At the moment all my data and internet communication is done via the WLAN router on 192.168.1.x That works fine and I can exchange data, print and surf the internet. My problem is that big data exchanges > 10GB take ages via my 54Mbit WLAN Connection. Furthermore the WLAN router is far away from the PC so that it is not possible to plug in the Ethernet Cable of the PC and the MB to the router.
    Now I've thought that there must be a possibility to use a 1 gigabit (cross) cable (like in the 90s ;)) to connect the MB and the PC directly. I know that I will need different IP ranges and so on, but I have no clue how to do that.
    The final solution should be that the setup stays as it is (data exchange, print, internet via WLAN) and that additional it is possible to connect PC and MAC some times for big transfers via a Gigabit ethernet cable. because I only want to connect those two machines I don't think that a switch makes any sense, or?
    Does someone know how to do that?
    Thanks a lot in advance!
    Message was edited by: whitepowder

    Well if it were 2 Macs, I would configure each Mac with a fixed IP address (same subnet as my router, but outside of the routers DHCP assignment range).
    I would give the same fixed IP address to both my Airport AND my ethernet interfaces. I would do the same to the other Mac using another fixed IP address.
    My network service order would have the ethernet higher than the Airport on both systems.
    Normally I would use WiFi, so ethernet would be idle and out of the loop.
    When I wanted faster transfers, I would connect each Mac to the router via their own ethernet cables, and the Mac would automatically detect that the ethernet became available, and would switch to use the faster ethernet. Since Airport and ethernet have the same fixed IP address, I could even do this in the middle of a file transfer and no one would notice as packets were always going to/from the same IP addresses, just using a different route, which doesn't matter.
    NOTE: I've been doing this on Macs since Mac OS X 10.3 days (or was it 10.2; to long ago to remember).
    However, you have thrown a Windows system into the mix, and since I do not use Windows, I do not have a clue about what can be done on Windows. However, maybe this will give you some ideas, and asking the right questions in a Windows oriented forum may provide the Windows side of this setup.
    Sorry, that is the best I can do. Maybe my reply will encourage someone else to offer their approach.

  • Is the data exchanged with the Apple Servers during a manual/itunes ios update any different between a PC and Mac?

    When performing an ios update with an ipsw file, data is exchanged with an apple server to complete the update to the newer ios version.  Without an internet connection to the apple server the update does not complete.
    Can and Apple software engineer please answer if there is anything done differently during this data exchange process between a Macintosh vs a PC?  If not here within the forum, can someone provide me a phone number, email or mail address to contact to get this information?  The answer is very important to the organization that I belong to.
    From a privacy standpoint, I assume the device name and perhaps some other data is submitted to verify the identity of the device being updated but is any personal information submitted like email, contacts or any other data potentially typed by the user sent during the connection to the Apple update server?
    My understanding is that user generated data, settings and apps are handled entirely with the backup file if ones is created?
    Dan

    Apple does not participate in these forums, so you will not get a reply from an Apple engineer, nor will there be any way for you to contact anyone in the iTunes or iOS engineering team.
    I do not, however, think that there is any difference between the Mac and Windows versions of iTunes in what information they transmit to Apple's services. In either version no personal information of any sort is sent when only doing an update to iOS, only to the best of my knowledge the device identification so that the correct update file can be delivered. The only time any of your contacts or any other such information would be sent to Apple's servers is if you are synchronizing via iCloud, and emails only if you use iCloud's email service.
    My understanding is that user generated data, settings and apps are handled entirely with the backup file if ones is created?
    Except for synchronizing with iCloud, that would be correct. This may be of interest:
    http://support.apple.com/kb/HT4865
    Regards.

  • Steps for Data extraction from SAP r/3

    Dear all,
    I am New to SAP Bw.
    I have done data extraction from Excel into SAP BW system.
    that is like
    Create info objects > info area> Catalog
                                                --> Character catalog
                                                --> Key catalog
    Create info source
    Upload data.
    create info cube
    I need similar steps for data extraction for SAP R/3
    1. when data is in Ztables ( using Views/Infosets/Function etc)
    2. When data is with Standard SAP using Business Content.
    Thanks and Regards,
    Gaurav Sood

    hi,
    chk the links
    Generic Extraction
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/84bf4d68-0601-0010-13b5-b062adbb3e33
    CO-PA
    http://help.sap.com/saphelp_46c/helpdata/en/7a/4c37ef4a0111d1894c0000e829fbbd/content.htm
    CO-PC
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/fb07ab90-0201-0010-c489-d527d39cc0c6
    iNVENTORY
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/f83be790-0201-0010-4fb0-98bd7c01e328
    Extractions in BI
    https://www.sdn.sap.com/irj/sdn/wiki
    LO Extraction:
    /people/sap.user72/blog/2004/12/16/logistic-cockpit-delta-mechanism--episode-one-v3-update-the-145serializer146
    /people/sap.user72/blog/2005/01/19/logistic-cockpit-delta-mechanism--episode-three-the-new-update-methods
    /people/sap.user72/blog/2005/02/14/logistic-cockpit--when-you-need-more--first-option-enhance-it
    /people/sap.user72/blog/2004/12/23/logistic-cockpit-delta-mechanism--episode-two-v3-update-when-some-problems-can-occur
    /people/sap.user72/blog/2005/04/19/logistic-cockpit-a-new-deal-overshadowed-by-the-old-fashioned-lis
    Remya

  • LDAP  connector for Customer masters With SAP..........

    Hi Experts ,
    Our requirement is we have certain applications which are integrated
    with SAP Portal.
    For these applications Data sources are maintained in two different
    LDAPS.
    One LDAP (enterprise directory) is for USER data and the other LDAP for
    Customer  data(in this senario customer  data is nothing but business
    partner role oragnization).
      MY task is to build an interface for Customer data with LDAP sync.
    So here the question is, Can we use SAP standard LDAP connectors to
    make connectivity to the enterprise directory(LDAP)and push business
    partners data from CRM to the enterprise directory.
    In Standard SAP system which are standard LDAP connectors support
    this functionality?
    Please advice me and also let me know if we have any SAP notes for this
    senario.
    Best Regards
    Prasad

    Thank you very much for the useful link Martin. Anyway, there are some things that I cannot find for NX Unigraphics integration:
    In the wiki you can find
    You can download the CAD-Integration-Software from http://service.sap.com/swdc and then goto
    Installations and Upgrades > Supplementary Components for Cross Industry Solutions > Life-Cycle Data Management > SAP PLM Integrations > select the desired integration
    But that path does not exist in SAP download software page.
    Also, in the availability matrix I can find integration with several systems (catia, solid edge, autocad...) but not unigraphics.
    Could you please provide some more information on the topic?
    Thanks a lot.
    Neil

  • Master Data Management with SAP

    Hi
    Master data management in SAP platform is in Compilation
    of report structure where you have additional variables such as field documentation code a field processor and
    a system capable to do this compilation./In other words SAP Master Data Management is a code programmer In Java
    . Master data Mangement is a programmer's capacity to do
    his compilation in Java. Vb C++ is the system mangement architecture. Code is fabricated in this environment for Sap Master Data Management
    K Balakrishnan

    Hello Michelle,
    First of all, MDM Admin UI and SRM-MDM Search UI both are in same sca file (SRMMDMCAT20SP03P05.sca) and there is another sca file with API and MDM Connector (MDMJAVAAPI06_2.sca).
    Remember that files name might be change as per the business content version.
    So there are two file which you need to deploy. You can deploy these two file on any Web Application Server (WAS 7.0 and Above) using Software Deployment Manager (SDM) of SAP NW AS J2EE installation.
    For further information about these files, you can refer the SAP Note- 1057316 -- SRM-MDM Catalog 2.0 - Installation & Configuration.
    For checking the successful deployment of these SCA files, you can check with the mentioned below URL:
    http://ServerName:PortNo/webdynpro/dispatcher/sap.com/tcmdmsrmcat~uisearch/MDM_SRM_UI_App
    go to the above link, try to connect with the MDM Server which you have installed. After connecting the MDM Server, Choose your SRM-MDM Catalog repository and try to connect with the user as "Master" with blank pwd. If you are able to login in the repository, it means you have successfully deployed the correct sca files.
    For further details regarding this scenario, you can refer my answer in below thread:
    installion of SRM-MDM Catalog 2.0
    I hope, this will clear your doubt.If you need further help, Kindly update us.
    TNR,
    Saurabh...

  • How to configure for GPlus Adapter with SAP Phone and SAP CRM

    Hi All Basis Adm,
                   Please consider as an urgent basis i need the information that how to configure  GPlus Adapter with SAP Phone and SAP CRM . My server is CRM 5.0 (kernel 7) with Oracle Database. This information is require to connect Webclient to Sap Phone with GPlus Adapter (Genesys Adapter 7.1).  If u have any document regarding mentioned above than that will be acceptable. 
    Regds,
    Govinda

    Hi Prasad,
    In you case, it's a file to file scenario.
    Go thro' this link for a solution:-
    /people/venkat.donela/blog/2005/03/02/introduction-to-simplefile-xi-filescenario-and-complete-walk-through-for-starterspart1
    /people/venkat.donela/blog/2005/03/03/introduction-to-simple-file-xi-filescenario-and-complete-walk-through-for-starterspart2
    Regards.
    Praveen

  • Custom InfoObject for date, problem with offset

    Hi all,
    I have a BEx reports presenting 0CALWEEK and another IO I created for dates.
    This IO has the same properties as 0CALWEEK (but it was not created as a reference of 0CALWEEK).
    In my report I'd like to use offsets for both IO's.
    It works perfectly for 0CALWEEK, but it doesn't work at all for the other IO. Actually, only the first offset is shown. For all others weeks, I get "#".
    Additionally, I made some calculations based on the week difference (using formula variables). Of course, every time a "#" appears, the calculation cannot be done (otherwise it works like it should).
    Could anybody help me out with this?
    Thanks in advance

    Hi Jagadeesh,
    did I understand you correctly that:
    1) offsets only work with standard characteristics? (this seems really weird to me...)
    2) if I want to use offsets with with Z_* characteristic, I will need ABAP?
    The problem is that I don't know anything about ABAP.
    Do you know any "typical" code to use to resolve this type of problem?
    Where do I have to use this code: in the query, in the IO, in a start routine somewhere?
    Thanks

  • Using Data Integrator with SAP BI 7.0

    Hi,
    We're currently using Data Integrator Version 11.7.2.0(using SAP ABAP adapter, BW adapter). Our primary data source is SAP R3 version 4.7 and SAP BW 3.5.
    We're planning to upgrade to ECC 6.0(from SAP R3 4.7) and BI 7.0(from BW3.5).
    I'm trying to determine if it will be necessary to upgrade Data Integrator also.
    Can anyone tell me if Data Integrator Version 11.7.2.0 is compatible with  SAP BI 7.0?
    any document and advice will help us.
    Thanks in advance,
    Kyung Woo, Nam

    Compatible? Likely.
    Supported? No.
    We have optimized the BW handling is DI 12.2 a lot, so do yourself a favor and upgrade to this version.

Maybe you are looking for

  • How to set "Borland L&F" in  my Application

    I can set Metal L&F like this: try{ UIManager.setLookAndFeel("com.sun.java.swing.plaf.metal.MetalLookAndFeel"); }catch(Exception e){e.printStackTrace();}; JBuilder 9 includes "Borland L&F" wat parameter have i to provide to UIManager.setLookAndFeel(?

  • About the iPhone and it's "lack of basic features"

    There are SO MANY rants going on in this discussing board about the iPhone lacking "basic features" of a cellphone. Here is my response to all of them at once. (I know this has nothing to do with user-to-user technical support, but the topic is discu

  • Error While Running Query in SQ00 in Prod Variant Not Standard Created.

    Dear Gurus, when i am running a Query in Sq00 T-code it will display a Error message the Error is "Variant Standard Not Created" or The Field String "R01" Contains No fields " some user is changing in this query so is it possible to retrieve the old

  • Custom page session not working

    Hi All, I have modified custom.jsp file to customize BI launchpad, where in this page I put code to display logon form and after form submission it will go to Action.jsp to validate credentials using below code. // If no session already exists, logon

  • How to clear cache, temporary files, cookies in Firefox five

    how do I go about clearing the cache, temporary files, and cookies in the new version of Firefox five. The tools and techniques in the old menu bar were developed over many years and are useful to some people some of the time. When you make major cha