How to make changes to a standard View and save it

Hi,
      I have a problem with changing view on a standard query (0RPM_C02_Q0212_V01). I opened this in BEx Analyzer, made the changes but when I'm trying to save this, am unable to save or replace the existing view.
Do I need to have any specific roles/ permissions to do this. I'm on this since yesterday without a solution. I could not find any related post or solution for this on sdn too.
I'm using SAP Net weaver BEx Analyzer  Release 2004s
Thank you,
Vasu

Hi Vasu,
go through this thread and links it might help you:
BEx Change Query Local View equivalent in BI 7.0
http://help.sap.com/saphelp_nw04/helpdata/en/f1/0a5550e09411d2acb90000e829fbfe/frameset.htm
Regards
Andreas

Similar Messages

  • How do you change the dpi in Illustrator and save as pdf?

    I've created a file in Illustrator cs4 that I need to change the 350 dpi of and to save as a pdf before having it sent out to be printed. I've found ways to change the ppi...but will that do the same thing as changing the dpi? Any advice would be much appreciated!

    This might explain it
    http://forums.adobe.com/thread/370714
    The device has the dpi not the file itself the file has a ppi resolution the screens are prepared in lpi.
    The above explains it the highest resolution I have ever been asked for was 350 ppi for offset printing 300ppi is normal.
    In other word you do not control the dpi as Steve mentions.

  • How can I change my default PDF viewer and other things

    Hello,
    I am using Iceweasel 3.6.16 on Debian Stable (currently Squeeze) and the download Manager in Firefox (it should be the default one though I have the All-in-One Sidebar installed) always wants to open PDF files with the foxit reader. I don't know when it happened, how or why but everytime I click on a pdf file in the download manager it tries to open it with the foxit reader using wine, same thing happens with txt (he's trying to open them with notepad, using wine).
    Now when I download pdfs I don't have a problem because I use the PDF Downloader and I set it to use okular when I want to open a pdf but once it's downloaded and I want to open it using the sidebar on the left it uses the foxit reader. So my question would be where I can specifiy what program I want to certain files.
    When I go to Edit -> Preferences -> Applications and to PDF Document it says under Action "Always ask" and changing that to okular doesn't solve the problem.

    AWESOME - PROBLEM WAS, AT THE TIME ADOBE AND FOXIT FILE TYPES WERE NOT APPEARING IN MY TOOLS/OPTIONS/APPLICATIONS TAB - THIS IS A MYSTERY . . . .

  • How to make changes to standard UWL WebDynpros?

    Hi,
    We are faced with the problem to make changes to the standard UWL Person Search Dialog. But couldn't find any documentation, blog or anything else how to achieve this. We strongly believe, that we have to create a new track in nwdi, import uwl development components, make changes to them, transport and so on.
    So, how can we make changes to standard uwl WebDynpro components?
    Thanx,
    Gerald

    After investigating hours of hours i have come to the following conclusion concerning uwl customization:
    uwl can be customized following this documenation https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/a3461636-0301-0010-3787-978f5ac8bd45
    I have tried to check out the sap standard software component (sap.com/UWLJWF), put them into a nwdi track and try to change it. Just the same way as you have to do it using ess/xss.
    But it didn't work out, because source codes are not included. I have also got the info from sap that the uwl webdynpros are not designed for custom changes.
    So, there is no way.

  • How to make changes in standard transaction ME51N.

    Hi,
       Can anyone tell me how to make changes in standard transaction ME51N.
       I want to call transaction AS01 by clicking on standard button create asset. Please do the needful.
    Regards.
    Aniruddha

    Hi anirudda
              As i understood from your question is that you want to add a new field 'CREATE ASSET' on me51n screen.
    If i am correct you can use 'MEREQ001' enhancement for this purpose and you can write you code in the exits available in this enhancement.
    Please check the documentation of this enhancement for more info.
    (Use Smod for this purpose)
    I hope it is helpful.
    Reward points
    Thanks,
    Prasanna

  • How to make changes in another program?

    Hi evrybody,
    how  to make changes from one program  to another program ?
    Changes should be reflecting in other program.
    thanx in advance n wud be surely Rewarded if answer is helpful.

    Hi Bharat,
    Thanx for the info.
    But what my requirement is , I'm scanning & reading another report into an Internal table. I want to change the Hyphen's
    '-' used in variable declarations of another program into Underscore '_' .
    My sample code is like this..
    Report Zmain.
    PARAMETERS:
      p_prog LIKE sy-repid,
      p_key LIKE stokex-str.
    Internal Table t_itab                                                *
    DATA:
      BEGIN OF t_itab OCCURS 0,
        line(256) TYPE c,
      END OF t_itab.
    *" Data declarations...................................................
    DATA:
      t_statements LIKE sstmnt OCCURS 0 WITH HEADER LINE,
      t_levels LIKE slevel     OCCURS 0 WITH HEADER LINE,
      t_tokens TYPE stokesx    OCCURS 0 WITH HEADER LINE,
      t_keywords LIKE t_itab   OCCURS 0 WITH HEADER LINE,
      w_i TYPE i,
      w_j TYPE i.
                            START-OF-SELECTION                           *
    START-OF-SELECTION.
      APPEND p_key TO t_keywords.
      READ REPORT p_prog INTO t_itab.
      SCAN ABAP-SOURCE t_itab
      STATEMENTS INTO t_statements
      LEVELS INTO t_levels
      TOKENS INTO t_tokens
      KEYWORDS FROM t_keywords
      WITH INCLUDES
      WITH ANALYSIS
      WITH COMMENTS.
                            END-OF-SELECTION                             *
    END-OF-SELECTION.
      LOOP AT t_statements.
        READ TABLE t_levels INDEX t_statements-level.
        w_i = t_statements-from.
        w_j = t_statements-to.
       IF t_statements-level > 0.
        WHILE w_i < w_j.
          READ TABLE t_tokens INDEX w_i.
          REPLACE '-' WITH '_' INTO t_tokens-str.
          w_i = w_i + 1.
        ENDWHILE.
       ENDIF.
      ENDLOOP.
    My called program is like this....
    Report Zcalled.
    DATA:
      w-var1 TYPE c,
      w-var2 TYPE c.
    DATA:
      fs_flight1 TYPE sflight,
      t_flight1 LIKE STANDARD TABLE OF sflight.
    START-OF-SELECTION.
      INCLUDE zinclude3.
      SELECT * FROM sflight
        INTO TABLE t_flight1
        WHERE carrid = 'AA'.
      SELECT * FROM sflight
       INTO TABLE t_flight1
       WHERE carrid = 'LH'.
    END-OF-SELECTION.
      LOOP AT t_flight1 INTO fs_flight1.
        WRITE: / fs_flight1-carrid,
                 fs_flight1-connid,
                 fs_flight1-fldate,
                 fs_flight1-price.
      ENDLOOP.
    Thanx very much.

  • How to make Adobe as your default viewer for all your PDF file instead of the Preview given? Thanks

    How to make Adobe as your default viewer for all your PDF file instead of the Preview given? Thanks

    you need to "Get Info" on the file first. Select it, right click and select 'Get Info' in the menu.
    In the window that pops up, near the bottom, the "Open With" drop down menu needs changed. If the drop down menu does not present the one you want, select "Other" and find it.

  • I accidentally deleted the download stack, but managed to get it back. How can I change back to stack view?

    I accidentally deleted the download stack, but managed to get it back. How can I change back to stack view?

    Right-click on the folder icon on the dock where you put it. Change it from 'Display As: Folder' to 'Display As: Stack'.
    After that you'll be all set.

  • The calendar week view on my iphone 4s starts on a Sunday.  I am synching with outlook on my computer which starts the week view on a Monday which I prefer.  How do I change my iphone calendar view to start the week on a Monday?

    The calendar week view on my iphone 4s starts on a Sunday.  I am synching with outlook on my computer (pc)  which starts the week view on a Monday which I prefer.  How do I change my iphone calendar view to start the week on a Monday?  I am in Australia.
    I have just noticed the other discussion points - mine is set to Australia. 
    Dear Apple - as the day that the week starts on can depend on country and religion - how about making it an option that the user can change????

    I believe the week view on the iPhone is handled by the Region settings in the phone. I am not aware of any other manner to change it, as you can with Outlook.

  • How do I set up my default viewer to view pdf annotations or how to I change my default pdf viewer to Goodreader?

    When I open a pdf it doesn't show any of it's annotations, comments, etc that someone else may have done on that file.  How do I get iPad's default pdf viewer to show the annotations or how do I change my default pdf viewer to Goodreader?

    AHA, completely different animal, try posting here...
    Using iPad

  • Can any body tell me how to make changes in the print layout of Fb03.

    hi,
    Can any body tell me how to make changes in the print layout of Fb03.
    I want to add comapny address on the layout.
    Regards
    Mave

    If you mean the correspondence, you have to change the configuration in Financial Accounting -> AR and AP -> Business Transactions -> Outgoing Invoices -> Carry Out abd Check Settings for Correspondence. There, you need to assign your custom Program or Layout for the Correspondence Type (like SAP19) and Program.
    If you mean the display layout in transaction FB03, You can change a few settings, mainly with BKPF and BSEG fields. I don't think you can add company address, though.
    Good luck,
    Bhanu

  • How to make changes in default toolbar

    hi
    i m using oracle forms 6 and i want to know either it is possible to change in the default toolbar or not if so plz let me know how to make changes in default toolbar and re-adjust according to my need.i know how to create new toolbar and connect with form but i don't know whether this is possible to re-arrenge and change the default toolbar attached with forms.
    thnx in advance

    thnks for ur reply. i worte that i m using forms 6i so that ur reply do not fullfill my query.
    i posted my query because i have seen an application developed in oracle form 6 and he designed exactly the same iconic toolbar as we see normal while running the forms and i tried but could not able designed accordingly as button don't have "bevel" property and button we use .ico extension if we want to use icon buttons.now i m astonised if there is not any way make changes then how he did.

  • How to make changes in strong password policy

    hi,
    how to make changes in strong password policy.
    I m using apex 4.2.
    pls help

    1003090 wrote:
    I created a login page, but when i m putting a password or more then 7 character then in place of Invalid Login Credentials , its saying
    ORA-06502: PL/SQL: numeric or value error: character string buffer too small.
    I need to put a password of min 8 character, since its taking not more then 7 so i cannot use validation for the same.You already have a thread open on that: +{thread:id=2532900}+. Continue with that issue there.
    If the original question above relating to how to configure password policies is answered then close this thread.

  • How to make changes in deduction column in IT 2006

    Hi All,
    Scenario: Employee had a sick leave & casual leave quota 6 days in a financial year.
    Now the employee had used all his sick leaves and casual leaves and the leaves got exhausted pertaining to this quota.
    These days are reflecting in 2001 IT as leaves taken  but the deduction did'nt happen in IT 2006
    Can anyone tell how to make changes in the deduction column for specific employee code's
    Regards,
    Srikanth

    Hi Megha,
    The assignment is properly mapped to counting rule.. Issue is with the validity intervals. SInce the employee already availed the leaves the quotas cannot be deleted in the IT 2006. Issue resolved by making some changes in the deduction column through SQL table entry..
    Really appreciate your response..
    Regards,
    Srikanth

  • Files that used to be visible are now hidden in Mavericks. How can I change the setting to view the same files as before? I do not need the hidden files that are typically invisible.

    Files that used to be visible are now hidden in Mavericks 10.9.1. How can I change the setting to view the same files as before? I do not need the hidden files that are typically invisible.
    I am having trouble locating such files as PDF's INDD, AI etc. When I view all hidden files and try to open it in the program..it looks like it is really not on the drive. Has anyone come across a solution?

    You may need to rebuild permissions on your user account. To do this,boot to your Recovery partition (holding down the Command and R keys while booting) and open Terminal from the Utilities menu. In Terminal, type:  ‘resetpassword’ (without the ’s), hit return, and select the admin user. You are not going to reset your password. Click on the icon for your Macs hard drive at the top. From the drop down below it select the user account which is having issues. At the bottom of the window, you'll see an area labeled Restore Home Directory Permissions and ACLs. Click the reset button there. The process takes a few minutes. When complete, restart.   
    Repair User Permissions

Maybe you are looking for

  • Aperture no longer showing up in my "Photos" Upload Box

    I just dowloaded the updated Aperture, and after doing so, I can't find my aperture library to upload anymore. Before, I would select on "upload" and under the "Photos" category, the aperture option would appear. On websites it no longer does, I can

  • Film download error on ipod touch

    I have tried to download a film to my son's ipod touch, but it won't download.  It says "download error.  tap to retry" - when I tap it does the same. How can I get it to download?  Or obtain refund from itunes? TIA Nadine

  • Files and environment...

    Dear Java Experts, There appears to be no limit to my confusion about some things with Java. The thing is that the documentation is so very, very large I simply get lost :-( Here are a few questions maybe you can help me with. 1) Assume I create a JA

  • How to use Archivelink in Web dynpro?

    I want to add some upload and download function on my website.How should I  realize these functions?How to built some connection between an database's attribute and an Archivelink file?

  • BW BEx using a wildcard  ("*")???

    Hello BW Gurus, Does anyone know if it’s possible to select characteristics in BW BEx using a wildcard-like (“”) approach.  For example, if you wanted to filter on 6 digit GL Accounts that start with a 3 and end with a 1 (“31”).  I can seem to come u