Not getting any straight answers for this question!!!!!

Hi All,
This question i've posted before, but i didn't get correct answer. I'm posting it again!!!!!
I'm very confused about the flow of process.
right now i'm working on webmethods. I did worked on lots of message types like 850, 810,856,832,940,997 in X12 and also EDIFACT.......for that past 2 1/2 years.
This question is completely related to SEEBURGER ADAPTER NOT ANY CONVERSION AGENT:
1.
when an EDI message comes into XI it will be converted into EDI-XML format bye seeburger adapter. where we get the prototype of EDI message? Do we have a package or namespace in repository from seeburger which gives all EDI prototypes? or we import as an XSD doc from our local system generated by 3rd party tools?
2.
Do we write a mapping program(EDI-XML 2 IDOC-XML)  with graphical tool or do we have a tool provided by seeburger to write mapping program? I heard that seeburger provides mapping programs(not those modules which converts standard EDI to XML EDI)  which will convert EDI XML 2 IDOC-XML. is this is true?
3.
how do we process EDI file sent by customer? is it ISA level or ST level? because there may be many situations where one ISA has multiple ST's.
Please explain me if possible with one scenario......i read all the links provided about this question so i need a practical example.........
Thanks in advance.

Hi,
Go thru this might help you
http://www.seeburger.com/fileadmin/com/pdf/AS2_General_Overview.pdf
http://www.seeburger.it/fileadmin/it/pdf/2005_04_sapphire_Ferrero_transcript.pdf
http://www.seeburger.com/fileadmin/com/pdf/SEEBURGER_SAP_Adapter_engl.pdf
http://www.seeburger.com/fileadmin/com/pdf/Butler_Group_SEEBURGER_Technology_Audit.pdf
http://www.sap.com/france/company/events/2006/02-01-Automotive-Seeburger.pdf
http://h41123.www4.hp.com/presentations/ISUG/XISeeBurger.ppt
http://www.sap.com/asia/company/events/nwtechdays/presentation/australia-slides/Pre-Built_Integration.pdf
Regards
Agasthuri Doss

Similar Messages

  • I am not getting any notification sounds for facebook version 47423

    I am not getting any notification sounds for facebook version 47423.  Also, how do you change your email address in your profile here in the forum?  Thanking you in advance.

    Try going to setting and go down to facebook. See if you can change anything there. If you can't then go to Sounds(in settings) and try looking for facebook there. i havn't had this problem but that is about the right steps to solving it

  • Not getting any sound alerts for new mail, key lock etc

    I'm not geeting any sound alerts for new email, sent mail, clender alerts etc for my iphone 4. Though all my alerts are on. Also I can't hear the incoming call but the speaker works. I've already upgraded to latest 4.3.3 Any help appriciated.

    Did all that...talked to Apple 5 hours and I did everything they said..they don't kno what the problem is

  • Need answer for this question

    Hi to everybody
      I have a t-code AC01  service purchase request number..
       In that , I have a field "LONG TEXT"...
      if i enter some data into  the Long Text, it directly goes to the database ,
    so How to know the Database-Table and the field...
    Can you tell me the ways to find out the database table and the field....

    hi,
    long text doesnt have any field, place where u enter long text in ac01 ,above it there is t symbol, just double click it it takes u to script editor, its shows u text id,
    language, tdname,object.
    u had to pass this parametrs in to function module read_text to retrive, other wise, create_text to upload,
    check this tables
    The text is stored in table STXH/STXL
    Keys:
    TDID = 'LTXT'
    TDPRAS = <language>
    TDNAME = nr of the service
    TDOBJECT = 'ASMD'.
    check this code for uploading long text.
    DATA: BEGIN OF itab OCCURS 0,
          asnum LIKE asmd-asnum, " Service No
          text(5000)  TYPE c, " Long Text
          END OF itab.
    *DATA: itab1 LIKE itab OCCURS 0 WITH HEADER LINE.
    DATA: BEGIN OF itab1 OCCURS 0,
          asnum LIKE asmd-asnum, " Service No
          sequ  type i,          " Text Sequence
          text(5000)  TYPE c, " Long Text
          END OF itab1.
    To create Long Text lines for CREATE_TEXT function module
    DATA:BEGIN OF dt_lines OCCURS 0.
            INCLUDE STRUCTURE tline. " Long Text
    DATA:END OF dt_lines.
    Variable declarations for CREATE_TEXT function module
    DATA : dl_name TYPE thead-tdname, " Object Name
           dl_lan TYPE thead-tdspras. " Language
    Constants
    Object ID for Long Text of Service Master
    CONSTANTS:c_best TYPE thead-tdid VALUE 'LTXT',
              c_material TYPE thead-tdobject VALUE 'ASMD'. " Object
    for file splitting.
    DATA: start TYPE i,
          len   TYPE i VALUE 92,
          totlen TYPE i,
          n TYPE i.
    PARAMETERS p_file LIKE rlgrap-filename."input file
    At selection-screen on Value Request for file Name
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_file.
    Get the F4 Values for the File
      CALL FUNCTION 'F4_FILENAME'
        EXPORTING
          program_name  = syst-cprog
          dynpro_number = syst-dynnr
        IMPORTING
          file_name     = p_file.
    Start Of Selection
    START-OF-SELECTION.
    *To Upload Flat file
      CALL FUNCTION 'UPLOAD'
        EXPORTING
          filename                = p_file
          filetype                = 'DAT'
        TABLES
          data_tab                = itab
        EXCEPTIONS
          conversion_error        = 1
          invalid_table_width     = 2
          invalid_type            = 3
          no_batch                = 4
          unknown_error           = 5
          gui_refuse_filetransfer = 6
          OTHERS                  = 7.
      LOOP AT itab.
        itab1-asnum = itab-asnum.
        CLEAR: totlen,n, start.
        totlen = STRLEN( itab-text ).
        n = totlen / len.
        n = n + 1.
        DO n TIMES.
          itab1-text  = itab-text+start(len).
          itab1-sequ  = sy-index.
          start = start + len.
          APPEND itab1.
        ENDDO.
      ENDLOOP.
      delete itab1 where text is initial.
      SORT itab1 BY asnum sequ.
      LOOP AT itab1.
        dt_lines-tdformat = '*'.
        dt_lines-tdline = itab1-text.
        APPEND dt_lines.
    Call the Function Module to Create Text
        AT END OF asnum.
          dl_lan = sy-langu.
          WRITE : / itab-asnum.
          CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
            EXPORTING
              input  = itab1-asnum
            IMPORTING
              output = itab1-asnum.
          MOVE itab1-asnum TO dl_name.
          CALL FUNCTION 'CREATE_TEXT'
            EXPORTING
              fid         = c_best
              flanguage   = dl_lan
              fname       = dl_name
              fobject     = c_material
              save_direct = 'X'
              fformat     = '*'
            TABLES
              flines      = dt_lines
            EXCEPTIONS
              no_init     = 1
              no_save     = 2
              OTHERS      = 3.
          IF sy-subrc <> 0.
            WRITE:/ 'Long Text Creation failed for Service No'(001),
            itab1-asnum.
          ELSE.
            WRITE:/ 'Long Text Created Successfully for Service No'(002),
            itab1-asnum.
          ENDIF.
          REFRESH dt_lines.
        ENDAT.
      ENDLOOP.
    regards
    siva.

  • What is the answer for this question?

    For a tree T, let nI denote the number of its internal nodes, and let nE denote the number of its external nodes. Show that if every internal node in T has exactly 3 children, then nE = 2 nI + 1.

    Peter Lawrey wrote:
    How does this question relate to Java Programming?Oh that's a whole unique class of posters here. The type that think "somewhere this touches Java, so it is a Java problem". Even if you are asking how to fix a bug in a piece of actionscript that is being called from a JSP, or a piece of CSS is misbehaving in IE7 which causes an applet to be displayed 10 pixels too far to the right. In this case the homework probably needs to be proven using a piece of Java code.
    Hey, its convenient to ask such unrelated questions in a place where lots of people from different disciplines visit, right? SOMEONE must know the answer...

  • Captivate 7 - Some Users Not Getting 100% of Answers Correct with Question Remediation

    We are using Captivate 7 content to deliver courses via Adobe Connect 9.1.  We are experiencing an interesting issue with question remediation. When a user takes the quiz question and gets the answer wrong, the user is taken back to spot in the course where he/she can review the information.  Once the user is done reviewing the information, he/she is taken back to the question to answer it correctly.  The learner has infinite attempts to get the answer correct.  In theory, the user should always get 100% for the final test score.  We are noticing that some users (10%) actually don’t get 100% of the answers correct according to Adobe Connect transcript reports.
    Is there something we can look at to see what might be causing the incorrect score?  Is there a known issue?
    We publish Captivate 7 content as SWF/HTML 5 on Adobe Connect 9.1.

    Unfortunately, the discussion here led me to the resolution, but is not terribly valuable from a Captivate standpoint.  It turns out that we have a custom database script running on the Adobe Connect back end to correct people who have been left in an "In Progress" state even though they have a passing score and appear to have completed the course.  To avoid the script changing these records to pass, we bumped the passing score to 100%.
    Thanks for the help!

  • I am not getting any sound notification for the FB....iphone running on 6ios....

    i got losts of post ...coz many users are getting same pblm.....can apple solve it asap...

    Try going to setting and go down to facebook. See if you can change anything there. If you can't then go to Sounds(in settings) and try looking for facebook there. i havn't had this problem but that is about the right steps to solving it

  • Why can't the consumer get a straight answer to their question without getting the run around to end up where they started?

    I'm presently using Mozilla 1.7.13, do I have to delete this broswer altogether to install Firefox or with the Firefox overrride the Mozilla 1.7.13?
    == This happened ==
    Not sure how often

    You may also want to look a t SeaMonkey if you have used the Mozilla Suite.
    http://www.mozilla.org/projects/seamonkey/
    Note that Firefox is only a browser and you can look at Thunderbird if you need a mail program.
    http://www.mozilla.org/projects/thunderbird/
    http://kb.mozillazine.org/Transferring_data_to_a_new_profile_-_Firefox

  • Please answer for this question

    public class Qcb90 {
    int a;
    int b;
    public void f() {
    a = 0;
    b = 0;
    int[] c = { 0 };
    g(b, c);
    System.out.println(a + " " + b + " " + c[0] + " ");
    public void g(int b, int[] c) {
    a = 1;
    b = 1;
    c[0] = 1;
    public static void main(String[] args) {
    Qcb90 obj = new Qcb90();
    obj.f();
    I answered 001 as o/p
    But the o/p is 101
    How can this be possible.

    First I have to say: whoever wrote this code need some extensive lessons in HUMAN FRIENDY CODE. Use useful variables name other than one letter.
    You have two methods:
    Method f
    And method g.
    You have to global or public variables a and b.
    Now, in the main method you call the first method f () which assigns zeros to the public variables a and b. it also creates a new array c[] with one slot containing the number 0;
    After that, you call the method g. and pass both b and c[]. Notice that you have over ridden the values of b and c[] because you redefined them again in the header of the method
    public void g(int b, int[] c)So now both b and c[] are not initialized and contain basically nothing.
    Inside the g() method, you assign the public variable a with 1, and the ENTERNAL variable b with 1 (note that b now is not the same after it has been redefined again in the header of the g() method).
    After this, you have printed the out put. a = 1, b = 0, c = 1.

  • I am betting that Shane has the best answer for this question.

    I am a long time user of Final Cut. Recently I worked on my first project using AVID and was very mystified. They said they capture at 15/1 ratio and it seems to be about 31 mbps. So if they were capturing at a 1/1 ratio, that just seems like a very large file for just one minute of footage. Am I crazy or doesn't Final Cut give you a better quality video for far less storage space?

    They said they capture at 15/1 ratio and it seems to be about 31 mbps.
    Yes, that is an "offline" resolution. Like Offline RT is in FCP, or ProRes Proxy. Good only to see what you are cutting. You recapture at full resolution later. This is the very typical and standard Avid workflow that has worked well for decades.
    So if they were capturing at a 1/1 ratio, that just seems like a very large file for just one minute of footage.
    Yes....1:1 is comparable to Uncompressed 10 bit in FCP, which also produces very large media files. Avid also has a DV codec, for capturing DV material, and that is comparable to FCPs DV codec. Lossless, yet small, because they are native DV codecs.
    Am I crazy or doesn't Final Cut give you a better quality video for far less storage space?
    You are crazy. As JIm said, there are many different flavors of codecs. Avid's 1:1 is comparable to FCP's Uncompressed 10-bit. Avid DV is FCP DV. Avid's DNxHD, the preferred codec of choice now, was revolutionary as it gave 1:1 quality at much smaller file sizes. FCP follows suit with ProRes...full uncompressed quality, smaller file size.
    Shane

  • Apple -clueless about its own software !! can anybody give me a straight answer to this ?

    APPLE - clueless about its own software !!! Can anybody please give me a straight answer to this question - how do I zero out my Apple SSD ??
    I have spoken to Apple engineers in-store and via phone support and nobody seems to know how to do it, in fact the guys at the retail store were not even aware that the option for secure erase has been disabled for macs with SSD running Lion. Now im aware that some people will say this is to protect the lifetime of the SSD, but this is irrelevant as Apple SSD's running Lion has TRIM utility. Furthermore to save people's time you cannot do it by externalling booting or by holding down C or CMD+R !
    So, has anyone got a simple method for this, it cant be impossible !
    Please help

    mj25 wrote:
    APPLE - clueless about its own software !!! Can anybody please give me a straight answer to this question - how do I zero out my Apple SSD ??
    I have spoken to Apple engineers in-store and via phone support and nobody seems to know how to do it, in fact the guys at the retail store were not even aware that the option for secure erase has been disabled for macs with SSD running Lion. Now im aware that some people will say this is to protect the lifetime of the SSD, but this is irrelevant as Apple SSD's running Lion has TRIM utility. Furthermore to save people's time you cannot do it by externalling booting or by holding down C or CMD+R !
    So, has anyone got a simple method for this, it cant be impossible !
    Please help
    then if not coming up on google, apple or asking here, then is maybe impossible to do genius. you politeness get you lot of help here.

  • Calling conn.close() not getting any response

    Hi All,
    I am using ActiveMQ
    I am facing a unique issue, my code calls conn.close() method. But it didnt get any response fro 2 days, I think at least I should get a time out exception, isnt it?
    To give you more details my applicaiton which calls this close() is in one network (DMZ) and activemq is running on different (internal) network.
    Can somebody please reply ASAP, as I am not getting any clue to resolve this.
    Thanks and Regards
    Raaghu.K

    The SAP XML Parser was not able to parse the reponse. So - I had to read the data on my own.

  • Forget my rescue e-mail and answers for verification questions what now?

    I did my apple ID many years ago and I m not remeber rescue e-mail probobly it was my ex-girlfriend mail and what is worse i m not remeber my security answers for 3 questions which i did and i want to purchase some apps from store and i cant do that without answering those questions.

    Click here and request assistance.
    (74451)

  • I am signed into my iTunes account.  However, Im asked for answers to security questions I can't remember.  I have clicked to reset through e-mail, yet I am not getting any email from iTunes.  Any advice on fixing this?

    I am signed into my iTunes account.  However, Im asked for answers to security questions I can't remember.  I have clicked to reset through e-mail, yet I am not getting any email from iTunes.  Any advice on fixing this?

    If you are not getting the email, you can contact Apple Support to have your Security Questions reset:
    ACCOUNT SECURITY CONTACT NUMBERS
    Once you get them reset, check your Rescue Email address on Manage Your Apple ID to make sure it is still a functional address. It is not the same as your primary or alternate address.
    Cheers,
    GB

  • When I try to sync my ipad using itunes I get the following message. This iPad cannot be synced. You do not have enough access privileges for this operation. Any ideas how this can be resolved?

    When I try to sync my ipad using itunes I get the following message. This iPad cannot be synced. You do not have enough access privileges for this operation. Any ideas how this can be resolved?

    See if the user tip helps: https://discussions.apple.com/docs/DOC-6562

Maybe you are looking for

  • How can I choose to confirm calendar changes??? - 8120, DM 4.6, outlook 2007

    I use 'Outlook on the Desktop' to keep my outlook calendar showing at home (which is pretty neat by the way).  My family all posts to this calendar so we know who's doing what when.   My teenage kids post their appointments, work days, etc.   My husb

  • MacBook Pro Rebooting on it's own

    Good Morning All. I have a first generation MacBook Pro 1.87ghz dual core. I have recently had my ram upgraded to 2gb and installed Leopard. I have done all the updates and the ram was installed by an authorized service provider. My MBP is just autom

  • Granularity of  authorisation to specific customer numbers required in VA01

    Hi SAP SECURITY community, We need to be able to restrict a particular user to do the following. 1) In VA01, the user should have change, create, display rights when accessing a certain customer number, 2) But when accessing all other customer number

  • Error in upload CSV file format ?

    Hi everyone ! What to do in this case when I've to upload my CSV file (Report 2.14MB & Form 430KB), getting error.Can anybody help me in this regard when the values stored (Numeric+character), my data is considerably long,What I can do that in this r

  • My Apple ID works with everything but I cant use it to log in for facetime!

    Hi, I'm trying to log in with my apple ID to activate facetime, but it always say no connection, any ideas??? My apple ID works with everything else except facetime....