Two Business roles with same config key

Hello ,
I have 2 users groups, the search for account page UI should be configured different for them. Rest of the pages should have the same layout.
Do I need to create 2 different configuration keys? Can I just define 2 Business roles with same configuration key? How can I make only account search view different? May be using special object type?
Thank you,
Rika

Hello ,
Thank you very much for your answer.
May be I need to explain my problem with more details:
We created z* business role for Sales team. We designed screens and made all necessary enhancements.
Now I need to create a new Business Role for management. This role should have the same WEB GUI except some little changes:
For example: Sales Rep do not need search for accounts by Sales group/office. So we hide this search for him.
Management should have options to search by Sales group.
There some additional changes in several views that should be performed for management.
Should I copy every view to new configuration key (one by one) in this case?
As a told before most of views are similar.
Thank you
Rika

Similar Messages

  • 2 tables with same primary key

    Hi,
    2 tables with same primary key is possible,but when is wise to go for such ?
    is that a bad desisn ?
    eg:
    Personal_details_employee
    Official_details_employee
    these 2 tables have same Primary key emp_id.
    plz. reply me at [email protected] also
    thanx
    vikram

    hi Vikram,
    In this case u can have then in one table itself and why do want to have two tables.
    - Suresh.A

  • Two Coherence instances with same JVM

    Hi all,
    I have a special case need your advice.
    we have an architecture platform build on top coherence to support some system data (session persistence data...etc).
    and we are building applications on top the platform, the applications also need coehrence to support Application distributed data.
    which is the best practice:
    - Load two coherence instances with two separate configs
    - share same instance with same config file
    to isolate clear two parts, we prefer first solution, but we don't know which is drawback for this solution.
    Best regards.
    Jerome

    Hi John,
    I beg to differ: all you need to do is ensure that Coherence is loaded by two independent class loaders and not from a common parent class loader.
    Of course, you can't reuse the same ports so you can't rely on the default Java properties for overrides, but you can use the operational configuration descriptor override feature to specify different settings for things like cluster address, and similar.
    Best regards,
    Robert

  • Duplicate record with same primary key in Fact table

    Hi all,
       Can the fact table have duplicate record with same primary key . When i checked a cube i could see records with same primary key combination but the key figure values are different. My cube has 6 dimentions (Including Time,Unit and DP) and 2 key figures. So 6 fields combined to form the composite primary key of the fact table. When i checked the records in se16 i could see duplicate records with same primary key. Ther are no parallel loading happening for the cube.
    BW system version is 3.1
    Data base is : Oracle 10.2
    I am not sure how is this possible.
    Regards,
    PM

    Hi Krish,
       I checked the datapacket dimention also. Both the record have same dimention id (141). Except the Keyfigure value there is no other change in the Fact table record.  I know this is against the basic DBMS primary key rule. But i have records like this in the cube.
    Can this situation arise when same records is there in different data packet of same request.
    Thx,
    PM
    null

  • Two soa domain with same name "TestSOADomain" sharing same SOA schema ?

    I tried creating two soa domain with same name "TestSOADomain" (different path) sharing same SOA schema .However one domain came UP to Running mode and other domain going to AdminMode and "soa-infra" application of that domain is not active.
    I do want to understand can this be possible with SOA ,ie. two soa domain sharing same SOA schema ?
    If possible what are all the problems might come
    1. While executing soa composites with asyncronous behaviour ?
    2. How the polling services will work ?
    3. will the XREF_DATA table ROW_NUMBER column inserted uniquely while inserting data from two different domain into same SOA schema ?
    4. Other issues ?
    Thanks

    Each domain is expected to refer to its own unique database schema. Same SOA schema should not be shared by multiple SOA clusters/domains. It is technically possible though, I suppose, and still can run fine any one SOA environment at any given time with the other SOA environments/domains (sharing the same SOA schema) shutdown. It is not the general/recommended practice to share SOA schema across domains and there could be potential implications and unexpected behavior, particularly when the SOA environments pointing to the same schema are all running at a time.

  • Reflection - Two packages/classes with same name

    Hi There !
    I am in a situation and I need some help, if anyone can help me.
    I have two tools to work with different version of a server application. Now, the admin wants to have only one tool to work with both server app.
    The problem is that the server app has a jar file with the API to be used to access it. One jar for each version.
    Inside those jars files I have the same package and the same class ! But the implementation is diferent. So I will need to access one jar when accessing the old server app and another jar to access the new server app.
    I have no idea how to do it.
    I search arround google and I found that I can load a class at runtime and then with Reflection call its methods.
    I made a test app (simple, just 2 different jars with same package and class name just printing a Hello World and Bye World) and it worked very well.
    But when I tried to apply this to my code, I realize that one class need the reference of the other class...
    For example, I have a class named Server and other called ServerStatus.
    The Server class do the connection to the server and the ServerStatus get some server information. But the method that give me this information has a argument asking for an object of Server... like this:
    Server serv = new Server();
    serv.connect();
    ServerStatus servStat = new ServerStatus();
    servStat.getServerStatus(serv);I tried to do this with reflection but in the part that I need to invoke the method getServerStatus, I do not have the name of the class that is the argument (in this case Server).
    Something like this:
       Method  m = serverClass.getMethod("getServerStatus", new Class[] {?????.class});
             result = (Boolean)m.invoke(server, new Object[] {serverStatus});Do you have any ideiias to resolve this ?
    Or something different from reflection to access two different implementations with same package and class name ?
    If you need any other information, please ask me..
    Thank you so much !
    Regards,
    Thiago

    Thiago wrote:
    Hi.
    But now, how can I handle the object (because the newInstance() return a Object object.... not the class that I want (Server, for example)).
    When you declare a reference to be something more narrow than "Object" you're telling the compiler what methods and fields the referenced object supports. With a dynamically loaded class you can't do that at compile time, because the nature of the class isn't known until you load it at runtime.
    That's why it's very handy if you know that the class you are to load implements some interface which is known at compile time. Then you can access the object through a reference to that interface.
    Otherwise there's really no option but to handle the object through reflection. Find methods with getMethod() on the Class object and invoke them with Method.invoke().
    There are tricks to impose an interface onto a dynamically loaded class at runtime, but they are just neat ways of working through reflection.

  • Get the Common from Two Internal Tables with same structure

    Hi ,
    I need to get the Common data from Two Internal Tables with same structure with using the looping method.
    For e.g.
    I have two internal table say ITAB1 and ITAB2.
    ITAB1 has values A,B,C,D,E,F
    ITAB2 has values A,H,B,Y,O
    Output at runtime should be : A,B

    Hi mohit,
    1. If u want to compare all fields,
       for matching purpose,
       then we can do like this.
    2.
    report abc.
    data : a like t001 occurs 0 with header line.
    data : b like t001 occurs 0 with header line.
    loop at a.
      LOOP AT B.
        IF A = B.
          WRITE :/ 'SAME'.
        ENDIF.
      endloop.
    ENDLOOP.
    regards,
    amit m.

  • Is it possible to install two SAP system with same SID but different instance numbers on one host?

    Is it possible to install two SAP system with same system ID (SID) but different instance numbers on one host?
    If yes, then how?
    If no, then why?
    Thanks in advance.
    Regards,
    Sarim

    Is it possible to install two SAP system with same system ID (SID) but different instance numbers on one host?
    Yes, it is possible. If one is CI (PAS) and the second one is an AS (AAS). In this case there will be only one database.
    If you are talking about two separate SAP systems with separate databases (Eg: A BI and an ECC) with the same SID then the problem will be with the database (Eg: Oracle)
    The database will be installed under /oracle/SID/112_64 (ORACLE_HOME) unless one database is running on 10 G and in that case the ORACLE_HOME will be /oracle/SID/102_64
    The next issue will be with the SAP file systems like /sapmnt/SID
    The most important problem will be with the switch to the sidadm and orasid users and the conflicts there. If there is a need to stop one of the SAP systems and if you do a switch to sidadm and issue a stopsap command which system will be stopped ?
    These are few of the many problems I can think of.
    So if we are talking about two separate systems with their own databases I would rule out the possibility of having two systems with the same SID.
    Regards
    RB

  • Modify Webclient Views for different BR roles with the same Config Key

    We have Business Roles A, B and C that are all assigned one configuration key ZCONFIG_KEY. How can we make minor changes to the views that are assigned to Business Role C without affecting the views of Business Roles A and B.
    We would like to avoid creating a new configuration key just for Business Role C as it would increase future maintainence (any changes to ZCONFIG_KEY would then have to be made again to the new configuration key for Business Role C).
    Edited by: Shahzad Asghar on May 22, 2008 2:55 PM

    Hi Shahzad,
    I would not recommend you this approach as the Config Key is the place from where you should start your UI configuration. Though you might put in some code in your getter and setter methods by saying that if this is "Role A", then do this but it would be much more of a maintenance effort as compared to creating a new config key.
    Award points if it helps
    Thanks,
    Anand

  • Different Bank charges GL account for two company codes with same COA

    Hi,
    While configuring OBXK ( Automatic GL account for bank charges)  , I see there is provision to enter only one GL account per chart of accounts.
    We have two company codes using same chart of accounts but different bank charges GL account. Please tell me how to configure this.
    Thanks,
    suresh

    Hi,
    Thanks Krishnan and Chandra.
    I agree with you it could be the same GL account for bank charges, but the business requirement is such that in one of the two company codes, bank charges are required to be tracked separately to be subsequently transferred to the other company code. This means two separate GL accounts are required for two company codes which needs to be configured in OBXK.
    Hope this clarifies my query further.
    thanks,
    suresh

  • Two Profit Centers with Same GL

    Just create an FI document with the same G/Ls, but differnet profit centres, crediting the wrong one and debiting the right one.
    Entry:

    Hello venkat,
       In the posted document there is two line items. now you want to change the profit center on the document which is posted and cleared.
      Tell me one thing in one line item is there any field like business area is same as profit center.
    What i mean to say
    PK GLac   Amount B.area P.center
    40 15000  1000.00 1000   1000
    50 25000  1000.00 1000   1000
    In the above example my business area is equal to profit center in the initial there is some postings happened. after that client realized that this has to be change without passing any accounting documents. we created a substitution like profit center field substituted with business area field.
    Like that i made all the changes. We are not implemented profit center accounting. It is a statistical object.
    Hope this is helpful.
    Regards,
    Sankar

  • Requesting license for two different ssystem with same SID

    Hello,
    Is it possible to request 2 license for two systems with same SID. The systems are on different machines and their HW key are different but both have same SID. While requesting license, will it permit to create 2 different license with SAME SID.
    Regards
    Deb

    Hi Anil,
    The one for which the license is already requested is the main development portal with SID EP2. I have installed one local version of SAP EP with the same SID EP2. Now we need a license for the second system.
    If we change the HW key of the original license which is already applied in the main development portal under SMP and apply for a new license for the new local version, can it have any future implications, if any.
    What is the best way to deal with the situation. Is there a full proof way to change the SID of the EP system, which I can try in the local EP system.
    Regards
    Deb

  • SAP PI Modeling: Two Business systems with party

    I am triing to create SAP BPVT Interaction model that describe connection of 2 process components. Each of that components must be business systems with party. As I understand process component must be Process component at business partner for assigning business system with party.
    If I create SAP BPVT Interaction model with two Process component at business partner, I get they connection in type of "Other Interaction". When I try create new assigment, I get error "Unable to assign the model to this connection type due to the method or profile in use".
    How can I create correct connection?

    Hi Eugenia,
    Please see note 1084315 which descriibes the the multiple backend scenario.
    This should be relevant here.
    Best regards
    Christophe

  • Create two logical columns with same LTS mapping but diff filter conditions

    Hi,
    Problem:
    How to create two logical columns within same logical table mapped to same physical column but different filter conditions?
    I have a scenario where in,
    Physical layer columns
         - table1.employee
         - table1.emp_city
    I need a columns in logical layer:
    Logical layer - lt1.count_emp_delhi (counts distinct employees whose city_name = 'Delhi')
              lt1.count_emp_mumbai(counts distinct employees whose city_name = 'Mumbai')
    My approach:
    For Delhi column
    1. Create a logical column lt1.count_emp_delhi mapped to the physical column table1.employee
    2. Aggregate using countdistinct in aggregate tab.
    3. Edit the mapping condition
         3.1. Use the where clause and set table1.emp_city='Delhi'.
    For Mumbai column.
    Followed the same approach as above but in 3.1 if I change the condition to 'Mumbai', even the delhi column is populated with mumbai count which is ERRONEOUS
    Could some one please help?

    Hi,
    1. Create two alias tables for table1 in Physical Layer. Lets say TB_Mumbai and TB_Delhi
    2. Create a logical table in BMM layer (D1 Employee Cities )
    3. Drag and drop the employee & emp_city columns from both alias tables (TB_Mumbai and TB_Delhi ) into your newly created logical table.
    4. Now you can see two Logical Table Sources (TB_Mumbai and TB_Delhi )
    5. Now using Where condition, write the condition on each table
    NOTE: Don't write any condition on the Physical table Table1.
    Hope it helps you.
    Regards,
    Kalyan Chukkapalli
    http://123obi.com

  • Unit of Measurement with same commercial key

    Hello,
    I want to create different internal measurement units, by assigning same commercial , technical and ISO code like below:
    Unit   commercial     technical         ISO code
    TA       PC                  Piece             PCE
    ST       PC                  Piece             PCE.
    while createing second one, system is giving error meassage Commercial UNIT :PC:  already existed. Messsage number:BM009.
    How can I over come this?
    regs,
    Ramesh

    The Commercial unit is a key field and has to be unique.
    What is the need of creating another UOM with same details.
    Regards
    Bhavesh MIstry

Maybe you are looking for

  • Error while exporting using OMB+ in unix

    Hi we are trying to export the OWB project using OMB+ , i wrote a shell script which contains this /oradir/dkfndr/owb/owb/bin/unix/OMBPlus.sh /finapps/dkfndr/owb/owb_export.tcl the tcl script does the export stuff , we got the following error, srxgpo

  • Sales Process for Packaging material (VERP)

    Hi All, I have a business requirement to set up the sales process for Packaging materials and the material type is VERP. But system will not allow me to create Sales order using the same material because material category VERP needs to be added for t

  • Is your IT asset inventory log complete?

    Are you still using a manual process like bar code scanners tolog your technology assets?Do you know the hidden costs of manual data collection?Great news, business is booming and as a result the company is expanding. So is your inventory of racks fi

  • Help! I have an iPhone 4 and when I tap the "messages" thumbnail I'm not able to see a list of my text message threads.

    Help! I have an iPhone 4 and when I tap the "messages" thumbnail I'm not able to see a list of my text message threads.

  • Noise on console port

    I noticed a number of failed console port logins in our tacacs logs from a couple of remote routers. In both cases the usernames are gibberish - random characters in one case; access-list logs in the other. logging in to these 2 routers (both 870s)I