Resource adaptor for SAP

I am not well aware of java connector.Right now i'm using JCO 1.1.03 from SAP.Can anyone help me to use java connector architecture instead of jco.

i'm writin a program to extract info from SAP but i can't find where download the JCO.jar , in SAP site you need a user and password but i don't have it, dou you have already de jar file? could you send me tha jar? or may be i have to purchase that product? pleas help me!!!!
my addres is [email protected]

Similar Messages

  • RFC calls with SAP JCO and IBM resource adapter for SAP - basic tuning

    Hi experts,
    we are working on a java portal connected to a backend system SAP by calling RFCs.
    On our first integration tests, it appears to be quite slow fetching data from SAP by calling the remote functions from the custom portal. We are using SAP JCo 3.0.6 and IBM resource adapter for SAP 7.0.0.3 to integrate SAP with our portal.
    Is there any basic tuning to achieve to improve performances or any hint of where to tune in SAP ?
    Any help would be greatly appreciated.
    Thanks a lot,
    Jamal

    Hi Jamal,
    I understand you have already checked performance issues in the SAP Server. We had some problems with certain RFC calls and it turned out to be a badly developed ABAP sentence.
    I'd recommend you to use httpwatch or another tool to check the response times from the browser, so you can point accurately where the is.
    Regards
    Francisco

  • Inqmy resource adapter for SAP with Bea Weblogic Server

              Hi everybody,
              Anybody have tried to use INQMY resource adapter for SAP with Bea weblogic server
              It works well with INQMY server, but with BEA I'm getting a lot of problems creating
              the connections.
              Thanks in advance.
              Xavi.
              

    All,
              Here are the steps we (used for internal testing) had to perform to get
              IN-Q-MY adapter for SAP to work with WebLogic:
              The wli.adapter.inqmy.sapr3.spi package contains extensions to the
              In-Q-My J2EE Connector Architecture classes to overcome some limitations
              in the base implementation classes. To get around these issues, we had
              to extend their R3ManagedConnectionFactory, R3ConnectionManager, and
              R3ConnectionFactory classes.
              * The javax.resource.spi.ManagedConnectionFactory implementation
              does not over-ride the equals and hashCode methods correctly. This
              causes problems with WLS 6.1.
              * There is a bug in their javax.resource.spi.ConnectionManager
              implementation for non-managed uses of the adapter. Consequently, their
              adapter cannot be used in a non-managed scenario.
              * The javax.resource.cci.ConnectionFactory class does not support
              the getConnection() method that does not take any arguments (it throws a
              null pointer exception).
              I am attaching the classes discussed above.
              Cheers,
              Chris
              Torsten Friebe wrote:
              > Hi,
              >
              > does anybody know where to get a trail version - if one exists - of IN-Q-MY
              > application server or the resource adapter?
              >
              > Thanks, regards
              > Torsten
              >
              > "Xavi" <[email protected]> schrieb im Newsbeitrag
              > news:[email protected]...
              >
              >>Hi everybody,
              >>
              >>Anybody have tried to use INQMY resource adapter for SAP with Bea weblogic
              >>
              > server
              >
              >>?
              >>
              >>It works well with INQMY server, but with BEA I'm getting a lot of
              >>
              > problems creating
              >
              >>the connections.
              >>
              >>Thanks in advance.
              >>Xavi.
              >>
              >>
              >
              >
              package wli.adapter.inqmy.sapr3.spi;
              import java.io.Serializable;
              import javax.resource.ResourceException;
              import javax.resource.cci.Connection;
              import javax.resource.cci.ConnectionSpec;
              import javax.resource.spi.ConnectionManager;
              import javax.resource.spi.ConnectionRequestInfo;
              import javax.resource.spi.ManagedConnection;
              import javax.resource.spi.ManagedConnectionFactory;
              import com.inqmy.r3adapter.R3ConnectionSpec;
              import com.inqmy.r3adapter.R3ManagedConnectionFactory;
              * Extends the In-Q-My implementation to allow for getConnection() with no
              * connection spec, i.e. use the default configured connection parameters.
              public class R3ConnectionFactory
              extends com.inqmy.r3adapter.R3ConnectionFactory
              implements com.bea.connector.IProxyMarker {
              private R3ConnectionSpec m_cspec;
              public R3ConnectionFactory(ConnectionManager cm, R3ManagedConnectionFactory mcf)
              throws ResourceException {
              super(cm, mcf);
              String strClientNumber = mcf.getClientNumber();
              if (strClientNumber == null) {
              throw new javax.resource.spi.IllegalStateException("ClientNumber not set for "+mcf);
              String strLanguage = mcf.getLanguage();
              if (strLanguage == null) {
              throw new javax.resource.spi.IllegalStateException("Language not set for "+mcf);
              String strUserName = mcf.getUserName();
              if (strUserName == null) {
              throw new javax.resource.spi.IllegalStateException("UserName not set for "+mcf);
              String strPassword = mcf.getPassword();
              if (strPassword == null) {
              throw new javax.resource.spi.IllegalStateException("Password not set for "+mcf);
              m_cspec = new R3ConnectionSpec(strClientNumber, strLanguage, strUserName, strPassword);
              public Connection getConnection(ConnectionSpec connectionSpec)
              throws ResourceException {
              if (connectionSpec == null) connectionSpec = m_cspec;
              return super.getConnection(connectionSpec);
              package wli.adapter.inqmy.sapr3.spi;
              import java.io.Serializable;
              import javax.resource.ResourceException;
              import javax.resource.spi.ConnectionManager;
              import javax.resource.spi.ConnectionRequestInfo;
              import javax.resource.spi.ManagedConnection;
              import javax.resource.spi.ManagedConnectionFactory;
              * Extends the In-Q-My implementation to over-ride the
              * allocateConnection method to return a CCI connection vs. a ManagedConnection
              public class R3DefaultConnectionManager
              implements ConnectionManager, Serializable {
              public R3DefaultConnectionManager() {}
              public Object
              allocateConnection(ManagedConnectionFactory mcf, ConnectionRequestInfo cri)
              throws ResourceException {
              ManagedConnection mc = mcf.createManagedConnection(null, cri);
              return mc.getConnection(null, cri);
              package wli.adapter.inqmy.sapr3.spi;
              import javax.resource.spi.ConnectionManager;
              import javax.resource.spi.ConnectionRequestInfo;
              import javax.resource.spi.ManagedConnection;
              import javax.security.auth.Subject;
              * Extends the In-Q-My implementation to get around some problems encountered
              * while running on WebLogic:
              * <ul>
              * <li>Must over-ride default implementation of equals and hashCode method</li>
              * <li>Needed to provide my version of the CCI ConnectionFactory</li>
              * <li>Needed to provide my version of the default ConnectionManager for the
              * non-managed scenario use case</li>
              * </ul>
              public class R3ManagedConnectionFactory
              extends com.inqmy.r3adapter.R3ManagedConnectionFactory {
              private int m_iHashCode;
              transient private com.inqmy.r3adapter.R3ConnectionRequestInfo t_cri = null;
              public R3ManagedConnectionFactory() {
              super();
              java.rmi.server.UID uid = new java.rmi.server.UID();
              m_iHashCode = uid.hashCode();
              public Object createConnectionFactory() {
              // need to install our own default connection manager because In-Q-My
              // version causes a ClassCastException in CCI ConnectionFactory
              // getConnection
              return createConnectionFactory(new R3DefaultConnectionManager());
              public ManagedConnection createManagedConnection(Subject subject, ConnectionRequestInfo cri)
              throws javax.resource.ResourceException {
              // need to check for null on the ConnectionRequestInfo object because the
              // In-Q-My R3ManagedConnection ctor does not check for null
              if (cri == null) cri = getDefaultConnectionRequestInfo();
              return new com.inqmy.r3adapter.R3ManagedConnection(this, subject, cri);
              public Object createConnectionFactory(ConnectionManager connectionManager) {
              // need to supply a connection factory that can deal with getConnection
              // that does not take a ConnectionSpec
              try {
              return new R3ConnectionFactory(connectionManager, this);      
              } catch (javax.resource.ResourceException re) {
              re.printStackTrace();
              throw new java.lang.IllegalStateException(re.getMessage());
              com.inqmy.r3adapter.R3ConnectionRequestInfo getDefaultConnectionRequestInfo()
              throws javax.resource.spi.IllegalStateException {
              if (t_cri == null) {
              String strClientNumber = this.getClientNumber();
              if (strClientNumber == null) {
              throw new javax.resource.spi.IllegalStateException("ClientNumber not set for "+this);
              String strLanguage = this.getLanguage();
              if (strLanguage == null) {
              throw new javax.resource.spi.IllegalStateException("Language not set for "+this);
              String strUserName = this.getUserName();
              if (strUserName == null) {
              throw new javax.resource.spi.IllegalStateException("UserName not set for "+this);
              String strPassword = this.getPassword();
              if (strPassword == null) {
              throw new javax.resource.spi.IllegalStateException("Password not set for "+this);
              t_cri = new com.inqmy.r3adapter.R3ConnectionRequestInfo(strClientNumber, strLanguage, strUserName, strPassword);
              return t_cri;
              public boolean equals(Object obj) {
              if (obj == null) return false;
              if (obj == this) return true;
              if (!this.getClass().isInstance(obj)) return false;
              R3ManagedConnectionFactory mcf = (R3ManagedConnectionFactory)obj;
              return compare(getClientNumber(), mcf.getClientNumber()) &&
              compare(getLanguage(), mcf.getLanguage()) &&
              compare(getUserName(), mcf.getUserName()) &&
              compare(getPassword(), mcf.getPassword()) &&
              compare(getServerName(), mcf.getServerName()) &&
              compare(getSystemNumber(), mcf.getSystemNumber());
              protected final boolean compare(final Object obj1, final Object obj2) {
              if (obj1 == obj2) return true;
              if (obj1 != null) {
              return obj1.equals(obj2);
              } else {
              if (obj2 == null) {
              return true;
              } else {
              return false;
              public int hashCode() { return m_iHashCode; }
              

  • Oracle Resource Adaptor for Geronimo

    For Apache Geronimo 1.1.1, an Oracle Resource Adapter was not available, so we had to write a ʻproxyʼ between the JMS queue and the Oracle Advanced queue. Is there an Oracle Resource Adapter available for Geronimo 2.1.3?
    I actually want a JMS interface to Oracle's Advanced Queue product.
    Regards.

    i'm writin a program to extract info from SAP but i can't find where download the JCO.jar , in SAP site you need a user and password but i don't have it, dou you have already de jar file? could you send me tha jar? or may be i have to purchase that product? pleas help me!!!!
    my addres is [email protected]

  • Resource adaptor

    I am trying to use the Resource Adaptor for IDM6 with Lotus Notes/Domino 7.x. Are there any issues?

    i'm writin a program to extract info from SAP but i can't find where download the JCO.jar , in SAP site you need a user and password but i don't have it, dou you have already de jar file? could you send me tha jar? or may be i have to purchase that product? pleas help me!!!!
    my addres is [email protected]

  • SAP Adaptor for Oracle Installation Help

    Hi,
    I am newbie, I am looking for help in installing SAP Adaptor for Oracle.
    My Idea is to do some RFC calls to fetch data from SAP into Oracle database. I am looking for what is my starting points, what to install and configurations. If you can help me with steps to be followed is really Appreciative. I tried to search in Oracle Forums, I guess I am not able to come up with correct tags. It may be a long explanation and may be people asked this question before. If you give me links to read is good enough.
    Following is My platform:
    Oracle:
    I have Oracle 10G and 11 versions. Right now I have my infrastructer ready for 10G. If I install SAP Adaptor and get things running according to what I need, and tomorrow if I upgrade Oracle to 11 version, What all the things that I Upgrade?
    Operating System:
    Unix AIX 5.3
    SAP:
    ECC 6
    Thanks In Advance,
    Raj Murthy(Bhavaraju)

    Hello,
    Right now I have my infrastructer ready for 10G. If I install SAP Adaptor and get things running according to what I need, and tomorrow if I upgrade Oracle to 11 version, What all the things that I Upgrade?About all the topics relatives to SAP, you should ask them (to SAP support service) the question. For instance, is Oracle 11.2 certified for SAP ECC6 ? Or would you have to wait for a later release or patch from SAP ?
    Only SAP could answer you for their own product and matrix compatibility / certification.
    Best regards,
    Jean-Valentin

  • SAP GUI 7.20 pro blem - the resource DLL for bitmaps cannot be loaded

    Hello guys,
    I am fighting the problem all day long.
    I've installed GUI for windows 7.20 , and it cannot be lauched because of the error message :
    SAP GUI 7.20 pro blem - the resource DLL for bitmaps cannot be loaded
    Maybe you know what exact dll is missing or how to repair the problem manually ?
    Thanks guys .
    Regards,
    Laimonas

    Thanks David,
    I don't see any errors in the file - these can be found by searching for '1E ' (note the space after
    the E or '2E ' .
    At the end of the logfile it shows:
    C:\Users\XXXX\AppData\Local\Temp\Temp.Sap\SAPGUI_INST_720\Sap1F6\system\sapbtmp.dll' successfully copied to 'C:\Windows\system32\SAPbtmp.dll', so it does copy the file to the destination directory sucessfully.
    I would suggest reinstalling the SAPGUI again but this time without any /package switches
    In the logfile it shows:
    NwSapSetupEngine.dll:     8.6.1.74
    We recommend that you update your installation server with the latest sapsetup patch as per
    note below:
    http://service.sap.com/sap/support/notes/1587566
    You will also require .NET4 runtime to use the latest installer files.
    run nwsapsetup again from the server and it should install again.
    Any more errors, update the nwsapsetup.log file again.
    Regards,
    Jude

  • Version information for java  resource adaptor

    Hi,
    Iam developing a resource adaptor(RAR). I have deployed my RAR on app server. My problem is that i want to provide version information of my RAR. One way is that i do the same in log files which iam doing presently. Problem is that logging is disabled in most production environment due to performance reasons.
    Otherway is, instead of usual .log file, i write the version information in some .config file which I can create when my adaptor is loaded. Problem with this approach is that i can have mutiple RAR deployed on same app server connected to different instances of EIS. If app server has only single class loader, then this will be a problem as the RAR which is loaded later will override the previous info as only one copy of the file is created.
    Can anyone suggest me a possible way.
    Ashish

    There is noy way for you to write a simple message to the app server log file when the RAR is inited stating the version of the RAR? You also mentioned dumping the RAR version to a file. Why can't you simply write the RAR version to a unique file name by adding a date stamp or some other unique identifier so you don't overwrite the previous file? Maybe I'm missing something.

  • Restricting Delegate Classloading for Resource Adaptor

    I have an EAR application contains multilple EJB's and single Resource Adaptor. My EJB depends on some JARs which are under lib directory.
    Now the problem is that I have a JAR abc.jar which are present under my my.ear/lib directory as well as under my Resource Adaptor i.e. my.ear/plugin-ra.rar#abc.jar, both are same but I want my Resource Adaptor to use the one which is inside my my.ear/plugin-ra.rar instead of one under my.ear/lib as this JAR loads my plugin present under Resource Adaptor.
    Is there anyway I can configure my RA to use delegate=false at class loading using Application Server specific deployment descriptors, as this behaivour differs from each Application Server. This is currently working fine on jBoss 4.2.3GA without any configurations but fails on Glassfish3.0.1, WebSphere7 and WebLogic10.3.3.
    Your comments and help will be appreciated.
    Thanks,
    SJunejo

    if you enable enable-global-access-to-classes to true in weblogic-ra.xml, all classes inside RAR will be loaded in a classloader which is parent of all ear appliactions; if set to false, all classes inside RAR by default will be loaded by a sub-classloader of ear.
    jars in EAR\lib are always loaded by EAR's classloader.
    Put same jar in multiple places is not good practice any way.
    My suggestion is to re-arrange your ear/rar to always just keep one copy of each jar.

  • Sample JAVA code using Resource Adapter for RFC Connections

    Hi Java Knowledgeable Ones.
    I have successfully deployed the SAP Netweaver J2ee Engine "Resource Adapter for RFC Connections to ABAP Systems" to my Web Application Server.  Now I need to develop a JAVA application that would utilize this deployed resource adapter.  The resource adapter specifies the SAPClient, UserName, and password.  I am thinking that the JAVA code to invoke this connection would therefore not need to provide this information as it should be available in the resource adapter.
    Do you have sample code that you could send to me showing how to do this?
    Thanks,
    Kevin

    Hi Kevin,
    this is actually no good style! You should not open the connection with the adaptor knowing the password. Usually it should work via a connection that uses only basic rights  and the user has already authenticated and is using his security ticket.
    For security handling see:
    http://help.sap.com/saphelp_nw04/helpdata/en/61/f8bc3d52f39d33e10000000a11405a/frameset.htm
    Regards,
    Benny

  • Db adaptor for insert- SQLException: [SQL0803] Duplicate key value specified

    While invoking db adaptor for insert on table 1 selecting values form another table, i am gtting error ; before3 insert i am updating table 2nd using db adaptor
    QUERY insert into CRPDTA.F5504579 (SELECT * FROM CRPDTA.F5504571 WHERE PAHDC=#v_updatedRecord_HDC)
    Error :
    Non Recoverable System Fault :
    <bpelFault><faultType>0</faultType><bindingFault xmlns="http://schemas.oracle.com/bpel/extension"><part name="summary"><summary>Exception occured when binding was invoked. Exception occured during invocation of JCA binding: "JCA Binding execute of Reference operation 'insert_Ledger_F5504579' failed due to: Pure SQL Exception. Pure SQL Execute of insert into CRPDTA.F5504579 (SELECT * FROM CRPDTA.F5504571 WHERE PAHDC=?) failed. Caused by java.sql.SQLException: [SQL0803] Duplicate key value specified.. The Pure SQL option is for border use cases only and provides simple yet minimal functionality. Possibly try the "Perform an operation on a table" option instead. This exception is considered not retriable, likely due to a modelling mistake. To classify it as retriable instead add property nonRetriableErrorCodes with value "--803" to your deployment descriptor (i.e. weblogic-ra.xml). To auto retry a retriable fault set these composite.xml properties for this invoke: jca.retry.interval, jca.retry.count, and jca.retry.backoff. All properties are integers. ". The invoked JCA adapter raised a resource exception. Please examine the above error message carefully to determine a resolution. </summary></part><part name="detail"><detail>[SQL0803] Duplicate key value specified.</detail></part><part name="code"><code>-803</code></part></bindingFault></bpelFault>
    Please suggest....

    Easter1976 wrote:
    Hi please can you help me. I think I am having problems with tranactions. I am deleting from a table and then inserting in the same table with the same key that I have just deleted. Simple then - don't do that. It suggests a flaw in the design. Either use a new key or do an update.
    Note that you would get a duplicate key error if the table is set up such that it doesn't
    actually delete but doesn't something such as creating a log entry with a delete flag set.

  • Start Of Ramp-Up for SAP Portfolio and Project Management 5.0

    Start Of Ramp-Up for SAP Portfolio and Project Management 5.0
    Starting with this new release, the application SAP Portfolio and Project Management 5.0
    replaces both the SAP Resource and Portfolio Management (SAP RPM) application and the
    Collaboration Projects (cProjects) application.
    Start of ramp-up for SAP Portfolio and Project Management is 19th of April, 2010. The end
    of ramp-up is currently scheduled for 19th of October, 2010.
    Functional Innovations And New Features
    A detailed description of all new and/or enhanced functional innovations and features can
    be found in the Release Notes:
    [http://service.sap.com/releasenotes |http://service.sap.com/releasenotes]
      -> SAP Solutions
        -> Release Notes SAP Portfolio and Project Management
    There are some SAP Notes which are in general very important for SAP Portfolio and Project
    Management 5.0 and which also serve as central points of entry to find import information:
    SAP Note [1377104|https://service.sap.com/sap/support/notes/1377104]      FAQs - SAP Portfolio and Project Management 5.0
    SAP Note [1402912|https://service.sap.com/sap/support/notes/1402912]      PPM 5.0: Supported Browsers, Java versions, etc. 
    SAP Note [1411953|https://service.sap.com/sap/support/notes/1411953]      PPM 5.0: Configuration Content
    SAP Note [1436778|https://service.sap.com/sap/support/notes/1436778]      SAP Portfolio and Project Management 5.0: Restrictions
    Kind regards,
       Florian

    Thanks very much for taking the time to post the info Florian. I will update this thread as well if I run into any new information.
    Do we have any idea on SAP's direction for Product Definition? PD is still version 2.0 and I heard that PD functionality will be incorporated into PPM 5.0 which does make a lot of sense. I very briefly went through the notes and config doc in this post and did not get the impression that PPM has any idea and concept management capabilities.

  • LiveCache for SAP HCM Idocs ECC6EHP4 on windows/mssql

    Hello Gurus,
    We am trying to process inbound HR Idoc (message type HRMD_A) from a java system and during the process it stucks in error code 51 and error message says - "Unable to establish connection to LiveCache".
    Now we dont have any Livecache setup here but we built the system based upon a system copy and i can see some LiveCache system maintained there in tcode DB59 and DBACOCKPIT but we dont have those systems in our landscape as the system copy was from SAP originally.
    Now the question is Do we need LiveCache for SAP HR HCM module specifically to proess HR Idocs (inbound only, outbound process works fine).
    I read a lot of stufff on live cache technology but  i think that is required only for SAP SCM(Supply chain management).
    If i need to install livecache what would be the ideal steps, currently my ECC EHP4 system is on windows 2003 server/ MSSQL 2005.
    Do i need to install MAXDB along with MSSQL to support livecache as its only supported on MaxDB(correct me if i am wrong).
    Any reply will be highly appreciated.
    Mani

    Hello Natalia,
    Thank you for your reply, but we want to resolve it if possible without SAP support
    please find my answers below for your uestion
    -> Is your system connected to CRM system?
    No
    -> Is your system connected to SCM system?
    No
    -> What connections you saw in /ndb59 on your system?
    To a unknown SAP SID which is in red color, that means not active.
    -> What SAP components, with SP number, installed on your system?
    WE have basically SAP ERP with SAP HR as the main component we are working on this system.
    following is the full list of component
    S/w component     Release     Level     Highest support Package     S/w Description
    SAP_ABA     701     4     SAPKA70104     Cross-Application Component
    SAP_BASIS     701     4     SAPKB70104     SAP Basis Component
    PI_BASIS     701     4     SAPK-70104INPIBASIS     Basis Plug-In
    ST-PI     2008_1_700     0          -     SAP Solution Tools Plug-In
    SAP_BS_FND     701     1     SAPK-70101INSAPBSFND     SAP Business Suite Foundation
    SAP_BW     701     2     SAPKW70102     SAP Business Warehouse
    LCAPPS     2005_700     5     SAPKIBHD05     LC Applications (LCAPPS) 2005_700
    SAP_AP     700     14     SAPKNA7014     SAP Application Platform
    WEBCUIF     700     1     SAPK-70001INWEBCUIF     SAP WEBCUIF 700
    SAP_APPL     604     1     SAPKH60401     Logistics and Accounting
    SAP_HR     604     4     SAPKE60404     Human Resources
    SAP_HRCAR     604     4     SAPK-60404INSAPHRCAR     Sub component SAP_HRCAR of SAP_HR
    SAP_HRCAT     604     4     SAPK-60404INSAPHRCAT     Sub component SAP_HRCAT of SAP_HR
    SAP_HRCAU     604     4     SAPK-60404INSAPHRCAU     Sub component SAP_HRCAU of SAP_HR
    SAP_HRCBE     604     4     SAPK-60404INSAPHRCBE     Sub component SAP_HRCBE of SAP_HR
    SAP_HRCBR     604     4     SAPK-60404INSAPHRCBR     Sub component SAP_HRCBR of SAP_HR
    SAP_HRCCA     604     4     SAPK-60404INSAPHRCCA     Sub component SAP_HRCCA of SAP_HR
    SAP_HRCCH     604     4     SAPK-60404INSAPHRCCH     Sub component SAP_HRCCH of SAP_HR
    SAP_HRCCL     604     4     SAPK-60404INSAPHRCCL     Sub component SAP_HRCCL of SAP_HR
    SAP_HRCCN     604     4     SAPK-60404INSAPHRCCN     Sub component SAP_HRCCN of SAP_HR
    SAP_HRCDE     604     4     SAPK-60404INSAPHRCDE     Sub component SAP_HRCDE of SAP_HR
    SAP_HRCDK     604     4     SAPK-60404INSAPHRCDK     Sub component SAP_HRCDK of SAP_HR
    SAP_HRCES     604     4     SAPK-60404INSAPHRCES     Sub component SAP_HRCES of SAP_HR
    SAP_HRCFI     604     4     SAPK-60404INSAPHRCFI     Sub component SAP_HRCFI of SAP_HR
    SAP_HRCFR     604     4     SAPK-60404INSAPHRCFR     Sub component SAP_HRCFR of SAP_HR
    SAP_HRCGB     604     4     SAPK-60404INSAPHRCGB     Sub component SAP_HRCGB of SAP_HR
    SAP_HRCHK     604     4     SAPK-60404INSAPHRCHK     Sub component SAP_HRCHK of SAP_HR
    SAP_HRCID     604     4     SAPK-60404INSAPHRCID     Sub component SAP_HRCID of SAP_HR
    SAP_HRCIE     604     4     SAPK-60404INSAPHRCIE     Sub component SAP_HRCIE of SAP_HR
    SAP_HRCIN     604     4     SAPK-60404INSAPHRCIN     Sub component SAP_HRCIN of SAP_HR
    SAP_HRCIT     604     4     SAPK-60404INSAPHRCIT     Sub component SAP_HRCIT of SAP_HR
    SAP_HRCJP     604     4     SAPK-60404INSAPHRCJP     Sub component SAP_HRCJP of SAP_HR
    SAP_HRCKR     604     4     SAPK-60404INSAPHRCKR     Sub component SAP_HRCKR of SAP_HR
    SAP_HRCMX     604     4     SAPK-60404INSAPHRCMX     Sub component SAP_HRCMX of SAP_HR
    SAP_HRCMY     604     4     SAPK-60404INSAPHRCMY     Sub component SAP_HRCMY of SAP_HR
    SAP_HRCNL     604     4     SAPK-60404INSAPHRCNL     Sub component SAP_HRCNL of SAP_HR
    SAP_HRCNO     604     4     SAPK-60404INSAPHRCNO     Sub component SAP_HRCNO of SAP_HR
    SAP_HRCNZ     604     4     SAPK-60404INSAPHRCNZ     Sub component SAP_HRCNZ of SAP_HR
    SAP_HRCPH     604     4     SAPK-60404INSAPHRCPH     Sub component SAP_HRCPH of SAP_HR
    SAP_HRCPT     604     4     SAPK-60404INSAPHRCPT     Sub component SAP_HRCPT of SAP_HR
    SAP_HRCRU     604     4     SAPK-60404INSAPHRCRU     Sub component SAP_HRCRU of SAP_HR
    SAP_HRCSE     604     4     SAPK-60404INSAPHRCSE     Sub component SAP_HRCSE of SAP_HR
    SAP_HRCSG     604     4     SAPK-60404INSAPHRCSG     Sub component SAP_HRCSG of SAP_HR
    SAP_HRCTH     604     4     SAPK-60404INSAPHRCTH     Sub component SAP_HRCTH of SAP_HR
    SAP_HRCTW     604     4     SAPK-60404INSAPHRCTW     Sub component SAP_HRCTW of SAP_HR
    SAP_HRCUS     604     4     SAPK-60404INSAPHRCUS     Sub component SAP_HRCUS of SAP_HR
    SAP_HRCVE     604     4     SAPK-60404INSAPHRCVE     Sub component SAP_HRCVE of SAP_HR
    SAP_HRCZA     604     4     SAPK-60404INSAPHRCZA     Sub component SAP_HRCZA of SAP_HR
    SAP_HRGXX     604     4     SAPK-60404INSAPHRGXX     Sub component SAP_HRGXX of SAP_HR
    SAP_HRRXX     604     4     SAPK-60404INSAPHRRXX     Sub component SAP_HRRXX of SAP_HR
    EA-IPPE     404     1     SAPK-40401INEAIPPE     SAP iPPE
    EA-APPL     604     1     SAPK-60401INEAAPPL     SAP Enterprise Extension PLM, SCM, Finan
    EA-DFPS     604     1     SAPK-60401INEADFPS     SAP Enterprise Extension Defense Forces
    EA-FINSERV     604     1     SAPK-60401INEAFINSRV     SAP Enterprise Extension Financial Servi
    EA-GLTRADE     604     1     SAPK-60401INEAGLTRAD     SAP Enterprise Extension Global Trade
    EA-HR     604     4     SAPK-60404INEAHR     SAP Enterprise Extension HR
    EA-HRCAR     604     4     SAPK-60404INEAHRCAR     Sub component EA-HRCAR of EA-HR
    EA-HRCAT     604     4     SAPK-60404INEAHRCAT     Sub component EA-HRCAT of EA-HR
    EA-HRCAU     604     4     SAPK-60404INEAHRCAU     Sub component EA-HRCAU of EA-HR
    EA-HRCBE     604     4     SAPK-60404INEAHRCBE     Sub component EA-HRCBE of EA-HR
    EA-HRCBR     604     4     SAPK-60404INEAHRCBR     Sub component EA-HRCBR of EA-HR
    EA-HRCCA     604     4     SAPK-60404INEAHRCCA     Sub component EA-HRCCA of EA-HR
    EA-HRCCH     604     4     SAPK-60404INEAHRCCH     Sub component EA-HRCCH of EA-HR
    EA-HRCCN     604     4     SAPK-60404INEAHRCCN     Sub component EA-HRCCN of EA-HR
    EA-HRCDE     604     4     SAPK-60404INEAHRCDE     Sub component EA-HRCDE of EA-HR
    EA-HRCDK     604     4     SAPK-60404INEAHRCDK     Sub component EA-HRCDK of EA-HR
    EA-HRCES     604     4     SAPK-60404INEAHRCES     Sub component EA-HRCES of EA-HR
    EA-HRCFI     604     4     SAPK-60404INEAHRCFI     Sub component EA-HRCFI of EA-HR
    EA-HRCFR     604     4     SAPK-60404INEAHRCFR     Sub component EA-HRCFR of EA-HR
    EA-HRCGB     604     4     SAPK-60404INEAHRCGB     Sub component EA-HRCGB of EA-HR
    EA-HRCHK     604     4     SAPK-60404INEAHRCHK     Sub component EA-HRCHK of EA-HR
    EA-HRCID     604     4     SAPK-60404INEAHRCID     Sub component EA-HRCID of EA-HR
    EA-HRCIE     604     4     SAPK-60404INEAHRCIE     Sub component EA-HRCIE of EA-HR
    EA-HRCIN     604     4     SAPK-60404INEAHRCIN     Sub component EA-HRCIN of EA-HR
    EA-HRCIT     604     4     SAPK-60404INEAHRCIT     Sub component EA-HRCIT of EA-HR
    EA-HRCJP     604     4     SAPK-60404INEAHRCJP     Sub component EA-HRCJP of EA-HR
    EA-HRCKR     604     4     SAPK-60404INEAHRCKR     Sub component EA-HRCKR of EA-HR
    EA-HRCMX     604     4     SAPK-60404INEAHRCMX     Sub component EA-HRCMX of EA-HR
    EA-HRCMY     604     4     SAPK-60404INEAHRCMY     Sub component EA-HRCMY of EA-HR
    EA-HRCNL     604     4     SAPK-60404INEAHRCNL     Sub component EA-HRCNL of EA-HR
    EA-HRCNO     604     4     SAPK-60404INEAHRCNO     Sub component EA-HRCNO of EA-HR
    EA-HRCNZ     604     4     SAPK-60404INEAHRCNZ     Sub component EA-HRCNZ of EA-HR
    EA-HRCPH     604     4     SAPK-60404INEAHRCPH     Sub component EA-HRCPH of EA-HR
    EA-HRCPT     604     4     SAPK-60404INEAHRCPT     Sub component EA-HRCPT of EA-HR
    EA-HRCRU     604     4     SAPK-60404INEAHRCRU     Sub component EA-HRCRU of EA-HR
    EA-HRCSE     604     4     SAPK-60404INEAHRCSE     Sub component EA-HRCSE of EA-HR
    EA-HRCSG     604     4     SAPK-60404INEAHRCSG     Sub component EA-HRCSG of EA-HR
    EA-HRCTH     604     4     SAPK-60404INEAHRCTH     Sub component EA-HRCTH of EA-HR
    EA-HRCTW     604     4     SAPK-60404INEAHRCTW     Sub component EA-HRCTW of EA-HR
    EA-HRCUS     604     4     SAPK-60404INEAHRCUS     Sub component EA-HRCUS of EA-HR
    EA-HRCVE     604     4     SAPK-60404INEAHRCVE     Sub component EA-HRCVE of EA-HR
    EA-HRCZA     604     4     SAPK-60404INEAHRCZA     Sub component EA-HRCZA of EA-HR
    EA-HRGXX     604     4     SAPK-60404INEAHRGXX     Sub component EA-HRGXX of EA-HR
    EA-HRRXX     604     4     SAPK-60404INEAHRRXX     Sub component EA-HRRXX of EA-HR
    EA-PS     604     1     SAPK-60401INEAPS     SAP Enterprise Extension Public Services
    EA-RETAIL     604     1     SAPK-60401INEARETAIL     SAP Enterprise Extension Retail
    FINBASIS     604     1     SAPK-60401INFINBASIS     FINBASIS
    C-CEE     110_604     0          -     ECC Core Country Versions for EEM Countr
    CPRXRPM     450_700     4     SAPK-45004INCPRXRPM     SAP xRPM/cProjects/cFolders 4.50 (ABAP)
    ECC-DIMP     604     1     SAPK-60401INECCDIMP     DIMP
    ECC-SE     604     1     SAPK-60401INECCSE     ESA FAST TRACK (ERP) 2005
    ERECRUIT     604     1     SAPK-60401INERECRUIT     ERECRUIT
    FI-CA     604     1     SAPK-60401INFICA     FI-CA
    FI-CAX     604     1     SAPK-60401INFICAX     FI-CA Extended
    HR-CEE     110_604     0          -     HR country version for CEE countries
    HR-CEECBG     110_604     0          -     Sub component HR-CEECBG of HR-CEE
    HR-CEECCO     110_604     0          -     Sub component HR-CEECCO of HR-CEE
    HR-CEECCZ     110_604     0          -     Sub component HR-CEECCZ of HR-CEE
    HR-CEECHR     110_604     0          -     Sub component HR-CEECHR of HR-CEE
    HR-CEECHU     110_604     0          -     Sub component HR-CEECHU of HR-CEE
    HR-CEECPL     110_604     0          -     Sub component HR-CEECPL of HR-CEE
    HR-CEECRO     110_604     0          -     Sub component HR-CEECRO of HR-CEE
    HR-CEECSI     110_604     0          -     Sub component HR-CEECSI of HR-CEE
    HR-CEECSK     110_604     0          -     Sub component HR-CEECSK of HR-CEE
    HR-CEECTR     110_604     0          -     Sub component HR-CEECTR of HR-CEE
    HR-CEECUA     110_604     0          -     Sub component HR-CEECUA of HR-CEE
    HR-CEEGXX     110_604     0          -     Sub component HR-CEEGXX of HR-CEE
    HR-CEERXX     110_604     0          -     Sub component HR-CEERXX of HR-CEE
    INSURANCE     604     1     SAPK-60401ININSURANC     SAP Insurance
    IS-CWM     604     1     SAPK-60401INISCWM     Industry Solution Catch Weight Managemen
    IS-H     604     1     SAPK-60401INISH     SAP Healthcare
    IS-M     604     1     SAPK-60401INISM     SAP MEDIA
    IS-OIL     604     1     SAPK-60401INISOIL     IS-OIL
    IS-PRA     604     1     SAPK-60401INISPRA     SAP IS-PRA
    IS-PS-CA     604     1     SAPK-60401INISPSCA     IS-PS-CA 604 Upgrade
    IS-UT     604     1     SAPK-60401INISUT     SAP Utilities/Telecommunication
    LSOFE     604     1     SAPK-60401INLSOFE     LSOFE
    PLMWUI     700     1     SAPK-70001INPLMWUI     SAP PLM Web UI
    RTLWFM     100     3     SAPK-10003INRTLWFM     RTLWFM 100: Add-On Installation
    SEM-BW     604     1     SAPK-60401INSEMBW     SEM-BW
    SLL-LEG     720     1     SAPK-72001INSAPSLL     SLL-LEG 720 : Add-On Installation
    SLL_PI     720_603     1     SAPK-72901INSLLPI     GTS Plug-In
    WFMCORE     200     11     SAPK-20011INWFMCORE     WFMCORE 200 Upgrade: Meta-Commandfile (D
    GRC_RM_ABP     200     11     SAPK-20011INGRCRMABP     GRC_RM_ABP 200: Add-On Installation
    AIN     400     2     SAPK-40002INAIN     AIN 400 : Add-On Supplement
    AOFTOOLS     400_700     0          -     Add-On Assembly Kit (AOFTOOLS 400_700)
    GRCPCRTA     250_700     5     SAPK-25605INGRCPCRTA     GRCPC 250 RTA for 700
    GRCSPC     250     5     SAPK-25005INGRCSPC     GRC Process Control 250
    MRSS     610     3     SAPK-61003INMRSS     Multi Resource Service Scheduling
    ST-A/PI     01L_ECC600     0          -     Application Servicetools for ECC 600
    TDAGBCA     110_600     2     SAPK-26002INTDAGBCA     TechniData Basic Components
    VIRSAHR     530_700     3     SAPK-53303INVIRSAHR     SAP GRC Access Controls 5.3 for 700 HR S
    VIRSANH     530_700     4     SAPK-53304INVIRSANH     SAP GRC Access Controls 5.3 for 700 HR a
    XFT     240_700     0          -     xft business add-on
    Thanks
    Mani

  • Oracle RAC + Clusterware and another Cluster with Clusterware for SAP

    Hi,
    I have some questions about implementation of Oracle RAC and Clusterware with SAP
    For exemple, an architecture with 4 servers ( 2 real and 2 vritual ).
    I would like to know if i can do this
    2 servers for the first cluster.
    First cluster is with Clusterware and Oracle RAC
    This is for all the SAP Oracle databases environment
    I think there is no problem here.
    Now, with 2 others servers il would like to make another cluster (with also clusterware ) for SAP Central services (SCS) and enque replication server (ERS)
    Because all architecture is for only one SAP environment with separate services.
    1 for Database (cluster 1)
    1 for Central services ( cluster 2, virtual machine )
    1 for Dialogue Instance (no cluster)
    To be clear, the second cluster is to make HA of central services SAP (SCS and ERS )
    My question 2 are :
    Is it a good job to do this ? or there is anything wrong ?
    Do i have to install antoher clusterware for this 2 servers or i have to make anything with the existing clusterware + oracle RAC ??
    Thank you very much for you help
    Edited by: user12395221 on 29 déc. 2009 15:36

    Hi Givre,
    have you checked: Providing High Availability for SAP Resources (http://www.oracle.com/technology/products/database/clusterware/pdf/sap-availability-on-rac-twp.pdf) available on otn.oracle.com/clusterware? Not being an SAP expert myself, I still think, this paper describes the configuration - at least partially - that you are trying to set up.
    Just an idea. Thanks,
    Markus

  • Siemens Meterial for SAP-XI

    Hi,
    Could you please provide me Siemens meterial for SAP-XI
    Thanks,
    RamuV

    hi ramu
         why you are specifically asking for SIEMENS material,as a lot of information is available in sdn blogs...iam sending you the links pls go thru it ...its a  complete xi stuff
    SAP XI supports internal company scenarios and cross-company scenarios.
    XI has following components:
    1) Design and Configuration time components http://help.sap.com/saphelp_nw04/helpdata/en/0d/5ab43b274a960de10000000a114084/frameset.htm
    2) Mappings
    3) Adapters
    http://help.sap.com/saphelp_nw04/helpdata/en/0d/5ab43b274a960de10000000a114084/frameset.htm
    4) CCBPM
    http://help.sap.com/saphelp_nw04/helpdata/en/0d/5ab43b274a960de10000000a114084/frameset.htm
    5) Central monitoring
    http://help.sap.com/saphelp_nw04/helpdata/en/7c/14b5765255e345a9e3f044f1e9bbbf/frameset.htm
    Refer all the below links for starter:
    http://help.sap.com/saphelp_nw04/helpdata/en/e1/8e51341a06084de10000009b38f83b/frameset.htm
    /thread/143337 [original link is broken]
    XI for starters
    Help in XI
    Hi all, I am learning xi, any body have lifecycle document of xi projec
    Regarding XI installation and Learning
    1. Aspirant to learn SAP XI...You won the Jackpot if you read this!-Part I Aspirant to learn SAP XI...You won the Jackpot if you read this!-Part I
    2. Aspirant to learn SAP XI...You won the Jackpot if you read this!-Part II Aspirant to learn SAP XI...You won the Jackpot if you read this!-Part II
    3. Aspirant to learn SAP XI...You won the Jackpot if you read this!-Part III Aspirant to learn SAP XI...You won the Jackpot if you read this!-Part III
    and once you are through ...follow the following links to weblogs which explain all the basic scenarios in XI
    Following are the links to weblogs which will help to develop the basic scenarios.
    Introduction to IDoc-XI-File scenario and complete walk through for starters. - IDoc to File
    ABAP Proxies in XI(Client Proxy) - ABAP Proxy to File
    FILE to JDBC Adapter using SAP XI 3.0 - File to JDBC
    File to R/3 via ABAP Proxy - File to ABAP Proxy
    Introduction to simple(File-XI-File)scenario and complete walk through for starters(Part1) - File to File Part 1
    Introduction to simple (File-XI-File)scenario and complete walk through for starters(Part2) - File to File Part 2
    Convert any flat file to any Idoc-Java Mapping - Any flat file to any Idoc
    RFC Scenario using BPM --Starter Kit - File to RFC
    https://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/wlg/1685 [original link is broken] - File to Mail
    Dynamic File Name using XI 3.0 SP12 Part - I - Dynamic File Name Part 1
    Dynamic file name(XSLT Mapping with Java Enhancement) using XI 3.0 SP12 Part -II - Dynamic File Name Part 2
    The specified item was not found. - Dynamic Mail Address
    Understanding message flow in XI - Message Flow in XI
    Walkthrough with BPM - Walk through BPM
    Schedule Your BPM - Schedule BPM
    Demonstrating Use of Synchronous-Asynchronous Bridge to Integrate Synchronous and Asynchronous systems using ccBPM in SAP Xi - Use of Synch - Asynch bridge in ccBPM
    https://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/wlg/1403 [original link is broken] - Use of Synch - Asynch bridge in ccBPM
    The specified item was not found. - Maintain RFC destination centrally
    Triggering e-Mails to Shared folders of SAP IS-U - Triggering Email from folder
    Outbound Idoc's - Work around using "Party"? - Handling different partners for IDoc
    /people/siva.maranani/blog/2005/08/27/modeling-integration-scenario146s-in-xi - Modeling Integration Scenario in XI The specified item was not found. - Testing of integration process
    The specified item was not found. - Authorization in XI http://help.sap.com/saphelp_nw04/helpdata/en/58/d22940cbf2195de10000000a1550b0/content.htm - Authorization in XI
    The specified item was not found. - Alert Configuration
    The specified item was not found. - Trouble shoot alert config
    Executing Unix shell script using Operating System Command in XI - Call UNIX Shell Script
    Overview of Transition from Dev to QA in XI - Transport in XI
    Using ABAP XSLT Extensions for XI Mapping - Using ABAP XSLT Extensions for XI Mapping
    /people/prasad.ulagappan2/blog/2005/06/07/mail-adapter-scenarios-150-sap-exchange-infrastructure - Mail Adaptor options
    IDOCs (Multiple Types) Collection in BPM - Collection of IDoc to Single File
    XI : Controlling access to Sensitive Interfaces - Controlling access to Sensitive Interfaces
    The specified item was not found. - The same filename from a sender to a receiver file adapter - SP14
    Payload Based Message Search in XI30 using Trex Engine - Payload Based Message Search in XI30 using Trex Engine XI : Configuring CCMS Monitoring for XI- Part I - XI : Configuring CCMS Monitoring for XI- Part I
    The specified item was not found. - XI: HTML e-mails from the receiver mail adapter
    XI : FAQ's Provided by SAP (Updated) - XI : FAQ's Provided by SAP thnx chirag
    note:reward points if solution found helpfull.....
    regards
    chandrakanth.k

Maybe you are looking for

  • How do I get my contacts back from iCloud?

    I wanted to get out of iCloud. When I unchecked my Contacts I got a window that asked if I wanted to keep my contacts on my Mac or delete. I clicked "delete". I shouldn't have. Can I get my old contacts back? How could Apple supply such a damaging pi

  • Function: ARCHIV_CREATE_DIALOG_META

    When this function is called, another dialog screen opens and wants the file name. I want to give file name as a paramter to function. And this function has a file parameter which's length is 70. But in dialog screen length is not 70. Why this is so?

  • Internal error with jgoodies form lib

    I was evaluating the 0.9.7 version of the form lib (nc version) with JDeveloper 9.0.3.1 and I could not compile anything with the library. Everytime I tried to compile my project I got a "compiler internal error". I did not see any speific error mess

  • Can't import MOV file ! in PREMIER CS3 3.0

    I can't Import any MOV file ? it say some things like code... What can i do ??

  • Agressive popup that cannot be blocked

    Annoying tiny popup in blue pops up on every webpage I visit My Firefox setting allow no popups so it must get around your safety system Would like to send you a screen print but this system doesn't let me