Premise and Connection object

Is it possible to have different addresses for Premise and Connection Object? If yes, then what configuration is needed??

[IS-U Master Data|http://help.sap.com/saphelp_utilities472/helpdata/en/f8/196c35a018d041e10000009b38f839/frameset.htm]
for each connection we can maintain multiple premises.
Premise address can maintain additional information as like (Additional street data enables you to manage additional information on the street name of the connection object. You can also store different street names. )
Regards,
Siva

Similar Messages

  • Need clarification  in usage of  premise and connection object

    Hi everyone,
       I  am working on a project and for that i have  do move in  for around 30 customers. i did up to move in . I assumed 5 customers from a single appartment and grouped  them. so i  used same connection object and premise for them. After move- in is done  i checked the Equipment numbers  generated for all the 5 in that group. The  address in equipment display(ie03) and also the customer display (XD03)  is overlapped  with the connection objects address. so it is showing same address for all 5 customers. After that i changed the premise but used the same conection object. But again the customer address is overlapped with the given connection object address. can anyone help me how to solve this if i have a scenario  like this :  5 customers from same appartment. how to create the connection obj and premise .
    Thanks,
    Archana

    Archana,
    Please have a look at the IS-U data model. The connection objects relates to the building and the premises to the appartments. The 5 customers/consumers/business partners live in their own premise. On premise level you may detail the address with such as "1st floor last door to the right".
    Devices (meters) are installed technically in a devlice location that can be is linked to premise and connection object. Finally the utility installation holds all billing relevant data while the contract is the link between the technical master data and the business master data. During a move-in the address list of a BP is completed by the address of the connection object (if customized).
    As you can see there are various factors affecting the address of a business partner and a installed device.
    Kind regards,
    Fritz

  • Unassing a Premise froma Connection Object

    Hi ISU Experts!
    I juste wanted to ask you if it is possible to unassing a Premise from a Connection Object.
    A user created a new ConnObject/Premise/Installation, but when creating the Premise he assigned it to another Connection Object. Is it possible to reassing the premise? Or Unassign the Premise from the Actual Connection Object?
    Or the should create a new Premise/installation again?
    Thak you very much in advance,
    Best regards
    LUCAS

    Hi,
    There is no reversal process where you can reverse the assignment of a premise with connection object. You need to create a new set of these technical master data once more.
    You can set the 'Delete' flag available at connection object/premise/installation level. It will be archived from the system during archive run.
    Thanks.
    Nirmalya

  • Jva.lang.reflect and Connection objects

    I am not sure in wich forum i should post this, i hope this is the right one.
    I have a class that have one constructor like this:
    classConstructor(String id, Connection conn)
    I am trying to load and use it in runtime using the java.lang.reflect package:
    String id = "Some value";
    Connection conn = dbcm.getConnection(pool);
    className = "Name of the class";
    Class theClass = Class.forName(className);
    Class classArgs[] = { id.getClass(), conn.getClass() }
    Constructor constructor = theClass.getConstructor(classArgs);
    At this time i get the NoSuchMethodException, because the conn.getClass() returns oracle.jdbc.driver.OracleConnection instead of java.sql.Connection.
    Am i doing something wrong here? Is there any way of getting the return value as java.sql.Connection?
    Thanks in advance,
    Rafael Dittberner
    null

    Why not use the following:
    Class classArgs[] = { String.class, java.sql.Connection.class };
    Constructor constructor = theClass.getConstructor(classArgs);
    Actually, the constructor is something you may even want to determine (and use) statically if you repeatedly execute this code.

  • Connection Object validation

    Hi,
    During the migration of Connection Object, the (postal code and street)data does not match 100% with the Regional Structure data. I have turned off the Street validation using the "Flag Street Directory" from ADRCITY but EMIGALL does not let me migrate connection objects whose postal codes does not already exist. Is there a way to turn this validation off or to circumvent this issue? The problem arises because Regional Structure and Connection Object/Premise are being extracted from two different source systems.

    Hi,
    You  need to turn off the flag "city file active" (IMG -> SAP Netweaver -> General Settings -> Set countries ->  Set country-specific checks. Please check the Guildines ISMW for implication in not having the address validation turned off.
    Cheers,
    Fritz

  • CRM IBASE mismatch for Connection object - premise

    Hi Experts,
    In our ECC system we have a two connection objects connected to two different premises. While in CRM if I go to IBASE of Connection object 1 we get both premises attached to it and the connection object 2 does not show any premises. I would request help in correcting this. I am very new to CRM and have little knowledge of how this works.
    Thanks in Advance,
    Hitesh

    Solved!
    Apparently after creating new IBase Component and new Product (assigned to the newly created IBase Component) it is required to execute transaction save and commit for the object of newly created Product. After that system sees newly created objects.
    Required code (after creation of a new Product):
    DATA:
      lo_core TYPE REF TO cl_crm_bol_core,
      lo_new_product TYPE REF TO cl_crm_bol_entity,
      lo_factory TYPE REF TO cl_crm_bol_entity_factory,
      lo_transaction TYPE REF TO if_bol_transaction_context.
      lo_core = cl_crm_bol_core=>get_instance( ).
      lo_factory = lo_core->get_entity_factory( 'Product' ).
      lo_new_product = lo_factory->create( )
      lo_transaction = lo_core->get_transaction( iv_entity = lo_new_product ).
      lo_transaction->save( iv_force_save = abap_true ).
      lo_transaction->commit( ).

  • How to rectify a connection object if it was entered wrong in a premise

    Hi,
    Please guide me how can we rectify the cases where  connection object was entered wrongly in the premise.
    Thanks and Regards

    Hi,
    I request you to please suggest some functional transaction.
    Please guide.It is very urgent.
    Thanks and Regards
    Edited by: MPVash Vash on Oct 20, 2008 10:59 AM

  • 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 and Device Location

    Hi ,
    When i am creating Connection Object and Device Location , system is giving dump . all other object are working fine.
    the error is gievn below :
    Error in reading table TE130.
    i checked this the table , its have no entries ( mainly field ISTYP is blank ) and this is the cause of problem .
    Could you please tell me that how to fill this table before creating Connection object and device location. i think some configuration should be needed for this but i dont know how .
    thanks and regards
    Deepak.

    Hi Deepak,
    You can check standard configuration in client 000.
    Meanwhile you can use this settings:
    ISTYP TPLKZ FLTYP NUMKI NUMKE
    C     AO_GP     A     01     OC
    D     AO_GP     G     02     OC
    This is where you define structure indicator for isu technical location category.
    ISTYP correspond to the type of technical location in ISU, C for connection object and D for device location
    The content of TPLKZ is defined in the following menu in SPRO.
    Plant Maintenance and Customer Service
    Master Data in Plant Maintenance and Customer Service
    Technical Objects
    Functional Locations
    Create Structure Indicator for Reference Locations/Functional Locations
    Hope it helps,
    Regards,
    Daniel Valenzuela
    Edited by: Daniel Valenzuela on Feb 4, 2008 3:22 PM

  • CONNECTION OBJECT AND POD

    hi experts,
    can any one of you explain what is connection object and point of delivery with any example.

    Hello
    Connection object is the place where the Utility service is provided. It can be a building, or a transformation center in the street or a fountain. It is just where you provide the service.
    PoD is an object for the de regulated market. It is a universal coordinate on where the service is provided. Imagine you switch  from UItility company A to company B. When both companies exchange your data, the only data that both companies know for sure is your PoD.
    PoD number is created via an algorithm which is unique for your whole country.
    Hope it helps
    Joaquin

  • Connection Object and Street name

    Hi,
    Could anybody please specify the table name in which we can find the Connection object and Street name?
    Thanks and Regards

    Table EHAUISU you will have the connection object number.
    Then go to ILOA table give the connection object number in Functional loc. and execute it.
    You will get the address number. Then go to ADRC table to know the street name.
    You will not find the data in a single table.
    If you want to find then go to views
    V_EHAU_ADDRNR : IS-U Connection Object: Optimized Access for Address Number  "you will find address number for connection object.
    V_EHAUADR  :  You will get street name for connection object.
    Please let me know if you want any more details. if have any issues with answer then let me know the exact question for the same.
    Thank You.
    Regards,
    Siva

  • 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

  • (UIX XML) Sharing Connection objects between BC4J and custom java.

    If I have a UIX XML page that contains some BC4J application modules, then in the event handler I call [public static EventResult handleMyEventEvent (BajaContext context, Page page, PageEvent event..) ], which in turn calls some java classes I have written that take a java.sql.Connection object and access the database doing some updates/inserts with this Connection object (via JDBC)....HOW CAN I USE THE SAME TRANSACTION AS WAS USED IN THE BC4J APPLICATION MODULE...i.e. CAN I SHARE THE CONNECTION OBJECT BETWEEN BC4J AND MY OWN JAVA CLASSES THAT USE JDBC?
    What are the best ways to share such a transaction?
    Thanks,
    Paul.

    Would it be easier to use a custom method on the bc4j Application module?
    Take this scenario...
    1. User opens UIX XML web page which opens a bc4j App Module..it has a VO based on all employees.
    2. User presses the add button and a new employee is created (using the bc4j App Module).
    (Notice: no commit yet!)
    3. User presses the submit button...fires event REVIEW_SALARY.
    4. This event is 'handled' in the event section of the UML XML...it calls:-
    public static EventResult handleREVIEW_SALARYEvent (BajaContext context, Page page, PageEvent event)...
    5. I now want to call a java class I wrote that computes an employees new salary and updates the employee record with this new salary. This update will fail unless it is part of the same transaction as the one used by the bc4j App Module (that inserted the new employee).
    How best to proceed from here?
    How about having a method on the bc4j App Mod's VO called 'reviewSalary'? Calling this would use the same transaction? I could then call my java class from within the VO's method? However do I still have the same problem in that my java class expects to be passed the connection object?
    The approach you suggested previously seems a touch dangerous....in that these are not 'publically exposed'...and a new release of JDev may break my code.
    Thanks,
    Paul.

  • Exporting VI content (objects and connections)

    Hello everyone,
    I would like to obtain a list of the objects AND connections of the block diagram of a VI. In other words, I would like to find out from a VI what objects, subVIs etc. contains an other VI...  Is this possible somehow?
    (e.g. if we have two boolean controls, named Bool1 and Bool2, a boolean indicator, named Bool3, and these three are connected by the means of an AND gate - Bool3=Bool1*Bool2,
    then I would like to obtain the content of my VI, which is either the formula Bool3=Bool1*Bool2,  or something like a date packet
    Controls: Bool1, Bool2;
    Indicators: Bool3;
    Objects: AND gate;
    Connections: Bool1-1st input of AND gate, Bool2-2nd input of AND gate, Bool3-output of AND gate).
    The Export Strings function from the Tools menu exports only a tagged list about the objects, without mentioning anything about the connections.
    Hope you understand my question!
    Thanks a lot for your help!
    Lorant

    There is just one point I'm just thinking about that... for instance when you have a multiplication, if you right click on the output part and choose "create indicator", an indicator is create with a default name "X*Y"... that sort of mean that LabVIEW can, in some cases, tell you where the outputs come from, no ?
    When my feet touch the ground each morning the devil thinks "bloody hell... He's up again!"

  • Populate County for Supplier Address of the Connection Object

    Hi
    Is there any way that we can populate county (Region) field for supplier address of the connection object i.e premise address (ISU) in SAP system? This is not a mandatory field hence is not filled up by customers (Business Partners).
    County here I mean is eg:
    Country is UK:
    County is Essex then Region code is "ES" etc..
    Please provide your valuable suggestions
    Note: There are billions of customers for which region needs to be populated.
    Thanks and Regards
    Ishi

    Any idea?
    I want to maintain County/Region for UK in Supplier SAP system of ISU..
    Thanks

Maybe you are looking for

  • How to print selected (highlighted) info from the internet

    For some reason, this mac has a hard *$$ time just printing what I want it to. I select something on the internet using command "A". Then I click command "P". The screen that gives printing specifications doesn't have a simple tab that says "print se

  • Using a timer to ramp up voltage in code?

    I'm currently using a small VI for the Xandrex XPD power supplies, and I have to automate this program so that the voltage will ramp up, say .2 volts every 500 milliseconds to a user defined voltage (say 15Volts). While I know some basic loops can do

  • Creation profile settings for Scheduling Agreement

    Hi Experts, I have a question regarding parameters of Creation profile maintained in Scheduling Agreement. In 'General Parameters', the Forecast delivery schedules there exists a parameter  'FRC:Aggregation'. I would like to know about the significan

  • 970a-g46 am3+ cable connection questions

    Hi all, I'm a first time computer builder and am in the process of building my own rig. I have MSI AMD 970a-g46 am3+ mobo and cool master elite 431 case. 1) I can't seem to find where on the mobo to connect the speaker for the post beep test. I've tr

  • Using iCloud for music

    Hi. I am very new to Apple. I have had iTunes for quite a while, but just used the basics. I just purchased the new iPad and love it. I have installed iCloud on my pc and, of course, it came on iPad. As I understand it I should be able to store my mu