Column name in include column contex menu

When I select Include column from column context menu in pivot table, colum names listed (for calculatd items) are the column formulas and not the column headings.
There is a way to force the column context menu to use column headings instead?
Thanks
Luc

When I select Include column from column context menu in pivot table, colum names listed (for calculatd items) are the column formulas and not the column headings.
There is a way to force the column context menu to use column headings instead?
Thanks
Luc

Similar Messages

  • Changing the label name in a label based menu

    Hello,
    In my current dashboard, i have been forced to change the front page label name in a label based menu quite late on in the design. However, this has consequently resulted in the front page not showing up until after I have clicked the mouse. Previously the front page just showed automatically. Has anyone had this problem before?
    Thanks,
    Dilip

    Hello both, i managed to solve this issue by linking the label based menu to entirely new cells. This is not ideal but at least it saved me having to re-do a lot of my work.
    Thanks for your help, dilip

  • How to include portlet in .menu

    HI,
    I want to include portlet in .menu means i need to include that portlet to the jsp which is refered by .menu.
    Can someone please guide me?
    Thanks,
    Sanjeev
    Edited by: Sanjeev Kumar on Mar 6, 2012 3:02 AM

    Hi..
    If you can see some images on push buttons,
    Try by checking the filenames with Upper/Lower case , bcos java is case-sensitive.
    --DJ                                                                                                                                                                                                                                                                                               

  • When bates numbering a .pdf in XI, how can I change the file name to include the bates number AND its name?  I know under file output, there is an option for either/or.  I want both.  Thank you.

    when bates numbering a .pdf in XI, how can I change the file name to include the bates number and the file name?  I know under "file output: it's either/or.  I need both.  Thanks!

    Long ago I wrote a little demo using the touch command. Check out the following thread:
    http://forums.ni.com/ni/board/message?board.id=170&message.id=25128#M25128
    LabVIEW Champion . Do more with less code and in less time .

  • How to get names of INCLUDE or FORM within included forms

    Hello,
    I want to get names of Include program and included form within included forms.
    I tried SY-REPID or SY-CPROG but these two SYST variables return the name of report program that performs the form, not the name of Include or form.
    Please give me any advice about how to get names of include / included form.
    thanks and regards,
    Hozy

    You can use the statement
    READ REPORT <Report name> into itab
    to read the source code into an internal table.
    Later you can use the "Contains Pattern" operator to get the statements that you need.

  • How to get the property name of a srop down menu in the Actiion Class

    Hi All!
    I am trying to build two drop down menu in the jsp!When the page first loads the first menu is populated with the data from the database.Depending on the choise made in the first menu the second gets populated!
    As of now I am using these codes!
    The JSP contains:
    function getCorrespondingSkills(obj)
              document.forms[0].target="_self";          
              document.forms[0].action='<%=request.getContextPath()%>/jsp/resume/Skill.do?method=getSkillsList&technologyId='+obj.value+'&selectedField='+obj.property;
              document.forms[0].submit();
         function submitTechSkills(obj)
              document.forms[0].target="_self";
              document.forms[0].action='<%=request.getContextPath()%>/jsp/resume/Skill.do?method=getSkillsValue&skillId='+obj.value;
              //document.forms[0].submit();
    <td class="brdrInput">
                                                            <%--<html:select name="SkillsForm" property="technologies1" onchange='getCorrespondingSkills(this)'>--%>
                                                            <html:select name="SkillsForm" property="technologies1"onchange='getCorrespondingSkills(this)'>
                                                                 <html:optionsCollection  property="technologyList" value="technologyId" label="technology" />
                                                                </html:select>
                                                            </td>
                                                                  <td class="brdrInput">
                                                                  <html:select name="SkillsForm" property="skills1"onchange='submitTechSkills(this)' >
                                                            <html:optionsCollection  property="skillList" value="skillId" label="skill" />
                                                                </html:select>
                                                            </td>The action class is something like this:
    public ActionForward unspecified(ActionMapping mapping, ActionForm form,
                             HttpServletRequest request, HttpServletResponse response)
                        HttpSession session=request.getSession();
                        String str=(String)session.getAttribute("employeeId");
                        System.out.println("this is the employeeId"+str);
                        SkillsForm formObject=(SkillsForm)form;
                        List technologyList;
                        technologyList=(List)TechnologyDelegate.getTechnologyFromDB();
                        for (Iterator iter = technologyList.iterator(); iter.hasNext();) {
                             Technology tech= (Technology) iter.next();
                             System.out.println("Technology"+tech.getTechnology());
                             System.out.println("TechnologyId"+tech.getTechnologyId());
                        formObject.setTechnologyList(technologyList);
                        //Populate a Skills drop menu corresponding to the first technologyId
                        int var=1;
                        Integer var1=new Integer(var);
                        List skillsList;
                        skillsList=(List)SkillsDelegate.getSkillFromDB(var1);               
                        formObject.setSkillList(skillsList);
                        System.out.println("associated Skills"+formObject.getSkillList().size());
                        System.out.println("=============>");
                        session.setAttribute("employeeId",str);
                        return mapping.findForward("skillsPopulation");
                   public ActionForward getSkillsList(ActionMapping mapping, ActionForm form,
                             HttpServletRequest request, HttpServletResponse response)
                        HttpSession session=request.getSession();                    
                        SkillsForm formObject=(SkillsForm)form;
                        List technologyList;
                        technologyList=(List)TechnologyDelegate.getTechnologyFromDB();
                        for (Iterator iter = technologyList.iterator(); iter.hasNext();) {
                             Technology tech= (Technology) iter.next();
                             System.out.println("Technology"+tech.getTechnology());
                             System.out.println("TechnologyId"+tech.getTechnologyId());
                        formObject.setTechnologyList(technologyList);                    
                        Integer techId=new Integer(formObject.getTechnologyId());                    
                        String technologyId=formObject.getTechnologyId();                    
                        List skillsList;
                        skillsList=(List)SkillsDelegate.getSkillFromDB(techId);
                        //All the skillList being set along with the one that has to be!                    
                        formObject.setSkillList(skillsList);
                        //the SkillLsit that is being used to populate the drop down is being reset
                        //every time a new technology is set!
                        //to overcome this we need to define seperate SkillList for each row!
                        List var=formObject.getSkillList();
                        for (Iterator iter = var.iterator(); iter.hasNext();)
                             Skills vari= (Skills) iter.next();
                             System.out.println("SKILLS IDSFASDFGAGFG "+vari.getSkillId());
                        System.out.println("skillsList"+skillsList.size());
                        System.out.println("associated Skills"+formObject.getSkillList().size());
                        session.setAttribute("employeeId",session.getAttribute("employeeId"));
                        session.setAttribute("technologyList",technologyList);
                        session.setAttribute("technologyId",technologyId);
                        System.out.println("TECHNOLOGY ID"+technologyId);
                        System.out.println("TECHNOLOGY ID"+techId);
                        return mapping.findForward("refreshAgain");
                   }* The first function id used to populate the form with the first technology in the databse and its corresponding skills! The second function fetches the skills wrt the selected technology!
    My prob is that when ever I change the technology in the dropdown My all skills menu gets populated with the skills associated with the selected technology!
    I have 5 rows of such tech and skills columns! And the prob is that if I select tech inthe 2nd row then all the skills rows gets changed! all I want is that the 2nd row only be populated!
    Is there a way in which I can know in my action class ,'which row has been selected'.
    I am a newbie to Java and am just learning things!
    Pls do help! I am desperate!!!!!!!1

    So far as I'm aware, you can't get metadata information about the underlying tables in a query from Oracle and/or the Oracle drivers. I suspect, in fact, that the driver would have to have its own SQL parser to get this sort of information.
    I'm curious though-- how do you have application logic that depends on the name of the source table but not know in the application what table is involved? Could you do something "cheesy" like
    SELECT 'tbl_customerRegistration' AS tbl1_name,
           tbl_customerRegistration.*
    ...Justin
    Distributed Database Consulting, Inc.
    http://www.ddbcinc.com/askDDBC

  • How can I organize data by name in a drop down menu?

    I created a spread sheet with several drop down menus. The problem I am having is how to organize my data by name. Every new entry is at the bottom of the drop down and can't be moved to a different location. This gets very confusing as I add more names to the drop down cell. In this case my entries consist of Chemical names that make it very hard to recognize or to locate once I open the drop down menu. Any suggestions?

    Hello
    Some times ago I've written a set of AppleScript scripts to manipulate popup menu items in Numbers 09. You may try the Script 3 (sort popup items.applescript) for instance in the following thread.
    Alphabetize pop-up menu
    https://discussions.apple.com/thread/5177915?tstart=0
    https://discussions.apple.com/message/22530570
    https://discussions.apple.com/message/22530926
    https://discussions.apple.com/message/22541516
    Hope this may help,
    H

  • I would like to change my Short Name. But no edit menu in the directory to choose root.

    Like the title says, pretty self explanatory. I bought this MacBook from a friend of mine and her name is still on the Home Icon (short name). I get the idea of how to change it but once I get to the Directory Utility to enable the Root User, I find that there is NO edit menu. So now I'm somewhat at an impasse on how to do this so I've decided to come here for some help. Sorry if this has been asked a million times, I've gone through some other topics somewhat similar and nothing remotely came close to this issue. I find it odd that I don't have an Edit Menu in the DU. If there is a different way to this then please let me know, if not then please walk me through this. Thanks!

    Have a look at this link - hopefully it sorts it out for you...
    http://support.apple.com/kb/HT1428
    http://www.cultofmac.com/126621/how-to-move-or-rename-your-mac-home-folder-macrx /

  • How do i add my name to show in the menu bar, i had the date, time and my user name showing in the menu bar before, but can't remember how to do it. Thank you.

    I'm having trouble figuring out how to add the user name in the menu bar. I used to have it showing along with the time & date etc. But i've looked everywhere trying to figure out how to do it. Any help would be gratefully appreciated.
    Thank you.

    The following is old but may still be valid with Yosemite (it addresses how to remove the name but indirectly also how to display it): http://osxdaily.com/2012/01/10/remove-user-name-from-menu-bar-os-x/

  • How to 'client-side include for secondary menu on page'

    Hi there.
    The following page refers:
    test page for early
    draft
    The linked page is in fact a DW CS3 tmp preview file, for
    that reason the CSS has been pulled into the html file by DW, it
    won't look that way in the eventual page file.
    After lengthy battles with the Spry Horizontal menu, I
    eventually resorted to Pop Menu Magic 2 (PPM2) to generate menus.
    I'm very happy with the product (I'm not looking for PPM2 support,
    but rather support pertaining to CSS-driven menu's in general
    relating to caching). I started out with a single main navigation
    menu, which was very comprehensive - but also very big (ito file
    size). I was hoping to cache a part of the menu on the client-side
    to reduce download times once the site visitor has downloaded the
    first page in the site (where he enters the site is not
    applicable). But that proved impossible (I think...).
    I then followed some advice to break up my main navigation
    menu, keep only the more important stuff in there and rather
    distribute the lower levels of the main menu into their own
    dedicated menus. From there the page linked above.
    The main menu at the top is fine, no problem there. On the
    left below the masthead I've created two menus, one above the other
    (it displays as a single menu but the first menu ends above the
    "Other tour lists" item). The first of these two menus contains the
    bulk of the heavy navigation elements (±160kb of the total
    page file size of 220kb). The div info that applies to this menu =
    <div id="p7PMM_2" class="p7PMMv06">. I'd love to cache this
    menu, either in full or the bulk thereof, on the client-side. That
    is implement a client-side include. When a visitor first enters our
    site the include file with the 160kb (secondary) menu gets
    downloaded together with CSS stylesheets, etc. When the visitor
    links through to a following page in our site, his machine
    (client-side) dishes up the menu to that next page without having
    to download it from our hosting server a second time.
    Is this possible and how? Any and all suggestions will be
    appreciated!
    Our clients are mostly wealthy and thus probably (virtually)
    all have high-speed broadband connections. I seriously doubt that
    any of them are running dial-up connections. Thus this issue is not
    going to sink our site. But I'd love to cut page file size if
    possible.
    Furthermore, I'm not too worried about the small portion of
    visitors that may have their javascript disabled in their browsers.
    The main navigation menu at the top of the page will still allow
    them to navigate the site. Much the same goes for SEO.
    I've tried one or two CSI javascripts and succeeded in
    actually getting the relevant tags and contents inserted in the
    html document, but the javascript would then 'break'. That is all
    the coding and menu contents would be there, but the javascript
    won't function (menu's won't pop / fly-out). I'm a little clueless
    when it comes to Javascript, and many other things :-), but I
    suspect that the Javascript in the include file does not get
    called. If the Javascript is kept in the html file, the menu
    content (elements) in the include file arrives in the html file
    after the relevant script has been called and doesn't get
    rendered??
    Once again any help / suggestions will be appreciated!

    > But that proved impossible (I
    > think...).
    Even without doing anything on your part, the images, the
    CSS, and the
    javascript is already cached client-side. You cannot cache
    any of the
    structural code client-side.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "afrilux" <[email protected]> wrote in
    message
    news:[email protected]...
    > Hi there.
    >
    > The following page refers:
    http://www.afrilux.co.za/test/1/dev2.htm
    >
    > The linked page is in fact a DW CS3 tmp preview file,
    for that reason the
    > CSS
    > has been pulled into the html file by DW, it won't look
    that way in the
    > eventual page file.
    >
    > After lengthy battles with the Spry Horizontal menu, I
    eventually resorted
    > to
    > Pop Menu Magic 2 (PPM2) to generate menus. I'm very
    happy with the product
    > (I'm
    > not looking for PPM2 support, but rather support
    pertaining to CSS-driven
    > menu's in general relating to caching). I started out
    with a single main
    > navigation menu, which was very comprehensive - but also
    very big (ito
    > file
    > size). I was hoping to cache a part of the menu on the
    client-side to
    > reduce
    > download times once the site visitor has downloaded the
    first page in the
    > site
    > (where he enters the site is not applicable). But that
    proved impossible
    > (I
    > think...).
    >
    > I then followed some advice to break up my main
    navigation menu, keep only
    > the
    > more important stuff in there and rather distribute the
    lower levels of
    > the
    > main menu into their own dedicated menus. From there the
    page linked
    > above.
    >
    > The main menu at the top is fine, no problem there. On
    the left below the
    > masthead I've created two menus, one above the other (it
    displays as a
    > single
    > menu but the first menu ends above the "Other tour
    lists" item). The first
    > of
    > these two menus contains the bulk of the heavy
    navigation elements (?160kb
    > of
    > the total page file size of 220kb). The div info that
    applies to this menu
    > =
    > <div id="p7PMM_2" class="p7PMMv06">. I'd love to
    cache this menu, either
    > in
    > full or the bulk thereof, on the client-side. That is
    implement a
    > client-side
    > include. When a visitor first enters our site the
    include file with the
    > 160kb
    > (secondary) menu gets downloaded together with CSS
    stylesheets, etc. When
    > the
    > visitor links through to a following page in our site,
    his machine
    > (client-side) dishes up the menu to that next page
    without having to
    > download
    > it from our hosting server a second time.
    >
    > Is this possible and how? Any and all suggestions will
    be appreciated!
    >
    > Our clients are mostly wealthy and thus probably
    (virtually) all have
    > high-speed broadband connections. I seriously doubt that
    any of them are
    > running dial-up connections. Thus this issue is not
    going to sink our
    > site. But
    > I'd love to cut page file size if possible.
    >
    > Furthermore, I'm not too worried about the small portion
    of visitors that
    > may
    > have their javascript disabled in their browsers. The
    main navigation menu
    > at
    > the top of the page will still allow them to navigate
    the site. Much the
    > same
    > goes for SEO.
    >
    > I've tried one or two CSI javascripts and succeeded in
    actually getting
    > the
    > relevant tags and contents inserted in the html
    document, but the
    > javascript
    > would then 'break'. That is all the coding and menu
    contents would be
    > there,
    > but the javascript won't function (menu's won't pop /
    fly-out). I'm a
    > little
    > clueless when it comes to Javascript, and many other
    things :-), but I
    > suspect
    > that the Javascript in the include file does not get
    called. If the
    > Javascript
    > is kept in the html file, the menu content (elements) in
    the include file
    > arrives in the html file after the relevant script has
    been called and
    > doesn't
    > get rendered??
    >
    > Once again any help / suggestions will be appreciated!
    >
    >

  • Table name for includes

    Hi Experts,
       Is there any table from which i can get all the Main program names when i give the Include program name.
    Regards,
    aadi.
    removed the word Urgent from the title. read the forum rules linked in this thread
    Please read "The Forum Rules of Engagement" before posting!  HOT NEWS!!
    Edited by: Durairaj Athavan Raja on Jun 23, 2008 12:33 PM

    Use FM RS_GET_MAINPROGRAMS to get all main program name for a include.
        perform search_mainprog using prog frameprogram.
          FORM SEARCH_MAINPROG                                          *
         Liefert zu einem INCLUDE den Namen des Hauptprogramms          *
          -> PROGNAME                                                   *
          <- MAINSOURCE                                                 *
    form search_mainprog using progname mainprog.
      data: begin of maintab occurs 5,
            name(8),
            end of maintab.
      call function 'RS_GET_MAINPROGRAMS'
        exporting
          name         = progname
        tables
          mainprograms = maintab
        exceptions
          cancelled    = 01.
      read table maintab index 1.
      mainprog = maintab-name.
    endform.                               "SEARCH_MAINPROG

  • Urgent how to find transaction & exit name from the name of include program

    hai
    i want to know the transaction that is executing
    the exit which includes the include name
    as "LVKMPFZ2"
    can anyone tell me the procedure (dont forget steps )
    to know the transaction
    (but this program is include SAP automatic credit control configuration)

    Hi Kiran,
    I think this is related to credit management,
    See,
    FD24    Credit Limit Changes
    FD32    Change Customer Credit Management
    FD33    Display Customer Credit Management
    FD37    Credit Management Mass Change
    Hope this help
    Juan
    Please reward with points if helpful

  • Find transaction and exit name from the name of include program

    hai
    i want to know the transaction that is executing
    the exit which includes the include name
    as "LVKMPFZ2"
    can anyone tell me the procedure (dont forget steps )
    to know the transaction
    (but this program is include SAP automatic credit control configuration)

    Hi
    Try TSP01-Suffix2
    Regards
    Raj

  • Menu displayed name on main and sub-menu

    How can if fix the menu displayed name on main and submenu items. Without using customazation form, the name displayed is always the name of the menu object

    Hi,
    You can change the display name of the menus and submenus in the right frame of the menu at design time. The root menu display name will be the display name of the menu component.
    Thanks,
    Sharmila

  • Determine name of MenuItem or parent menu name?

    I have a JMenu with several JMenu's in it, two of which have the same MenuItem's in them. See below:
    inputMenu = new JMenu("Input Format");
            menuBar.add(inputMenu);
                 //Input Format Group
                 ButtonGroup inputGroup = new ButtonGroup();
                 in_opt1 = new JRadioButtonMenuItem("One");
                 inputGroup.add(opt1);
                 in_opt1.addActionListener(this);
                 inputMenu.add(opt1);
                 in_opt2 = new JRadioButtonMenuItem("Two");
                 inputGroup.add(in_opt2);
                 in_opt2.addActionListener(this);
                 inputMenu.add(opt2);
    outputMenu = new JMenu("Output Format");
            menuBar.add(outputMenu);
                 //Output Format Group
                 ButtonGroup outputGroup = new ButtonGroup();
                 out_opt1 = new JRadioButtonMenuItem("One");
                 outputGroup.add(out_opt1);
                 out_opt1.addActionListener(this);
                 outputMenu.add(out_opt1);
                 out_opt2 = new JRadioButtonMenuItem("Two");
                 outputGroup.add(ou_opt2);
                 out_opt1.addActionListener(this);
                 outputMenu.add(out_opt2);I can determine which MenuItem has been selected (clicked) by the following code:
    JMenuItem source = (JMenuItem)(e.getSource());
    selection = source.getText();
    if (selection == "Open") {
    //etc etcHow can I determine which menu that MenuItem is in?
    I guess being able to determine the name of the MenuItem would do exaclty what i want - how do I do this?
    Thanks,
    Tim

    I dunno if I get you on this, lemme try though:
    The menu you have is set up like this:
    "Input Menu"            "Output Menu"
        |                        |
    in_opt1 "One"           out_opt1 "One"
    in_opt2 "Two"           out_opt2 "Two"And you want to tell the difference between in_opt1 and out_opt1 even though they have the same text.
    The thing I would try would be to use ActionCommands:
    inputMenu = new JMenu("Input Format");
            menuBar.add(inputMenu);
                 //Input Format Group
                 ButtonGroup inputGroup = new ButtonGroup();
                 in_opt1 = new JRadioButtonMenuItem("One");
                    in_opt1.addActionCommand("One In");
                 inputGroup.add(opt1);
                 in_opt1.addActionListener(this);
                 inputMenu.add(opt1);
                 in_opt2 = new JRadioButtonMenuItem("Two");
                    in_opt2.addActionCommand("Two In");
                 inputGroup.add(in_opt2);
                 in_opt2.addActionListener(this);
                 inputMenu.add(opt2);
    outputMenu = new JMenu("Output Format");
            menuBar.add(outputMenu);
                 //Output Format Group
                 ButtonGroup outputGroup = new ButtonGroup();
                 out_opt1 = new JRadioButtonMenuItem("One");
                    out_opt1.addActionCommand("One Out");
                 outputGroup.add(out_opt1);
                 out_opt1.addActionListener(this);
                 outputMenu.add(out_opt1);
                 out_opt2 = new JRadioButtonMenuItem("Two");
                    out_opt2.addActionCommand("Two Out");
                 outputGroup.add(ou_opt2);
                 out_opt1.addActionListener(this);
                 outputMenu.add(out_opt2);
    actionPerformed(ActionEcent e) {
      String command = e.getActionCommand();
      if (command.equals("One Out")) {
       } else if (command.equals("Two Out")) {
    }Steve

Maybe you are looking for

  • Problem in opening a view on Portal

    Hi, I'm working with SAP BI 7.0 integrated with SRM Portal and I'm facing the following issue: when I launch a report via Portal, in the "Data Analysis" tab there is the button "Save view", that allows me to save a view with specific technical name a

  • Embed an application

    Hi, I am tryinf to run an application (a remote desktop application) in a labview program. My question is: Is it possible to embed this remote desktop into a labview box? I do not know if it would be possible by using Active X containers or so. Thank

  • RMAN backup with archivelog (pros/cons)

    When performing a "backup database with archivelogs" where does rman store the info contained in the archive logs. If I do a backup like this do I still need to keep the archive logs out on disk? Does this increase time to do backups? I have some pro

  • Transfer/Copy purchased Apps upon adding Apple equipment and opening new ID in the family

    Upon acquiring ever more Apple equipments in our family, it became overwhelming to manage all with one Apple ID. A new ID was created with family sharing, etc however I transfer or copy of purchased Apps could not be moved across (even if only used o

  • 1607: Unable to install InstallShield Scripting Runtime......help!!

    What does this mean?!?! I tried upgrading and now I lost iTunes. Can anybody help out here? Macbook   Windows XP