Enhancement set assignement to client which is not in Dev box

Hi Friends,
How to create an entry in BSPWDV_EHSET_ASG for client which is not in DEV box. 800 client is not there in Dev box but its there in Q system. when i try to create directly in Q system its asking for transport request any suggestions.
Regards
Muthappan

Hello,
I think you don't have so many choices:
1) Either you add your entry in your quality system manually (create a transort request that you can delete afterwards)
2) Or implement 2 lines of coding in BADI COMPONENT_LOADING...
Kind regards,
Nicolas.

Similar Messages

  • OIM-How can i set a password policy which does not contain any space?

    How can i set a password policy which does not contain any space?
    I put space at Characters not allowed but it is not working.
    Can anyone help me out?

    You can go to Settings>Messages and turn off Messages. Then go to Settings>General>Restrictions and turn on the the Restriction that prevent changing accounts.
    I just verified that it works.

  • DvD will not mount but cd-r will When I install the the disc into the super drive the format box comes up which is not the same box that comes up when installing a cd-r.

    DvD will not mount but cd-r will When I install the the disc into the super drive the format box (disc utilities) comes up which is not the same box that comes up when installing a cd-r.  I check the priference settings under general and it is set to show on the desk top.

    Not yet will have to get one from a freind. I bought a stack of the Sony DVD+R and that is all I have.

  • Self-assigned IP address which is not able to connect to the internet.

    Okay, so my whole issue started around six or more months ago. I have a white MacBook which I have never particularly had any connectivity problems with, at least that where caused by my laptop. I constantly am on the internet at home and have never had issues with wireless connection here. I am a full time student which means I am also constantly on campus with my laptop and needing access to the internet. Even so, there I have never had any issues with connectivity.
    My issue is when I go to another university campus I am unable to connect to the internet. My airport finds the network I want and connects to it but usually within a few seconds the radial bars go a light gray and have an exclamation point through them . When looking under the Airport drop down list it simply says, "Airport has a self-assigned IP address and may not be able to connect to the internet." This particular IP that is not allowing me to access the internet starts off with 169.**.*.**. I would provide the entire IP but as I am not on that campus at the moment, I can't and don't remember it fully.
    I have tried SO many different things in order to find a solution but have come up empty handed every time. I've tried turning off my firewall and all of the steps that resolution includes and have also tried to resolve the issue through the creation of a new location, new network, and the use of network assistant on Airport.
    I know it is not an issue of the universities wireless network because I can easily connect to the internet through my Ipod Touch without a password simply by finding the network, connecting, stating I'm a guest, and then agreeing to the terms of use. Same goes for my local campus wireless network on both my Ipod Touch and MacBook.
    I am in extreme need of a resolution and would GREATLY appreciate any kind of feedback anyone can give me. If there is any other information you may need to help me out a little more accurately just let me know, I'll be happy to give you whatever I can so that I may figure this annoyance out!

    By the way, totally didn't mean to categorize this under Airport for Windows. This is my first post and OBVIOUSLY a figured out a way to mess it up. My bad. :S
    But again I'd appreciate any help! :]

  • Help : Need to dowload ODI 10.1.3.4 Client which is not available anymore

    Hello to everyone.
    My Client has an obsolete ODI10G repository and they need to make new developments on that repository before upgrading to a newer release.
    They have lost their CDs and I am looking for a client zip file to install on my windows PC.
    Is there anyone who can ftp or send me an url an ODI 10G. I deseperately need a 10.1.3.4 release ?
    Thanks very much for your answer.

    Hi Meapri,
    Are you allowed to share this url ?
    I would be interested to get a copy before it's no longer available.
    Regards,
    Jerome

  • Can we change the enhancement set for a component

    Dear All
    I have a situation where in we need to change assign a different enhancement set to all our components which got enhanced.
    We can only have 1 enhancement set active for a client.
    Now in our case
    Say for client 300 we were using Enhancement Set E1.
    Our requirement is to create one more enhancment set E2 and assign it to client C1. We can do that.
    Do we we have a mechanism to move all development already done using E1 to E2?
    Please Help.
    Thanks
    Gaurav Sahai

    Hi Gaurav,
                   We create enhancement set in SM30, then assign it to client also there.
    After that, when we go to BSP_WD_CMPWB - by default we see the enhancement set assigned to the client. Now there are 2 things:
    1. to use different enhancement set for different users - you can implement badi component_loading to load different enhancement set depending on business requirement by writing code:
    RV_RESULT = <name of ENHANCEMENT_SET. >
      there is a default implementation in the system for reference.
    2. all enhanced views can be seen in transaction SM34, give name of view cluster as  BSPWDVC_CMP_EXT
       Select your enhancement set -> go to Enhancement Definitions (here you see components enhanced) -> select any -> go to Controller Subsitutes (here you see all view enhanced).
      You can try copying all these entries into another enhancement set. I am not sure if it will allow same entries in two different sets (if it doesn't you will have to delete from the other).
    I hope that resolves your query.
    Thanks,
    Rohit

  • How to determine active enhancement set

    Hi there,
    I have enhanced a SAP component and I have added a customer specific button. In the event handler of this button I would like to know which enhancement set is currently active.
    Is it possible to determine this information somehow?
    Thanks,
    Karsten

    Hello Karsten
    If there are no custom implementations of BADI COMPONENT_LOADING, then it will be as indicated by Naresh in the previous reply, a query to table BSPWD_EHSET_ASGN with the client in the where clause should do. This is precisely what is done in the default implementation of BADI COMPONENT_LOADING, in method GET_ACTIVE_ENHANCEMENT_SET.
    If there is a custom implementation of BADI COMPONENT_LOADING then each user can have his own enhancement set assigned. Method GET_ACTIVE_ENHANCEMENT_SET of the custom implementation of the BADI would return the active enhancement set.
    Best Regards
    Luis Rivera

  • Abap query about enhancement set

    How do we use an enhancement set?Where we can maintain a particular enhancement set to a client?
    *How do we know about an activated enhancement set?
    Moderator message: please search for available information/documentation before asking, this is not a training forum.
    locked by: Thomas Zloch on Oct 5, 2010 5:32 PM

    Hi,
    In PBO code this way :
    MODULE f4_scr OUTPUT.
      REFRESH g_list1.
      g_name1 = c_status.
      g_value_1-key = c_to_be_sub.
      g_value_1-text = c_to_be_sub.
      APPEND g_value_1 TO g_list1.
      g_value_1-key = c_sub.
      g_value_1-text = c_sub.
      APPEND g_value_1 TO g_list1.
      g_value_1-key = c_chg_needed.
      g_value_1-text = c_chg_needed.
      APPEND g_value_1 TO g_list1.
      g_value_1-key = c_app.
      g_value_1-text = c_app.
      APPEND g_value_1 TO g_list1.
      IF NOT g_list1 IS INITIAL.
        CALL FUNCTION 'VRM_SET_VALUES'
          EXPORTING
            id     = g_name1
            values = g_list1.
      ENDIF.
    ENDMODULE.                 " F4_SCR  OUTPUT
    And in PAI :
    MODULE user_command_9000 INPUT.
    * function module to get the list box values.
      g_name1 = c_status.
      CALL FUNCTION 'VRM_GET_VALUES'
        EXPORTING
          id           = g_name1
        IMPORTING
          values       = g_list1
        EXCEPTIONS
          id_not_found = 1
          OTHERS       = 2.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
      READ TABLE g_list1 INTO g_wa_list WITH KEY key = g_status.
      IF sy-subrc EQ 0.
        g_status = g_wa_list-text.
      ENDIF.
    ENDMODULE.                 " USER_COMMAND_9000  INPUT
    Hope this helps.
    thanx,
    dhanashri.
    Edited by: Dhanashri Pawar on Aug 21, 2008 11:36 AM

  • Multiple Enhancement sets

    Hi Experts,
    What are the advantages/disadvanyages of multiple enhancements sets:
    For example :
    I am having two components 1. Component of lead 2. Component of opportunity.
    I want to have2 different enhancement set for different component i.e ZLEAD for lead and ZOPPT for opportunity. So , my query is , Is it possible to have multiple enhancement sets in a client and what could be the advantage/disadvantage of doing this?
    How I have to make entries in customizing table  BSPWDV_EHSET_ASG , because I assume that we have to maintin only one enhancement set with respect to a client.
    Please clear my doubts.
    Help will be appreciated.
    Best regards
    Sourabh

    Hi,
          The same client can support different enhancement sets. This is likely done if you have some requirement that demands different enhancements based on user role/profile. To determine which enhancement to load when a user logs in, you can use the COMPONENT_LOADING BADI/Enhancement spot(New BADI).
    Regards,
    Arun Prakash

  • Creating an Enhancement Set

    Does anyone know how to create an enhancement set. Ive tried checking the menu's but i cannot find how to do this anywhere.

    Hi,
    1)Go to transaction sm30->view BSPWDV_EHSET_ASG to create a new enhancement set for your client.Only one enhancement set allowed per client.
    2)Open the component you want to enhance with this enhancement set in bsp_wd_cmpwb transaction.
    3)Click on enhance component button to enhance it within the enhancement set.
    4)Now this is your component. Do whatever you want to do in this. To modify an existing view, just right click and enhance.
    Hope this helps!
    Thanks and Regards,
    Rohit

  • *"You can only assign one enhancement set per client"*

    Hi Experts,
    I have created one enhancement set key by using SM34 and assigned to Client. I did some enhancements on my Account management screen.
    Today i wanted to do some enhancements on opportunity screen, so i have created one more enahancement set key (SM34) and tried to assign it to my client by using SM30 by clicking on "New Entries". It says "You can only assign one enhancement set per client", so what exactly this means, cant i assign more than one enhancment set key for each client?
    If that is the case , whatever enahancments i do now and in future , Can i use the same enhancement key for all my enhancements? Will this create any problem/affect in future for my past enhancements on that particular enhancment set key?
    Else,What If everytime i create a New enhancement set key and if i replace it with the old one for the same client in SM30?
    Hope my question/ doubt is not confusing.....
    Thanks & Regards
    Rohan

    Hi Carsten,
    Thanks for your reply, it really cleared my doubt.
    But one more thing, i have already created 2 enhancement sets. i wanted to delete one, from where shall i start , can i delete it directly from SM34 itself or do i need to delete those enhancments in workbench and then table entries finally enhancement set?
    Sorry Carsten, I am a beginner so some questions may be really strange.
    And one more question.
    When i enhance a component, it asks for Application name where i have given Zname,
    then Page : For page can i use the same repository.xml or do i need to choose a different name??
    Thanks & Regards
    Rohan

  • Solution to: javax.naming.AuthenticationException.  Root exception is java.lang.SecurityException: attempting to add an object which is not an instance of java.security.Principal to a Subject's Principal Set

    Hello world,
    To anybody who receives this irritating error in a Java client
    application attempting to access Weblogic Server 6.1 (and possibly
    weblogic server 6):
    javax.naming.AuthenticationException. Root exception is
    java.lang.SecurityException: attempting to add an object which is not
    an instance of java.security.Principal to a Subject's Principal Set
    The cause of your problem is having JAAS explicitly in your classpath.
    It somehow messes up authentication to WebLogic. Remove it and your
    problem will disappear.
    The complete exception was:
    javax.naming.AuthenticationException. Root exception is
    java.lang.SecurityException: attempting to add an object which is not
    an instance of java.security.Principal to a Subject's Principal Set
         at javax.security.auth.Subject$SecureSet.add(Subject.java:1098)
         at weblogic.common.internal.BootServicesStub.writeUserInfoToSubject(BootServicesStub.java:72)
         at weblogic.common.internal.BootServicesStub.authenticate(BootServicesStub.java:80)
         at weblogic.security.acl.internal.Security.authenticate(Security.java:108)
         at weblogic.jndi.WLInitialContextFactoryDelegate.pushUser(WLInitialContextFactoryDelegate.java:509)
         at weblogic.jndi.WLInitialContextFactoryDelegate.newContext(WLInitialContextFactoryDelegate.java:364)
         at weblogic.jndi.WLInitialContextFactoryDelegate.getInitialContext(WLInitialContextFactoryDelegate.java:336)
         at weblogic.jndi.WLInitialContextFactoryDelegate.getInitialContext(WLInitialContextFactoryDelegate.java:208)
         at weblogic.jndi.WLInitialContextFactory.getInitialContext(WLInitialContextFactory.java:149)
         at javax.naming.spi.NamingManager.getInitialContext(NamingManager.java:668)
         at javax.naming.InitialContext.getDefaultInitCtx(InitialContext.java:246)
         at javax.naming.InitialContext.init(InitialContext.java:222)
         at javax.naming.InitialContext.<init>(InitialContext.java:198)
         at au.com.orrcon.orrconcentral.Application.<init>(Application.java:87)
         at au.com.orrcon.orrconcentral.Application.getApp(Application.java:52)
         at au.com.orrcon.orrconcentral.orrconCentral.<init>(orrconCentral.java:130)
         at au.com.orrcon.orrconcentral.orrconCentral.main(orrconCentral.java:219)

    Steve Wesemeyer <[email protected]> wrote:
    I have encountered the same problem and I do not have JAAS on my classpath
    at all (unless it's there by default). Are there any other possible
    causes for this?
    Cheers,
    SteveA note to all who read this thread:
    I also had to remove Sun's j2ee (version 1.2) from my client's classpath before
    the same problem went away. 1 programmer day down the drain....
    Regards,
    MG

  • How do i remove my old Apple Id from iPhone's iCloud setting which does not exist anymore

    Purchased new iphone 5s, installed with itunes restoring backup from iphone 4 (which was too old a backup). It restored an old apple id (which i do not use anymore) in the iCloud settings while having my new Apple Id in the Itunes & App Store. I cannot turn off the iCloud setting due to old AppleId popping up - which does not exist.. How do i remove the old Apple Id from icloud setting on the phone.
    I cannot erase the phone as it asks for the password for the old Apple Id. And i cannot do the restore again (after i made a recent back up my iphone 4) as itunes asks me to turn off Find my phone.

    The Apple ID exists. The email address you used to create it may not, but the Apple ID does. Call AppleCare and ask to speak to someone in account security.

  • Getting error message in debug "Page contains page items/buttons which are not assigned to a region!"

    Hi,
    I created a form and when I submit, it goes through but there is no "success" or "failure" message on Apex. I tried debugging it and got this message:
    "Page contains page items/buttons which are not assigned to a region!"
    I looked at the page definition and it seems like everything is assigned to a region. Much appreciate your help.
    Thanks!

    For your message, the relevant branch needs "include process success message" to be checked - and a value in success/failure in your process.
    Check the submitting & landing page for items not in a region. Under the items section there may be items listed separate to those under specific regions.
    It's possible these are related, but not guaranteed.

  • [svn] 3526: The call to the TestNG task in the configuration test framework had haltOnFailure set to true which is not what we want .

    Revision: 3526
    Author: [email protected]
    Date: 2008-10-08 14:21:40 -0700 (Wed, 08 Oct 2008)
    Log Message:
    The call to the TestNG task in the configuration test framework had haltOnFailure set to true which is not what we want. Failures will get logged to the database at which point we can review them.
    Also fix a failing test.
    Modified Paths:
    blazeds/trunk/qa/apps/qa-regress/testsuites/config/build.xml
    blazeds/trunk/qa/apps/qa-regress/testsuites/config/tests/messagingService/jms/NoJNDINameT est/error.txt
    blazeds/trunk/qa/apps/qa-regress/testsuites/config/tests/messagingService/jms/NoJNDINameT est/services-config.xml

    I have a standard Ant build script for signing a jar file. I import it into my master Ant build files with
    <import file="Sign.xml"/>
    and then in my master Ant script I setup the name of the jar file e.g.
    <property name="jar-file" value="${fun}/FunApplet.jar"/>
    and then invoke a target
    <target name="sign-jar" depends="jar, sign">
    </target>
    Since this target (sign-jar) depends on target 'jar' and target 'sign' it executes the 'jar' target and then the 'sign' target that is contained in Sign.xml.

Maybe you are looking for

  • Our family used to operate under one itunes account.  We now need to have our own accounts.

    Our family used to operate under one itunes account.  We now need to have our own.  How do we keep our own downloads for the new accounts?  We have realized now that we are all in the icloud world we have each others downloads on our devices.

  • HP C4480 Windows 7 wireless finds printer but won't print to it

    I have a 3 PC network with a Cisco wireless router. My C4480 is connected to a wired desktop running Windows 7 64 bit with updated HP drivers for the printer. I have shared the printer, both directly and using the Homegroup. I can connect to the prin

  • Dynamically sourcing a table from 2 tables in obiee 11g

    Hello, I am a rookie trying to learn OBIEE and I really need your help in creating rpd from  the Oracle_Bi_Sample_app. It has 2 tables Time_mth and Time_day. How can I source those 2 tables dynamically into one table as a single  logical table in the

  • IBase in SAP CRM 2007

    Hello Gurus, Observed one basic difference between IBase in CRM 2007 as compared to the previous versions, that the address fields are not available to search the IBase. Has the functionality changed in this area? I looked up in the release notes and

  • OWSM: Jar for weblogic.wsee.jws.jaxws.owsm.SecurityPolicyFeature

    I am developing a JAX-WS client to access the web service which has OWSM policy "wss_username_token_service_policy" attached to it. Hence i am trying to add the below code: weblogic.wsee.jws.jaxws.owsm.SecurityPolicyFeature[] securityFeature = new we