Suggestion:  expand filter capabilities

There is a filter dropdown above the thread list that allows me to see all threads, unanswered threads, or answered threads. How about watched threads? Could the filter box be added to the "Category" view and the "Forum Home" view so I can see all of my watched threads in a category on on the whole site?

BluShadow wrote:
And hopefully that would include an upgrade to a supported forum software. Well, we can hope can't we. :DHahahaha! I can see Justin twitching from here at the very idea! *{;-)                                                                                                                                                                                                                                                                                                                                                                                                                                                               

Similar Messages

  • Dynamic Filter Capabilities

    Hello,
    We are trying to write a query that will allow an end user to select a "BOM" number from a selection field, and based on the "BOM" number selected, allow the user to select from the available dates where this BOM has been changed.  I wrote the query below but when I select a BOM, the dates field lists every date any BOM was changed as an available entry.  Does anyone have any pointers on how to only display "existing values" for the update date that pertain to the BOM number selected. 
    SELECT T0.Code,T2.FrgnName,  T0.UpdateDate, T0.loginstac,T1.ChildNum, T1.Code, T3.FrgnName, T1.Quantity, T1.Warehouse, T1.Price FROM AITT T0  inner join ATT1 T1 on T0.code=T1.father and T0.loginstac=T1.loginstanc INNER JOIN OITM T2 ON T0.Code = T2.ItemCode INNER JOIN OITM T3 ON T1.Code = T3.ItemCode WHERE T1.Father ='[%0]'  and  T0.UpdateDate ='[%1]'
    If you have any ideas on how to include this dynamic filter capability please help.
    Thanks,
    Jordan

    Hi Jordan
    I tested your query and it seemed fine but I made a few changes as below:
    SELECT T0.Code,T2.FrgnName, T0.UpdateDate, T0.loginstac,T1.ChildNum, T1.Code, T3.FrgnName, T1.Quantity, T1.Warehouse, T1.Price
    FROM AITT T0 inner join ATT1 T1 on T0.code=T1.father and T0.loginstac=T1.loginstanc, OITM T2, OITM T3
    WHERE T1.Father ='[%0]' and T0.UpdateDate ='[%1]' AND T0.Code = T2.ItemCode AND T1.Code = T3.ItemCode
    Not sure I really understand what you want to achieve when you say select a BOM must give a date as the query you supplied requires both the BOM and date to be entered?
    Could you maybe give me a sample of what the query should be returning?
    Kind regards
    Peter Juby

  • Plz suggest the filter

    i want to perform some action at the time of the installation of a new component in the component wizard, which filter should i use..plz reply ASAP..

    Hi,
    It will generate a java filter implementor class and register it for 4 events. The class instansiates a IdcExtendedLoader object which can be used for a bunch of fun things like adding tables to the database, etc. There's quite a bit of functionality, but you can always par is down.
    Here's the class that's generated:
    This file can be used to write custom install/uninstall steps.
    package ComponentTesting;
    import java.io.*;
    import intradoc.common.*;
    import intradoc.data.*;
    import intradoc.shared.*;
    import intradoc.server.*;
    public class ComponentTestingInstallFilter implements FilterImplementor
         public int doFilter(Workspace ws, DataBinder binder, ExecutionContext cxt)
              throws DataException, ServiceException
              // CS version must be greater than 7.0 to run this install filter.
              if (getSignificantVersion() <= 6)
                   return CONTINUE;
              String param = null;
              Object paramObj = cxt.getCachedObject("filterParameter");
              if (paramObj == null || (paramObj instanceof String) == false)
                   return CONTINUE;
              param = (String)paramObj;
              Service s = null;
              IdcExtendedLoader loader = null;
              if (cxt instanceof IdcExtendedLoader)
                   loader = (IdcExtendedLoader) cxt;
                   if (ws == null)
                        ws = loader.getLoaderWorkspace();
              else if (cxt instanceof Service)
                   s = (Service)cxt;
                   loader = (IdcExtendedLoader)ComponentClassFactory.createClassInstance("IdcExtendedLoader",
                                            "intradoc.server.IdcExtendedLoader", "!csCustomInitializerConstructionError");
              // Called after environment data has been loaded and directory locations
              // have been determined but before database has been accessed.
              if (param.equals("extraAfterConfigInit"))
              // Called after initial connection to database and queries have been
              // loaded but before database is used to load data into application.
              // This is a good service for performing database table manipulation.
              else if (param.equals("extraBeforeCacheLoadInit"))
              // Called after the last standard activity of a
              // server side application initialization. This is a good place
              // to manipulate cached data or override standard configuration
              // data.
              else if (param.equals("extraAfterServicesLoadInit"))
              // Called after loading cached tables.
              else if (param.equals("initSubjects"))
              // Called for custom uninstallation steps.
              // NOTE: Change the uninstall filter name to have your component name prefix.
              // For example: MyTestCompnentUninstallFilter
              else if (param.equals("<MyComponentName>ComponentUninstallFilter"))
              return CONTINUE;
         protected int getSignificantVersion()
              String strVersion=SystemUtils.getProductVersionInfo();
              int nIndex=strVersion.indexOf(".");
              if (nIndex != -1)
                   strVersion=strVersion.substring(0,nIndex);
              return(Integer.valueOf(strVersion).intValue());
    }

  • Odata query not supporting $filter $stop $expand

    Hi everyone,
    I am just trying to  call a odata query to uodate a attribute
     I get this error:The status always return me 400.Please Help
      responseText "{Query options $expand, $filter, $orderby, $inlinecount, $skip and $top cannot be applied to the requested resource.}" String
    Here ia a part of my code:
    //my odata request
      var oDataPath = ServerUrl + "/XRMServices/2011/OrganizationData.svc";
        var oData = oDataPath + "/AppointmentSet?$select=Category&$filter=ActivityId eq guid'" + appointmentid + "'";
     var req = new XMLHttpRequest();
                       req.open("POST", encodeURI(oData), false);
                        req.setRequestHeader("Accept", "application/json");
                        req.setRequestHeader("Content-Type", "application/json; charset=utf-8");
                        req.setRequestHeader("X-HTTP-Method", "MERGE");
                        req.onreadystatechange = function () {
                            if (this.readyState == 4 /* complete */) {
                                req.onreadystatechange = null;
                                if (this.status == 204 || this.status == 1223) {
                                    successCallback();
                                else {
                                    debugger;
                                   errorCallback(SDK.REST._errorHandler(this));
    Thanks
    Surbhi

    Hi, 
       Use below code to resolve your error
    function Retrieve() {
                        var oDataPath = ServerUrl + "/XRMServices/2011/OrganizationData.svc";
                     var oData = oDataPath + "/AppointmentSet?$select=Category&$filter=ActivityId eq guid'" + appointmentid
    + "'";
    var retrieveReq =
    new XMLHttpRequest();
    //alert(Odata);
            retrieveReq.open("GET",
    oData,
    false);
            retrieveReq.setRequestHeader("Accept",
    "application/json");
            retrieveReq.setRequestHeader("Content-Type",
    "application/json; charset=utf-8");
            retrieveReq.onreadystatechange =
    function () { retrieveReqCallBack(this);
            retrieveReq.send();
    function retrieveReqCallBack(retrieveReq) {
        if (retrieveReq.readyState == 4
    /* complete */) {
    var retrieved =
    this.parent.JSON.parse(retrieveReq.responseText).d;
    var category= retrieved.results[0].Category;       

  • Dinamic filter

    Hello everybody,
    I dont know if I will be able to ask this in the right way at first sight.This is the issue, I have a filter with 3 options= All, Only M4U or Everything but M4U, choosing one of it it will affect the second filter content, adding to the filter B all possible values or only values that contain the word M4U, or all the values that it doesnt contain the word M4U. So the result will be the possible values to filter my report inside the drop down.
    Any help?
    Thanks
    Mario Mesquita

    I didn't understand...
    You suggest to filter the data before they arrive in the BAPI ?
    My BAPI take a input date that the user set in a form. The problem is that if he choose 01.06.2007 the bapi give me all the data beginning on the 01.06.2007 (so its also listing july data for example) and I only want June month data.
    That s why I can't filter before the BAPI I need to FILTER after and betweens to date but not static date... like 01.06.2007 and 30.06.07. I want Dinamic Date like Date(@Year, @Month, 1) and Date(@Year, @month, 30)
    Is it possible ?
    thx for answering
    Message was edited by:
            Guillaume Marchal

  • NPS send additional attribute Filter-ID (0xb)

    Hello
    Our environment – Active Directory forest level 2003, users dial-in properties are ignored, NPS server MS Windows 2008 R2 Enterprise Edition patched with all updates and used only
    for authentication, Watchguard VPN server XTM 510, software version 11.8.1. I want to allow access to network resources based on group membership. For example – members of domain group A have access only to servers/services A, members of group B have access
    only to servers/services B, etc. I configured watchguard server:
    https://www.watchguard.com/help/docs/wsm/XTM_11/en-US/index.html#cshid=en-US/authentication/radius_how_works_c.html
    https://www.watchguard.com/help/docs/wsm/XTM_11/en-US/index.html#en-US/authentication/radius_server_auth_about_c.html%3FTocPath%3DAuthentication|Configure%20%20RADIUS%20Server%20Authentication|_____0
    First I create global domain group VPN_SSL_IT_Admins, then I create connection request policy and network policy, both policies have the same Filter-Id parameter, which was the
    same as group name VPN_SSL_IT_Admins, then I create packet filter rules in VPN server, then I create the next domain group, next NPS policies, etc.
    During testing I’ve found very strange problem – NPS server sends back to radius client (VPN server) two Filter ID attributes (hex code 0xb) in access accept message, although
    user is member only of one group. One filter ID attribute is correct, the other is always the same as the first policy (I didn’t test which policy need to be first – connection request or network policy). When I change the order of policies in NPS the Filter
    ID attribute is also changed.
    I think this is security flaw because user has access to two network resources. As a workaround I create empty domain global group (no members), one connection request and one
    network policy in NPS, both policies were first in processing order. NPS still send two filter-id (0xb) attributes but connected user has only access to allowed network resources/services.
    I've also prepared PDF document with pictures, if anyone is interested (NPS settings and network monitor captures).
    Regards Milan

    Hi
    I did as Greg suggested (configure Filter-Id attribute only in network policy) and radius (NPS) sends only one Filter-Id attribute. Maybe this is "behavior by design"?
    I must admit - I've never understood why we need Connection Request Policies and Network Policies.
    J
    PDF file:
    http://1drv.ms/1eucHrQ
    Regards Milan

  • Suggestion for next vision box

    Hi, just a thought for the mods if they are able to feedback by any channels about any next gen box...
    Lots of people have suggested freeview hd
    Capabilities, which would be great... I think that it would be great if the box could have wifi capabilities instead of using comtrend power adapters, I would also imagine this would be much cheaper to supply when inbuilt.
    Thanks
    Richard

    nostra999 wrote:
    Apple tv does it successfully with low amounts of solid state memory and streaming very reliably globally using primarily wifi. If done right I cannot see why this should be a problem??
    Also Sony and Microsoft run comparable services.
    Don't even start me on Apple TV! It's about time we had some updates so this at least works, rather than acting as a sleek paper weight in the corner!
    Kyle
    =======================================
    If you found my post helpful, please give Kudos on the left!
    =======================================

  • Websheet questions (suggestions?)

    Okay, I've been playing with the Websheets for a week or so trying to figure out if I want to make this available to my users. The overall concept seems to be good, it would take a lot of work off of me, but knowing my users, I would still be asked lots of questions and still tasked to fix (or do) some thins they couldn't figure out, etc. So, with the preamble out of the way, here goes.
    1. Websheets would would be LOT more useful if they also allowed programming constructs, just like 'regular' Apex. Users (or probably the developers), could have access to create little "mini-forms" in the websheets that would update/populate tables and fields in the selected schema's, etc. Though I haven't tried, it would seem that perhaps this could be simulated by providing a URL to a 'regular' Apex application to display in a Websheet section, but that seems a bit 'clunky'. It wouldn't bother me if this capability was restricted to people in the Websheet 'admin' group, I surely wouldn't want regular users to have blanket permission to do this (programming), but the capability would sure make the websheets more useful and flexible.
    2. Is it possible to have the Websheets automatically create a page with at least a default section (mutiples would be a huge plus), so I (or any user) could create a report or data grid from a SQL query, and then have the pages automatically 'built' for each row returned? A posiible scenario where I'm debating allowing the users the Websheet capability is this:
    Several users are working on improving probably 500 or so records in my database for an upcoming project. It would be great to be able to provide the SQL query to generate the default report, then have a 'page' created automatically for each of the records returned. This would then allow the users a much simpler way to quickly get to the records they are interested in, and allow them to easily collaborate on the records with notes, spreadsheets, other file attachments (like PDF's they've found describing various aspects of what they are working on), etc. with the minimum amount of work on my part (DBA/Developer). I could 'program' this capability into the main app, but most users don't need/want this, and it would probably be confusing to them, and simply expanding the capabilities of the Websheets seems the most efficient use of user resources (and mine).
    I thought I had a few others, but they've slipped my mind for now. If/when I think of them again, I'll add them to this post.
    Thanks,
    Bill Ferguson

    3. Allow the user uploading a spreadsheet to create a table, instead of just storing the entire spredsheet as a BLOB. This would greatly help simply allowing the users to get their spreadsheets "web-accesible", cleaned up, etc., and then allow the IT folks to more easily incorporate that data into existing database structures.
    Bill Ferguson

  • What Audio filter???

    I have a sequence in FCP Hd that has a great deal of wind noise on the audio tracks due to bad weather.
    I want to reduce the wind noise but keep the vocals at the same or increased levels.
    Wind speeds were about 60mph.
    Can i do this in FCP or would it be better to sort it out in Soundtrack later on?
    Cheers for any help
    Kev

    Or.... get in touch someone in the Sound world who does this for a living, I imagine you would you get some very clear answers.
    I'm not sure what type of program you're cutting, but one thing's for sure, audiences are not very forgiving about bad audio.
    If you can't get a hold of anyone with that experience, try to visually see the audio. Just like we use video scopes for clarity to color correct.
    Try to play the audio thru something that can read the frequencies like an EQ and pinpoint where the wind is happening and where the Vocal is happening. If they're the same frequency, that would be bad news because there's no filter called "miracle". What affects one does the other as well.
    If they're not, then try using the graphicEQ in SP2 or PROCESS>REDUCE NOISE.
    Also, Working with a lower volume setting will help when cleaning because it will be easier to raise the levels afterwards without getting HOT audio. The EXPANDER filter might help with that. Best of luck.

  • Need help to save my portfolio -- OS 8.6 to 9.2.2 to 10.4.8?

    The writing and graphics that constitute my entire professional career are living on borrowed time in a G3 running OS 8.6. It's so old that it doesn't even have USB ports, so I've hooked up a router between the G3 and my newer Mini, which is running OS 10.4.8.
    But the two OSes are such distant cousins that they can't communicate, so I still can't transfer my documents into the Mini!
    I've been told that I need to upgrade the G3 to OS 9.2.2 in order to make it compatible with the Mini's OS 10.4.8. Several questions:
    1. Is that correct? And if so, where can I get OS 9.2.2?
    2. How risky is it to do the upgrade -- am I likely to wipe out my documents in the process?
    3. Is it possible to print my documents before I try the upgrade, or would the driver issues be insurmountable?
    4. If I could get hold of an external CD drive and hook that to the router, would I be able to download everything onto CD? Or would that require software the old G3 doesn't have?
    5. Is there any other way to approach this? Anything I haven't thought of?
    I could sure use some expert guidance. If I lose all the work I've done over the past 20 years, I may never get a decent job again! HELP!
    Many thanks for your time...

    There are various ways to move the files. One is to connect two computers via a network. That is what we have been talking about with ethernet. In that situation all you need is a single cable, then follow the directions in some of the links we gave you.
    You could also transfer the files to an intermediate medium. One of the big problems is finding something that will work on both computers. In the 8600 days computers talked to things like external hard drives and printers via a SCSI connector. New computers use USB and Firewire. I can't think of any external hard drive enclosure that I have seen that had both SCSI and USB (or Firewire). Things like external Zip drives came with either SCSI or USB connectors. For example you could go the Zip disk route but you would have to buy two drives, a SCSI connector drive for your 8600 and a USB connector drive for your mini. Newer items like flash/stick drives only have USB. That is why I made the second suggestion that you find a second hand PCI card to expand the capabilities of your computer to accept USB. This seems a bit excessive for a temporary use but I believe you can get a PCI card pretty cheaply these days. Most Mac users have computers with built-in USB and there's people like myself with unwanted USB cards from the days when we had computers like the 8600 that needed USB.
    Third option would be to find somebody who has a slightly newer computer that can accept multiple drives (that is the main drawback to the mini - you can't put anything into it without taking something out). Take your drive, put it in their computer so they can copy files off it and onto a flash drive or whatever to put things on your mini.
    It is hard to give details at this stage because it depends upon which route you choose. I know if it were my 8600 I would go with option 3, but that's because I have a G3 in the other room that bridges the generations and can connect to just about anything, and I have that in the other room whereas I do not own an ethernet crossover cable.

  • What's the best choice re video file format in a camera for iDVD production

    I currently am using a Sony DSC H1 digital camera which does shoot video in MPEG 1. I use MPEG Streamclip to convert those clips to MPEG 4. The results on my TV screen after processing through iMovie and iDVD are "acceptable" but I will want to upgrade to a good video camera at some point to expand my capabilities. My question is - what video file format should I look for in a camera in order to produce the easiest to work with and best quality result from my iMac?? I am using iMovie HD 5.0.2 and iDVD 5.0.1. Thanks for any suggestions.
    iMac G5 20" 1.8 GHz - 400GB HD - 2GB RAM   Mac OS X (10.4.8)   300 GB & 160GB Ext drives, QT 7.1.3 Pro

    miniDV
    that's what the iApps are meant for...
    a superior pic quality can be accomplished with socalled 3ccd cameras, as from Panasonic...
    HD (=HiDef) offers much more detail/quality, but is (yet) not supported natively to any disk-delivery format (Apple supports the BluRay consortium); external BluRay Burners (=$$$$) come bundled with a special HD-edition of Toast7...

  • How do I change the speed of a video clip after making it a Smart Object?

    In order to apply the same Camera Raw filter to every segment of a clip I was going to split multiple times, I converted the whole clip to a Smart Object, applied my Camera Raw filter settings, and then split the clip and deleted some portions.  Now I want to make certain portions of those clips slow-motion, but even if I right-click on the right side of the layer and select "Clear Smart Filters", all I see when I right-click on the clip in the timeline are the motion options; I can no longer change the speed or the audio.  Is there a way to do this without having to make all the cuts in the beginning, changing the speed and the audio, and then having to go back and convert each individual segment into a smart object and then apply the same ACR filter to each one?

    Brett,
    Thanks for addressing this question.  I tried it and see that the embedded file is the entire clip that I started with, not the trimmed version that I turned into a SO, but at least I could go back and make a change that way in a pinch. 
    If you wouldn't mind looking at this video between :50 and 1:40, and tell me if you think that AE or PP would give me significantly better results in the jumping segments where I slowed it down to 25%:  2014-06-26 And the last thing I expected to see jump out of the box was Albert Einstein! on Vimeo.  I am trying to keep my expenses down by only using PS CC for video editing, and love the Camera Raw filter capabilities.  By using PS CC it also lets me lay down my audio and edit to the audio w/o, as Mylenium suggested, outputting my file from PS CC into either AE or PP to do the slow-mo part. 
    Thanks again for your help!
    Tara

  • Multiple values for multiple fields sharing common id

    I'm new to Reporting Services and I need to create report based on a common child id that includes multiple values from multiple fields in several tables. I can combine all the values into one query for a list report; however, this causes the rows to duplicate
    multiple times based on the differing fields having multiple values (i.e. report contains various child ids and multiple medication dates/names, multiple health diagnoses with onset dates, multiple health service dates/values, multiple immunization types and
    service dates, etc). If I create a list report and try to use various tables, I run into problems with how the tables view the data due to the duplicating child id rows from multiple field values on that child id. If I hide duplicates for these different tables,
    I can run into spacing issues from the duplicating rows and/or hiding data that shouldn't be hid.
    I need the report to have the basic non-duplicating child info (id, name, basic health info) and then also have various sections that contain fields with numerous values (i.e. section for health issue name and onset dates, section for medication name and
    prescription dates, section for health service name and service date, etc). I would want a page break after each child id and would want all the child ids to be viewed/exported for printing purposes at the same time (i.e. not choosing one child id at
    a time to print or view the data). I have tried to create one main table on a list report with various subreports on the child id; however, this is hard for my machine to process (it takes forever) and I can only view/export one child id at a time when I use
    child id as the report parameter.
    Any help you can give this newbie would be greatly appreciate.
    Thanks,
    Melissa S.
    What's the best way for me to
    MelissaS

    Hi simpson213,
    According to your description, you have some questions about your report design.
    1. How to have non-duplicating child info?
    In this scenario, since you don't want to hide the duplicate data, we suggest you filter the duplicated records on query level by using Distinct statement. If you want to do it on report level, you can group
    records on chid id and use First() function on other fields. 
    Reference: First Function (Report Builder and SSRS)
    2. How to  have various sections that contain fields with numerous values?
    We can also add these fileds into the child group of child and have them toggled by child id. 
    Reference: Add an Expand/Collapse Action to an Item (Report Builder and SSRS)
    3. How to add a page break between each child?
    Right click on the Row Group(child id)->Page Break->Select between each group instance.
    Reference: Add a Page Break (Report Builder and SSRS)
    4. How to select multiple child id when rendering report?
    When creating parameter, select Allow multiple values in General.
    Reference: Add, Change, or Delete a Report Parameter (Report Builder and SSRS)
    If you have any question, please feel free to ask.
    Best Regards,
    Simon Hou

  • G4 and Xgrid node question

    I am currently running Logic on a G4 and thinking of the most effective way to expand my capabilities in order to work on film scoring. I was thinking of buying a mini mac and running and xgrid to utilize both computers for processing (with the node app in logic). I wanted to know if anyone has tried this or if it is compatible. If not, are there any other suggestions for ways to increase my processing power, or perhaps it isn't necessary? Thanks

    From the API for JTree
    public int getMinSelectionRow()
    Gets the first selected row.
    Returns:
    an integer designating the first selected row, where 0 is the first row in the display
    But I think this is based on how many rows are displayed at the present time and might change if the tree is opened above it.

  • 911-PLEASE HELP! OS X Mountain Lion "Blocked Plug-Ins"anyone please?

    All Plug-ins enabled, no extensions, this is killing my ability to bid on jobs from a site. Only purchased the upgrade to expand my capabilities & software, so I could bid on more gigs & now I can't even service clients I already had with this "blocked plug-ins" error. Have already Uninstalled Flash player, reinstalled. I was unable to even upload a photobooth video log to "yousendit" because the "choose file" says "blocked plug-ins". Worked with an apple tech support person for an hour, tried everything, even attempted to access a basic youtube video via Internet Explorer, Firefox & Google Chrome...NO GO! Is it possible the Mountain Lion downloaded software file could be corrupt? Please anyone...I've been dead in the water since I upgraded to Mountain Lion Wed. night. I'm am getting to the point I will need to refund the software and go back to where I was if that is even possible at this point. Please help me ...anyone.

    suggestion - call apple.....since we're all users here, it's hard to give you the right suggestion/answer regarding your issue...

Maybe you are looking for

  • Sales Order Status with Billing Plan

    Dear SAP SD Gurus, I have an order with 2 billing plans and both of them have been invoiced. The status of my order still considered "being processed" eventhough both invoiced have been created and posted to FI. I'm using item category "TAO". Any clu

  • Can't access songs on itunes

    I can import songs from CD to my ipod, and they will play fine. Why can I not access them on the itunes software? They appear in black text under "Library", but are grayed out whne I look at my ipod. I can not change song titles, etc. or create playl

  • No cd names on any cd's

    i keep getting track 01 02 ect on all my cd's itunes is connecting to gracenot cddb ect but nothing is happening. Most time cd doesn't even show in itunes. This is the second ipod set up on this computer and no problem with the other account. Really

  • Itunes is my screensaver even though it's not supposed to be

    Ever since the last upgrade to the latest operating system, itunes pops up as my screensaver, even though it's not set to be.  I've deleted it and reinstalled it, but it's still happening.

  • OnSubmit function Error in passing values from WDA Adobe Form to Ztable

    Friends, I am trying to pass values from Adobe Interactive Form to ztable. I am using WDA to display the form. I have created the form context with attributes that are bound to the form fields using the Adobe Livecycle Designer. Once the user presses