Inactive field "Project Versions' - from drop down

Hi Friends
I have created two versions of project through Tcode CN41. When I am looking for comparision, the field Project Versions from drop down is Inactive ie Edit >Comparisations > Project Versions.  I am sure that I am missing somethig but unable to detect the same to activate Project Versions.
Would appreciate any one can help me to find out how to get activation of Project Version from drop down.Reward points can be awarded for suitable solution.
Thanks in advance.
Regards
Sudhakar

Hi Sudhakar,
I guess you are referring to project versions, not CO versions...
In this case, please make sure you select at least one version and the current data in the selection screen or more than one versions in the selection screen.
You need to select the versions in the selection screen in order to compare them.
If you cannot find the relevant fields to enter the selected version in the selection
screen, please call the database profile and tick the flag on "version data".
Hope this helps!!!
Rgds
Martina

Similar Messages

  • Code problem - field value derived from drop down values

    I have a drop down with about 6 choices. The user can enter their own amount for "quantity" in the drop down if they don't want to use one of the 6 choices. The code below I've attached to another field on another page of the form. (1) I can enter my own value it displays fine. (2) If I pick the #6 option on the drop down, it displays "3000" as required. The other 5 choices however, display 1, 2, 3, 4, or 5 instead of the actual value - "100", "500" etc....
    Seems to work for one of the 6 choices, but none of the rest.....
    if (form1.orderPage1.stdLayout.quantity.rawValue == "1") {
    this.rawValue = "1000";
    if (form1.orderPage1.stdLayout.quantity.rawValue == "2") {
    this.rawValue = "500";
    if (form1.orderPage1.stdLayout.quantity.rawValue == "3") {
    this.rawValue = "250";
    if (form1.orderPage1.stdLayout.quantity.rawValue == "4") {
    this.rawValue = "2000";
    if (form1.orderPage1.stdLayout.quantity.rawValue == "5") {
    this.rawValue = "2500";
    if (form1.orderPage1.stdLayout.quantity.rawValue == "6") {
    this.rawValue = "3000";
    }else{
    this.rawValue = form1.orderPage1.stdLayout.quantity.rawValue;
    Need to learn more about "else" in Adobe JS....
    As always, any help is greatly appreciated!
    Mike Foster

    Have you read your code? If your quantity value is between "1" and "5" the result value is being set correctly; then for the test for a value of "6", since your quantity value is not "6" you setting the value to the quantity value. Modify your original code to print some flow information to the JavaScirpt console and you see what is happening, be sure to open Acrobat to see the results in the JavaScript console:
    /* original code */
    console.show();
    console.clear();
    console.println("Original");
    if (quantity.rawValue == "1") {
    console.println(1);
    this.rawValue = 1000;
    if (quantity.rawValue == "2") {
    console.println(2);
    this.rawValue = 500;
    if (quantity.rawValue == "3") {
    console.println(3);
    this.rawValue = 250;
    if (quantity.rawValue == "4") {
    console.println(4);
    this.rawValue = 2000;
    if (quantity.rawValue == "5") {
    console.println(5);
    this.rawValue = 2500;
    if (quantity.rawValue == "6") {
    console.println(6);
    this.rawValue = 3000;
    } else { // since quantity != "6" do this
    console.println("Other");
    this.rawValue = quantity.rawValue;
    There are many ways to solve your problem. First you can nest the "if" statements, so the "else" clause is applies to all the previous "if" statements:
    /* using nested if statements */
    console.show();
    console.clear();
    console.println("Nested if then else");
    if (quantity.rawValue == "1") {
    console.println("1");
    this.rawValue = 1000;
    } else {
    if (quantity.rawValue == "2") {
    console.println("2");
    this.rawValue = 500;
    } else {
    if (quantity.rawValue == "3") {
    console.println("3");
    this.rawValue = 250;
    else {
    if (quantity.rawValue == "4") {
    console.println("4");
    this.rawValue = 2000;
    } else {
    if (quantity.rawValue == "5") {
    console.println("5");
    this.rawValue = 2500;
    } else {
    if (quantity.rawValue == "6") {
    console.println("6");
    this.rawValue = 3000;
    } else { // if none of the above
    console.println("Other");
    this.rawValue = quantity.rawValue;
    Next you could not use an else statement at all, just do a final test for any values outside the range of "1" - "6".
    /* quantity not in range */
    console.show();
    console.clear();
    console.println("if quantity < 1 or > 6");
    this.rawValue = null; // empty result field
    if (quantity.rawValue == "1") {
    console.println("1");
    this.rawValue = 1000;
    if (quantity.rawValue == "2") {
    console.println("2");
    this.rawValue = 500;
    if (quantity.rawValue == "3") {
    console.println("3");
    this.rawValue = 250;
    if (quantity.rawValue == "4") {
    console.println("4");
    this.rawValue = 2000;
    if (quantity.rawValue == "5") {
    console.println("5");
    this.rawValue = 2500;
    if (quantity.rawValue == "6") {
    console.println("6");
    this.rawValue = 3000;
    if (quantity.rawValue < 1| quantity.rawValue > 6) { // if quantity value not between 1 and 6
    console.println("Other");
    this.rawValue = quantity.rawValue
    And finally, you can use the "switch" statement to select an action based on the value of the quantity value and ignore the rest of the test. If no test has been selected, then perform the default action.
    /* using switch on quantity value statement */
    console.show();
    console.clear();
    switch (quantity.rawValue) {
    case "1":
    console.println("1");
    this.rawValue = 1000;
    break;
    case "2":
    console.println("2");
    this.rawValue = 500;
    break;
    case "3":
    console.println("3");
    this.rawValue = 250;
    break;
    case "4":
    console.println("4");
    this.rawValue = 2000;
    break;
    case "5":
    console.println("5");
    this.rawValue = 2500;
    break;
    case "6":
    console.println("6");
    this.rawValue = 3000;
    break;
    default: // all other values
    console.println("Other");
    this.rawValue = quantity.rawValue
    break;
    } // end switch quantity

  • Unable to capture data from drop down list in custom added field in migo tcode at item level

    Hi guys,
    need bit help in resolving query related to custom added field in Tcode migo.
    i have added a field in migo at item level ,in this i have used drop down list
    to get data but unable to capture data from drop down list.gown through
    many blogs in scn but unable to resolve.
    Please help me out in this.
    Thanks,
    Umakant.

    Hi,
    U can use following code to fill the list box
    write this code in PBO
    In layout editor please select listbox in dropdown attribute of input field and put some fctcode attribute
    TYPE-POOLS vrm.
      DATA values TYPE vrm_values WITH HEADER LINE.
      TABLES: <ur custom Database table>.
      clear values, values[].
      SELECT * FROM <ur custom Database table>.
        values-text = <TABLE FIELD TO DISPLAY IN DROPDOWN> .
        values-key = <TABLE KEY FIELD TO DISPLAY IN DROPDOWN>.
        APPEND values.
      ENDSELECT.
      CALL FUNCTION 'VRM_SET_VALUES'
        EXPORTING
          id              = '<SCREEN INPUT FIELD NAME>'
          values          = values[]
        EXCEPTIONS
          id_illegal_name = 1
          OTHERS          = 2.
    Also please define the following before accessing the listbox value
    data: <listbox input field name> type <table field name>,
            <inputfield name where text to display> type string  in top include
    In PAI, select the text from the table into <inputfield name where text to display>  depending on value selected which will be called when enter key is pressed or any vale is selected

  • How do i populate one field based upon a drop down select from another field?

    Here is what I am trying to do:
    Field 1 is a drop down selection list that requires a user to make a mandatory selection which in this case is a list of apartment complexes. What I am trying to accomplish is once that user makes a selection from the drop down list (Field1) that it will populate Field 2 (standard txt) with the corresponding apartment complexes address.
    So I pick Talan Apartments from field 1, it would populate field 2 with Talan Apartments address. I tried messing around with calculation scripts but I'm fighting a loosing battle here. Some help would be greatly appreciated!

    Hi,
    Here is a sample: https://acrobat.com/#d=Hi0ZwVgVB1PWbxc6OJ0z4A where the script in the exit event of the dropdown sets the value of the address object.
    Good luck,
    Niall

  • I use pc windows 7 i downloaded new version fire fox i cant print wirelessly to my hp printer it is set as default when i chouse it from drop down it wont let me and it stays on the konica

    i use PC windows 7 i downloaded new version fire fox i cant print wireless to my hp printer it is set as default when i chose it from drop down it wont let me and it stays on the konica after down load new fire fox and chose disable option not compatible

    Many thanks.
    With those symptoms, I'd try the following document:
    Apple software on Windows: May see performance issues and blank iTunes Store
    (If there's a SpeedBit LSP showing up in Autoruns, it's usually best to just uninstall your SpeedBit Video Accelerator.)

  • Mobile Me Alias not showing up in "From" drop down list in Mac Mail

    I have a couple of older .mac/Mobile Me email aliases that used to show up as either [email protected] or [email protected] in Mac Mail in the From drop down list, as recently as yesterday. Today, all I can see for any alias that has both the .mac and @me options due to their age, is the @mac.com version. I want to use the @me version of the alias, but this option no longer shows in the list. Newer Mobile Me aliases only have the @me.com address and they show up fine. One last point. If I use the Mobile Me web mail app, I can see both the @mac.com and the @me.com choices in the From drop down list, so it's working as it should.
    Mail isn't working correctly, but since I've not updated the Mail app recently, I suspect Mobile Me isn't sending both versions of the aliases over when the list is refreshed.
    Any suggestions? Thanks!

    It started about a week ago. The "From" drop-dow is now missing in Mac Mail. It should appear beneath the subject line. I was working with MobileMe Chat support for about 3 hours. They cannot solve the problem and have now escalated it to the "Senior Advisor Team."

  • How can I remove a mailbox address from the "From" drop down box in a new e-mail my old e-mail address continue to populate as the sender address

    How can I remove a mailbox address from the "From" drop down box in a new e-mail my old e-mail address continue to populate as the sender address

    Hello,
    Try Mail>Preferences>Accounts icon>Account Information tab>Click on the Outgoing SMTP server drop down, choose edit Server list, highlight the old one & click Remove.
    (Such convolution is worthy of Windows® in my estimation)

  • How to capture selected value from drop down by index

    Dear friends,
    i want to capture the value of select value from drop down by index, for eg if  select air france, how to capture , could any one please let me know
    Thanks
    Vijaya

    Hi Vijaya,
    You can get the value of selected from drop down as below
    Check out the event handler method attached to Onselect event of the ui element drop down by index , if no event is associated, then create an event and attach to the drop down list
    Now you will be having the CONTEXT_ELEMENT in the WDEVENT parameter
                   data lo_element type ref to if_wd_context_element.
                   lo_element = wdevent->get_context_element( name = 'CONTEXT_ELEMENT').
    Now, you can get the static attribute value of selected  drop down value & let us say your drop down list values are populated from context node 'ND_DRP_DOWN'
                   data ls_data type wd_this->element_nd_drp_down.
                             lo_element->get_static_attributes(
                                       importing
                                       static_attributes = ls_data ).
    Hope this helps you.
    Regards,
    Rama

  • Trying to change my phone number. screen says to choose area code from drop down menu but it is blank and won't let me go further

    I am trying to change my phone number. Screen says to choose area code & prefix from drop down menu.  Drop down is blank.  Will not let me go further

        Hello llamamama9,
    Yikes! I'm sorry to learn you are having issues with changing your mobile number. I understand how important this options is. I'm dedicated to making sure this is completed once and for all. I know some time has passed since your original post, have you changed your mobile number? If not, please visit http://vz.to/V668o0 If you are still having issues after following this guide, please feel free to reach out to us, thanks!
    MatthewS_VZW
    VZW Support
    Follow us on Twitter @VZWSUPPORT

  • Multiple selection from drop down : NWDS7.0 SPS18

    Hi Team,
    How can achieve multiple selection from drop down? I am working on NWDS7.0 SPS18. I have known the concept of item list box... is that's the only option?.
    Is it possible to make it as filter option that we have in our Microsoft excel.
    Customer wants select either/all options @once from drop down.
    TIA,
    Vanita K

    Hi,
    Create a node with cardinality 0-n and selection property set to 0-n
    Create a table UI element and bind this node as a datasource to this table.
    Set the selection mode  property of this table as auto or multi
    Once this is done, populate the node with some data elements.
    When you run the application, you will be able to select multiple rows from the table.
    To get the selected rows, use below code on the action of some button
         wdComponentAPI.getMessageManager().reportSuccess("Selected rows are");
         int n = wdContext.nodeEmployeeData().size();//size of node binded with table
         int leadSelected = wdContext.nodeEmployeeData().getLeadSelection();
         for (int i = n - 1; i >= 0; --i)
              if (wdContext.nodeEmployeeData().isMultiSelected(i) || leadSelected == i )
                   IEmployeeDataElement employeeDataElement = wdContext.nodeEmployeeData().getEmployeeDataElementAt(i);
                   wdComponentAPI.getMessageManager().reportSuccess("ID: "+employeeDataElement.getID()+"Name: "+employeeDataElement.getName());
    For adding sorting and filtering functionality to the table follow the article
    [WDJ - A Generic Java Class for Filtering Web Dynpro Tables|http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/60d5b593-ba83-2910-28a9-a7a7c7f5996f]
    Regards,
    Amol

  • FileChooser - "switch off" file name field and file type drop down choice..

    Hi there,
    I'm wondering, is there a simple way of not displaying the file name field and file type drop down choice that anyone knows of?
    Reason being; my FileChooser is embedded in an application window and does not pop up as a dialog - the users are only acessing one file type, but it could be in any folder on their machine.
    many thanks,
    Fergus.

    Moved to legacy SDK forum

  • Hide Unsorted Bookmarks from Drop-down Menu

    Hello,
    Just want to know how to "Hide Unsorted Bookmarks from Drop-down Menu" ...
    thank you.

    Best would be to move all bookmarks in the Unsorted Bookmarks folder to a folder in the Bookmark Menu folder or the Bookmarks Toolbar.
    That would only leave you with the menu entry.
    Clicking the star in the location bar will bookmark the page in the "Unsorted Bookmarks" folder and the star turns yellow (blue on Mac) to show that.<br />
    Click the highlighted star a second time to open the "Edit This Bookmark" pop-up and move the bookmark to another folder or edit the name.

  • Hide id from drop-down list at the top of the detail tab

    Hello Nakisa experts!
    I have one more question about Nakisa OrgChart 4.0 SP 1.
    How can I hide position and org unti id from drop-down list at the top of detail tab, see picture below:
    Thanks in advance.

    I'm not sure you're going to be able to change this.  I think (but I'm afraid I don't know for sure) the section is defined by \WEB-INF\uitemaplates\com\nakisa\manager\omg\ui\subucs\sectionDesigners\DetailHistoryButtonSectionSubUC.xhtml, which after a quick search through the application looks as though it might be populated by a NakisaTrollBin.jar ... which isn't really something you should be looking to edit.
    Nakisa do often write in various settings that can allow features to be tweaked and enabled/disabled.  It could be that there's something you could add into SettingsResources to apply the change you require, but you would need to contact Nakisa about this as they don't document all of these options.
    All this being said I would query why this is being done.  It is not uncommon to say have multiple positions with the same name - e.g. HR Administrator might exist in several org units.  If you are looking through several identically named org units or positions, the unique identifier is going to be the object's ID.  As such it seems most logical to me to keep the ID in the history to allow a user to discern the difference between identically named positions/org units.
    Regards,
    Stephen.

  • I am trying to burn a cd from my playlist but after inserting my disc I do not get (burn playlist to disc) from drop down menu

    I am trying to burn a cd from my playlist but after inserting my disc I do not get( burn playlist to disc) from drop down menu?

    Hollie,
    Do things in the following order:
    Make the playlist you are going to burn, and open it.
    Have the blank CD-R handy.
    Use the command File > Burn Playlist to Disc.
    When it asks you to insert a blank disc, do so.

  • Is there any way to stop the print screen from dropping down on top of the page to be printed.  Can the print screen be moved?

    Is there a way to stop the print screen from dropping down on top of the page to be printed.  Can the print screen be moved?  When the print screen drops down, it covers the page and the info needed to create the file.  Thank you

    You will find that this is application dependent.  Most Apple applications such as Safari and Mail will use the "sheet" type of dialog boxes that you are referring.  There is no way for the user to change that behavior.  Other, non-Apple, applications like Firefox use a "modal" dialog box for printing etc.  The modal boxes can be moved around so you can see the page behind.

Maybe you are looking for

  • How to configure Queue and QueueConnectionFactory for a MDB

    Hi *, I want to send some messages from a session bean to a message driven bean. Therefore I'll use the default Queue (sapDemoQueue) and QueueConnectionFactory. In the ServiceLocator of my SessionBean I do the lookup with following methods:     publi

  • Connector problem : root not accessible

    I'm running a midlet and i try to get a file text from the computer i'm using with the wireless toolkit. But these lines don't work : String uri = "file:///c:/testinput.txt"; InputConnection conn = (InputConnection) Connector.open( uri, Connector.REA

  • Oracle Business INtelligence -installation, basic doubts

    can i shoot oracle BI installation related basic doubts, and other issues that may arise in this forum ???

  • Can't boot laptop G6

    All of a sudden I cannot boot up my G6 laptop as it won't allow my pasword to be entered. This is very new and confusing me somewhat. without being able to enter my boot password I cannot get to to Windows 7 64 bit OS loader.. I have not changed anyt

  • Problems syncing Airtunes over multiple Airport Express speakers

    I've recently purchased a second Airport Express to allow me to stream music over airtunes to two rooms in the house at the same time. However, the music doesn't synchronise - there is a noticeable latency between the two sets of speakers so it sound