Connection object replication

I want to replicate ISU Connection Object in CRM.
Can Anybody help me please?

Hi Nikhil,
First create a hierarchy (eg, ZTech_Master_Data) and then a main category for the new base hierachy. Additional maintenance is needed for the categories sometimes you do check using t-code COMC_PR_OBJ_FAM,
The hierarchy R3PRODSTYP should be assigned to the product application that why you need to create to your own hierarchy.
Please let me know if your problem solved.
Regards,
Shahid

Similar Messages

  • MiddleWare : Connection Object Replication

    Hi Gurus,
    I am sending Custom field of Tech Obj from CRM to ISU. I have already Update the CRM Structure as well as of ISU Structure ie BAPI_EHAUADR. My data is replicating through MiddleWare without any Error.
    But Except my Custom field, all the data is updating in ISU.
    Just want to confirm where should i need to fill Structure in ISU so that my field in BAPI_EHAUADR will get update.
    Also want to confirm While sending Connection Object what would be the recieving Functional Module in ISU side.
    Thanks in advance.
    Harkesh Dang

    Hello Friend!
    I have the same problem with vs2008!
    Do you have the solution for this problem?
    Thanks

  • CRM/ISU: Notes (or Texts) at Connection Object Level and replication

    Hi there,
    I am trying to replicate to CRM (and back to ISU) the Text objects linked against the Connection Object in ISU.
    The idea is to have two texts area in the Connection Object in the WebIC that can be replicated back to the related ISU's ones.
    The requirement is to replicate those texts (multiline texts, textarea, notes) linked against the Connection Object from CRM to ISU.
    The connection object in CRM is a "casted" Individual Object that can be linked against Notes (or Texts), isn't it?
    So the IObjects can have a Notes Assignment Block.
    The problem is that from an WebIC point of view the Notes Assignment block obviously are not shown.
    Have someone of you done something like that before? Any idea?
    Thanks.
    Regards,
    Carlo.

    Hey Bill, thanks for the links.  Question - is the Utilities Check Cockpit available externally?  I try the link but receive an authorization issue using my new S-id
    I am trying the following link:
    https://service.sap.com/~sapdownload/011000358700001040272011E
    Thanks,
    James

  • Object Replication with RTMFP

    I am confused with the object replication capabilities of RTMFP.  I am not sure which "objects" are replicated or how they are created an managed.  Does anyone have any examples they could hare?

    That makes me feel better, as I was beginning to think I was missing something.  I am actually just experimenting with building a distributed status reporting system.  The feature I was working on was enabling the submitter to compose the status report while disconnected (such as on an airplane) an/or when connected to a local LAN (as in a conference /war room like setting) with no internet connectivity. 
    Given what I have been trying it seems like what is needed is two additional methods on the netGroup class. 
    AddHaveItem - takes as a parameter a GUIDlist.  (The GUID is defined by the application, so in my example the GUID may be a logical key like "lastname + yy/mm/dd"  or some much more elaborate GUID creation scheme.
    AddWantItem - takes as a parameter a GUIDlist or the string "ALL" indicating everything
    with the response behavior being similar to the AddWantObjects and AddHaveObjects.  This may provide a means of accessing the shared objects without depending on a central semaphore.  I suspect you have the internal information necessary to map the GUID to the index already in the internals of the group.
    A couple of more unrelated questions:
    1) While debugging I tend to use the same GroupSpecifier over and over.  What I notice is unless I disconnect cleanly the next time I connect the previous peer is still represented in the group.  So this morning I started plugging away.  I ranmy application and saw there were 10 connections to my group.  I know this is residual from last night because I am only running on my LAN (using netConnection.connect("rtmfp:") ) and only have one machine with one instance of the app running.  Where is this information coming from?  Where is it stored?  When will it "timeout"?  Is there any way to access these internal structures and information?
    2) It seems it would be very useful to provide access to current group members.  In my example app mentioned above I want to show the current user any other peers who are online an connected to the group.  The only way I see to do this is to manually build the list by listening for "NetGroup.Neighbor.Connect"  which I believe only gets me the endpoints I am directly connected with.  In my case I want the user to see a list of everyone they can communicate with (regardless of whether connected directly or indirectly).  More assumptions on my part but this must be available in the internals since NetGroup.Post is able to deliver to all current users.
    Again, thanks for your assistance on this new, potentially revolutionary functionality.  While all the other vendors are betting big on the cloud adobe is innovating on the opposite end of the spectrum where in my opinion most users are most naturally comfortable.
    (pls look for private message)

  • ISU-CRM Initial load of connection object

    Hi All,
    Currently we are working on replication  of connection object from ISU to CRM
    We have followed the settings as metioned in cookbook-ISU/CRM replication of technical object.
    During initial download,BDOC's are going into error with with the error "General error (exception) in product API" and "Validation error occurred: Module VALIDATE_MSGBDOC_FOR_CONNOBJ, BDoc type SI_CONNOBJ.
    We have created subcategories for  connection object and POD in the hierarchy R3PRODSTYP.
    What other setting are we missing?
    Regards
    NIkhil

    Hi ,
    The number range is maintained.
    I was debugging the code and one function module COM_PR_SET_CHECK_ALL is giving error "Assign a base category to the product"
    Diagnosis "When you create a product you must assign it a category. This category is used for number assignment and must be from the hierarchy assigned to the application Product (see also No hierarchy assigned to the application Product)."
    Procedure :Assign the appropriate category to the product.
    Any idea about the error?
    The replication is working perfectly fine in our sandbox system and FM is returning no error.
    Regards
    Nikhil

  • How to store Connection object and call it from other programs.

    Hi,
    I am trying to connect to the database, store the connection object and use this connection object from other standalone java programs.
    Can any one tell me how to do this? I've tried in the following way:
    In the following program I am connecting to the database and saving the connection object in a variable.
    public class GetKT2Connection {
       public static void main(String[] args) {
          String url = "jdbc:odbc:SQLDsn;
          String dbUser = "sa";
          String dbPwd = "sa";
          Connection kt2conn = Connection connection = java.sql.DriverManager.getConnection(url, dbUser, dbPwd);
          if(kt2conn == null) {
             System.out.println("Database Connection Failure!");
          else {
             System.out.println("Connected to Database...");
         GetKTConnectionObj.storeKT2ConnectionObj(kt2conn);
    } Here is the program to save connection object in a variable.
    public class GetKTConnectionObj {
       static Connection kt2Connection = null;
       public static void storeKT2ConnectionObj(Connection conn) {
       kt2Connection = conn;
       public static Connection getKT2ConnectionObj() {
       try {
          return kt2Connection;
       catch(Exception e){
          System.out.println(e);
      return null;
    }Now from the following code I am trying to get the connection object that is stored. But this is throwing NullPointerException.
    public class Metrics_Migration {
      public static void main(String args[]) {
         try {
        java.sql.Connection connection_1 =   GetKTConnectionObj.getKT6ConnectionObj();
         catch(Exception e){
    }

    kt2Connection is null. You need to store it first, to make it not null. Otherwise it will stay null forever. And why on earth are you trying to do this THIS way?
    If you are running the two applications separately, it wont work either.

  • Error in creating connection object

    Dear Experts
    When I am creating connection object using ES55 , I get Stop message saying : " Alternate ID not supported" and when i see Help it indicates : An alternative indicator is active in Customizing of the functional location. This functionality is not supported for connection objects and device locations
    what could be going wrong
    Plesae suggest me the solution
    Thanking you in advance
    warm regards
    narasimha

    Hi,
    Please check the following settings in SPRO:
    Plant Maintenance & Customer Service - -Master Data in Plant Maintenance & Customer Service --Technical Objects --Functional Locations --Alternate Labeling of Functional Locations - - Activate Alternative Labeling --
    In this setting pls inactive the setting for Alt.Label.Then go to ES55 and try.It will work.
    Thanks,
    Banasri Mitra

  • Duplicate check for Connection Objects in CRM

    Hi,
    I want to implement a duplicate check for connection objects in CRM. The duplicate check shall use the address of the connection object and perhaps additonal attributes. I have found a duplicate check for business partners using the basis address service and TREX as index pool. However, I couldn't find a similar functionality for connection objects. Does somebody know:
    1) How to implement a duplicate check for connection objects which is based on the address of the connection object?
    2) Is there a way to use the TREX-based duplicate check which is integrated into the basis address service for connection objects?
    Thanks in advance!
    Best regards,
    Frank

    I also have a requirement to check for duplicate address at connection object level and we are using SAP data servies to validate the address. Can anyone share their experience.

  • Creating logical/virtual connection object  from physical connection

    Can anybody help me what is creating logical/virtual connection object and how to create it from physical connection in java ??
    Thanks in advance...

    WHile you are waiting for an answer, you might want to review the related Oracle documentation:
    For 10g, all docco is at http://www.oracle.com/pls/db102/portal.portal_db?selected=3 and docco I suspect will help you is "Java Developer's Guide" and "JDBC Developer's Guide and Reference"

  • Statements in Connection Object

    Hi All,
    I am using Oracle 8i as my database and JDBC 2.0 for connecting my Java program to Oracle.
    I know that from single connection object I can create multiple statements and execute them. But can any one say me what is the maximum no. of statements which can be created from a single connection object? Or is there no limit on that?
    ..Raj

    Only limited by your memory, no theoritical limit

  • Connection Object filed in O/P file

    Dear Experts,
    As per my requirement, i need to get the connection objects fields in output Excel file, but right now, through el06 they are generating mass data, but in that output file one filed is not coming, but it was maintained in connection object .
    now i want to get that filed ( filed name "other city" ) in my excel sheet also.
    can any body have clue , how to get that filed in my output file also.
    cheers..

    Hi Avinash,
    Thanks for reply, my req is, i have to give the data to meter readers, to which location they have to go , for collecting the MR readings, in that list i need all the fields which i maintained in CO. i guess they didn't maintained one filed earlier, now i want to have one filed in o/p excel sheet.
    hope i made clear.
    Cheers.

  • Threaded Queries from Single static Connection object - Good approach?

    Hi,
    I need to generate a report where I need to query count(1) from over one hundred tables from oracle 10g database. I am not updating or deleting any record.
    My approach is to use a single static connection object and create one thread for each table and capture the result back into a static hashtable.
    But still, I am not getting any substantial performance improvement. Earlier, my report took 40 minutes, when it was non-threaded and now it takes 30 minutes.
    Is there anything more I can do to make my report get the counts faster? Will a connection pool help?

    Tolls wrote:
    jschell wrote:
    I was told by the DBA that count(1) works faster than count(*)....that's why....Unlikely. Certainly not true in current versions of Oracle if that is the source.Not unlikely, actually not true. Beneath the hood Oracle turns a count(1) into a count(*) in order to deal with this. Why? Because count(1) is turned into count(*) in order to avoid it being slower (Oracle 7 was the last time count(1) was different). And the reason generally given is because so many people were mistakenly using count(1) thinking it performed better that they decided to put in the "conversion" to fix the silly queries.
    I think this it the [Ask Tom|http://asktom.oracle.com/pls/asktom/f?p=100:11:109792721681931::::P11_QUESTION_ID:1156159920245] link I used last time this came up here.
    I knew all that, but I missed that the OP had specified the database vendor and version.

  • Passivation of Connection Object in Stateful Session Bean

    Hi all,
    I am developing a Stateful session bean that has a Connection object as its instance variable. And this bean starts transaction that spans across multiple method calls and finally either commit or rollback.
    BeanClass
    UserTransaction utx;
    Connection conn;
    ejbCreate()
    allocateconnection();
    ejbRemove()
    closeconnection();
    ejbActivate()
    allocateconnection();
    ejbpassivate()
    closeconnection();
    StartTransaction()
    utx = getusertransaction();
    utx.begin();
    Method1()
    do something with database
    Method2()
    do something with database
    CommitTransaction()
    utx.commit();
    For example, the typical usage of this bean would be:
    bean.StartTransaction();
    bean.Method1();
    bean.Method2();
    bean.CommitTransaction();
    Here are my two questions:
    1. General Question: In order for a Connection object to join a Transaction, Do I have to create the connection after the transaction has started?
    2. If the answer to the above question is yes, then: I understand that when this bean get passivated, the UserTransaction instance object would be passivated. And since the connection object can't not be passivated, I have to recreate the connection object in ejbactivate() method, would newly created connection participate in the same Transaction that was being passivated and now activated?

    >
    Hi all,
    I am developing a Stateful session bean that has a
    Connection object as its instance variable. And this
    bean starts transaction that spans across multiple
    method calls and finally either commit or rollback.
    BeanClass
    UserTransaction utx;
    Connection conn;
    ejbCreate()
    allocateconnection();
    ejbRemove()
    closeconnection();
    ejbActivate()
    allocateconnection();
    ejbpassivate()
    closeconnection();
    StartTransaction()
    utx = getusertransaction();
    utx.begin();
    Method1()
    do something with database
    Method2()
    do something with database
    CommitTransaction()
    utx.commit();
    For example, the typical usage of this bean would be:
    bean.StartTransaction();
    bean.Method1();
    bean.Method2();
    bean.CommitTransaction();
    Here are my two questions:
    1. General Question: In order for a Connection object
    to join a Transaction, Do I have to create the
    connection after the transaction has started?Strictly NO. In fact, the connection is obtained first and then can a transaction begin.
    2. If the answer to the above question is yes, then: I
    understand that when this bean get passivated, the
    UserTransaction instance object would be passivated.
    And since the connection object can't not be
    passivated, I have to recreate the connection object
    in ejbactivate() method, would newly created
    connection participate in the same Transaction that
    was being passivated and now activated?
    The answer to first question being NO, your argument for question 2 does not hold true. According to the EJB specification, a stateful session bean can only be passivated between the transaction and not within a transaction. Your implementation for the stateful EJB is good to work.

  • How many Connections objects????

    Hi
    I am creating a GUI application which contains several GUI classes(e.g. frames and dialog boxes) which are instantiated depending on the choice of the user. I also have a Database class which contains the code which enables the connection to the database. The code creating the connection is within the constructor,therefore creating a connection whever I create an instance of the database class.
    Most of the GUI classes need to obtain or update information held in a database.
    Currently I create an instance of the Database class in every GUI class which needs to access the database. Obviously however every time a new database object is created, a new connection is also created.
    I am worried about all these database objects all containing their own connections.
    Should I have just one connection object in existence at any one time?
    If so,can I declare the Connection variable in the Database class as static?
    Any help/comments would be gratefully received.
    LGS

    From what I know, there should be no problem with maintaining multiple connections to the database. This is a property of the database itself, most allow about 256 connections. The only problem you face is a lost transaction. As long as you keep the queries serialized, you shouldn't encounter any problems.
    If you did want to only have one connection open... why not have another class for that (DBConn) and not instantiate a new connection in the constructor of your Database class. This way, each Database object can use the one connection by all referencing the DBConn object.
    Just a thought...

  • An error occured while opening the connection: Object reference not set to

    After I uninstalled Oracle Developer Tools for Visual Studio .NET 10.1.0.4 and installed Oracle Developer Tools for Visual Studio .NET with Oracle10g Release 2 ODAC 10.2.0.2.21 I got the error message below when I want to connect to my 10g database using Oracle Explorer.
    Error:
    An error occured while opening the connection: Object reference not set to an instance of an object
    I use OracleConnection to open also cannot be done. But I use Oracle SQL Developer I can connect to orcl that I cannot connect using ODAC 10.2.0.2.21 in my laptop.
    Please help me.
    Ming Man

    Sorry my mistake, I double checked, the one I uninstalled is ODAC 10.2.0.2.20 and not ODAC 10.1.0.4.
    But I have that error.
    Ming Man

Maybe you are looking for