Information Regarding ALE

hi folks...
           i haev a requirement regarding ALE configuration...reqirement goes like this....once you create sales order in Va01, the daet should go to other SAP system through IDOCS automatically/....is it possible..if so can any one help me the configuration steps to acheive so.......if possible pls prvide me any step by step docs...thnx in advance...
                        santosh....

Hi ,
1. Check any badi or userexit is exit for sales order.
2. In this exit or badi put the code which send idoc.
3. I have one program which send idoc ..i am sending purchase requistion idoc  to other system.Check it.
*& Report  Z_ARIBA_PURC_REQ_PULL                                       *
REPORT  Z_ARIBA_PURC_REQ_PUL no standard page heading.
**********************TABLE DECLARATION*******************************
TABLES : EBAN, EBKN, T024E.
*********************VARIABLE-DECLARATION****************************
---------> Segment Name <----------
CONSTANTS:
  C_Z1APRHDR LIKE EDIDD-SEGNAM VALUE 'Z1APRHDR',
  C_Z1APRITM LIKE EDIDD-SEGNAM VALUE 'Z1APRITM',
  C_Z1APRSPT LIKE EDIDD-SEGNAM VALUE 'Z1APRSPT',
**************--> Idoc Type <--
  C_PR_IDOC_TYPE like EDIDC-IDOCTP value 'ZARIBAPR'.
******************INPUT PARAMETERS DECLARATION************************
PARAMETERS : P_BANFN LIKE EBAN-BANFN,
             P_MESTYP LIKE EDMSG-MSGTYP OBLIGATORY,
             P_LOGSYS LIKE TBDLST-LOGSYS.
Data declarations
DATA: T_EDIDD          LIKE EDIDD OCCURS 0 WITH HEADER LINE.
DATA: T_COMM_IDOC      LIKE EDIDC OCCURS 0 WITH HEADER LINE.
DATA: T_CONTROL_RECORD LIKE EDIDC OCCURS 0 WITH HEADER LINE.
DATA: T_PR_HDR         LIKE ZARPRHEADER,
      T_PR_ITEM1       LIKE ZARPRITEM,
      T_PR_SPLIT1      LIKE ZARPRSPLIT.
DATA : BEGIN OF T_PR_ITEM,
         RQNUM TYPE BANFN,
         BNFPO(5) TYPE C,
         FLIEF TYPE FLIEF,
         SUPLC TYPE FLIEF,
         CONID TYPE FLIEF,
         DELTA TYPE ERNAM,
         LFDAT TYPE LFDAT,
         MATKL TYPE MATKL,
         MENGE(15) TYPE C,
         PREIS(15) TYPE C,
         WAERS(5) TYPE C,
         MEINS(3) TYPE C,
         WERKS TYPE WERKS_D,
         MATNR TYPE MATNR,
         TXZ02 TYPE MAKTX,
         IDNLF TYPE IDNLF,
         SUPAP(20) TYPE C,
         EPSTP TYPE EPSTP,
         KNTTP TYPE KNTTP,
         EKGRP TYPE EKGRP,
         STATU TYPE STATU,
         BEDNR TYPE BEDNR,
       END OF T_PR_ITEM.
DATA : BEGIN OF T_PR_SPLIT,
          BANFN TYPE BANFN,
          BNFPO(5) TYPE C,
          ZEBKN(2) TYPE C,
          VPROZ(3) TYPE C,
          NETWR(18) TYPE C,
          AMTCR(18) TYPE C,
          MENGE(17) TYPE C,
          KOSTL TYPE KOSTL,
          SAKTO TYPE SAKTO,
          ANLN1 TYPE ANLN1,
          PS_PSP_PNR(8) TYPE C,
          APLZL(40) TYPE C,
       END OF T_PR_SPLIT.
DATA: COUNTER TYPE I.
Internal tables
DATA: IT_EBAN LIKE EBAN OCCURS 0 WITH HEADER LINE.
Spilt Accounting Internal Table
  DATA : BEGIN OF IT_EBKN OCCURS 10,
            BANFN LIKE EBKN-BANFN,
            BNFPO LIKE EBKN-BNFPO,
            ZEBKN LIKE EBKN-ZEBKN,
            VPROZ LIKE EBKN-VPROZ,
            SAKTO LIKE EBKN-SAKTO,
            KOSTL LIKE EBKN-KOSTL,
            ANLN1 LIKE EBKN-ANLN1,
            PS_PSP_PNR LIKE EBKN-PS_PSP_PNR,
            APLZL LIKE EBKN-APLZL,
            VPTNR LIKE EBKN-VPTNR,
            NETWR LIKE EBKN-NETWR,
         END OF IT_EBKN.
Program Logic
START-OF-SELECTION.
  SELECT *
  INTO TABLE IT_EBAN
    FROM EBAN
        WHERE BANFN EQ P_BANFN
          AND BSART EQ 'ZAR'.
  IF SY-SUBRC NE 0.
     EXIT.
  ELSE.
     DESCRIBE TABLE IT_EBAN LINES COUNTER.
  IF COUNTER GT 0.
      SELECT BANFN BNFPO ZEBKN VPROZ SAKTO KOSTL ANLN1 PS_PSP_PNR APLZL
        VPTNR NETWR
         INTO TABLE IT_EBKN FROM EBKN
            FOR ALL ENTRIES IN IT_EBAN
               WHERE BANFN EQ IT_EBAN-BANFN AND
                 BNFPO EQ IT_EBAN-BNFPO.
  ENDIF.
  PERFORM CONTROL_REC.
  PERFORM DATA_POPULATE.
  PERFORM IDOC_DISTRIBUTION.
  ENDIF.
END-OF-SELECTION.
*&      Form  CONTROL_REC
      text
-->  p1        text
<--  p2        text
FORM CONTROL_REC .
T_CONTROL_RECORD-mestyp = P_MESTYP.
T_CONTROL_RECORD-idoctp = C_PR_IDOC_TYPE.
T_CONTROL_RECORD-rcvprt = 'LS'.
T_CONTROL_RECORD-rcvprn = P_LOGSYS.
ENDFORM.                    " CONTROL_REC
  FORM  DATA_POPULATE ************************
FORM DATA_POPULATE .
Purchase Requisition Header Information.
READ TABLE IT_EBAN WITH KEY BANFN = P_BANFN BINARY SEARCH.
IF SY-SUBRC EQ 0.
  T_PR_HDR-RQNUM  = IT_EBAN-BANFN.
  T_PR_HDR-RQDATE = IT_EBAN-BADAT.
  T_PR_HDR-RQNAM  = IT_EBAN-ERNAM.
  T_PR_HDR-WERKS  = IT_EBAN-WERKS.
  CLEAR T024E.
  SELECT SINGLE *
    FROM T024E
      WHERE EKORG = IT_EBAN-EKORG.
  T_PR_HDR-BUKRS  = T024E-BUKRS.
  T_PR_HDR-EKORG  = IT_EBAN-EKORG.
  T_PR_HDR-BADAT  = IT_EBAN-BADAT.
  T_PR_HDR-FRGDT  = IT_EBAN-FRGDT.
Fill the administrative section of the data record
  T_EDIDD-SEGNAM = C_Z1APRHDR.
  T_EDIDD-SDATA = T_PR_HDR.
  APPEND T_EDIDD.
  CLEAR  T_EDIDD.
ENDIF.
Purchase Requisition Item Information
LOOP AT IT_EBAN
  WHERE BANFN = P_BANFN.
  T_PR_ITEM-RQNUM  = IT_EBAN-BANFN.
  T_PR_ITEM-BNFPO  = IT_EBAN-BNFPO.
  T_PR_ITEM-FLIEF  = IT_EBAN-FLIEF.
  T_PR_ITEM-SUPLC  = IT_EBAN-FLIEF.
  T_PR_ITEM-CONID  = IT_EBAN-FLIEF.
  T_PR_ITEM-DELTA  = 'ARIBASYSTEM'.
  T_PR_ITEM-LFDAT  = IT_EBAN-LFDAT.
  T_PR_ITEM-MATKL  = IT_EBAN-MATKL.
  T_PR_ITEM-MENGE  = IT_EBAN-MENGE.
  T_PR_ITEM-PREIS  = IT_EBAN-PREIS.
  T_PR_ITEM-WAERS  = IT_EBAN-WAERS.
  T_PR_ITEM-MEINS  = IT_EBAN-MEINS.
  T_PR_ITEM-WERKS  = IT_EBAN-WERKS.
   T_PR_ITEM-DELTO  = ' '.
  T_PR_ITEM-MATNR  = IT_EBAN-MATNR.
  T_PR_ITEM-TXZ02  = IT_EBAN-TXZ01.
  T_PR_ITEM-IDNLF  = IT_EBAN-IDNLF.
  T_PR_ITEM-SUPAP  = ' '.
  T_PR_ITEM-EPSTP  = IT_EBAN-PSTYP..
  T_PR_ITEM-KNTTP  = IT_EBAN-KNTTP.
  T_PR_ITEM-EKGRP  = IT_EBAN-EKGRP.
  T_PR_ITEM-STATU  = IT_EBAN-STATU.
  T_PR_ITEM-BEDNR  = IT_EBAN-BEDNR.
Fill the administrative section of the data record
  T_EDIDD-SEGNAM = C_Z1APRITM.
  T_EDIDD-SDATA = T_PR_ITEM.
  APPEND T_EDIDD.
  CLEAR  T_EDIDD.
Split Accounting Information
LOOP AT IT_EBKN
   WHERE BANFN = IT_EBAN-BANFN
     AND BNFPO = IT_EBAN-BNFPO.
  T_PR_SPLIT-BANFN = IT_EBKN-BANFN.
  T_PR_SPLIT-BNFPO = IT_EBKN-BNFPO.
  T_PR_SPLIT-ZEBKN = IT_EBKN-ZEBKN.
  IF IT_EBAN-VRTKZ IS INITIAL.
    T_PR_SPLIT-VPROZ = '100'.
  ELSE.
    T_PR_SPLIT-VPROZ = IT_EBKN-VPROZ.
  ENDIF.
  T_PR_SPLIT-NETWR = ' '.
  T_PR_SPLIT-AMTCR = ' '.
  T_PR_SPLIT-MENGE = IT_EBAN-MENGE.
   T_PR_SPLIT-VPTNR = ' '.
  T_PR_SPLIT-KOSTL = IT_EBKN-KOSTL.
  T_PR_SPLIT-SAKTO = IT_EBKN-SAKTO.
  T_PR_SPLIT-ANLN1 = IT_EBKN-ANLN1.
  T_PR_SPLIT-PS_PSP_PNR = IT_EBKN-PS_PSP_PNR.
  T_PR_SPLIT-APLZL = IT_EBKN-APLZL.
Fill the administrative section of the data record
  T_EDIDD-SEGNAM = C_Z1APRSPT.
  T_EDIDD-SDATA = T_PR_SPLIT.
  APPEND T_EDIDD.
ENDLOOP.
ENDLOOP.
ENDFORM.                    " DATA_POPULATE
**********************Form  IDOC_DISTRIBUTION*************************
FORM IDOC_DISTRIBUTION .
CALL FUNCTION 'MASTER_IDOC_DISTRIBUTE'
  EXPORTING
    MASTER_IDOC_CONTROL                  = T_CONTROL_RECORD
  OBJ_TYPE                             = ''
  CHNUM                                = ''
  TABLES
    COMMUNICATION_IDOC_CONTROL           = T_COMM_IDOC
    MASTER_IDOC_DATA                     = T_EDIDD
  EXCEPTIONS
    ERROR_IN_IDOC_CONTROL                = 1
    ERROR_WRITING_IDOC_STATUS            = 2
    ERROR_IN_IDOC_DATA                   = 3
    SENDING_LOGICAL_SYSTEM_UNKNOWN       = 4
    OTHERS                               = 5.
IF SY-SUBRC <> 0.
MESSAGE E001 WITH R_BANFN.
ELSE.
  LOOP AT T_COMM_IDOC.
    WRITE:/ 'IDoc generated', T_COMM_IDOC-docnum.
  ENDLOOP.
  COMMIT WORK.
ENDIF.
ENDFORM.

Similar Messages

  • Need information regarding ALE-IDOC

    I am new to ale-idoc, any body can please send me ale-idoc scenarios and examples.
    Regards

    Hi,
    Please refer to the details mentioned in the hyper-links beow.
    You will get the details how to go about it.
    To see the IDOC & status check it in WE02/WE05
    You will get step by step process.
    ABAP Development
    http://www.sapgenie.com/sapedi/idoc_abap.htm
    http://www.netweaverguru.com/EDI/HTML/IDocBook.htm
    http://www.allsaplinks.com/idoc_sample.html
    http://www.geocities.com/xplosion78/customised_ALE_IDOC_BY_SACHIN_DABHADE.zip
    http://help.sap.com/saphelp_45b/helpdata/en/35/b0ea5187a62488e10000009b38f9b7/content.htm
    http://help.sap.com/saphelp_erp2005/helpdata/en/c4/6bc368fef411d28d0900104b56737d/frameset.htm
    ABAP Development
    Follow below steps to create custom IDOC.
    1.Create segments through transaction WE31.
    2.Create IDoc Type through transaction WE30 by attaching created segments.
    3.Message type through transaction WE81.
    4.Link Idoc and message type in WE82 transaction.
    Check the transaction WEDI for ALE settings
    Check these links for more details on IDoc's:
    ALE/ IDOC
    http://help.sap.com/saphelp_erp2004/helpdata/en/dc/6b835943d711d1893e0000e8323c4f/content.htm
    http://www.sapgenie.com/sapgenie/docs/ale_scenario_development_procedure.doc
    http://edocs.bea.com/elink/adapter/r3/userhtm/ale.htm#1008419
    http://www.netweaverguru.com/EDI/HTML/IDocBook.htm
    http://www.sapgenie.com/sapedi/index.htm
    http://www.sappoint.com/abap/ale.pdf
    http://www.sappoint.com/abap/ale2.pdf
    http://www.sapgenie.com/sapedi/idoc_abap.htm
    http://help.sap.com/saphelp_erp2005/helpdata/en/0b/2a60bb507d11d18ee90000e8366fc2/frameset.htm
    http://help.sap.com/saphelp_erp2005/helpdata/en/78/217da751ce11d189570000e829fbbd/frameset.htm
    http://www.allsaplinks.com/idoc_sample.html
    http://www.sappoint.com/abap.html
    http://help.sap.com/saphelp_erp2004/helpdata/en/dc/6b835943d711d1893e0000e8323c4f/content.htm
    http://www.sapgenie.com/sapgenie/docs/ale_scenario_development_procedure.doc
    http://edocs.bea.com/elink/adapter/r3/userhtm/ale.htm#1008419
    http://www.netweaverguru.com/EDI/HTML/IDocBook.htm
    http://www.sapgenie.com/sapedi/index.htm
    http://www.allsaplinks.com/idoc_sample.html
    ALE/ IDOC/ XML
    http://www.sapgenie.com/sapgenie/docs/ale_scenario_development_procedure.doc
    http://www.thespot4sap.com/Articles/SAP_XML_Business_Integration.asp
    http://help.sap.com/saphelp_srm30/helpdata/en/72/0fe1385bed2815e10000000a114084/content.htm
    IDOC Convertion
    /people/kevin.wilson2/blog/2005/12/07/changing-fields-in-an-idoc-segment
    http://www.intelligententerprise.com/channels/applications/feature/archive/kasturi.jhtml
    Hope this will help.
    Regards,
    Priyanka.

  • Doubt regarding  ALE SETTINGS in IDOC scenario.

    Hi Friends,
            I have some doubts regarding ALE settings for IDOC scenarios,  can anyone  please clarify my doubts.
    For exmaple take IDOC to FILE scenario
    The knowledge i got from SDN is --
    One need to do at the  R3 side is  --- RFC DESTINATION (SM59)  for the XI system.
                                                       --- TRFC PORT  for sending IDOC  to the  XI system
                                                       --- CREATING LOGICAL SYSTEM
                                                       --- CREATING PARTNER PROFILE 
                   at the XI side is  --- RFC  Destination ( For SAP sender system)
                                           --- CREATING  PORT  for receiving IDOC from the SAP sending system(IDX1).
    1. Do we create two logical systems for both Sender ( R3 system ) and Receiver( XI system ) in R3 system itself or in XI system or in both systems we create these logical systems? Is this a mandatory step in doing ALE configurations?
    In IDOC to IDOC scenario-------
      2.  Do we craete two RFC destinations in XI system? One RFC DESTINATION for the Sender R3 system and another RFC DESTINATION for the Receiver R3 System? and do we create RFC DESTINATION for the XI system in receiver R3 system? If not.....y we don't create like this........Please give me some clarity on this.............
      3.  If we use IDOC adapter ,since IDOC adapter resides on the ABAP STACK ,we don't need sender communication channel ,for the similar reason----
    y we r creating receiver communication channel in the case of FILE to IDOC scenario?
      4. Can any one please provide me the ALE settings for IDOC to FILE scenario,
                                                                                    FILE to IDOC scenario,                                                                               
    IDOC to IDOC scenario individually.
    Thanks in advance.
    Regards,
    Ramana.

    hi,
    1. Yes, we create two logical systems for both Sender ( R3 system ) and Receiver( XI system ) in R3 system itself and
    it is a mandatory step in doing ALE configurations
    2. We create 1 RFC destination each in R3 and XI.
        R3 RFC destination points to Xi and
        XI RFC destination  points to R3
    3 We need to create Communication Channel for Idoc receiver as the receiver channel is always required but sender may not be necessary
    4. ALE settings for all IDOC scenarios are same  as follows....
    Steps for ALE settings:-
    Steps for XI
    Step 1)
         Goto SM59.
         Create new RFC destination of type 3(Abap connection).
         Give a suitable name and description.
         Give the Ip address of the R3 system.
         Give the system number.
         Give the gateway host name and gateway service (3300 + system number).
         Go to the logon security tab.
         Give the lang, client, username and password.
         Test connection and remote logon.
    Step 2)
         Goto IDX1.
         Create a new port.
         Give the port name.
         Give the client number for the R3 system.
         Select the created Rfc Destination.
    Step 3)
         Goto IDX2
         Create a new Meta data.
         Give the Idoc type.
         Select the created port.
    Steps for R3.
    Step 1)
         Goto SM59.
         Create new RFC destination of type 3(Abap connection).
         Give a suitable name and description.
         Give the Ip address of the XI system.
         Give the system number.
         Give the gateway host name and gateway service (3300 + system number).
         Go to the logon security tab.
         Give the lang, client, username and password.
         Test connection and remote logon.
    Step 2)
         Goto WE21.
         Create a port under transactional RFC.(R3->XI)
         Designate the RFC destination created in prev step.
    Step 3)
         Goto SALE.
         Basic settings->Logical Systems->Define logical system.
         Create two logical systems(one for XI and the other for R3)
         Basic settings->Logical Systems->Assign logical system.
         Assign the R3 logical system to respective client.
    Step 4)
         Goto WE20.
         Partner type LS.
         Create two partner profile(one for XI the other for R3).
         Give the outbound or inbound message type based on the direction.
    Step 5)
         Goto WE19
         Give the basic type and execute.
         fill in the required fields.
         Goto IDOC->edit control records.
         Give the following values.(Receiver port,partner no.,part type and sender Partner no. and type)
         Click outbound processing.
    Step 6)
         Go to SM58
         if there are any messages then there is some error in execution.
         Goto WE02.
         Check the status of the IDOC.
         Goto WE47.
         TO decode the status code.
    Step 7)
         Not mandatory.
         Goto BD64.
         Click on Create model view.
         Add message type.
    BD87 to check the status of IDOC.
    In case if not authorized then go to the target system and check in SU53, see for the missing object
    and assign it to the user.
    SAP r3
    sm59(status check)(no message)
    WE02(status check)
    WE05(status check)
    BD87(status check)
    Xi
    IDx5(Idoc check)
    SU53(authorization check)
    Reward points if helpful
    Prashant

  • HT1677 In safari browser cookies is working fine. But when I add the browser url to the screen then the cookies concept is not working. In safari setting cookies is always open only. Can you please provide any information regarding to this?

    In safari browser cookies is working fine. But when I add the browser url to the screen then the cookies concept is not working. In safari setting cookies is always open only. Can you please provide any information regarding to this?

    Hello,
    '''Try Firefox Safe Mode''' to see if the problem goes away. [[Troubleshoot Firefox issues using Safe Mode|Firefox Safe Mode]] is a troubleshooting mode that turns off some settings and disables most add-ons (extensions and themes).
    ''(If you're using an added theme, switch to the Default theme.)''
    If Firefox is open, you can restart in Firefox Safe Mode from the Help menu by clicking on the '''Restart with Add-ons Disabled...''' menu item:<br>
    [[Image:FirefoxSafeMode|width=520]]<br><br>
    If Firefox is not running, you can start Firefox in Safe Mode as follows:
    * On Windows: Hold the '''Shift''' key when you open the Firefox desktop or Start menu shortcut.
    * On Mac: Hold the '''option''' key while starting Firefox.
    * On Linux: Quit Firefox, go to your Terminal and run ''firefox -safe-mode'' <br>(you may need to specify the Firefox installation path e.g. /usr/lib/firefox)
    ''Once you get the pop-up, just select "'Start in Safe Mode"''
    [[Image:Safe Mode Fx 15 - Win]]
    '''''If the issue is not present in Firefox Safe Mode''''', your problem is probably caused by an extension, and you need to figure out which one. Please follow the [[Troubleshoot extensions, themes and hardware acceleration issues to solve common Firefox problems]] article to find the cause.
    ''To exit Firefox Safe Mode, just close Firefox and wait a few seconds before opening Firefox for normal use again.''
    When you figure out what's causing your issues, please let us know. It might help others with the same problem.
    Thank you.

  • Where to find the information regarding relationships between the tables?

    I am developing a Windows based app which among other things let’s users view SAP table schema and relationships.
    If I use SAP GUI and dig up a bit on say the MARA table I can see that
    Material Master (MARA) is related with
    1) MaterialDescription (MAKT) on columns MANDT and MATNR
    2) MaterialPlantData (MARC) on columns MANDT and MATNR
    and so on…
    My question is - in which table the information regarding relationships between the tables is stored? There must be a data dictionary table which would be storing the relationships data. Which is it? Note: I will programatically access the table, NOT from the UI.

    Thanks a lot...
    I am still working on it, but here are the current findings. DD05S, DD08L and DD08T: The schemas for these tables were very promising for the thing I was looking for. Unfortunately the data within dose not seem to serve my exact purpose.
    I found another one DD26S, which has almost 90% of the relationships I wish to explore. Do you know what is it supposed to contain?
    Thanks a lot for your help.
    Message was edited by: Salil Khedkar

  • I Need Information Regarding File Upload?

    Where can I get information regarding the File uploading packages in Portal. Is there a specification I can get a hold of. I know such a package exists, as it is used by portal itself. I just need to know where I can get hold of information as to what it is called and how to invoke it.

    Suraj,
    The APIs to do file upload are not public as of yet. We are looking into the feature right now. Currently, the only supported method of file upload is using the Web Interface.
    You may find more information about this in the 9iAs Portal forum
    Sue

  • I need information regarding the creation of Workbook and WAD.

    Hi,
    I need information regarding the How to create the Workbook and WAD.
    Can any one help me to get the information..
    Regards,
    Suman
    Edited by: Suman Reddy Vuyyuru on May 19, 2009 8:22 AM

    Hi,
    for workbook:
    [Queries in Workbook|http://help.sap.com/saphelp_sem40bw/helpdata/en/e3/e60138fede083de10000009b38f8cf/frameset.htm]
    for WAD:
    [WAD for Beginners|https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/749a4622-0a01-0010-36bf-b6b30a2a3a22]
    thnks.

  • Hi any body have information regarding up gradation of BW-BPS to BI-IP

    Hi any body have information regarding up gradation of BW-BPS to BI-IP, i need the procedure how to upgrade if any body explain thank full.......
    Vinay
    Edited by: vinay kumar on Aug 13, 2008 8:26 AM

    Hi,
    You can use BPS and Implement IP parallely so you can use both the tools simultaniously.
    Even all the BPS variables can be used in IP.
    Need to build all the data flow from the scratch.
    Need to understand what stands for what comparing BPS and IP.
    Instead of Function Module based on ABAP in BPS we have Function Types based on ABAP OO concept.
    Regards,
    Raj

  • Regarding ale idocs

    Hi....
    Please send some FAQ'S regarding ale,idocs
    thanks
    k..swaminath

    Hi,
    plz go through the links...
    http://help.sap.com/saphelp_erp2004/helpdata/en/dc/6b835943d711d1893e0000e8323c4f/content.htm
    http://www.sapgenie.com/sapgenie/docs/ale_scenario_development_procedure.doc
    http://edocs.bea.com/elink/adapter/r3/userhtm/ale.htm#1008419
    http://www.netweaverguru.com/EDI/HTML/IDocBook.htm
    http://www.sapgenie.com/sapedi/index.htm
    http://www.sappoint.com/abap/ale.pdf
    http://www.sappoint.com/abap/ale2.pdf
    http://www.sapgenie.com/sapedi/idoc_abap.htm
    http://help.sap.com/saphelp_erp2005/helpdata/en/0b/2a60bb507d11d18ee90000e8366fc2/frameset.htm
    http://help.sap.com/saphelp_erp2005/helpdata/en/78/217da751ce11d189570000e829fbbd/frameset.htm
    http://www.allsaplinks.com/idoc_sample.html
    http://www.sappoint.com/abap.html
    http://help.sap.com/saphelp_erp2004/helpdata/en/dc/6b835943d711d1893e0000e8323c4f/content.htm
    http://www.sapgenie.com/sapgenie/docs/ale_scenario_development_procedure.doc
    http://edocs.bea.com/elink/adapter/r3/userhtm/ale.htm#1008419
    http://www.netweaverguru.com/EDI/HTML/IDocBook.htm
    http://www.sapgenie.com/sapedi/index.htm
    http://www.allsaplinks.com/idoc_sample.html
    Reward points if u find useful.
    Regards,
    Nagaraj

  • Can I get information regarding the client browser using JSP

    can I get information regarding the client browser using JSP. like.. name, screen resolutions, font type, screen width and height of the browser etc.,
    if possible then please give me the samples..
    thanks,

    can I get information regarding the client browser using JSP. like.. name, screen resolutions, font type, screen width and height of the browser etc.,
    if possible then please give me the samples..
    thanks,

  • Need Information Regarding Rollout  Project In Netweaver Portal

    Hi,
    Can anybody give me some information regarding how to rollout a project in Netweaver Portal or what exactly a rollout project is ?
    If we are using Webdynpro for developing UIs , then what needs to be done on the Webdynpro side for doing the rollout .
    I have been searching sdn regarding this but could not get any useful information .
    Thanks a lot .

    Hello Vijay,
    <a href="http://www.sap.com/services/education/consultant/solutionacademy/index.epx">Here</a> you can find an overview of the different consultant training.
    You have a track for Portal (<a href="https://websmp204.sap-ag.de/sapidp/011000358700003602072006E">link</a>) and also one for KM (<a href="https://websmp207.sap-ag.de/sapidp/011000358700003602162006E">link</a>).
    Both can be done in a "technical" and a "development" flavor.
    Regards,
    Christophe

  • Need information regarding Solaris kernel Delayed write operation

    Hello Friends,
    I need information regarding the delayed write operation in Solaris.
    Would be thankful if anyone can give me some details.
    Thanks in advance

    1) When you post code, please use[code] and [/code] tags as described in Formatting tips on the message entry page. It makes it much easier to read.
    2) Don't just post a huge pile of code and ask, "How do I make this work?" Ask a specific question, and post just enough code to demonstrate the problem you're having.
    3) Don't just write a huge pile of code and then test it. Write a tiny piece, test it. Then write the piece that will work with or use the first piece. Test that by itself--without the first piece. Then put the two together and test that. Only move on to the next step after the current step produces the correct results. Continue this process until you have a complete, working program.

  • Black out on information regarding artwork

    I have seen a number of threads on the issue of artwork suddenly not sticking to iTunes files, unless it is artwork that can automatically be found online through the get artwork function. In all the threads there are many people complaining that they can no longer attach artwork to files and none of the threads ends in resolve or answers, or even with information that confirms that this is simply the way it is going to be on 7.7.1 iTunes. Is this a blackout of information intentionally because iTunes has no intention of fixing this "problem". I've found that iTunes forums on Apple Discussions are always the forums that lack the successful answers, dialogue and information that the other forums so regularly provide. Honesty and some answers would be appreciated.

    Good Morning James.
    I also see people posting on this topic. But a Black Out? No. I don't think there is some big plot to 'hide' information regarding this issue. Considering that there could always be any number of reasons that someone is having problems with their iTunes artwork. 7.7.1 glitches (yes, I said that first), user error, copyright issues, whatever. There are so many variables that I don't think there is one answer that 'fixes it' and it's just being kept a big secret.
    As far as the forums here in the Discussion Boards go, and your mention of the "lack the successful answers, dialogue and information that the other forums so regularly provide"....
    I just don't see it. Really. Being that this is a user to user board (regardless of who may or may not peek in here), why you would expect that 'they' (that would be users, just like yourself) would have the answers to everything, when you don't, is kind of... well, I'll assume is coming from a place of total frustration. And to imply that "honesty and answers" aren't forthcoming on this particular topic (or any other for that matter) is unjustified and at best, misdirected. The truth is, if we had to pay for the help we get here from alot of these responders, we couldn't afford it.
    And lastly, if users come to the boards and there is no help/answers to be had, iTunes has a great big Support Page that allows you to address your specific issues directly to the people that should have the answers/help you require. With the added benefit of getting your complaint on record. Here is the link:
    http://www.apple.com/support/itunes/store/browser/
    Sincerely (And if in the US, Have a great holiday!)
    mwn
    Message was edited by: much wiser now

  • Information regarding Adobe forms

    Dear Gurus,
    I need some basic information regarding adobe forms to be used in ESS MSS portal for doing some basic actions by managers like hiring/maintenance of data for his subordinates.
    Are there any specific system requirements so that adobe forms display in browser without any problems?  Is there any specific internet browser which works without any problems?
    What time is considered to be best time in which an empty form can be displayed?
    In one line what is the acceptable time for a form to load which is not considered as slow and is it linked with network connections or individual systems of end users?
    Need your kind inputs on this topic........
    Regards,
    kitchlu

    Form works in IE 6, 7, 8  and Firefox
    Make sure you have adobe products above 8.1 (includes all adobe products)
    In Reader -> Edit -> Preference -> Internet - you have setting to display pdf in browser.
    For a small form with limited fields, 5-10 seconds launching time can be achieved.
    Performance depends on number of fields, User events, no of backend calls, number of dropdown boxes, Servce size, Network etc etc. Optimized code is another aspect to look into

  • HT1212 where do i go to get started with the disabled phone process.  I selected the information regarding not syncing into itunes ever.  but where do I go on the site to get started

    where do i go to get started with the disabled phone process.  I selected the information regarding not syncing into itunes ever.  but where do I go on the site to get started

    You use iTunes and restore the phone from Recovery Mode. You will lose all content. http://support.apple.com/kb/HT1808

Maybe you are looking for

  • How do I create a new user account on my mac?

    I'm sorry for this probably very simple question but I want to add my husband as a new user so I can very easily hook up his nano and ipod and it will be separate from my ipod video

  • Errors when trying to open up a disk image that has been comp. & encrypted.

    I have an old 15” PowerBook G4 that I purchased back in 2004 that I wanted to backup the data on in preparation to sell it. The PowerBook has Leopard (Mac OS 10.5) installed on it. I used my Leopard installation DVD to boot the computer up and then l

  • Raw Files in Lightroom...

    I just imported RAW files into Lightroom and want to use the Develop tool. However, when I change modules to "Develop" It does not allow me to see the changes as I work. Only when I go back to the Library module can I see them. I need to see real tim

  • Is there a way to put borders in Iphotos?

    I have an older mac with Photoshop that won't transfer to my Macbook with Snow Leopard. Can trundle over pix or email them to edit but trying simpler moves with ImageTricksLite, Quartz and Iphotos. Can do some edits I want but in none can I find a wa

  • Looping Quicktime Movies in Keynote & Keeping them Looped when Rendered

    Okay I have a quicktime movie that I am using as the background of my slide show. I have text fly in and out over the movie. I can get the movie to loop when I view the slideshow but when I try to export the slideshow to Quicktime the Background quic