Saving graphic setting to all users

I am using APO 7.0 and the "chart engine" for graphics.  I want to save my graph user setting at the planning book level so that all users see the same default settings.  I see oss note 980904 that talks about this happening by mistake on a planning book copy.  But I want to do it in the planning book design.  I see the table  /SAPAPO/PBDVWHDR, and the  field GRAPHIC_ID.    The note says clearing this filed will return the graph back to a defulat.  Is there anyway to populate that field?
Thanks
George

Hi George,
Global Graphic Settings are not available from release of SCM 5.1 and higher with the new Chart Engine.
You can switch back to the OLD chart engine, by setting the User Parameter
/sapapo/sdp_chart_v = CHART.
It should give you the functionality you want.
Best regards,
Michel Bohn

Similar Messages

  • Saving planning book graphic setting for all users

    Hello,
    I am using APO 7.0 I want to save my user specific graph saved at the planning book level as a default Graph so that all users see the same.
    Is it possible to achieve by Planning book configuration?
    Thanks | Chandrakumar

    Hello,
    You can use transaction /SAPAPO/SDP_CHART.The business function SCM_APO_DP_SNP_CTM has to be switched on.
    Best Regards,
    Ada

  • How to make saved IR available for all users

    Hi,
    I've created IR and saved it to several tabs based on search conditions.
    But they're only visible for developers.
    How to make these tabs available for all end-users ?
    Does version 4.0 support this option ?
    Thank you!

    Hi
    At present this feature is not included, although I believe it may be in 4.0. Many people have provided workarounds for this. None of which I have tried. I cannot find the original thread but here is a solution from a chap called Ruud
    >
    One way to share your saved reports with others is to 'Publish' your report settings to a few intermediate tables in your application and have other users 'Import' your settings from there. The reason for using intermediate tables is so that not all your saved reports need to be 'visible' to other users (only those that you've chosen to publish).
    Basically you have available the following views and package calls that any APEX user can access:-
    - flows_030100.apex_application_pages (all application pages)
    - flows_030100.apex_application_page_ir_rpt (all saved reports - inclusing defaults and all user saved reports)
    - flows_030100.apex_application_page_ir_cond (the associated conditions/filters for above saved reports)
    - wwv_flow_api.create_worksheet_rpt (package procedure that creates a new saved report)
    - wwv_flow_api.create_worksheet_condition (package procedure that creates a condition/filter for above saved report)
    The way I've done it is that I've created 2 tables in my application schema that are straightforward clones of the 2 above views.
    CREATE TABLE user_report_settings AS SELECT * FROM flows_030100.apex_application_page_ir_rpt;
    CREATE TABLE user_report_conditions AS SELECT * FROM flows_030100.apex_application_page_ir_cond;
    ( NB. I deleted any contents that may have come across to make sure we start with a clean slate. )
    These two tables will act as my 'repository'.
    To simplify matters I've also created 2 views that look at the same APEX views.
    CREATE OR REPLACE VIEW v_report_settings AS
    SELECT r.*
    p.page_name
    FROM flows_030100.apex_application_page_ir_rpt r,
    flows_030100.apex_application_pages p
    WHERE UPPER ( r.application_name ) = <Your App Name>
    AND r.application_user 'APXWS_DEFAULT'
    AND r.session_id IS NULL
    AND p.application_id = r.application_id
    AND p.page_id = r.page_id;
    CREATE OR REPLACE VIEW v_report_conditions AS
    SELECT r.*
    p.page_name
    FROM flows_030100.apex_application_page_ir_cond r,
    flows_030100.apex_application_pages p
    WHERE UPPER ( r.application_name ) = <Your App Name>
    AND r.application_user 'APXWS_DEFAULT'
    AND p.application_id = r.application_id
    AND p.page_id = r.page_id;
    I then built 2 screens:-
    1) Publish Report Settings
    This shows 2 report regions:-
    - Region 1 - Shows a list of all your saved reports from V_REPORT_SETTINGS (filtered to only show yours)
    SELECT apex_item.checkbox ( 1, report_id ) " ",
    page_name,
    report_name
    FROM v_report_settings
    WHERE application_user = :APP_USER
    AND ( page_id = :P27_REPORT OR :P27_REPORT = 0 )
    ORDER BY page_name,
    report_name
    Each row has a checkbox to select the required settings to publish.
    The region has a button called PUBLISH (with associated process) that when pressed will copy the settings from
    V_REPORT_SETTINGS (and V_REPORT_CONDITIONS) into USER_REPORT_SETTINGS (and USER_REPORT_CONDITIONS).
    - Region 2 - Shows a list of already published reports in table USER_REPORT_SETTINGS (again filtered for your user)
    SELECT apex_item.checkbox ( 10, s.report_id ) " ",
    m.label,
    s.report_name
    FROM user_report_settings s,
    menu m
    WHERE m.page_no = s.page_id
    AND s.application_user = :APP_USER
    AND ( s.page_id = :P27_REPORT OR :P27_REPORT = 0 )
    ORDER BY m.label,
    s.report_name
    Each row has a checkbox to select a setting that you would like to delete from the repository.
    The region has a button called DELETE (with associated process) that when pressed will remove the selected
    rows from USER_REPORT_SETTINGS (and USER_REPORT_CONDITIONS).
    NB: P27_REPORT is a "Select List With Submit" to filter the required report page first.
    Table MENU is my application menu table where I store my menu/pages info.
    2) Import Report Settings
    This again shows 2 report regions:-
    - Region 1 - Shows a list of all published reports in table USER_REPORT_SETTINGS (filtered to show only other users saved reports)
    SELECT apex_item.checkbox ( 1, s.report_id ) " ",
    m.label,
    s.report_name,
    s.application_user
    FROM user_report_settings s,
    menu m
    WHERE m.page_no = s.page_id
    AND s.application_user :APP_USER
    AND ( s.page_id = :P28_REPORT OR :P28_REPORT = 0 )
    ORDER BY m.label,
    s.report_name,
    s.application_user
    Each row has a checkbox to select the setting(s) that you would like to import from the repository.
    The region has one button called IMPORT that when pressed will import the selected settings.
    It does this by using the 2 above mentioned package procedure to create a new saved report for you
    with the information form the repository. Be careful to match the right column with the right procedure
    parameter and to 'reverse' any DECODEs that the view has.
    - Region 2 - Shows a list of all your saved reports from V_REPORT_SETTINGS (filtered to only show yours)
    SELECT page_name,
    report_name
    FROM v_report_settings
    WHERE application_user = :APP_USER
    AND ( page_id = :P28_REPORT OR :P28_REPORT = 0 )
    ORDER BY page_name,
    report_name
    This is only needed to give you some feedback as to whether the import succeeded.
    A few proviso's:-
    a) I'm sure there's a better way to do all this but this works for me :-)
    b) This does not work for Computations! I have not found an API call to create computations.
    They will simply not come across into the repository.
    c) If you import the same settings twice I've made it so that the name is suffixed with (2), (3) etc.
    I did not find a way to update existing report settings. You can only create new ones.
    d) Make sure you refer to your saved reports by name, not ID, when matching APEX stored reports and the
    reports in your repository as the ID numbers may change if you re-import an application or if you
    auto-generate your screens/reports (as I do).
    Ruud
    >
    To me this is a bit too much of a hack and I personally wouldn't implement it - it's just an example to show it can be done.
    Also if you look here in the help in APEX Home > Adding Application Components > Creating Reports > Editing Interactive Reports
    ...and go to the last paragraph, you can embed predicates in the URL.
    Cheers
    Ben
    http://www.munkyben.wordpress.com
    Don't forget to mark replies helpful or correct ;)
    Edited by: Munky on Jul 30, 2009 8:03 AM

  • Default Formatting in Analyzer set to all users

    Hi,<BR><BR>in Java Web Analyzer 7.0.1.8 I would like to set Tools | User Preferences | Default Formatting | Replace Missing With | Zeros to all 100 Analyzer users that are in our company.<BR><BR>1. Is there any way to do this automaticaly for all users with one settings?<BR>2. Is there any way to set this setting as default? So if new Analyzer user is created to get this new value automaticaly.<BR><BR>Thanks,<BR>Grofaty

    You can do some formatting at the Database/Connection level too. Using the Administration Tools, select the database, and for each dimension you can apply some formatting. Obviously, if you have a lot of cubes with many dimensions this may take as long as changing it for the users.

  • Advanced setting for all users in a Citrix environment

    I would like to disable the Advanced option "Allow editing directly in cells" for Excel 2010.  It is used in a Xenapp (Citrix ) environment using upm or roaming profiles.  How can i avoid having each user make this setting wich is then
    saved to his profile?
    is there a registry change that will set it as the default when anyone launches excel?
    Thank You.

    Hi,
    Please try to use disabe the "Allow editing directly in cells" in GPO.
    Press win+Run> gpedit.msc>Adminstrative Templates>Microsoft Excel 2010>Excel options>Advanced>Edit directly in cells>disable
    Then we could update the GPO.
    More reference:
    Edit directly in cell
    Registry Key:  software\policies\microsoft\office\14.0\excel\options\binaryoptions fNoInCell_66_1 0 | 1   
    This policy setting sets the ''Edit directly in cell'' option found under File tab | Options | Advanced | Editing Options.\n \n If you enable or do not configure this policy setting, Excel will allow editing directly in the cell  This is the default
    behavior.\n \n If you disable this policy setting, Excel will not allow editing to be done directly in the cell. 
    http://www.microsoft.com/en-us/download/confirmation.aspx?id=18968#
    http://technet.microsoft.com/en-us/library/cc739112(v=ws.10).aspx
    Regards,
    George Zhao
    TechNet Community Support

  • Setting automatic update settings for all users

    Hello all,
    I'm trying to roll out Quicktime 7.6 to our corporate desktops with the automatic update feature within Quicktime disabled. In past installs we were able to make the setting change and then copy the quicktime.qtp file to the "C:\Documents and Settings\All Users\Application Data\Apple Computer\quicktime" directory on all the computers and all would be good. However with 7.6 is appears this file is now housed under the individual user's profile. Is there a way to make this a global setting for all users logging in to a pc?
    Thanks in advance!
    KC

    We have a similar problem in a High School, using Windows XP Pro, QT 7.x and Active Directory. While going to a Spanish Exam web page that uses QT, the students get locked into an auto update process. As restricted users, they can neither abort or accept the update, and are unable to complete the exam. We have found that unchecking the preference for auto update as an admin user does not uncheck it for anyone else. Under C:\Documents and Settings, there is no folder for Apple Software except for myself, once I have opened the QT preferences. I assume that Apple has hidden the location of the default preference to force updating, without regard to how that would work in a locked-down environment. It sure creates havoc when 30 students sit down for a timed and graded online exam!! Any answers out there?

  • How to copy default settings to all user ?

    Dear Expert
    I want to set for all users have same default settings (default form layout)
    is there any way to copy default settings from 1 user to another users ?
    really appreciate your help
    thank you
    Best Regards
    JeiMing

    Hi,
    If am understood, I hope you are expect the authorization copy.
    Procedure
           1.      In the Administration  --> System Initialization  --> Authorizations window, choose the name of the user whose authorizations are to be copied. Hold the mouse button until a rectangle appears around the user name.
           2.      Drag the rectangle to the name of the user to whom to grant the authorizations.
           3.      Release the mouse button.
           4.      A system message prompts for confirmation of the copy operation.
           5.      Choose OK to confirm the operation. The authorizations are copied completely to the second user.
    Thanks & Regards,
    Venkatesan G.

  • Deploy Color Settings to All Users

    I've seen this hinted at elsewhere, but no clear answer.  We want all of our users to utilize North America Prepress 2 color settings.  As is, I have to remember to adjust this setting in Bridge after each user logs into their workstation for the first time.  Is there a file containing this setting that I can copy to all users profiles, or another way to deploy this setting to all users on a workstation?  Ideally, I would ultimately silently deploy this change to all workstations in the domain.  Thanks in advance!

    Hi,
    Unfortunately, it's impossible for all users.
    In Windows 7, you can unlock removable data drives by using a password or a smart card. After you've started encryption, the drive can also be automatically unlocked on a specific computer for a specific user account.
    However, the prerequisite is that user must have recovery key.
    Karen Hu
    TechNet Community Support

  • Install security updates for all users

    I am using the a form with digital signatures fields, and when a user logs onto a pc and opens the form Adobe asks if you would like to install new security settings. I tell my user to click yes, but there are multiple users on multiple PCs that will be using this form. Is there a way to install this same setting for all users? I am using Adobe reader 9.3, and the form was deisgned with Designer. Any help would be very appreciated.
    Thanks!

    It would seem like that article ''should'' solve the problem, but it doesn't seem to have had any effect. I extracted the contents of the .xpi file into the browsers\extensions folder using the extension ID, yet that doesn't seem to have done anything. I ran firefox after copying the uncompressed files with an administrator account with no luck. Any thoughts?

  • Set Preferences for all users

    I need to be able to set QT preferences that are persistent to all users of a particular computer.
    For example, I need to set the video to Safe Mode, but that setting only gets saved to the currently logged in user. Safe Mode would not be enabled for a user logging in with a different account.
    This is on a Windows XP SP3 machine with the latest version of QT.

    C:\Program Files\QuickTime\QTSystem\QuickTime cpl is the file for the QT control panel.
    With XP pro open the Folder Options control panel and click on the View tab. Uncheck> Use simple file sharing [Recommended] this will give the computer a Security tab. While in Folder Options you probably should put a check\dot in> Show hidden files and folders, and uncheck> Hide extensions for known file types and maybe uncheck> Hide protected opersting system file Recommended, to be sure QuickTime cpl shows up.
    Right click on QuickTime cpl and click on the Security tab. This should give you the ability to work with permissions for user accounts

  • Ability to save graphic settings on dataview across all users

    Hello All,
    Do you know how to save a graphic setting on a dataview?
    i.e. i have customized a graph on my dataview, which have specific settings.
    When i go into the dataview, my settings are as per defined. however when another user enters the dataview, my specific settings are not displayed.
    looked up on sap library and saw the following:
    The graphical display in interactive planning depends on the following factors:
    ·        It is user-specific.
    ·        It is planning book-specific.
    ·        It is data view-specific.
    Is there a possiblity to save a setting at a central place which will be evident across all users?
    Thanks
    Regards,
    Stella

    You can assign setting from you user id to other planner user ID by tcode :
    /SAPAPO/SDPUSET - User Settings for Interactive Planning
    I am not sure wheather it is applicable for graphical setting also.
    If it is not applicable than i don't think it is available with std SAP functionality .
    Manish
    Edited by: Manish Kumar Rathi on Oct 5, 2008 9:16 PM

  • Saving Settings for all Users

    Hi,
    I am searching for a Solution, how to save WD ALV View using Settings globally, which means, that
    this Setting is valid for all Users and not User dependent.
    In GUI ALV we set it as Example /TEST and after Saving it, it will be valid for all Users.
    How to Code it? Please give Example. Thanks!
    Best regards
    Beserithan Malabakan

    Hello,
    Do the following:
    In the se80 choose you web dynpro application and the go to the menu Web Dynpro Application->Test->Execute in Administration Mode, now all changes that you do in the configuration will be saved for all users (if when saving you select the Assignment = All ).
    Regards.

  • How do I set Premiere preferences for all users - University lab machine?

    I am setting up an editing suite for our University which has a "per machine" Creative Cloud licence. It is a PC installation. This machine will be used by a class of students who will log in with their own credentials. I need to set the preferences for Premiere (video output, workspace layout, default drives etc) so that it will be the same for all users logging in since we want a consistent setup for teaching purposes and dont want to have to help each student set up so that it shows correctly on the monitors. Is there a way of saving this setting as the default for every user?
    The most important one is the preferences - Playback in order to set up the second monitor.
    Message was edited by: Bruce Cooke

    Hopefully you did manage to do it.
    Reading this should be enough  Adobe Premiere Pro Help | Preferences

  • How to set up all requests from users should go through a specific module

    I want to set up all request from users go throuth a module.
    for example, when user request a page the request go through log module to write it.
    so please tell me the setting if it's possible, or should i make it with nsapi?

    I want to set up all request from users go throuth a module.
    for example, when user request a page the request go through log module to write it.
    so please tell me the setting if it's possible, or should i make it with nsapi?

  • How do I set Firefox to be usable for all users on one computer?

    How do I set Firefox to be usable for all users on one computer?

    I would think the about:config entries discussed are ex-factory set to values each user has to change individually, after the installation has run its course. The solution could be to have patched files ready to install post factum:
    [https://developer.mozilla.org/en-US/docs/Mozilla/Preferences/A_brief_guide_to_Mozilla_preferences A Brief Guide to Mozilla Preferences - MDN]

Maybe you are looking for

  • Remote app with Apple TV

    I use the Remote app with both an iPad and iPhone to control my first gen Apple TV. This works fine except for one thing. When I select "Apple TV" as the library, using an iPhone I have access to all my library including Podcasts. When I run the same

  • I can't get the internet to work on my E5

    Hi I bought an E5 today and I can't seem to get the internet to work on it. I have dowloaded the WAP and internet settings from that configurator thing but it just does not work. Can someone please help me!!

  • Can't see my folios online...

    Hi, I've created folios with the Folio Builder panel in InDesign. I'm logged in from InDesign and the online DPS Folio Producer panel with the same login, but my folios aren't showing up in the online panel. Is this because I haven't purchased a memb

  • I do not want the u2 songs, how do I remove them

    I do not want the u2 songs,(free), how do I remove them

  • Non J2ee use of JTA/JTS

    I am about to build a small J2SE Gui app but think I need to build in some Transactional features Can I use JTS/JTA outside of an AppServer environment - if so can your provide some pointers/docs/links for example in the JINI world there is a Transac