Changing the Model Configurator in configuration scenario

Hi SapAll.
i have got a tricky situation where i didnt filled the communication channel parameter in the existing Model Configurator under Connections from Component Assignment(tab)  of  configuration scenario m,so i just want to know on how i can make the Model Configurator (configuration scenario) in edit mode so that i can assign the communication channel under Connections from Component Assignment(tab) in model configurator of Configuration scenario .
will be waiting for your response.
regards.
Varma.

If you are using PI 7.1. Just open ur configuration scenario in edit mode. Go to 'ES Repository Model' tab and choose 'Model Configurator' for your configuration scenario. It ll open in edit mode.

Similar Messages

  • Changing the label of attributes configured on User Profile by SAP HRMS connector

    Is it possible to change the label of attributes configured on User Profile by SAP HRMS connector during the installation?

    You can modify the connector xml before you install the connector or try this: http://docs.oracle.com/cd/E21764_01/doc.1111/e14309/uicust.htm#BABDEGFE
    -Bikash

  • HT201300 whats the model number for configured mackbook

    whats the model number for mackbook retina 15" with a configuration of 2.7ghz, 16gb ram, 768gb ssd...

    they didnt mention the model number for configured version......i found the model number in another website  MD831LL/A – MBP 15.4/2.7/16GB/768GB

  • How to change the model of JSpinner

    Hello, just want to ask how to change the model of a JSpinner during run time...
    I have an existing JSpinner
    example:
    SpinnerNumberModel model = new SpinnerNumberModel( 2, 2, 4094, 1);
    jSpinner = new JSpinner(model);
    if (changeLimitTo255 == true) {
    model = new SpinnerNumberModel( 2, 2, 255, 1);
    jSpinner.setModel(model);
    The problem is, the limit is always 4094, limit doesn't change to 255.
    Thanks...

    If you need further help then you need to create a [Short, Self Contained, Compilable and Executable, Example Program (SSCCE)|http://homepage1.nifty.com/algafield/sscce.html], that demonstrates the incorrect behaviour.
    Don't forget to use the Code Formatting Tags so the posted code retains its original formatting. That is done by selecting the code and then clicking on the "Code" button above the question input area.

  • How do I change the order of VPN configurations?

    Hi, I have a VPN service set up with multiple "configurations". How do I change the order of the configurations?
    Thanks in advance.

    Apparently I accidentally made a duplicate post after this one. Refer here.

  • Editor Mode not found to change the property of J2EE Configuration in NWA

    Hi,
    I have worked on an issue where an end user asked me to configure changes in NWA.But I did not find the editor mode.I tried all the buttons in the page of NetWeaver Administrator -> Configuration.But I could not change the customized value.Tried all possible means.Later logged into Config Tool and made the changes in Configuration Adapter successfully.Restarted the cluster later.
    Why couldn't I change the value of property in NWA? Where do I see the configuration editor mode in NWA?Please help.
    Thank You.
    Regards,
    Sudheer.

    Hi Mr. Sudheer,
    As per my information,
    NWA is a tool under developement by SAP (for the full fledged functionality)
    Till now it is valid for use to Monitor the SAP system (similar to CCMS), next is you can administrate the Java process and services (that is you can start and stop them).
    WE can monitor the SAP ABAP & JAVA Stack as well as Java components...
    We can also do User Management via NWA.
    And also the CTC configuration using NWA.
    <b>But changing certain parameter or acting as an editor is NOT YET supported by NWA tool.</b>
    I hope that I am correct in providing you the information.
    for details on that please refer : http://service.sap.com/nwa
    Regards,
    Prem
    Message was edited by:
            Premkishan Chourasia

  • Changing the fonts displayed in Configurator

    Is there a way to change the fonts used by the runtime configurator. For example, I have a new font file (futura-bt-b.ttf) that I want to use with configurator. I want all the labels, header text, etc. to use this font. How do I install it into the server (location, etc.) and how do I map it to configurator application? Thanks in advance.

    The Caption Style or Style setting indicates the style sheet definition you want to use to render the UI caption. For example, the style sheet BLAF.xss determines the font, size, and color of the text. This style sheet is located in the oa_html/cabo/styles directory. For information about personalizing style sheets, see the Oracle Applications Framework Release 11i Documentation Road Map (Metalink Note # 275880.1)
    Thanks,
    Vignesh R

  • Changing the default password when configuring.

    Hi,
    can anyone tell me how to change the default password and username when you are first configuring your router?  You know when you go to http://192.168.1.1/?
    I know the default password is admin and there is no user name but I would like to change that so that not just anyone who knows the default password can see the wep incryption I have in place.  Please can someone help?

    What router are you using?
    On most Linksys routers, you cannot change the User Name.  You must leave it blank.
    To change the Password, login to the router, and go to the "Administration" tab.  You should find the Password somewhere nearby.

  • Trying to write a Listener on a CheckBox to change the Model of a ComboBox

    I am trying to change the list that appears in a ComboBox dynamically based on if a CheckBox is selected or not. I have multiple CheckBoxes and ComboBoxes being created in a loop based on a variable assigned at creation. Every tutorial i have seen writes out a listener that explicitly defines the checkbox instance but in my case i don't acctually know. My checkboxes are in an array of checkboxes as are the comboboxes as they are being created at runtime. Any help would be much apreciated this issue has been with me for two days now.

    here is a snippit of my code in how i was implementing this:
    int numButton = 17; //this is for testing only, this variable is set from another class normally
    // these variables are defined private elsewhere in the class
    JCheckBox PlayerByeCheck[] = new JCheckBox[numButton + 1];
    JCheckBox PlayerHomeCheck[] = new JCheckBox[numButton + 1];
    boolean PlayerOnBye[] = new boolean[numButton + 1];
    for (int i = 1; i <= numButton; i++) {
             PlayerByeCheck[i] = new JCheckBox();
         PlayerHomeCheck[i] = new JCheckBox();
         PlayerOnBye[i] = false;
    // more code here for building the gui it is not important for this problem
    // code to build the list starts here
    for (int i = 1; i <= numButton; i++) {
         ((TableLayout)PlayerRosterPanel.getLayout()).insertRow(1, TableLayout.PREFERRED);
             PlayerByeCheck.setOpaque(false);
         PlayerByeCheck[i].addItemListener(this);
         PlayerByeCheck[i].setName("PlayerByeCheck" + i);
         PlayerRosterPanel.add(PlayerByeCheck[i], new TableLayoutConstraints(2, 1, 2, 1, TableLayoutConstraints.CENTER, TableLayoutConstraints.FULL));
    //the comboox that i want to change
    //---- PlayerTeamSelect1 ----
         if (PlayerOnBye[i] = true) {
              PlayerTeamSelect[i].setModel(new DefaultComboBoxModel(new String[] {
                   "ARI",
                   "ATL",
                   "BAL",
              "BUF",
         "BYE"
              PlayerTeamSelect[i].setSelectedItem("BYE");
         } else {
              PlayerTeamSelect[i].setModel(new DefaultComboBoxModel(new String[] {
                   "ARI",
                   "ATL",
                   "BAL",
                   "BUF",
                   "CAR",
              "BYE"
         PlayerTeamSelect[i].setOpaque(false);
         PlayerRosterPanel.add(PlayerTeamSelect[i], new TableLayoutConstraints(4, 1, 4, 1, TableLayoutConstraints.FULL, TableLayoutConstraints.FULL));
    //more gui code here method gets closed
    //Item Action Listener starts here this is where i am having the problem                         
    public void itemStateChanged(ItemEvent e) {
         Object source = e.getItem();
         if (source == PlayerByeCheck[1])
         int select = e.getStateChange();
              if (select == ItemEvent.SELECTED)
              PlayerOnBye[1] = true;
    PlayerRosterPanel.repaint();
    //repaint the window i think can't get the listener to work to see if this is the right way to do this
    //i doubt it is
    I have tried several different ways to write the listener, the example in the code above is following the java swing tutorial by explicitly defining the checkbox. I have tried to write the listener as i am creating the checkbox, which doesn't seem to work or i am wrting it wrong, which is entirely possible. Once the listener sets the value i think it should repaint the screen but i am sure that that is wrong right now as well. As my hunch is the repaint will reset the checkbox to DESELCTED the default value. I will come to that issue once i figure out how to get the listener working. Ideally i want to be able to set the listener for the checkboxes regardless as to how many there are. As stated above i am generating a list of checkboxes, comboboxes and other fields based on a variable that is defined in one of my objects. If the user selects checkbox 3 than combobox 3 should be changed, and the others should not. if the user selects all the checkboxes than all the comboboxes change.
    thanks for any help. Still plugging along on it trying to figure this one out.

  • Changing the 'Organize Entries' iview

    Hello all,
    I've received a request to make two changes to the 'Organize Entries' option of the Portal Favorites iview. They want me to remove the 'Details' option from each of the links shown in 'Organize Entries'. They also want me to make it so that you cannot click on the link and browse to where the link points while in the 'Organize Entries' iview.
    I'm sure that this can be done by working with the layout set that the 'Organize Entries' iview uses. However, I can't find the 'Organize Entries' iview. If I find that, I'm sure that I can find the layout set that's being used.
    Can anyone help me out here?
    Thanks!
    -Stephen Spalding
    Web Developer
    Graybar

    Hi Stephen,
    yes, it's definitely recommended not to changes the SAP standard KM configuration objects, but to create copies and use your duplicated Layout Set in a new iView.
    Unfortunately I don't know which iView you mean. It could be  the Link Link iView integrated in the Standard User Role -> Home (Workset) -> Company (Workset)-> News (Page). The Role can be found under Portal Content -> Portal Users -> Standard Portal Users.
    But it could maybe be also another KM Navigation iView (so based on the component com.sap.km.cm.navigation) using the Layout Set <b>LinkListExplorer</b>.
    You would need also to duplicate this Layout Set and make some changes, so that when clicking on "Organize Entries" your new my_LinkListMaintenance Layout Set is used. This functionality is implemented in the UI Command <b>EditLinklist</b>. You need to change the <b>Parameters</b> entry of this UI Command to "<b>rndLayoutSet=my_LinkListMaintenance</b>".
    This UI Command is integrated in the Component (KM Configuration -> User Interface -> Mapping) <b>LinklistEditReference</b> you would also need to duplicate and integrate in the Collection Renderer Parameter <b>Components</b> of the LinkListExplorer Layout Set (LinkListCollectionRenderer).
    I know it's kind of work to duplicated all this KM configuration objects but it's definitely worth in order to be upgrade save as you said.
    Hope this helps,
    Robert

  • Is there a way to change the path of StationGlobals.ini that TS is pointing to?

    Any feedback is appreciated!
    Solved!
    Go to Solution.

    Hi Falcon,
    If you are using TS >= 4.0 you can change the folder for TS Configuration. This includes StationGlobals.ini
    Configure-->StationOptions-->TAB Preferences : Change the path for "Configuration Directory"
    Hope this helps
    Juergen
    =s=i=g=n=a=t=u=r=e= Click on the Star and see what happens :-) =s=i=g=n=a=t=u=r=e=

  • I want to change the transport directory

    Hello gurus,
    I want to change the tranport directory in all our systems. Please advise me how to do it.
    I really appreciate your help.
    Regards,
    N.S

    Hi N.S,
    How about :
    http://help.sap.com/saphelp_47x200/helpdata/en/d5/10b4496f0f11d2b41a006094b9ea64/frameset.htm
    is it common transport directory ?
    To change the common transport directory configuration, you can
    first go to transaction AL11 of one of your system, for example, PRD.
    Change the 'DIR_TRANS' parameter, so that it points to the directory that you want to change
    Then go to STMS, choose 'System Overview' button to display systems
    of your transport domain. Double click PRD, with 'Transport
    Tool' tab, click 'Display <-> Change' button, you can change the
    'transdir' value.
    Please make sure it is equal to the same configuration of 'DIR_TRANS'.
    Repeat the above steps on your other system. Make sure the configurations
    of 'transdir' and 'DIR_TRANS' are the same as that on the PRD system.
    cheers,
    Vincent

  • Change the dial prefix on UC560?

    Is it possible to change the dial out prefix to another number besides 9?                    

    Hey,
    This articles gives a descriptive explanation on how to change the dial out prefix
    Configuration of Outgoing Dial Plan on UC500 Series
    Regards,
    Vishal

  • Detaching the model from the component

    Many Swing components such as a JTextComponent have a separate model for the data. I'm concerned about what happens when that model backs multiple components, for example a single Document that is used by multiple JTextFields. Generally listeners are added to the model to update the component when it changes, but when/where are they removed? I was just looking through JTextComponent/JTextField and don't see any place it's being cleaned up.
    So what happens when the model is backing two components, one which is in a containment hierarchy and one which is no longer in a containment hierarchy and has been discarded? Since the references are concrete I don't see how it can be collected. I'm trying to figure out what the convention is regarding this. Do you keep weak references to listeners? Do you simply not use a model to back multiple components? Do you override removeNotify() (or some other method) to remove listeners (and if so, what do you override to add them again if you get added to a containment hierarchy again)?
    Any advice is appreciated.
    waits for camickr

    The only think I can suggest is to try
    textComponent.setModel( null ). Before adding
    DocumentLIsteners to the new model it removes the
    DocumentListeners from the old model.I'm not so much concerned with swapping models as I am what happens when I have one model backing multiple components. Say I have some data that for the purposes of the GUI is backed by a Document. If I want to display that data, which might even be something that can be mutated by the user, then I use that Document. In the case of a JTextComponent it already uses a Document for it's model so you simply set the model to be your own Document. Now every JTextComponent displays the right data and can update the correct data.
    The problem is what happens when some part of the GUI is discarded and it contains a component that is backed by this model? Either the entire thing being discarded needs to be self-contained and not attached to anything you're holding on to (or vice versa), or it needs to have some mechanism to detach it. How does Swing do it? I've been thinking there must be something to deal with this, something fired when it's removed from a containment hierarchy. For example, why in the world would a JTextComponent that's not even in a containment hierarchy keep updating itself when the model changes?
    I found removeNotify() but from it's documentation I'm not sure if it's appropriate and JTextComponent doesn't seem to remove listeners anywhere unless you change the model. I'm quite perplexed as to how (or perhaps when) the actual visual component gets detached from whatever it needs to function when it's no longer being displayed (e.g. I removed it from the frame and no longer have a reference to it).

  • How to change the parameters in virtual MOSFETs

    I have been using Multisim for quite a while. I find that in Multsim 8 & 9, I can't change the model parameters in Virtual MOSFETS,  like VTO,
    KP,GAMMA,  PHI and  LAMBDA, etc. I could do this in Multisim 7, is there an explanation for that? or is there something hidden there?
    Thanks in advance for your attention.

    In Multisim 8 and Multisim 9 the Virtual MOSFET dialog box was actually simplified and that is the reason why the "Edit Model" button you are used to is no longer there. The dialog box is such that it mimics the information available on a data-sheet and therefore setting up the physical characteristics of the device is done quite quickly. This in-turn generates the simulation model for the virtual device. With the Edit Model button you are accomplishing a similar task, however you did so by playing around with SPICE parameters which is less intuitive.
    For now, if you wish to control the properties of a device wholly, I would recommend that you take a pre-existing real MOSFET model and then edit its parameters with the appropriate SPICE parameter values (such as GAMMA, LAMBDA etc...)
    I hope this helps.

Maybe you are looking for

  • Ipod Nano video and Ihome to go(26)/ unable to wake to music???

    Have a new nano video and the Ihome 2 go model 26. Have it set up correctly and all functions work on the Ihome except wake to music, it buzzes. You can go to sleep with music but can not set it to wake to music. Contacted Ihome support and they say

  • Why can i not open itunes?

    I cannot open itunes on my windows laptop. Says something about newer version of itunes.library.itl. If i uninstall/reinstall, what happens to my existing library (FULL of music)?? Please help!!

  • Webservices name in case of falult

    Hi, In my application, we are using different webservices. Some of my .Net services and some of the other existing webservices. In my Flex application, i am using the cairngorm framwork. I want to know that, if any one of my webservices return fault,

  • Powerbook 1.67ghz big problem

    Hi there, I have a 15" powerbook aluminium 1.67GHz and when I turn it on I hear the dong but my screen stays black and my keyboard doesn't work anymore. I have tried to hook it up to an external monitor and it stays black aswel. Is there anybody out

  • Importing Images from Scanner

    For 15 years I have used Adobe Elements as my photo-editing software. I import images from my scanner, camera, etc. My computer hard drive crashed last week. I have a new hard drive and had to reload all my programs. Now when I'm in Adobe PE 10 and s