How to send XI a record from GDS which is either a Flat or XML file.

Dear All,
I am working on a GDS scenario. I have created a GTIN manually in GDS and now want to register it to a data pool. As this is an internal project, I do not have connection to any pilot client and hence we are using a dummy destination data pool number of 1Sync.
As per my basic understanding of this Scenario, It is still possible for me to "Register" a GTIN and an XML file will be generated with the GTIN details. 
However, when I do "Register" a GTIN, I get a Register error "Failed to send message, reason" Exception in method gDSDPOut"
I have a few Queries:
1. Is any XML generated on clicking the Register Button?
2. What is the functionality of the " Register" Button? Does it send the XML to XI system directly.If the XML is created, how and where should I locate it to see the content.
Can any of the experts who have worked on this scenario please validate my understanding.Can anybody please share some details on how to proceed.
Thanks & Regards.
Sumit Khanduri

Hi Sumit,
I do not the exact solution to your problem statement but may be these links may help
Kindly go through them:
GDS
Re: Global Data Synchronization
Hope It Helped,
Thanks & Regards
Simona Pinto

Similar Messages

  • How to send XI a record from GDS which is either a Flat or XML file format.

    Dear All,
    I am working on a GDS scenario. I have created a GTIN manually in GDS and now want to register it to a data pool. As this is an internal project, I do not have connection to any pilot client and hence we are using a dummy destination data pool number of 1Sync.
    As per my basic understanding of this Scenario, It is still possible for me to "Register" a GTIN and an XML file will be generated with the GTIN details.
    However, when I do "Register" a GTIN, I get a Register error "Failed to send message, reason" Exception in method gDSDPOut"
    I have a few Queries:
    1. Is any XML generated on clicking the Register Button?
    2. What is the functionality of the " Register" Button? Does it send the XML to XI system directly.If the XML is created, how and where should I locate it to see the content.
    Can any of the experts who have worked on this scenario please validate my understanding.Can anybody please share some details on how to proceed.
    Thanks & Regards.
    Sumit Khanduri

    Hi Sumit/SDNer's
    1. Is any XML generated on clicking the Register Button?
    2. What is the functionality of the " Register" Button? Does it send the XML to XI system directly.If the XML is created, how and where should I locate it to see the content.
    I am also having the same problem. How do I see the XML file.
    Please answer ASAP.
    BR
    Deepak

  • How to fetch all the records from ztable

    Hi 
    My program is outbound program.
    According to the requirement i have to fetch all the records from ztable which are not tranmitted before to the third party and once the records are extracted and written to output file they will be marked as 'X' in the "status" field of that ztable for the next days run.
    How to fetch the records.Please suggest me.
    Thanks,
    Neelima

    HI,
    Fetch all the records whose status is equal to 'X' as whatever data is sent to third party system is marked as 'X' in status field of table after sending.
    You need to first fetch the data into internal table using the select statement where status EQ space. You get the data which is not yet transmitted to third part. And later in the program after trasmitting the data to third party modify the Records in the DB table which are transmitted with Staus eq 'X'.

  • How to send Itune gift card from UK to Malaysia?

    How to send Itune gift card from UK to Malaysia? Would like to send it as a gift to my Malaysia friend, However, store officials said that itune card bought in UK are only for UK account. Is that true?

    They're correct. If desired, send the money with an international cheque instead of through iTunes.
    (126705)

  • How can  distribute 5 lakhs records from sap R/3 setup tables ?

    How can  distribute 5 lakhs records from sap R/3 setup tables in to multiple  requests in sap BI?

    Hello,
    what is "lakhs" ?
    Please use plain English words on a world wide forum...
    Regards,
    Olivier

  • How to write jsp select record from Oracle  divide per page , about 50 reco

    Dear Expert,
    How to write jsp select record from Oracle divide per page , about 50 record per page.
    Thank you very much.

    I wish I could, but there is no single sign on module available for Fusion, also, so called Fusion is yet another Word With Big Letters, behind it there is yet another OC4J ( now Oracle switched to Weblogic though) container with bunsh of Oracle apps residing in it.
    Generally speaking, neither Fusion nor Oracle Apps user database does not have any single authentication module available out of the box to integrate user database.
    It's a long sad story running straight from Oracle Apps 11.0.5.
    That's why I've created JAAS single sign on login module and used it ever since at OC4J 10.2 and onwards at OC4J 10.3
    Back to the topic: to develop Apps and test them externally using the session bean I've isted above, one need to copy certain libraries from Oracle Apps server, then add them as libraries for JDeveloper project.
    Here is the complete list:
    oracle.apps.fnd.cache
    oracle.apps.fnd.cache
    oracle.apps.fnd.common
    oracle.apps.fnd.functionSecurity
    oracle.apps.fnd.metadata
    oracle.apps.fnd.security
    oracle.apps.fnd.util
    oracle.apps.jtf.cache
    oracle.apps.jtf.security
    Edited by: Faceless on Nov 26, 2009 3:04 AM

  • Creating BOM using BDC :How to display no of records from flat file under

    Hi,
          How to display no of records from flat file under one (Alternative BOM) vertically.
        When i execute, the records are replacing one by one.
    Here my coding:
    report ZBOM1
           no standard page heading line-size 255.
    *include bdcrecx1.
    DATA: BEGIN OF bdc OCCURS 0,
           matnr(18),
           werks(4),
           stlan(1),
          END OF BDC.
    DATA: BEGIN OF BDC1 OCCURS 0,
           idnrk(18),
           MENGE(18),
           MEINS(3),
           postp(1),
          END OF bdc1.
    DATA: BEGIN OF BDCDATA OCCURS 0,
             matnr(18),
             werks(4),
             stlan(1),
             idnrk(18),
             MENGE(18),
             MEINS(3),
             postp(1),
             posnr(4),
          END OF BDCDATA.
    data: ibdcdata type  standard table of bdcdata WITH HEADER LINE.
    *start-of-selection.
    CALL FUNCTION 'GUI_UPLOAD'
      EXPORTING
        FILENAME                      = 'C:\Documents and Settings\dilipkumar.b\Desktop\soft.txt'
       FILETYPE                       = 'ASC'
       HAS_FIELD_SEPARATOR            = ','
      HEADER_LENGTH                 = 0
      READ_BY_LINE                  = 'X'
      DAT_MODE                      = ' '
      CODEPAGE                      = ' '
      IGNORE_CERR                   = ABAP_TRUE
      REPLACEMENT                   = '#'
      CHECK_BOM                     = ' '
      VIRUS_SCAN_PROFILE            =
      NO_AUTH_CHECK                 = ' '
    IMPORTING
      FILELENGTH                     =
      HEADER                         =
      TABLES
        DATA_TAB                      = BDCDATA
    EXCEPTIONS
      FILE_OPEN_ERROR               = 1
      FILE_READ_ERROR               = 2
      NO_BATCH                      = 3
      GUI_REFUSE_FILETRANSFER       = 4
      INVALID_TYPE                  = 5
      NO_AUTHORITY                  = 6
      UNKNOWN_ERROR                 = 7
      BAD_DATA_FORMAT               = 8
      HEADER_NOT_ALLOWED            = 9
      SEPARATOR_NOT_ALLOWED         = 10
      HEADER_TOO_LONG               = 11
      UNKNOWN_DP_ERROR              = 12
      ACCESS_DENIED                 = 13
      DP_OUT_OF_MEMORY              = 14
      DISK_FULL                     = 15
      DP_TIMEOUT                    = 16
      OTHERS                        = 17
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    *perform open_group.
    loop at bdcdata.
    perform bdc_dynpro      using 'SAPLCSDI' '0100'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'RC29N-STLAN'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '/00'.
    perform bdc_field       using 'RC29N-MATNR'
                                  'SOFTDRINKS'.
    perform bdc_field       using 'RC29N-WERKS'
                                  'WIND'.
    perform bdc_field       using 'RC29N-STLAN'
                                  '1'.
    perform bdc_field       using 'RC29N-DATUV'
                                  '16.09.2008'.
    perform bdc_dynpro      using 'SAPLCSDI' '0110'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '/00'.
    perform bdc_field       using 'RC29K-BMENG'
                                  '1'.
    perform bdc_field       using 'RC29K-STLST'
                                  '1'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'RC29K-EXSTL'.
    perform bdc_dynpro      using 'SAPLCSDI' '0111'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'RC29K-LABOR'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '/00'.
    perform bdc_dynpro      using 'SAPLCSDI' '0140'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'RC29P-POSTP(01)'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '=FCBU'.
    perform bdc_field       using 'RC29P-IDNRK(01)'
                                  BDCDATA-IDNRK.
    perform bdc_field       using 'RC29P-MENGE(01)'
                                  BDCDATA-MENGE.
    perform bdc_field       using 'RC29P-MEINS(01)'
                                  BDCDATA-MEINS.
    perform bdc_field       using 'RC29P-POSTP(01)'
                                  BDCDATA-POSTP.
    perform bdc_dynpro      using 'SAPLCSDI' '0130'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '/00'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'RC29P-POSNR'.
    perform bdc_field       using 'RC29P-POSNR'
                                   BDCDATA-POSNR.            "'0010'.
    perform bdc_field       using 'RC29P-IDNRK'
                                  BDCDATA-IDNRK.             "'15'.
    perform bdc_field       using 'RC29P-MENGE'
                                  BDCDATA-MENGE.             "'1'.
    perform bdc_field       using 'RC29P-MEINS'
                                  BDCDATA-MEINS.             "'ml'.
    perform bdc_dynpro      using 'SAPLCSDI' '0131'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '/00'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'RC29P-POTX1'.
    perform bdc_field       using 'RC29P-SANKA'
                                  'X'.
    *perform bdc_transaction using 'CS01'.
    *perform close_group.
    CALL TRANSACTION 'CS01' USING IBDCDATA MODE 'A' UPDATE 'S'.
    REFRESH IBDCDATA.
    endloop.
           Start new screen                                              *
    FORM BDC_DYNPRO USING PROGRAM DYNPRO.
      CLEAR iBDCDATA.
      iBDCDATA-PROGRAM  = PROGRAM.
      iBDCDATA-DYNPRO   = DYNPRO.
      iBDCDATA-DYNBEGIN = 'X'.
      APPEND ibDCDATA .
    ENDFORM.
           Insert field                                                  *
    FORM BDC_FIELD USING FNAM FVAL.
    IF FVAL <> NODATA.
        CLEAR iBDCDATA.
        iBDCDATA-FNAM = FNAM.
        iBDCDATA-FVAL = FVAL.
        APPEND iBDCDATA .
    ENDIF.
    ENDFORM.

    Hi,
    the BDCDATA structure must be fnam, fval,dynbegin,dynpro,program.
    You have to declare like this and pass this in your CALL TRANSACTION statement.
    Please give some other table name for BDCDATA you declared for and also for IBDCDATA.

  • Can anybody tell me how to send/receive  the sms from java application

    Hi All,
    Can any body tell me, how to send/receive the sms from java application to mobile phones.
    I have installed the jsms engine and when i try to connect to the mobile device ,the jsms server is giving
    the following error.
    Cannot connect to GSM Device, error : -11

    Which jsms? Google finds several.
    Try the website where you downloaded it.

  • Can any body tell me, how to send/receive the sms from java application

    Hi All,
    Can any body tell me, how to send/receive the sms from java application to mobile phones.
    I have installed the jsms engine and when i try to connect to the mobile device ,the jsms server is giving
    the following error.
    Cannot connect to GSM Device, error : -11

    The best place to ask your question is at the JSMS website, forum or mailing list since this is no error that directly comes from a class belonging to the core Java classes.

  • How to send sms to mobile from tomcatserver using java code?

    Hi,
    Could you please let me know that,
    How to send sms to mobile from tomcatserver using java code? Please provide the code snippet.
    Thanks in advance.

    Yes, but something needs to send that message. You can't just take an arbitrary computer and send an SMS, it does not have the hardware to do that.
    So either you have a mobile through which you do that or more likely - you use some sort of online service to do it. Whatever choice you make will determine what code you will have to write to get it done. Nobody is going to deliver the code to you, that's your job. It is also your job to figure out what service you are going to use.

  • How to send SMS thru SMPP from PL/SQL

    How to send SMS thru SMPP from PL/SQl or forms application. SMPP interface setuped in the SMSC. Requirement is send to SMS's to custoemrs thru our forms application.

    How to send SMS thru SMPP from PL/SQl or forms application. SMPP interface setuped in the SMSC. Requirement is send to SMS's to custoemrs thru our forms application.

  • How to send acknowledgement containing KUNNR from ECC to PI to MDM

    Hello Experts,
    I have a scenario of syndicating customer/vendor record from MDM system to ECC system using PI. File to IDOC. Since Customer and Vendor number ranges are internal to ECC system, after posting the customer and vendor record, we need to get the KUNNR or LIFNR back to MDM so that later updates using the key can be issued.
    For Posting we have used DEBMDM in MDM output and mapped it to ADRMAS and DEBMAS for Customers and CREMDM for vendor outbound and mapped it to ADRMAS and CREMAS.
    Now I want to understand what would be the best way to get the Customer or Vendor number back in MDM?
    Using ALEAUD? Enhancing it?
    or using some event mechanism which will post the DEBMAS/CREMAS back from ECC to PI?
    Thanks in anticipation.
    Regards,
    Ahmed

    Hi,
    check this ..
    SOAP for IDOC demystified
    http://wiki.sdn.sap.com/wiki/display/XI/UsingRequestResponseBeanModuleinFILE+Adapter
    Cheers
    Sunil.

  • Delete records from tableA which are not in tableB

    Table A contains milions of records which is the best way to delete records from tableA which are not in tableB
    delete from tableA where empno not in (select empno from tableb)
    or
    delete from tableA where empno not exists (select empno from tableb
    where b.empno=a.empno)
    any help

    Hi
    If you can do this, do with this:
    create table tableC
    as select a.*
    from tableA a,
    (select empno from tableA
    minus
    select empno from tableB) b
    where a.empno = b.empno;
    drop table tableA;
    rename table tableC to tableA;
    Ott Karesz
    http://www.trendo-kft.hu

  • How do I add a movie from my laptop to iTunes, what should be the file extension.

    How do I add a movie from my laptop to iTunes, what should be the file extension.

    The extension is usually .mov, .m4v, or .mp4.   But you can't just change the extension.  The movies have to be encoded in a particular fomat.  Anything downloaded from iTunes or plays in Quicktime player will be fine.

  • How can I deactivate a device from Sync, which is not available already?

    How can I deactivate a device from Sync, which is not available already? It would be good to have a list of my synced devices.

    '''To deactivate synced devices:'''
    1. Open the Sync options window.
    2. Click on Deactivate This Device. A prompt will appear.
    3. Click Reset All Information to confirm. Your device's data will no longer be synced with the server's Sync data and you'll be logged out of your Sync account.
    For more Information on Adding, renaming and deactivating your devices
    please follow the link [https://support.mozilla.org/en-US/kb/how-do-i-manage-my-firefox-sync-account?esab=a&s=sync+devices&r=0&as=s#w_adding-renaming-and-deactivating-your-devices Managing Sync Devices]

Maybe you are looking for

  • Can't Move Objects, Can't Uninstall CC

    I'm running Adobe CC on Mac OS X Yosemite. I've got variations on the same problem, but the main thrust is: I can't move objects. More detailed: I booted up InDesign this morning and started working in it. All of a sudden, I couldn't move any of my o

  • I want a push button for line items in my sales order entry screen.

    Hi, I want a push button for line items in my sales order entry screen. How can I do so? Thanks.

  • HT201274 i forgot my passcode please help

    can someone help me what to do....i forgot my passcode...thanks if the answer is to restore...how you do this???

  • Customer Interaction Center -- MSA

    Dear Colleagues, The scenarion is: Sales Representative has created Activity (Meeting) in MSA. By default logged in user will be taken as fuction "Sales Representative" in 'Person responsible' tile. I have added one more employee in this tile as fuct

  • Photoshopcs6  merge layers function moving images after merge

    I'm trying to create a tiled texture using a seamless image. too bad its bricks. ive been having this issue throughout all of the photoshop steps in this experience. I'm pasting another image of the same before it in a new layer. merging it. created