Selection/Filter Criteria restriction in reports?

Hi,
We have a requirement to restrict customer master data list by signed on user (sales rep - navi attr of customer) how will you restrict master data in query filter variable?  we have implemented data level security for reps (sales rep is a navigational attribute of 0customer), when sales rep signed in and access report, he/she is prompted to select customer from customer list, BW is displaying all customers from master data and we would like to restrict the customer list only for signed in sales rep (Not all customers from master data).
Replacement variable and customer exit variable fill the data and this approach (customer exit and replacement path variable) doesn't work. We need to prompt user a list of their customers to select from.
Is there a way you can restrict the master data list based on sign in user (sales rep)? we are open to use web application designer to achieve this if it is not possible using query designer?
Any input will be appreciated.
Thanks,
Steve

Hi Steve,
Check this....
Authorizations for a Few Groups
You can divide users into a few groups. This is the case, for example, if the authorizations need to be checked only on the level of the InfoCube. You can then, for example, create roles that allow you to run queries from the current InfoCube(s). You can then assign one or more roles to the user.
The administration of the authorizations, rolls, and user assignments can occur here completely along with the role maintenance (transaction PFCG). The work is, in comparison, quite low. The assignment of roles to users can also occur in the maintenance of the user (SU01) or that of the central user administration
http://help.sap.com/saphelp_nw04/helpdata/en/31/4af438cd2b7058e10000000a11402f/frameset.htm

Similar Messages

  • Using Select Expert Criteria in a Report Title

    Post Author: kevinday17
    CA Forum: Formula
    Hello,
    I can't quite figure out how to get a select expert criteria in my report title.
    My title is "Sales by Customer from Jan 1, 2007 to Aug 31, 2007"  but I want to be able to have the dates in that title reflect what the user has given as parameters.
    So if the user selects July 31, 2007 as the end date, I would like the title to reflect that.  I'm less concerned about the format of the date that how to bring it into that text area.
    Thanks,
    Kevin

    Post Author: yangster
    CA Forum: Formula
    oh you are not using parameters to do the date selection (i'm guessing you have a reason for this)simplest way for you to achieve what you want would be to create a couple of formula within your report and use those instead of your hard coded dates@begin_dateDATETIME(2007, 08, 01, 00, 00, 00)@end_dateDATETIME(2007, 08, 31, 00, 00, 00)@report_title"Sales by Customer from "& @begin_date &" to "&@end_datein the selection expert put in{SOP30200.DOCDATE} in @begin_date to @end_dateso if you wanted to modify the start and end range change the values inside the 2 formulas, your report title will reflect the changes but this really should be done with parameters to allow more flexibility (but i leave that up to you to decide)

  • Filter criteria in ALV report not working

    Hi,
    In ALV report , when i click on filter button , it does not filter the report according to the filtered criteria. this happens in the cases where the selection criteria is a lengthy field. when i debug after the filter criteria it goes into standard function.
    i am using REUSE_ALV_GRID_DISPLAY
    is there any way in which i can correct this?
    thanks,
    Amit
    null

    chk this useful thread
    Re: ALV problem (with filter use)

  • Retrieving sort and filter criteria for interactive report

    I have developed a test management system in APEX. Users log in and see an interactive report with their assignments. Each test they've been assigned occupies one row.
    There is an "Execute" link for each row that takes the user to the test execution page, where they can see the input steps / expected results and report the test passing or failing.
    I've implemented "Next >" and "< Previous" buttons on the execution page, so the user can immediately go forwards or backwards in his assigned tests without having to return to the assignments page and click the Execute link on the next or previous row.
    The test execution page figures out what the next and previous assigned test is using the LAG and LEAD functions, like this:
    lag(assignment_id) over (order by ref_num_full) prev_id,
    lead(assignment_id) over (order by ref_num_full) next_id
    Notice that I've "hardcoded" the over clause to be the reference number of the test.
    The problem here - this solution ignores any custom sorts or filters the user has put in place on the assignments (interactive) report.
    Is there a way I can "grab" the interactive report (1) sort criteria and (2) filter criteria dynamically? I'm thinking I could then use dynamic SQL to build an OVER clause used in the lag/lead calls so that the application now follows whatever sort and/or filter criteria the user has put in place.
    Any help is greatly appreciated...thanks!!

    Thanks WTine!
    I took a look and determined
    - I can get the sort criteria from the APEX_APPLICATION_PAGE_IR_RPT view (SORT_COLUMN_# and SORT_DIRECTION_# columns)
    - I can get the filter criteria from the APEX_APPLICATION_PAGE_IR_COND view
    Regards, Rich

  • Passing Filter criteria parameters to drill-down reports

    Hi,
    I have a scenario, where my base report prompts a filter criteria for date range (from & to date) based on this criteria, I populate my base report with data's.
    Suppose if i have a drill-down, can i make use of the filter criteria value selected in the base report and pass the same value to my next-level drill-down report as criteria.
    Please let me know if this is possible. Also, let me know if there is any alternate approach available to achieve the same.
    My environment details are provided below.
    BAM (11.1.1.3)
    Report: Summary crosstab
    Any help would be greatly appreciated.
    Thanks & regards,
    DK

    Hi pypawar,
    Thanx for ur reply.
    We are not using heirarchical drilling in our case, we are using another report for drill-down.
    I will give some more background for this issue.
    We have a scenario where we used the date filter for getting the from and to dates based on which we display our Master report (cross-tab).
    Further, when drilling down from the master report to child report(which uses the same dataobject as master); we are not able to pass the dates input that were provided in master report as filter criteria.
    While assigning parameters in the drill-down for the child report, we are not able to find an option to pass the date value selected in the master report to child report for filter criteria.
    In an alternate approach, what we did to resolve the above issue was to pass the primary key fields of the data object while drill-down. But while passing primary keys, we realised there are cases where large number of values are getting passed as filter criteria to child reports and in some case it fails since there large number values getting passed as filter criteria.(in our case the chance of this value could be few 100's to 1000's). You can find details for this error in CACHEEXCEPTION during drill-down in BAM reports
    Please let me know if this is possible. Also, let me know if there is any alternate approach available to achieve the same.
    Any help would be greatly appreciated.
    Thanks & regards,
    DK

  • Opening updated report fails because record selection filter is invalid

    I am trying to update a report stored in BOE XI.  The report has been modified and the main part of the report has been moved to a subreport.   I first replace the .rpt file with the updated report.  Then I attempt to open the report using the code below it, but it throws an error and complains about an unknown field being mentioned in the filter
    oReportAppFactory = (IReportAppFactory) es.getService("", "RASReportService");
    oReportClientDocument = oReportAppFactory.openDocument((IInfoObject) oReport, 0, Locale.ENGLISH);
    ERROR MESSAGE: Cannot open report document. --- This field name is not known.
    Details: errorKind
    Error in File /opt/bobje/bobje/tmp/{F395AC11-26FC-11DF-A70C-00065B8B38B5}.rpt:
    Error in formula  <Record Selection>.
    '// Filter on desired date range
    This field name is not known.
    Details: errorKind
    If I manually delete the record selection filter in CMC before upgrading the report all works fine.  So, do I need to remove the filter before attempting to open the report or is there another step I'm missing to refresh the report using the newly updated .rpt file? 
    thanks,
    Brett

    The relevant part of the stacktrace is below.  
    java.lang.UnsupportedOperationException
            at com.crystaldecisions.sdk.properties.internal.AbstractSDKList.remove(Unknown Source)
            at java.util.AbstractList$Itr.remove(AbstractList.java:436)
            at com.crystaldecisions.sdk.plugin.desktop.common.internal.i.do(Unknown Source)
            at com.crystaldecisions.sdk.plugin.desktop.report.internal.e.f(Unknown Source)
            at com.crystaldecisions.sdk.plugin.desktop.report.internal.e.f(Unknown Source)
            at com.crystaldecisions.sdk.plugin.desktop.report.internal.e.refreshProperties(Unknown Source)
    The context is the same as the original post...
    An existing report is being updated.  The original report uses a single view and has a record selection filter.  The updated report uses the same view in a subreport, and the main report has no record selection filter.
    .rpt file is updated using IReport.replaceUnique(int, File).  
    Changes are committed to IInfoStore -> iStore.commit(IReport)
    Refresh options are enabled
    IReportRefreshOptions refreshOptions = oReport.getReportRefreshOptions();
    refreshOptions.removeOption(IReportRefreshOptions.CeRefreshOption.TITLE);
    refreshOptions.removeOption(IReportRefreshOptions.CeRefreshOption.DESCRIPTION);
    refreshOptions.addOption(IReportRefreshOptions.CeRefreshOption.PROMPT_VALUES);
    refreshOptions.addOption(IReportRefreshOptions.CeRefreshOption.RECORD_SELECTION_FORMULA);
    refreshOptions.addOption(IReportRefreshOptions.CeRefreshOption.GROUP_SELECTION_FORMULA);
    refreshOptions.addOption(IReportRefreshOptions.CeRefreshOption.PRINTER_OPTIONS);
    refreshOptions.addOption(IReportRefreshOptions.CeRefreshOption.DEFAULT_LOGON_INFO_VALUES);
    Properties are then refreshed using IReport.refreshProperties() which throws the UnsupportedOperationException
    changes are again committed.
    thanks,
    Brett

  • Filter criteria needs to be saved as variant??

    Hi All,
        what i need to know is that  is it possible to save the filter criteria in BW reports as a variant ( Like R/3)  for future references?
    Need your advise please.
    Thanks and Regards

    Hi,
    Once you have saved a RKF, it would be available in the query designer on the left top above the normal key figures, you can drag and drop them either in the rows or columns depending on the requirements of the report and then see the result on execution of the query.
    Assign points if useful
    Regards
    Venkata Devaraj

  • Navigational Attrribute of 0plant in Selection criteria of the Report

    Dear ALl,
    We are facing an issue where we ares entering the inputs for Report Selection Criteria
    plant
    fiscal year period
    currency type &
    company code ( company code is the navigation attribute of the plant )
    When we enter plant, fiscal year period & currency with out company code we get the output. But when we enter the value for company code it doesnt shwo the data it shows no applicable data found.
    hence i would like to understand whetther we can use the company code which is the navigation attribute of the plant in the selection screen of the report via a variable?
    If yes why is my report showing no applicable data found. Request your suggestion on  this.
    Thanks & Regards
    K janardhan Kumar

    Hi Janardhan,
    Please check if your Plant Master data is loaded as well.
    Another check you can do is, when you run the report only on Plant, Fiscper and currency, drill down on Company Code (which is attribute of Plant) and see the values you get there. That might give you a hint.
    Also, you can check if for the company codes you enter while selection, is there transactional data present for the corresponding Plant.
    Other than this, its perfectly alright to use a navigational attribute as selection filter in the report.
    Thanks,
    Abhishek.

  • How to add a new selection criteria in a report painter

    Hi
    I would like to know how to add a selection criteria in a report painter. I believe in Gen data we can add our selection criteria but my there is no option to select  company code in that. Can anyone help me in this
    Thanks in advance
    Sankar

    hi sankar,
    When u click on the Gen. Data Selection on the right side of the screen you can see the Available Characteristics.
    On the same side u can see with the 3 colors blue, yellow and white....
    Click on the that , in that screen click on the Administrator option.
    There in that screen UNCHECK the company code.
    Click on the ACTIVATE and CLOSE it.....
    Again SAVE the table settings.... then you can find the Company code..
    Hope this will helps u out...
    Ranjit Kumar 

  • Selecting a column in Answers report based on user prompt/ apply filter

    I need to do the following in OBIEE Answers report (version 10.1.3.4.1):
    1) Think of a simple table with dim TX_type and some measures like month_jan, month_feb, month_mar
    so the fact table looks like (column names) tx_type, month_jan, month_feb, month_mar
    2) I need to select the measure column based on a user dashboard prompt, prompt populates a presentation variable var_month = jan or feb or mar
    3) I need to select the correct measure (one of these month_jan, month_feb, month_mar) and then apply column filter based on the dim TX_type to split the values of these into multiple columns for report. So the report may look like (in Answers)
    Sales , Tax, overheads
    where Sales may be defined as sum(month_jan) where rows have TX_type = 'sales'
    where Tax may be defined as sum(month_feb) where rows have TX_type = 'tax'
    where overheads may be defined as sum(month_mar) where rows have TX_type = 'overheads'
    IF the user selects jan
    IF user selects Feb then the 3 report columns are based on month_feb and likewise for month_mar
    I cannot use column selector option as the report column further apply filter in column filter definitions in Answers...
    4) When I try to build the column filter using a presentation variable (var_month), the presentation variable is not getting populated in the column filter.
    For e.g. IF var_month = 'jan'
    THEN month_jan (let us assume the logical column name is month_jan too)
    ELSE month_feb and so on...
    However, the var_month always shows 0 in the IF clause. If we used a repository variable instead, it works fine. But since repostory variable cannot be changed on the fly (by user prompt) it is not usable.
    We cannot change fact table defintion....and we have 12 measures column and about 8-10 different colum filter based report columns using this measure.

    Hi shyamvaran,
    have you thought about a SQL statement in the prompt, something like:
    SELECT
    case when 1=0 then Table."Column" else 'Jan' end
    FROM "Subject Area"
    union
    SELECT
    case when 1=0 then Table."Column" else 'Feb' end
    FROM "Subject Area"
    union
    SELECT
    case when 1=0 then Table."Column" else 'Mar' end
    FROM "Subject Area"
    union
    SELECT
    case when 1=0 then Table."Column" else 'Apr' end
    FROM "Subject Area"
    etc...
    Use this to give you the 12 values for your months then give the prompt column a presentation variable name and set a default value in the 'Default To'. Also set the same default value for the filter.
    A couple of points:
    1. If you're transforming the presentation variable from 'Jan' to 'month_jan' you may need to edit the syntax for the filter column (not using the dialog box).
    2. If you're transforming the behaviour of a dimension / measure column in the report, have you specified the syntax correctly, e.g. sum('@{pres_var}')?
    Hope this helps,
    Justin

  • Interactive Reports - Filter Criteria Using Other Operators

    Currently using version 3.1.2.
    Is there any way to specify the operators that are used for filter criteria on an interactive report?
    Trying to specify the following criteria...
    LASTNAME like 'B%'
    OR
    LASTNAME like 'A%'
    The interactive report uses an "AND" in this case instead of an "OR".
    Any ideas?
    Thanks,
    Kris

    Any comments would be very much appreciated.
    Many thanks

  • Select Filter Value

    This is an on-going performance issue that I am bogged down with.  The best idea would definitely get 10 points and all the other great ideas will be well rewarded for sure!  Please help...
    The reports on our system run very slow (15 minutes on the average) though our cube has just about 10 million records.  What bothers the user the most is that even when they go for "select filter value" on any of the "free characteristics", it takes 10 lazy minutes for the selection screen to show up.  We have indices created on the master data and the SAP indices on the Cube dimensions are supposed to be good enough for faster query/selection screen retreival especially when the number of records are just 10 million.  RSRV test came out to be fine on DB and cube indices.  Any great ideas to improve the time it takes to bring up the selection screen?
    Regarding the general query performance, we already have query cache and several aggregates in place.  We use BEx, so how effective are the reporting agents on top of these?  Please provide some knowledgeable comments to improve the general query performace as well.

    The Select Filter Value time almost certainly has to do with the F4 options you have set for those InfoObjects.  You can change this for the the InfoObject, or change the setting just for the cube using the Structure Specifc Settings.
    Depending on the setting, using F4 for an InfoObject may simply read the Master Data, or it actually interrogates the the master data and the cube to see what values exist, or actually looks to see what values would be available given all the other query criteria.  So as you can imagine, the response time of the options can vary a lot.  
    As far as query performance in general, try searching this forum, you'll find lots of threads.  Also try SDN's Performance Tuning Knowledge Center.
    I'm assuming you regularly compress the cube(s). Have you verified the aggregates are being used most of the time and confirmed the the value of the aggregate by comparing explain plans.
    A lot of issues may relate back to the data model you are using. You can look at adding secondary indices on some of the dimension tables of you have some large dimensions  that get receive full table scans because the BW system built index does not relate well to the query restrictions that are actually used.
    Pizzaman

  • Issues with Search Filter Criteria Button in Search Help

    Hi ,
    I have applied an elementary search help to a select option and this help is having four fields. The search help works fne and all the four fields are visible when i do a F4. Now , if i want to restrict the number of entries shown (the number of entries are huge) by clicking the "Search Filter Criteria" button , i dont see any of the four fields using which i can restrict the data . Do we need to do any configuration for this ??
    Regards
    Mayank

    Hi,
    in that search help itself you have a option called maximum number of hits, there is a impact if you restricted also.
    Thanks & Regards,
    Srinivasan.R

  • Need the selected filters in the Interactive Report CSV download

    A CSV download from the IR shows the table data.
    I need a mechanism to insert the Filter criteria selected by the user within the CSV download.
    Basically I have a search screen which brings the user to the interactive report and I would like to capture the search criteria the user entered in the CSV download.
    Thank
    Sumit

    Hi,
    This might help
    http://simonhunt.blogspot.com/2009/02/auditing-downloads-from-interactive.html
    Br,Jari

  • Combined Query Output as Filter Criteria

    Post Author: imzdo1
    CA Forum: WebIntelligence Reporting
    I have the need to run a combined query to produce a list of document numbers (I have that query working) and then use the output from that query as the filter criteria in an expanded query in the same Universe.  The output from the first query is 6500 document numbers so it would be very time consuming to cut and paste these into a filter 15 or 20 at a time and then pasting the result of the 300 queries needed to get one report.
    I have both reports built, but can not figure out how to link the first report output to the filtering criteria on the second report.  I am using Webi, not full client version.
    Is is possible and if so how?

    Post Author: RobotSlave
    CA Forum: WebIntelligence Reporting
    Hello imzdo1, what type of datasource? the following applies to SQL:
    sounds like you need to create a temporary table in your SQL stored procedure, like so:
    CREATE TABLE #TempDocumentNumbers
    documentNumber int,
    documentName Varchar(20)
    or however many columns you need, then insert into the temporary table using your existing query like so:
    INSERT INTO #TempDocumentNumbers
    SELECT (whatever your select statement is)
    just remember that you will need to have coresponding columns in your temporary table for each column your select statement returns, once you have the values stored in your temporary table you can join on it just like you would on any other table in the database,
    I like to explicitly drop temp tables at the end of my query like so:
    DROP TABLE #TempDocumentNumbers

Maybe you are looking for

  • XML to flat file conversion

    Hi, Iam working on Idoc to file scenatio.Using java mapping I have mapped the Idoc to an XML format. Now I have a problem in converting the XML format to flat file format. My XML is as follows:-- <Record_Idoc>   <Record>     <Header>         <Order_n

  • Problem with Audio/screen sync

    Sorry if this is a repeat question but I submitted one and was then sent to this "new discussion" page. All of a sudden the audio is out of sync with the shows I watch but ONLY in full screen. I have not changed anything on my computer by downloading

  • Problem in jre installation

    i have downloaded jdk 6 update 23 but in the installation process public jre is not coming instead of that java DB is coming. so when i m installling android sdk its ging an error java not found. can anyone plzz tell me wats the problem

  • Too rapid flow of events

    Odroid-c1 (ARMv7). Ubuntu 14.04. FF 35. I have put too rapid flow of events (in particular, mousemove), which hangs the browser. In JS hang empty processing function for mousemove event. While leading the mouse - the browser hangs. Stop the mouse - d

  • I upgraded to Firefox 4 and now all sites are very slow. I cant even watch youtube videos anymore. Is their a way I can downgrade back to what I had?

    I was given an option to upgrade to Firefox 4, so I did. Ever since I have done this, Facebook is taking a very long time to load. All FB apps either take a few minutes to load or just dont load. I have tried to watch Youtube and the videos are takin