Can we change the ABAP QUERY exists in Global area

Hi All,
I have a requirement to  add new column in the ABAP query in layout for that I am changing a ABAP query ME80FN which is calling  infoset  /SAPQUERY/ME80FN  defined in the global area ( Environment->query areas->global area).
1) Can I change this infoset and query
or
2) Do I need to follow any other steps.
If I change the existing query in DEV can I transport this to production.
Please clarify.
Thanks,
Jwala

Yes. We can change the background of an input field. The way you do this is by editing the theme that webdynpro application uses. To edit the theme, you will need to install NWDS PLUS the theme edit plugin (Available for download from SAP).
Once you have edited the theme, you will need to upload your theme back to application server. You can use the program : BSP_UPDATE_MIMEREPOS to do this.
Bydefault, the theme used by webdynpro applications is :
/SAP/PUBLIC/BC/UR/nw5/themes/sap_tradeshow
You can apply another theme by calling the webdynpro application with a theme parameter. For example, if my webdynpro application name is "zgopaltest", then
<i><b>http://<server>:port/sap/bc/webdynpro/sap/zgopaltest?SAP-EP-THEMEROOT=/SAP/PUBLIC/BC/UR/nw5/themes/sap_tradeshow</b></i>
will apply the sap_tradeshow theme.
Likewise, you can apply diffrent theme. There is another theme that SAP provides. Its called : sap_hcb. Hence, you can apply the theme to the above application by:
<i><b>http://<server>:port/sap/bc/webdynpro/sap/zgopaltest?SAP-EP-THEMEROOT=/SAP/PUBLIC/BC/UR/nw5/themes/sap_hcb</b></i>

Similar Messages

  • Add a Code to Change the ABAP Query

    Hi All,
    I have a requirement in which i need to add a check box to a selection screen in ABAP query i inserted this check box in the infoset .The report is using joins from table EKKO,EKPO and EKES and display all the Vendor Confirmation details but when the user clicks on the checkbox which is added on the selection screen the report should only display the latest date Vendor confirmation for each line item of the PO.So i need your help how and where should i add the code for this in the Query???
    Result when no Checkbox is ticked
    PO    LineItem     Date
    100       1           15.01.2010   
    100        1           15.02,2010
    100        1           15.02.2010
    Result when Checkbox is ticked
    PO    LineItem     Date
    100        1           15.02,2010
    100        1           15.02.2010
    Please help!!!
    Regards,
    KB

    HI,
    After selecting data from tables EKKO,EKPO and EKES in internal table, sort that internal table in descending order of date and in ascending order of PO number and line item and then delete adjacent duplicates from that internal table by comparing PO number and line item. This will give you the latest entry for each PO number and line item.
    PFB the sample code..
    *--after select query on EKKO, EKPO and EKES
    SORT itab  po_number ascending line_item ascending date descending.
    DELETE ADJACENT DUPLICATES FROM itab COMPARING po_number line_item.
    Let's say input file contains following data
    PO LineItem Date
    100 1 15.01.2010
    100 1 15.02.2010
    101 1 15.02.2010
    101 1 15.02.2010
    Above code will give you output as given below :
    PO LineItem Date
    100 1 15.02.2010
    101 1 15.02.2010
    Regards,
    Pranjali

  • How can I change the report query source on the fly

    I am new to Bi Publisher,
    I have a user that wants to select certain columns in the table then have bi publisher make a pdf on just those columns
    without making different reports for each of there choices, how can i make the report variable?
    Thanks,
    Doug

    Hi Doug,
    You can also use lexical parameters to determine the columns in a Data Template (or Oracle Report)... taking it to the extreme the major components of a BI Publisher data template could be dynamic.... something like:
    select &select_clause
    from &from_clause
    where &where_clause
    Regards,
    Gareth
    http://garethroberts.blogspot.com
    http://www.virtuate.com

  • How can I change the default location ipad/iphone pictures are stored in on my desktop?

    So here's my dilemma.  I have lightroom mobile on my ipad and iphone.  Seamlessly, lightroom mobile pushes these images to my desktop and saves them in a folder in windows.  I use an SSD and would prefer not doing read/writes to it that are unnecessary.  What makes the default location problematic is that I can't seem to change it.  Further, when I sync my ipad/iphone to my windows desktop using a cable, I will now have duplicates of images that were synced via lightroom mobile.  So, it would be infinitely simpler, I think, if lightroom mobile would sync ipad/iphone images to a directory I specify, on a supplemental hard drive for instance, and using dates for folder names rather than some default directory on my main drive where they are just dumped.

    Currently, Lightroom saves the images in a directory structure under a folder named "Mobile Downloads.lrdata", which is created in the same folder as the catalog file.
    For example, an image will be saved as:
    Windows = C:\Users\<username>\Pictures\Lightroom\Mobile Downloads.lrdata\<random hexadecimal name>\picture1.jpg
    Mac = Users/<username>/Pictures/Lightroom/Mobile Downloads.lrdata/<random hexadecimal name>/picture1.jpg
    you want to change the location of this "Mobile Downloads.lrdata" to another path.
    You should file an Idea, AKA Feature Request, to the Feedback site:
    http://feedback.photoshop.com/photoshop_family
    If there is enough people voting for it, the Product Managers will evaluate it and eventually apply it to a future version.
    It's your interest to advertise the Idea in order to increase the number of votes (I would vote for it).
    There is another similar discussion in the forum (How do i change the location of 'Mobile Downloads.lrdata' ?), I am posting the same answer there.

  • How can I change the order in which purchased movies are downloaded?

    If for instance, I rent three movies on iTunes Store and decide I want the download of my last pick, to be the first one finished downloading... is there a way to do this?

    Pause the ones that you do not want to be first.

  • Can we Change the backround color of an Input field in Webdynpro for ABAP.

    Hi Experts ?
    Can we change the background color of an Input field in WebDynpro for ABAP based on results we receive from any function module or BAPI?? .
    Thanks in advance .
    Regards ,
    LAS

    Yes. We can change the background of an input field. The way you do this is by editing the theme that webdynpro application uses. To edit the theme, you will need to install NWDS PLUS the theme edit plugin (Available for download from SAP).
    Once you have edited the theme, you will need to upload your theme back to application server. You can use the program : BSP_UPDATE_MIMEREPOS to do this.
    Bydefault, the theme used by webdynpro applications is :
    /SAP/PUBLIC/BC/UR/nw5/themes/sap_tradeshow
    You can apply another theme by calling the webdynpro application with a theme parameter. For example, if my webdynpro application name is "zgopaltest", then
    <i><b>http://<server>:port/sap/bc/webdynpro/sap/zgopaltest?SAP-EP-THEMEROOT=/SAP/PUBLIC/BC/UR/nw5/themes/sap_tradeshow</b></i>
    will apply the sap_tradeshow theme.
    Likewise, you can apply diffrent theme. There is another theme that SAP provides. Its called : sap_hcb. Hence, you can apply the theme to the above application by:
    <i><b>http://<server>:port/sap/bc/webdynpro/sap/zgopaltest?SAP-EP-THEMEROOT=/SAP/PUBLIC/BC/UR/nw5/themes/sap_hcb</b></i>

  • HT1819 I have two existing podcasts on iTunes. I have new RSS feeds for both. Can I change the RSS feeds on my existing podcast listings or do I have to resubmit?

    I have two existing podcasts on iTunes. I have new RSS feeds for both. Can I change the RSS feeds on my existing podcast listings or do I have to resubmit?

    There is some info in this discussion.
    https://discussions.apple.com/thread/6024120?tstart=0

  • Can we change the Existing scenarios name in a outline

    Hi All,
    I have a requirement like change the Existing scenario name to another name...
    Ex: Existing scenario name Scenario -> "Budget"
    After changing scenario name Scenario-> Fcst_Buget
    Can we do this???
    If yes, what are the things i need to take care because we have data for that scenario...please let me know...
    Please update on this ..its urgent

    You can absolutely change the member names.
    Are you concerned about the impact on data loads, formulas, calcs, etc?
    An easy way to have your cake and eat it too is to assign an alias to the member so that Budget now becomes Budget with an alias of Fcst_Budget. Whatever artifacts refer to the old name continue to do so and from a reporting perspective you reference the alias.
    Or you can reverse it so that the member name now becomes Fcst_Budget and the alias is Budget.
    Your choice, but I think the former is what you want.
    Regards,
    Cameron Lackpour

  • I am using a 5s under IOS 7.1.1. How can I change the year field directly when editing an existing calendar entry?

    I am using a 5s under IOS 7.1.1. How can I change the year field directly when editing an existing calendar entry?

    Glad that helped.
    Enjoy your iPhone!

  • Trying to erase settings from my old iphone but when I have to enter my itunes ID password the old email address is displayed.  How can I change this to my existing itunes account so I can reset this phone?  Thank you.

    Trying to erase settings from my old iphone but when I have to enter my itunes ID password the old email address is displayed.  How can I change this to my existing itunes account so I can reset this phone?  Thanks in advance.

    I know it sounds weird, and that is the reason I posted my question.  Because my case is not like all the ones I've found online and it's confusing.  I added a screen capture of my itunes with my old iphone (the one that houses my playlists) connected to it.
    My playlists "ARE"  in my iphone 4s.  They are still there even though they do not show up when I plug in to itunes in my computer. 
    When connecting my phone to itunes on my macbook, the playlists do not appear anywhere in itunes.  I have found my connected iphone icon, I have clicked on the arrow next to it and it does pull up the standard lists that come with the iphone/itunes:  Music, Movies, TV shows, books.  That's it! below that is "Genius" and below "Geniuns" is "PLAYLISTS"  but the only playlist of mine that shows there is one that I created several years back titled "90's music" and that one I created it on my computer, not my phone.  Under "90's music" there are also other standard playlists that itunes automatically adds.
    Does anyone else have this issue or know how to get around this.  I am starting to think that I am going to have to recreate these lists on my computer

  • Can I change the guest type for existing guest.

    can I change the guest type for existing guest. ISE version 1.3

    You can not change the guest type for existing guest account. You need to delete it and create with correct type

  • How can i change the default text "Query by Example"

    Studio Edition Version 11.1.1.3.0
    how can i change the default text *"Query by Example"* in a Panel Collection
    Thx

    Hi thieto,
    The label you are looking for is af_panelCollection.LABEL_MENUITEM_QBE*
    I'm currently writing a blogpost on this issue. In short, you will have to create a skin resource bundle.
    In the skin definition, refer to this bundle class.
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <skins xmlns="http://myfaces.apache.org/trinidad/skin">
      <skin>
        <id>mySkin.desktop</id>
        <family>MySkin</family>
        <extends>blafplus-rich.desktop</extends>
        <render-kit-id>org.apache.myfaces.trinidad.desktop</render-kit-id>
        <style-sheet-name>skins/MySkin.css</style-sheet-name>
        <bundle-name>com.blogspot.lucbors.view.bundles.MySkinBundle </bundle-name>
      </skin>
    </skins>In this class, adjust the label text to your needs.
    package com.blogspot.lucbors.view.bundles;
    import java.util.ListResourceBundle;
    public class MySkinBundle extends ListResourceBundle {
      public MySkinBundle() {
        super();
    @Override
      public Object[][] getContents() {
        return _CONTENTS;
    static private final Object[][] _CONTENTS = {
         {"af_panelCollection.LABEL_MENUITEM_QBE","the text that you want"}
    }More in the blogpost
    Good luck
    Luc Bors
    Edited by: lucbors on Jul 26, 2010 11:39 AM (blogpost finished - URL added)

  • Can we change the ISO code of existing UOMs?

    We have developed a new global R3 initiative where we need to merge UOMs from different regions (from different R3 systems) and we have discovered some UOMs have a blank ISO code - can we change the ISO code and what should we check for please?
    Many thanks

    hi
    yes u can change it in the transaction CUNI
    For additional information see OSS note 69063.
    regards
    kunal

  • Assets panel styles, can i change the color of a style to be an exact color?

    Assets panel > styles, can i change the color of a style
    to be an exact color? for example, if i want to create a navbar
    with the black and gray glass affect style, but i want to change
    the color but keep the same style of shading. each style in the
    assets panel has a default color, but i want to change the color
    and keep the style. i did change the color a little bit by
    adjusting the hue and saturation, but i can't seem to get an exact
    match of the color i am trying to duplicate. any help is greatly
    appreciated thanks

    When a style is applied to any object, the Properties panel
    at the bottom will reflect the attributes which are editable in
    that applied style. The properties which can be edited are fill and
    stroke colors also apart from adjusting the Hue and Saturation.
    Gradient colors can be modified by changing the fill color.
    The nodes in the gradient will change the color from blue to black
    or any other intended color of change. If you know the color you
    can either enter it as a 6 digit value or you can pick a color from
    an existing object.
    Hope it helps. Let me know I am missing you query
    completely.

  • Help in the ABAP query

    Hi Friends,
    I am having issue in the ABAP query in the HR report, i can able to change the column Heading in the report, but the same header is not coming in the layout details fields(after executing the ALV report we have layout options where we could not see the same header as in the coulmn heading)
    pls help me to solve this issue,
    Regards,
    boobalan.v

    Hi,
    Once you have made some changes to the infoset/query, You need to adjust the infoset(SQ02) and then regenerate the query(SQ01)
    >Menu->Query/Infoset->More functions->Adjust/Generate program.
    Letme know if this is still not reflecting..
    Reward if useful
    Regards
    Shiva

Maybe you are looking for