IDOCs performance creation between SAP and SAP Java Adaptor

    Hi,
We have a legacy systemt that send some IDOCs to SAP ECC through  a SAP JAVA connector.   Problem is that we send the idocs and we detected that we have some performance issues on the IDOC creation.
We are using the SAP standard code and SM58, SMQ1, SMQ2, traces, etc etc seem to be fine.
As per customer requirement we have to use process inmediately on the partner profile.  We also set the mass processing option but no difference .
We have also other functionalities that run on IDOCs and they are running fine without any performance issue on it .
Could someone help us?
Thanks a lot, Sapera

Hello,
What kind of performance issue u have noticed?
Check if below idoc_aae tuning note helps u...
1641541 - IDoc_AAE Adapter performance tuning  
Thanks
Amit Srivastava

Similar Messages

  • What is the difference between ERP2004 and SAP 47 Enterprise?

    Currently we have SAP 47 Enterprise with WAS 6.2. I understand ERP2004 is NW and 6.4 sp9. Can any one please let me know the major difference between ERP2004 and SAP 4.7 Enterprise ( more from abap / workflow view)?
    Thanks
    Swamy

    From Abap point of view some of the major add-on in erp2004,netwever :
    1) Development of webdynpro studio for java development for portal and iviews.
    2) Major abap development uses <b>Abap object oriented</b> methodology, rathet hten old conventional Abap,i.e MVC model (Model,View,Controller) where in it uses concept of classes,interfaces,etc.
    3) Advanced BSP tech using MVC model to develop web based modules
    4) It is closesly integrated with web-based CRM and BW/APO

  • What is the difference between mySAP2004 and SAP ERP 2004?

    Hi,
      Can anybody tell me what is the difference between mySAP2004 and SAP ERP 2004?
    If someone has the document, then please mail me at [email protected]
    With Regards
    tiffny

    Hi Tiffny,
    actually I don't see a difference as "mySAP2004" is not an official name for anything
    There is "mySAP ERP 2004" which is the marketing name for a bunch of functionality provided by several different bits of software components.
    Hth,
    Michael

  • Relation between EDI and SAP MM

    Hello Gurus,
    Is there any relation between SAP MM and EDI...?
    Omkar--

    Hello Omkar,
    There is no specific relation between EDI and SAP MM. SAP MM module is for your internal data while Industry EDI is communication media.
    E.g.
    If you create a PO in your system , it is related to your MM part while information with regards to craeted PO is supplied to vendor by EDI _ Electronic data interchange.
    Hope this will help you.
    Amit C kulkarni.

  • IDocs have disappeared between ECC and PI

    Hi All,
    A couple of days ago 3 idocs went missing between ECC and PI.
    That day 293 idocs of the same message type were sent to the same partner through PI. In PI we only found 290. The 3 IDocs were sent in the same second in the early afternoon. All IDocs before and after were processed correctly.
    The IDocs are unknown in IDX5 and in Runtime Workbench on PI.
    The idocs were not in SM58.
    I found them in WE05, with the correct status. The status update from status = 01 to 30 to 03 took place in the same second.
    25 seconds later, new IDocs of the same message type were created and processed successfully by PI.
    At the time the idocs disappeared there were no problems with either ECC or PI, as far as we know.
    The interface is live for more than 2 years. In the meantime no changes have taken place.
    I have read the links below
    Finding missing IDocs
    Interface Troubleshooting Basics
    It's a mystery to me. Where have those idocs gone?
    Anybody any idea?
    Kind Regards
    Edmond Paulussen

    Hi Edmond,
    On the SAP PI system have a look in transaction IDX5. Take the IDoc number that you could not find in PI and search them in IDX5.
    If you cannot find those IDoc in IDX5 then they never reached PI.
    Regards,
    Jannus Botha

  • Non-sap and Sap

    Hi ..If we want to communicate non-sap and sap applications which is the best way in ABAP.
    regards
    khanna

    Hi Rajesh,
    ALE is not restricted to communication between SAP systems; it can also be used for connecting SAP Systems to non-SAP systems.
    By using IDocs as universal information containers, ALE can reduce the number of different application interfaces to one single interface that can either send IDocs from an SAP system or receive IDocs in an SAP system.
    SAP certified Translator Programs can convert IDoc structures into customer-defined structures.
    Alternatively, the RFC interface for sending and receiving IDocs can be used in non-SAP systems.
    In both cases you need the RFC Library of the RFC Software Development Kit (RFC-SDK).
    regards
    manoj kumar

  • Using ale u can send from sap to sap and sap to non sap systems

    hi,
    using ale u can send from sap to sap and sap to non sap systems,
    then what is diff b/w ALE and EDI

    Hello KALYAN KUMAR,
    Application Link Enabling (ALE)
    1.You distribute data using ALE if you want to communicate from one system to one or more other (mostly internal) systems.
    2.ALE transfers data in IDoc format and uses the methods of tRFC for data transfer.
    3.ALE enables the integration of business processes across several SAP or non-SAP systems.
    Electronic Data Interchange (EDI)
    1.You use EDI if you want to exchange business application documents with an (external) partner system (for example, a customer or vendor).
    2. The SAP system sends EDI messages in IDoc format to an EDI subsystem, where they are converted to a universal EDI standard (UN/EDIFACT or ANSI/X12).
    3. This enables communication with non-SAP systems.
        By definition, two partners are involved in the process in an EDI application scenario: The sender and the recipient of an EDI message
    I hope u understands the difference:)

  • Graph axes assignment: performance difference between ATTR_ACTIVE_XAXIS and ATTR_PLOT_XAXIS

    Hi,
    I am using a xy graph with both x axes and both y axes. There are two possibilities when adding a new plot:
    1) PlotXY and SetPlotAttribute ( , , , ATTR_PLOT_XAXIS, );
    2) SetCtrlAttribute ( , , ATTR_ACTIVE_XAXIS, ) and PlotXY
    I tend to prefer the second method because I would assume it to be slightly faster, but what do the experts say?
    Thanks!  
    Solved!
    Go to Solution.

    Hi Wolfgang,
    thank you for your interesting question.
    First of all I want to say, that generally spoken, using the command "SetCtrlAttribute"is the best way to handle with your elements. I would suggest using this command when ever it is possible.
    Now, to your question regarding the performance difference between "SetCtrlAttribute" and "SetPlotAttribute".
    I think the performance difference occures, because in the background of the "SetPlotAttribute" command, another function called "ProcessDrawEvents" is executed. This event refreshes your plot again and again in the function whereas in the "SetCtrlAttribute" the refreshing is done once after the function has been finished. This might be a possible reason.
    For example you have a progress bar which shows you the progress of installing a driver:
    "SetPlotAttribute" would show you the progress bar moving step by step until installing the driver is done.
    "SetCtrlAttribute" would just show you an empty bar at the start and a full progress bar when the installing process is done.
    I think it is like that but I can't tell you 100%, therefore I would need to ask our developers.
    If you want, i can forward the question to them, this might need some times. Also, then I would need to know which version of CVI you are using.
    Please let me now if you want me to forward your question.
    Have a nice day,
    Abduelkerim
    Sales
    NI Germany

  • Communication between non SAP and SAP

    HI,
    do you have some information about communication between non SAP and ERP (WebAs) SAP System ?
    I would like to receive an xml file or xml IDoc from a Java Plattform (non SAP) into our SAP ERP System as an own defined IDoc.
    remember: we don´t have a converter like XI.
    What about using a proxy (do you have some information/blog how to use that) ?
    What about using a webservice (do you have some information/blog how to use that) ?
    What about storing the xml on the application server (do you have some information/blog how to use that) ?
    How to transform xml to IDoc ?
    other methods ?
    Thanks for your help.
    Gordon

    Here is a link to connecting MS SQL Server with SAP using Open Hub connection.
    http://msdn.microsoft.com/en-us/library/dd299430(SQL.100).aspx
    This might give you some insight into connecting with Non SAP Systems.
    I have used the information from this link to export data from SAP to MS SQL Server.
    Good Luck.
    MP.

  • Integration between Ariba and SAP R/3 4.7

    Hi All,
    Have anyone implementing the integration between Ariba Software and SAP R/3 4.7?
    In my project has using Ariba TIBCO and SAP Adapter as the integration tool that connect to SAP R/3 4.7 Non-Unicode system (using MDM for Thai language).
    I found that when I pull data from SAP through Ariba TIBCO and SAP Adater, the Thai character showed as unreadable character like a garbage character.
    Please help me.
    Thanks

    Hi Bimal,
    Please go through this document which contains end to end steps to integrate R/3 HR with CRM
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/84dd0c97-0901-0010-4ab2-9849fba57e31
    Best Regards,
    Pratik Patel
    <b>Reward with Points!</b>

  • Differences between Oracle and SAP ERP

    Hi All
    I have a Industrial project which is currently having oracle.
    I would like to give them a presentation on SAP ERP and its modules.
    Does any1 have a ppt which highlights the advantages of SAP over Oracle. and stating its major differences.
    Please send it ASAP.
    Thanks and Regards

    Hi.......
    Check this link :
    The key difference between SAP and Oracle
    http://searchsap.techtarget.com/news/article/0,289142,sid21_gci1294788,00.html
    http://www.itjungle.com/two/two032807-story03.html
    http://searchmanufacturingerp.techtarget.com/news/article/0,289142,sid193_gci1325932,00.html
    Hope this helps you...........
    Regards,
    Debjani..........

  • Standard-interfaces between crm and sap for insurance

    Hello,
    are there existing documentations to connect crm and sap for insurance components (policy management, claims managment, fs-cd)?
    Best regrads
    Oliver Prodinger

    20,000 is on quite higher side for IDOC.
    IBIP help doc says it needs 2 Kbyte for each record, i.e. 40 Mb for 20,000 rec. that should be ok. Since it has structures for Partner & classification data , I don't think u need to modify the BAPI.
    Transaction IE01 - Create equipment
    Transaction IE02 - Change equipment
    Structure - IBIPEQUI Equipment record
                     |->    IBIPNSTA     New status profile if necessary
                     |->>   IBIPSTAT     User status records
                     |->>   IBIPDOCU     Doc. from Doc. management system
                     |->>   IBIPPART     Partner details (comment below)
                     |-->>  IBIPTEXT     (see comment below)
                              for long text:          TEXT_MARK = " " empty
                              for internal comment:   TEXT_MARK = "1"
                     |-->>  IBIPCLAS    Classification record (eqpmt class)
                         |-->> IBIPFEAT     Classification characteristics,
                                               ie. features for the class
                     |-->>  IBIPBDCD     see below (from screen 102)

  • Hi can some tell me what is the difference between sapr3 and sap business 1

    is there any difference between sap business one and sap r3 if i learn sd module

    Hi Siva,
    The SD module from R/3 is completely unrelated to the business processes and technologies used in SAP Business One (SBO). R/3 and SBO are completely different products and direct comparisons are difficult. I don't think learning one will help in any degree in learning the other. With R/3 you tend to specialise in one area (eg SD) as the complexity and scale of implementations requires this specialisation. With SBO, a single consultant would be expected to know the whole product. SBO is a much simpler product designed for small to medium sized companies so the processes are much more generic.
    Kind Regards,
    Owen

  • Process of Integration between QTP and SAP

    we are in process of integrating QTP with SAP for test scenarios
    how to install QTP and  SAP  and their connections .
    Request you all to share your experience and knowledge in this. It will be really helpful.
    Thanks
    Rajesh Burra

    Not answered

  • Interaction between BSP and SAP GUI

    Hello all,
    I am having trouble with interaction between BSP and dynpros:
    I have a dynpro with a container where a BSP is shown.
    I would like to be able to return a value from the BSP to the control program of the dynpro.
    Any ideas of how to do it?
    Thanks a lot!
    Helpful answers will be regarded.

    Hello both,
    thank you for your replies, but I am still not able of performing this.
    I have tried using GET/SET parameters but it is not working, I get no parameter (perhaps I am not using the sentences correctly or in the correct place).
    I have also tried the code of demo program SAPHTML_EVENTS_DEMO and I think I cannot do it, I explain it a bit more:
    I have a button on my  BSP with some code programmed on event OnInputProcessing to be executed, and at the end I would like to return one value to the control program of the dynpro.
    But if I set the html form of the BSP as action:SAPEVENT, the bsp code is not executed...
    Am I doing something wrong?
    Thanks!!

Maybe you are looking for