WCS Reports - SSID Filter

Hi All,
Currently running Cisco WCS 7.0.220.0 and when l go into Reports, Report Launch Pad and select a specific report e.g Client Traffic and l want to report by SSID , when l go to edit the Filter Criteria for SSID's, it is not showing all the SSID's ?
I currently do have some disabled and some that are enabled that are not showing in the List ?  Does anybody know why l am not able to display all SSID's in this list ?  Possibly something to do with Data Management ?
Thanks SG       

Just took a look at my lab WCS and all my SSID's show up there.  This is a lab WCS, so my WLC version is at 7.3 right now and I don't really use WCS, but it shows up.
Thanks,
Scott
Help out other by using the rating system and marking answered questions as "Answered"

Similar Messages

  • Interactive Report - Saved Filter

    Have an Interactive Report which will include a column which containing the email address of an employee and would like to create a saved filter on the report to filter on this column and reference the currently logged in users username.
    Owner =APEX_CUSTOM_AUTH.GET_USERNAME
    Not sure of the syntax to reference the user id of the active user in the saved interactive report. I have done something similar with classic reports by storing the user_name in a page item and referencing the page item in the SQL. This is a little different with Interactive report as I want to provide a series of Saved Filter users can pick from to filter the date in various ways; including seeing only 'their data'.
    Jason

    Jason,
    You could do this in the query:
    SELECT ...
    CASE WHEN UPPER(your_table.username) = :APP_USER THEN 'Y' ELSE 'N' END user_match
    Then put a filter on user_match = 'Y'
    regards,
    Malcolm.

  • Report level filter impact on non-merged dimension

    Hi Experts,
    I have a problem in Webi 3.1 sp4.
    We have three dataproviders from same universe.  two dataproviders are linked with merged dimensions and third one is from independent table which has only one value (not related to other two data providers).
    Created report with one block(block1) contained objects from first two dataproviders. Object from third dataprovider is placed on report body above block1.
    Everything working fine.
    If we create a report level filter with detail objects from first two dataproviders, value from third dataprovider disappears.
    I don't have problem if create filter at block level.
    Please help to resolve this issue.
    Thanks
    Akshara...

    That is a previous XI version.  I meant within XI 3.1 - between Support Packages, is it a change from SP03 for example?
    If it is (b/ween SP03 - Sp04 ) then you should log a support message

  • Are there any standard SAP reports to filter all BP(in SAP ISU)?

    Hi All,
    1.Do we have any standard SAP reports to filter all BP(in SAP IU)?I am aware that we can view all the Business Partners in Change/Display mode in the selection screen, but do we have any standard SAP reports to view all the created BP?
    2.Do we have any standard report to filter BP(in SAP ISU)? based on certain fields like Authorisation Group?
    Look forward to any responses.
    Regards
    Amitav Otta

    Hi Amitav
    Every industry has its own set of information for each kind of industry.There are certain data which is common to all Business Partner through out all industry. Most of that you can find in BUT000 and using SE16 you can generate a report directly through the Table access. But if you are looking for Standard Report than SAP has not provided standard Report for All Industry. If you look to the SAP Menu->Information System->General Report Selection, you will find that industries like Real State Management have reports for their Business Partner. To my knowledge there is no standard consolidated report to list down business partner based on filter for all industry.
    Regards
    Mithlesh

  • Display Report Level Filter value and Input Controls Value

    Hi,
    Please let me know how to display Report Level Filter value and Input COntrol values in the report.
    I have 2 tabs in the WebI Report. The first tab has the summary details about the other tabs like reprot desc, prompt values, reprot filter values,etc.
    In the 2nd tab I have the actual report which has input controls defined, prompt values and global level report filters.
    Can anyone please tell me how to display the Report level filter values and the Input Control values in the first tab report.
    For ex: Tab 2 has a Report level filter: Region = NA
    I need to display in Tab 1 in as Region: NA
    I used the function ReportFilterSummary but that is giving me other details, I want only the object name and the value.
    Also how to dispaly the Input Control values in the tab 1.
    Please let me know if you have any suggestions for this issue.
    Thanks

    did you try
    =ReportFilter([Year])
    if you are making report filter over the year, it will return the value of the filter
    by the way, the filter should be applied over all the report not to a specific block to be able to get the correct value
    the Input control also considered as report filter, only if you're applying them on the level of the report, if you applying an input contron over a specific block or chart, you will not get the values for ReportFilter
    good luck

  • Determine Reports "Record Filter" as a SQL equlvilant

    Afternoon All,
    I am using the latest release, and am trying to work out how I can retrieve the final SQL query the report is using.
    My report is based on data held in a Table ("TABLE_ABC"), not a Command Table.
    I have a "Record Filter" of
    {TABLE_ABC.First_Name} = {?pFirstName}
    The report is ordered on
    {TABLE_ABC.Last_Name}
    If I run my report with a pFirstName parameter of "Bob" I am able to find the following information in my Log4j logs:
    [2010-01-06 17:05:41,717] INFO 73543[main] - com.crystaldecisions.reports.queryengine.QueryInfo.vE(SourceFile:230) - QueryInfo openRowset:
    [2010-01-06 17:05:41,717] INFO 73543[main] - com.crystaldecisions.reports.queryengine.Rowset.bL(SourceFile:444) - Rowset restart: moveToStart true
    [2010-01-06 17:05:41,717] INFO 73543[main] - com.crystaldecisions.reports.queryengine.Rowset.z3(SourceFile:921) - Rowset execute
    [2010-01-06 17:05:41,717] INFO 73543[main] - com.crystaldecisions.reports.queryengine.Connection.a(SourceFile:2929) - Executing query using a Query Definition.
    [2010-01-06 17:05:41,733] INFO 73559[main] - com.crystaldecisions.reports.queryengine.querybuilder.QueryBuilder.GenerateQuery(?:?) - Query:
    SELECT "TABLE_ABC"."First_Name", "TABLE_ABC"."Last_Name", "TABLE_ABC"."Old_Age", "TABLE_ABC"."New_Age", "TABLE_ABC"."Old_***", "TABLE_ABC"."New_***"
    FROM   "SCHEMA_XYZ"."TABLE_ABC" "TABLE_ABC"
    WHERE  ("TABLE_ABC"."First_Name"='Bob')
    ORDER BY "TABLE_ABC"."Last_Name"
    Is there any possible way I can determine this exact information programmatically?
    The whole reason for me wanting this information is I want to find a way to further filter the data of a report, so that I can dynamically manipulate the
    "Record Filter" for the report and thus I can split a Single Report PDF into multiple PDF report outputs, based on the users single Parameter of "Bob".
    .... continued below

    ... continued
    If for example I wanted to group the previous report by the value of "Old_Age" into individual PDFs.
    I am able to retrieve the "Record Filter" using the below code
    IFilter myFilter = reportClientDocument.getDataDefController().getDataDefinition().getRecordFilter();
    String currentFilter = myFilter.getText();
    This is all well and good but this filter is in Crystal Syntax and if anything more complex than a simple "equals" condition, will be almost
    impossible to "convert" into SQL syntax, which I am wanting to use to determine all the possible values of TABLE_ABC.Old_Age that can be found
    which still match the data criteria using the reports "Record Filter"
    Once I have build an array of these possible Old_Age values I will use them in the following loop     
    String freeEditingFilter = "{TABLE_ABC.Old_Age} = ToNumber(\"" + arr_Grouping[j] + "\")";
    freeEditingFilter = "(" + currentFilter + ") AND (" + freeEditingFilter + ")";
    myFilter.setFreeEditingText(freeEditingFilter);
    reportClientDocument.getDataDefController().getRecordFilterController().modify(myFilter);
    reportClientDocument.getDatabaseController().checkDatabase(true);
    exportPDF(reportClientDocument);
    This is the only possible way I can think of when trying to further split a existing report up into individual PDF outputs.
    If I was able to determine the above "...QueryBuilder.GenerateQuery" entry that is output in my logs, or the SQL syntax equivilant of
    whatever the reports "Record Filter" I would be happy as anything.
    Currently my work around is to have a suppressed text field on every report containing a SQL syntax equivalent of the whole
    query used to build the report data. So in my above example I would have a text box containing the text:
    SELECT DISTINCT ?GrpParam FROM TABLE_ABC WHERE First_Name = ?pFirstName
    I would then retrieve this text programmatically, replace ?GrpParam with the selected "grouper/splitter" (Old_Age) and also replace
    ?FirstName with the users parameter entry (Bob)
    With the results from this query I would place all the results in arr_Grouping[] and then use that to loop through
    my code and produce mupltiple reports using the original clause of "First_Name = Bob" and also the new
    grouping/splitting condition of "Old_Age"
    This is what I have come up with, and if anyone else has some ideas or solutions or anything I would
    be great appreciated.
    Cheers
    Darren

  • WCS reporting -128db

    I have a WISM LWAPP deployment with 4 WISM blades (2 are for backup), 400 1231 and 1242 AP's. I use WCS to monitor the WLAN. My problem is tracking down why stationairy clients are frequently reporting through WCS a -128db signal strength when the client is located less than 50 feet from an AP. This is happening on all SSID's and in multiple buildings. It does not happen to all of the clients on a given AP, and does not seem to happen on all clients. It happens at random times. My thought is that WCS only polls clients every 10 minutes (I changed this from the default 15 minutes) so the signal loss indicated by -128db is probably happening much more frequently. This is happening to iPAQ's, tablets, symbol mc70's, laptops both windows and MAC.
    I am also seeing very high MIC and FCS error counts.
    Any suggestions on a command to monitor a client to see whats goiing on.
    Thanks

    You can use the WCS navigator. The Cisco WCS Navigator provides network administrators with easy, cost-effective access to information from multiple geographically diverse Cisco WCS management platforms. This innovative platform allows network managers to partition the unified wireless network at the management level.

  • Read Portal User ID in BW report to filter records

    Hi,
    I need to filter my records in BW report based on the
    business partner who logs into Portal.
    (BW report is getting called thur IView in Portal)
    Is there any way i can fetch the Portal User id
    during the execution of BW report? so then i can filter
    records by writing code in user exit.
    I tried using variable sy-uname, but it populates
    the BW user id and not portal user id.
    Please reply if anybody knows solution to this query.
    Thnx in advance.

    Abhijit ,
    My understanding:
    You need to filter the query by the Business Partner ID and not by User name and Business Partner number and BW User ID are both different.
    If you want to filter by User name:
    Why don't you try using SSO through EP and that way you would get the ID of the person logged in.
    If you are using user mapping:
    Or what you could do is maintain the mapping in an info object/table in BW and query against the same.
    If you are using Business Partner:
    Populate the business partner master which will have the user name attached and that way you would be able to get the Business partner ID.
    Arun

  • How to design SSRS report to filter multi-value parameter?

    I developed an RDL which takes a multivalue parameter and I want to set a visibility expression or filter based on this parameter. This parameter uses an "All" value equal to '660E4583-7F29-4D37-8038-5096AE6A1A7F'.
    I want to make the main tablix visible if this parameter is set to this uniqueidentifier and invisible otherwise. How can I achieve this either in the tsql dataset or on the report side? I have tried numerous workarounds, but none have worked so far! I've tried
    different expressions and datatypes.
    Before I tried If/Else statements in the tsql dataset, but most recently I instead added flags to the tsql dataset for each condition and am trying to make this tablix only include the records with the flag matching the parameters chosen. But even this is not
    working for me.
    Here is sample data:
    create table #dummydata
    parameter varchar(max),
    b varchar(max)
    insert #dummydata values('660E4583-7F29-4D37-8038-5096AE6A1A7F','record 1'),('660E4583-7F29-4D37-8038-5096AE6A1vcd','record 2'),('660E4583-7F29-4D37-8038-5096AE6A1v52','record 3')
    select * from #dummydata
    And my filter expression in the RDL for this tablix is:
    =iif(Parameters!Modifier.Value(0)="660E4583-7F29-4D37-8038-5096AE6A1A7F",1,0)
    With datatype = integer and value = 1 However, this tablix is invisible with the above even when I choose "All" for the parameter value = default value. How can I make this tablix visible?
    Ryan D

    Hi Ryan D,
    After testing the scenario in my local environment, everything goes well. As per my understanding, I think this issue can be caused by the Available values in the Modifier parameter. Could you tell us the Available values of Modifier parameter in your scenario?
    The following scenario in my test is for your reference:
    I create a dataset with the sample data you posted.
    Add a multi-value parameter named Modifier in the report.
    Specify the following values in the Available Values of the parameter (please note that the value “All” should be located in the first place, because we use Parameters!Modifier.Value(0) in the filter):
    Label: All                 Value: ="660E4583-7F29-4D37-8038-5096AE6A1A7F"
    Label: A                   Value: ="1"
    Label: B                   Value: ="2"
    Label: C                   Value: ="3"
    Drag a table to the design surface, insert parameter and b fields in the table.
    Use the same expression as you said to add a filter in the tablix.
    We can refer to the following screenshot:
    If there are any other questions, please feel free to ask.
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • SQL report - Chart filter expression

    I have a chart in an existing SCCM report that I want filter down to two or more collections, but the dataset is used in other charts on the same report, so I can't touch that.
    I've been trying to create a filter in the Chart Properties, and can limit it down to one collection without issue:
    Expression: [CollectionID]
    Operator: =
    Value: VI100016      (the collection that I am filtering on)
    I've tried to go into the Value fx and set an expression manually, example below, but this errors when I run the report.
    =(Fields!CollectionID.Value  = VI100016) Or (Fields!CollectionID.Value  = VI100017)

    Yep that's got it thanks, just ended up using the following which worked:
    Expression: [CollectionID]
    Operator: In
    Value: ="VI100016", "VI100017"

  • Special character in interactive report using filter

    Hi,
    I created an interactive report and in this report there is a filter to search any row from specific value linked to a specific column.
    As example this report displays a board with some columns like "SR number", "Status", "Description", ....
    If I use this filter with standard character all works fine :
    - in the filter's list of values I choose "Region" column
    - in the search field I put "SE"
    - click on go and the board is generated with all correct rows.
    If I use this filter with special character (french character in my case), this filter changes this special character and the request doesn't return any row.
    Example :
    - in the filter's list of values I choose "Statut" column
    - in the search field I put "Réception"
    - the filter's expression is modified from "Réception" to "Réception" so no row is returned (filter - Statut contains 'Réception' - no data found)
    I modified the character set used by the apex DAD changing the nls_lang parameter in the wdbsvr.app file from AMERICAN_AMERICA.WE8ISO8859P1 (database character set) to AMERICAN_AMERICA.AL32UTF8
    But when I check the apex DAD character set after the web server restart (about Application Express in my workspace) I get :
    NLS_CHARACTERSET: WE8ISO8859P1
    DAD CHARACTERSET: ISO-8859-1
    No change.
    I used the Application Express 3.2.0.00.27 with Oracle E-business Suite (11.5.10.2).
    Any help will be appreciated.
    Best regards,
    Olivier
    Edited by: oll on 1 mars 2010 20:57
    Edited by: oll on 15 mars 2010 21:17

    Hi,
    Thank you for your answer.
    But I already installed french language on apex.
    Unfortunately issue occurs yet.
    To install the french language I followed these steps :
    - I set the NLS_LANG to American_America.AL32UTF8
    - sqlplus sys/**** as sysdba
    - ALTER SESSION SET CURRENT_SCHEMA = APEX_030200;
    - and I executed the load_fr.sql script
    Thank you for your help.
    Best regards,
    Olivier

  • Custom Report Site Filter Blank

    If I create a custom report and put Site = for a requirement, there is no data pulling when I hit the list button, but each computer is assigned to a site, I know for sure because the site filter works when I'm creating a Dynamic Workstation Group and filter by site, it pulls all the sites without any issues. I tried manually inputting the site, (i.e. entering WASHDC as an entry), and that didnt work at all.

    cdowgos,
    It appears that in the past few days you have not received a response to your
    posting. That concerns us, and has triggered this automated reply.
    Has your problem been resolved? If not, you might try one of the following options:
    - Visit http://support.novell.com and search the knowledgebase and/or check all
    the other self support options and support programs available.
    - You could also try posting your message again. Make sure it is posted in the
    correct newsgroup. (http://forums.novell.com)
    Be sure to read the forum FAQ about what to expect in the way of responses:
    http://forums.novell.com/faq.php
    If this is a reply to a duplicate posting, please ignore and accept our apologies
    and rest assured we will issue a stern reprimand to our posting bot.
    Good luck!
    Your Novell Product Support Forums Team
    http://support.novell.com/forums/

  • Link to interactive report with filter values containing : or %

    Hi,
    I have an application written in PL/SQL. The application takes input from users, and then constructs a URL for an interactive report, concatenating the user input as filter values for the report. Sometimes, the input values contain characters such as the colon (:) or the percent sign (%). In these instances, APEX appears to ignore the rest of the URL beyond the first colon or percent sign in the filter values. For example, in the following URL, the first filter value is "Oracle Database 11g: Workshop I":
    http://abc.oracle.com/pls/apex/f?p=129:8::::8,CIR:IRC_TITLE,IR_PROJECT_STATUS:Oracle Database 11g: Workshop I,Completed
    The Interactive Report displayed for this URL shows all courses whose title contains "Oracle Database 11g" -- in other words, more records are displayed than should have been if the complete set of filters were applied in the query (i.e., TITLE = Oracle Database 11g: Workshop I, and PROJECTS_STATUS = Completed).
    How should I construct the URL so that the colons (:) and percent signs (%) which may be part of the filter values are treated correctly?
    Thanks,
    Jenny

    Thanks to Joel Kallman, here's the answer:
    The ‘f’ procedure has a parameter named p_sep. This is the separator used for the arguments in the ‘p’ parameter in the call to the ‘f’ procedure. The default value for this separator is ‘:’, obviously.
    If you have data values that contain the separator, then you can use a different character for your separator (you may need to manually specify the URL instead of using the declarative link attributes of a column in a report).
    Using the pipe symbol ‘|’, I was able to take:
    http://st-curr.us.oracle.com/pls/apex/f?p=129:8::::8,CIR:IRC_ROWFILTER:Database 11g: Administration Workshop I
    and change it to:
    http://st-curr.us.oracle.com/pls/apex/f?p=129|8||||8,CIR|IRC_ROWFILTER|Database 11g: Administration Workshop I&p_sep=|
    which now works.

  • Power View Reports Dynamic filter

    Greetings Everyone !
    I have a requirement to create a trend chart to show trend for last six months. So on trend chart, it should reflect previous 6 months (i.e. Jul, Aug, Sep, Oct, Nov, Dec) and value against each month.
    Problem:
    I am using Power view in SharePoint (for multidimensional model) to create this report from SSAS (SQL 2012 SP1) and it doesn't support any custom MDX query to filter data.
    Please help if you have any solution for this.
    Best Regards,
    Youdhbir
    Blog : http://youdhbir.blogspot.in/

    Hi,
    According to your post, my understanding is that you wanted to add alert and subscription for the power view report in sharepoint 2013.
    You need to Additional Configuration to provision for subscriptions and alerts when you install Reporting Services SharePoint Mode for SharePoint 2013.
    The Reporting Services subscription and data alert features may require the configuration of SQL Server Agent permissions. For more information, see
    Provision Subscriptions and Alerts for SSRS Service Applications
    PerformancePoint Services is a SharePoint Server 2013 service application. It enables users to create business intelligence (BI) dashboards that provide insight into an organization's performance. You can create custom reports, filters, tabular data sources,
    and scorecard transforms to extend the native functionality of PerformancePoint Services.
    Power View in SharePoint is browser-based Silverlight application, a feature of the SQL Server 2012 Service Pack 1 (SP 1) Reporting Services Add-in for Microsoft SharePoint Server 2010 and 2013. Creating, opening, and saving Power View reports (RDLX files)
    all take place in SharePoint Server 2010 and 2013.
    More information:
    PerformancePoint Services in SharePoint 2013
    Power View (SSRS)
    Power View in SharePoint Server: Create, save, and print reports
    PowerPivot, PowerView and PerformancePoint: Which should you use?
    Thank you for your understanding.
    Best Regards,
    Linda Li
    Linda Li
    TechNet Community Support

  • WCS Reports

    I've been asked to create a report that shows the wireless usage of certain clients. The reports that I have tried so far have just given me the the time they connected and the time they disconnected. Is there a way to create a report that shows how much tx and rx data a client is creating? I tried the busiest clients report but, I'm looking to get a report of some specific clients that are not even close to the busiest clients. We are trying to make a business case for some specific devices.
    thanks, Pat.

    Hi,
    did you try going to "monitor->clients", finding the specific client(s) you like. On that client you select "session report", from there you customize content to include tx and rx in bytes or packets sent/received and you run the report ?
    This is the way to do for clients 1 by 1. Alternatively you can run reports for all clients and export to CSV and from there select only the clients you want but I don't think there is a "multiple clients" selection directly on the WCS
    Nicolas
    ===
    don't forget to rate answers that you find useful

Maybe you are looking for

  • Network problem with my 5800 XPressmusic - ? just ...

    Hi I got my 5800 last Friday & am enjoying it very much ! However, today the phone seemed to completely lose my O2 network connection whilst in my office at work. There was no signal registering & "no network connection" warning whenever I tried to c

  • Unable to download OS X using Zapping PRAM index.

    Unable to download OS X using Zapping PRAM index. Gives OS X Mavericks failed to download use the purchases page to try again - But cant see Mac app store icon as screen has completely gone grey Since yesterday my Macbook Pro is not working - rather

  • Weblogic server not getting started.(undefined mbean reference.)

    Hi , I am using Weblogic server 7.0 in solaris and i have deployed web applications to the managed servers. When i am restarting my admin server , i am getting the following error: <May 22, 2009 12:08:23 PM IST> <Critical> <WebLogicServer> <000364> <

  • Unable to connect message

    I have an Internet connection, but I can't get Firefox to work. None of the browsers on my computer work, so I can't uninstall & reinstall.

  • Crash?

    Uh oh. Black screen and three steady beeps keep repeating. Early 2008 MacBook Pro.