Making a customized Interactive Report visible to all users?

Hi,
Does anyone know if it is possible to make a customized Interactive Report visible to all Apex users, and if so - how?
The Apex application I'm trying to do this in has a customized authentication scheme with each user having a distinct :APP_USER variable.

Hi,
you need to save the IRR as an APEX developer during the runtime of your application. Just make your IRR changes and save it as default.
You could also take a look into this post: http://dpeake.blogspot.com/2009/01/preserving-user-saved-interactive.html,
Best regards,
Tobias

Similar Messages

  • How to modify standard or custom Interactive Reports

    Hello everyone!
    Is there a possibility to modify SAP standard Interactive Reports? Where can this be done?
    Also if I create a new custom Interactive Report using Wizard in WebUI I don't find any transaction where I can modify it. Should I use some SAP GUI transaction to do this? Or even BEX    Analyzer? Perhaps there is SAP Documentation about how to do it but I wasn't able to find it.
    Many thanks in advance for any help! Kind regards,
    Sasha

    Sasha
    To do this, you need to be logged in with the ANALYTICSPRO business role (standard). Once you access the web UI you will have the option to Search reports. Doing this will show you both the standard reports and the ones modified by you. If you want to modify the SAP delivered reports, select the report, click the Copy button and then rename it etc. You then walk through the wizard and make the changes you need.
    You can also modify the ones you created by clicking on Edit.
    Once you have created your new reports, go to t-code ordywb, then make sure the Show Custom Reports checkbox is clicked. This will show you the identifier for your custom report - this is what you put against your logical link in the nav bar profile to enable the users to run the reports.
    Hope this helps!
    Lisa

  • How to set a customized search results template for all users

    Hi.
    I know the customized search results views are stored in a file called pne_portal.hda that resides on every user's subfolder in data/users/profiles/...
    Is there a way to set a customized search results template for all users? If it's impossible, is there a way to modify the Headline view? I'm not able to find the resource or template where this view is.
    Thanks in advance.

    I wasn't able to understand what was meant by this post. Therefore, I modified the standard template HeadLine View.
    Columns for this template are defined in the include slim_search_result_table_header_setup (in std_page.htm).
    Here is the modification of the code:
    <$if customTemplateId and not (baseTemplateId like customTemplateId)$>
              <$columnsString = utGetValue("customlisttemplates/" & strLower(customTemplateId), "columns")$>          
              <!-- Modify START by Oracle-->
         <$else$>
    <!-- here add default fields -->
              <$columnsString="dDocName,dDocTitle,dInDate,dDocAuthor"$>
    <!-- here add your custom fields -->
              <$columnsString=columnsString&",xComment"$>
              <!-- Modify END by Oracle-->
         <$endif$>

  • Make application visible for all users

    New user of Imac..... Different users set on my IMac. How to make new applications visible by all users ?
    thanks

    Any  application installed on the computer by default is usable by all the users. If you have an app you want in each users Dock that isn't there by default here are instructions. Locate the app in the Applications folder and drag it to the Dock for each user.
    As someone new to OS X, I'd recommend bookmarking and using:
    Mac 101
    Switch 101
    Find Out How Video tutorials
    List of Useful URLs for switchers

  • Using Expression to send WI for approval, but it is visible in all users

    Hi All,
    I have a task which is for approval, and I am using Expression for agent finding, here i am sending one variable which i am setting from webdynpro component and setting this container element.
    Now the problem i am facing is many times this approval work item is visible in ALL Users inbox.
    I am aware of the fact that when i am using rule to find agent, then there if that rule is not returning any agent then it is visible in ALL Users inbox, and that too if "Terminate if Rule Resolution Without Result" check box is not checked.
    But if i am using Expression to send work item for approval, why it is visible to  all users inbox.
    Amar

    Hi Amar,
    It simply says that it couild not find any agent and your task is general task so it sends workitem to all users.
    Regards,
    Gurprit Bhatia

  • How to make feedback visible to all user having read permission

    hi,
        for a document , a user is giving a feedback. my need is how to make that feedback visible to all user. all user are having read permission only.
      help will be appriciated
    Regards,
    Shanthakumar.

    Hi,
    Normally we use feedback as an explanation by an approver to the previous approver about his action on the doc( reject/approve).
    I think you want ur users to view the doc and then give suggestions to make it better and these comments should be approved and then made visible.
    I replied on one such thread earlier too.
    Please have a look at this [thread|https://www.sdn.sap.com/irj/sdn/thread?threadID=816692]
    I hope it helps.
    Regards,
    Sumit

  • Making a created custom page visible to all users in Business Process Workspace

    Hi everyone
    I, as the admin of Business Process Workspace, have created a custom page to show an external URL.
    How can I make this page visible to all of our ordinary users?

    Hi Ashwini
    Thanks for replying.
    I did the same and it was working for me even if the Type is Single.
    I just gave the Group name and all users were able to see the task. This is fine with me.
    I just observed one more thing.
    When the task is created, all the users in the Group are able to see it in 'Me & My Group'.
    But the data entered by the creator is not seen by other users.
    There is an action 'Save' in the Task. If the creator clicked on it, then the task is automatically 'Acquired' by the creator.
    Other users in the group are able to see the task and the saved data, but are not able to Submit.
    What I expected the Save button to do is only to Save the data in the Payload. Not Claim it.
    Is there a way to make the payload data only to save but not to claim the task?
    Thanks and Regards
    Sameer

  • Interactive Report with union all in the query

    I have an interactive report with the following query in the report region:
    select property,saddr1,upostdate,sotherdate1,journal_control-1000000000,account,sdesc,uref,
    suserdefined1,trans_notes,samount,detail_notes
    from journal_entries
    union all
    select property,saddr1,upostdate,sotherdate1,journal_control-700000000,account,sdesc,uref,
    suserdefined1,trans_notes,stotalamount,detail_notes
    from charge_entries;
    This gets translated as listed below during runtime. I am trying to pass a value to both SELECT statements instead of the just the bottom select statement. Is this possible using interactive reports.
    select
    PROPERTY,
    SADDR1,
    UPOSTDATE,
    SOTHERDATE1,
    ACCOUNT,
    SDESC,
    UREF,
    SUSERDEFINED1,
    TRANS_NOTES,
    SAMOUNT,
    DETAIL_NOTES,
    "JOURNAL_CONTROL-1000000000" "JOURNAL_CONTROL-1000000000"
    from (
    select property,saddr1,upostdate,sotherdate1,journal_control-1000000000,account,sdesc,uref,
    suserdefined1,trans_notes,samount,detail_notes
    from journal_entries
    union all
    select property,saddr1,upostdate,sotherdate1,journal_control-700000000,account,sdesc,uref,
    suserdefined1,trans_notes,stotalamount,detail_notes
    from charge_entries
    ) r
    where ("PROPERTY" = :APXWS_EXPR_1)
    0.14: IR binding: ":APXWS_EXPR_1"="APXWS_EXPR_1" value="prop1"
    Thanks for any help,
    Jim

    The bottom query is actually the third query, it encompasses the two that are unioned. It is generated by APEX to allow for the search facility - to achieve what you want ignore the larger query, and get your query working in something like SQL developer. Once it's working then put it into APEX, and the search wrapper will be generated.
    select property,saddr1,upostdate,sotherdate1,journal_control-1000000000,account,sdesc,uref,
    suserdefined1,trans_notes,samount,detail_notes
    from journal_entries
    where property = :YOUR_CRITERIA
    union all
    select property,saddr1,upostdate,sotherdate1,journal_control-700000000,account,sdesc,uref,
    suserdefined1,trans_notes,stotalamount,detail_notes
    from charge_entries
    where property = :YOUR_CRITERIA;
    Then you need to think about how you are using the report, if it is linked to from another report, then create a hidden variable and pass it from the parent.
    If the report is standalone , then you could create an item , that can be edited and when submitted, re-executes the report based on the criteria entered.
    Steve
    Hot and bothered in sunny Dubai

  • Report visible for one user but not for other user

    Hi all,
    We have a situation where a report is visible to one user but not to some other user. What could be the possible explanation for this? Please let me know.
    I need quick responses.
    Thanks in advance,
    Sananda

    Hi Sananda,
    Just assign the saem roles as the other user who can view ..
    You can inform the Auth/basis team and they shud be able to do this..
    The T Code is RSECADMIN>user  Tab>Assignment>user.Display and BView the roles here..
    or goto SU01 and check for the Roles Tab.....
    The New user must have the same roles as that of the other..
    Rgds
    SVU123
    Edited by: svu123 on Sep 22, 2010 7:14 AM

  • Display interactive report rows based on user role.

    Hello,
    Can anyone please help me out with this issue. i have an interactive report and now i want to make this report as conditional based on user role. Like i want to dispaly all the report rows for an Admin user role and for a developer I want the report to display only his/her rows. Can anyone please help me how can I resolve this issue.
    Do I need to have two separate reports for each role or can we make achieve this with only one report.
    thanks,
    Orton

    Here is a possible answer.. Build your Interactive report off of a collection. And when you build the collection you can build an if statement to either build your select with or without the filtering of user_id..
    See this blog entry for how to build a interactive report from a collection: http://www.oracleapplicationexpress.com/tutorials/71-oracle-apex-interactive-report-based-on-plsql-function
    Thank you,
    Tony Miller
    Webster, TX

  • Generate report to show all users and groups in Shared Services in EPM 11x

    Hi,
    Is there any way to generate a report (like a migration report or job status report) which can be generated through workspace/shared services 11.1.1.3 so that my admin can look at all the users and groups created. Something that I can view and probably print out? Any suggestions?
    ~Adeeba

    Yes, I knew this one. This basically shows me the users and groups assigned specific provision access. Is there any way to view a report that shows which users and groups have access to dimensions of an individual planning application?
    ~Adeeba

  • How to add new folder in sap menu visible to all users

    I want to add a new folder in sap menu. i can do it for my user id as it is user specific. I wanna know that how to add a folder so that every user able to see the same i.e irrespective of user-ids.

    Hi Ramya,
    This can be done in SAP menu instead of User Menu, provided all your users are using SAP menu. If a folder is created in User menu it would be visible only to the user. If it is created in SAP menu and if all the users are using the SAP menu then the folder would be visible to all...
    Hope this clarifies your query...
    Reward me points...
    Regards
    Prasanna

  • Displaying an interactive report differently depending on user connected

    Hi,
    I have an interactive report on a table which holds server information. This table has a column which is called "Restricted". It has only two possible values (Y or N). It determines whether or not a user has the privileges to view the server password of that server.
    We are using database authentication for our APEX 3.2.1 application. We have 2 predefined roles, one with full privileges (Select, Update, Insert, Delete), and one with only Select privileges. When creating a database user account to access our APEX application, one of these 2 predefined roles is assigned to the user.
    What i want to accomplish is to display the Server Interactive Report as follows:
    If the user has full privileges, then they see the contents of the Password field regardless of the contents of the "Restricted" column (Y or N).
    However, if the user only has select privileges, they will not see anything in the Password field if the "Restricted" column is set to Y. Either i will display a Null or a bunch of stars (****). Note: I cannot hide the Password column because i still want to display the password column for those records that have a 'N' in the restricted column.
    I know how to create a condition which determines which level of privileges the user has and make the report display stars in the password field (I used a decode statement in the SQL statement generating the report which sets the Password field to **** if Restricted is set to Y). This only takes into account the role assigned to the user. The complicated part is factoring in the condition of wether or not the Restricted column is Y or N so that users with the right privileges will see everything whereas users without the privileges will see null or stars.
    This is a major issue we are facing right now.
    Thanks for any suggestions, advice.
    Tim

    Hi Scott,
    Thank you very much, I just had not structured my case statement correctly and ommitted that second condition about the user.
    I did this: CASE WHEN "RESTRICTED" = 'Y' and :APP_USER = 'NO_PRIV' THEN '****'
    ELSE ORA_PWD END ORA_PWD, "RESTRICTED"
    The report works fine now! :-)
    Tim

  • Editing the master page of My Site - Changes not visible to all users

    Hi!
    I opened the mysite.mydomain.com site on my SP designer and made some changes in a master page located in the Master Pages library. I checked in the changes and now I can see them when I open the site on my browser.
    But only when I use the account that made the changes using the designer.
    How can I propagate these changes to be visible to all my users?
    Publishing features in are enabled already.
    Thanks!
    Dimitris Papadimitriou, Software Development Professional

    No! Duh!
    I forgot about that part! Actually I don't see this option in the designer. I had to go to the browser to do it. Anyway, now it works! Thanks!
    Dimitris Papadimitriou, Software Development Professional

  • How can set a customized search results template and all users see it

    Hi all ,,,,
    I Added new costume template search result
    And when I added this template it’s added only for the user how created this template ,And I need all users see and use this template can anyone tell how I can add template for search result and all users see it or if I can do synchronies for this template.

    I wasn't able to understand what was meant by this post. Therefore, I modified the standard template HeadLine View.
    Columns for this template are defined in the include slim_search_result_table_header_setup (in std_page.htm).
    Here is the modification of the code:
    <$if customTemplateId and not (baseTemplateId like customTemplateId)$>
              <$columnsString = utGetValue("customlisttemplates/" & strLower(customTemplateId), "columns")$>          
              <!-- Modify START by Oracle-->
         <$else$>
    <!-- here add default fields -->
              <$columnsString="dDocName,dDocTitle,dInDate,dDocAuthor"$>
    <!-- here add your custom fields -->
              <$columnsString=columnsString&",xComment"$>
              <!-- Modify END by Oracle-->
         <$endif$>

Maybe you are looking for

  • DB02 in ECC60 on V5R4 takes a lot of time to open!!!

    Hi Guys, We recently installed an ECC60 system(SR2) on V5R4M0. The installation went pretty well. We installed a double stack system with both ABAP+JAVA. After the install, did the post install including creation of my new clients and SGEN. Scheduled

  • Regarding shrinkage of material in inventory

    Hi group, I have a situation and I would like to have your inputs on this. From a business process standpoint, when we receive in vendor consigned material (subjected to shrinkage), an accounting entry does not occur since we have not taken ownership

  • Adding a table with a button, how to specify location?

    I have a form were a table is duplicated using a button and the add instance script.  Is there a were to specify which direction or location the table is added.  I guess by default it is created below the original table.  I would like to have it crea

  • Ctrl-F "Find" is disabled on my Firefox 34. How to get it back?

    Ctrl-F ("find") in the Edit pulldown menu is disabled (i.e., "greyed out"). How can I get it back so I can search within a page? It'd also be nice to have the status bar function that did that back too.

  • How to Enable Custom Java Scripts for forms in Planning 11.1.2.2

    I am working on Planning 11.1.2.2 right now. Planning admin guide says, there is no explicit requirement to enable java Script for planning forms. I set simple alert to see text "Hello World" in function validateForm() function in custom/validateData