Use of Keyfigs in Filters

Hi Samuris,
Could any one let me know how and when to use Keyfigs in Filters.What is the scenario in which we go for that (any  example)?
Inputs are appreciated.
Regards,
James

Hai,
Find the below link ,It may helip you.
http://help.sap.com/saphelp_nw04/helpdata/en/9d/76563cc368b60fe10000000a114084/frameset.htm
http://help.sap.com/saphelp_nw04/helpdata/en/9d/76563cc368b60fe10000000a114084/frameset.htm

Similar Messages

  • Using Customize grouping and filtering for EPPM 8.2.1 family

    Are there any know issues or BUGS when using customize grouping and filtering returing more than the filtered projects?
    We are customizing grouping on Project Status and Region and filtering on Region and Let by Code
    Thanks

    Are there any know issues or BUGS when using customize grouping and filtering returing more than the filtered projects?
    We are customizing grouping on Project Status and Region and filtering on Region and Let by Code
    Thanks

  • Cannot use the CS6 blur filters with Mountain Lion

    Cannot use the CS6 blur filters with Mountain Lion since I cannot see the circle and other adjustement lines of the UI. I had no problems using these filters with Lion. Could you help.
    Thanks

    Slateskies wrote:
    ... I'm doing this because of a new game that requires OS 10.6.8. ...
    Why not just Upgrade to 10 6 8 which is Snow Leopard...
    First you need to check that your current Mac meets the System Requirements for Snow Leopard...
    Snow Leopard Specs:
    http://support.apple.com/kb/SP575
    If it does... then you need to Purchase and Install Snow Leopard Disc,
    Mac OS X 10.6 Snow Leopard
    ( It should be noted that Apple will send paid MobileMe members the Mac OS X 10.6 DVD for free.)
    Would Also Recommend that you do a Bootable Clone Backup of your current Hard Drive Before attempting any Major Upgrade...
    By far the easiest way to make a Backup, is to use something like
    SuperDuper  http://www.shirt-pocket.com/
    or CCC  http://www.bombich.com/

  • How do I query a SharePoint List using a url and filtering on date?

    I am reading a SharePoint list using jquery.  Everything is working fine
    except for the filter.  Each list item has an expiration date.  I want to retrieve JUST the items that have not expired (Expires > Today) but I can't figure out the url syntax and I've been searching all day for an example and
    can't find one.  Could someone please help?!?  See bold code below.
    Thanks,
    Glen
    $(document).ready(function ()
    <strong>var qryWCFUrl = "/sites/MMTP1/_vti_bin/listdata.svc/MMAlerts?$filter=(Expires gt '08/10/2011')&$orderby=Title";
    </strong> $.getJSON(qryWCFUrl, function (results)
    $.each(results.d.results, function (i, mmAlert)
    itemID = mmAlert.Id;
    mmTitle = mmAlert.Title;
    mmClass = mmAlert.ClassValue;
    //alert("Item="+itemID+" Title="+mmTitle+" Class="+mmClass);
    AddMMStatus(mmAlert.Id,mmAlert.Title,mmAlert.ClassValue);

    Fadi,
    Thanks for your response.  I actually have another version of the code that uses the SP client objects that works.  The problem is site boundries.  Let me give a more complete project explanation.
    I am creating a master page for a new intranet.  As part of this master page, I want to read from an SP list of alerts and post each alert (if not expired) in the SP status bar.  I've gotten this to work with SP client objects and jquery (except
    for the date filter part).  Both of these solutions work fine on the top site level.  BUT when trying it out at the sub-site level, the SP client objects version of my code fails. The jQuery version works except the date filtering.
    I looked at the example from your link and it looks like a bit of a hybrid to my approaches:  JQuery with CAML.  My question is; does this example permit me to access a list in the top-level site from the subsites?  Please excuse my ignorance,
    but I am an EXTREME newbie in this having spent the past 8 years as a VB.Net developer and a little bit of ASP.Net.
    Below are the two different versions of my code in different versions of my master page definition:
    SP Client Object Version
    <script type="text/javascript">
    // <![CDATA[
    ExecuteOrDelayUntilScriptLoaded(LoadAlerts, "sp.js");
    var ctx;
    var currAlerts;
    function LoadAlerts() {
    ctx = new SP.ClientContext.get_current();
    list = ctx.get_web().get_lists('/sites/MMTP1/Lists/').getByTitle('MMAlerts');
    var cmlQry = new SP.CamlQuery();
    var camlExp = '<query><Query><Where><Gt><FieldRef Name="Expires" /><Value IncludeTimeValue="FALSE" Type="DateTime"><Today /></Value></Gt></Where></Query></query>';
    cmlQry.set_viewXml(camlExp);
    currAlerts = list.getItems(cmlQry);
    ctx.load(currAlerts,'Include(ID,Title,Class)');
    ctx.executeQueryAsync(GetAlertsSuccess,GetAlertsFailed);
    function GetAlertsSuccess() {
    var lstEnum = currAlerts.getEnumerator();
    while(lstEnum.moveNext()) {
    var mmAlert = lstEnum.get_current();
    AddMMStatus(mmAlert.get_item('ID'),mmAlert.get_item('Title'),mmAlert.get_item('Class'));
    function GetAlertsFailed(sender,args) {
    alert('Alerts load failed: ' + args.tostring);
    function AddMMStatus(msgID, strTitle, strClass) {
    var statID;
    var statClass;
    var statTitle;
    statClass = "<a href=\"#\" onclick=\"javascript:DisplayAlert("+msgID+");\">" + strClass + ": </a>";
    statTitle = "<a href=\"#\" onclick=\"javascript:DisplayAlert("+msgID+");\">" + strTitle + "</a>";
    statID = SP.UI.Status.addStatus(statClass, statTitle, true);
    SP.UI.Status.setStatusPriColor(statID,"red");
    function DisplayAlert(msgID) {
    var options = {
    title: "Miller & Martin Alert!",
    url: "/sites/MMTP1/SitePages/ShowAlert02.aspx?ID="+msgID,
    allowMaximize: false,
    showClose: true
    SP.UI.ModalDialog.showModalDialog(options);
    // ]]>
    </script>
    JQuery Version (works except for filtering by date)
    <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
    <script type="text/javascript" >
    // <![CDATA[
    var itemID;
    var mmTitle;
    var mmClass;
    $(document).ready(function ()
    var qryWCFUrl = "/sites/MMTP1/_vti_bin/listdata.svc/MMAlerts?$filter=(Expires gt '08/10/2011')&$orderby=Title";
    $.getJSON(qryWCFUrl, function (results)
    $.each(results.d.results, function (i, mmAlert)
    itemID = mmAlert.Id;
    mmTitle = mmAlert.Title;
    mmClass = mmAlert.ClassValue;
    AddMMStatus(mmAlert.Id,mmAlert.Title,mmAlert.ClassValue);
    function AddMMStatus(msgID, strTitle, strClass, strSeverity) {
    var statID;
    var statClass;
    var statTitle;
    statClass = "<div id=\"mmAlertTitle\" style=\"display:inline-block;\"><a href=\"#\" onclick=\"javascript:DisplayAlert("+msgID+");\">" + strClass + ": </a></div>";
    statTitle = "<div id=\"mmAlertDetail\" style=\"display:inline-block;\"><a href=\"#\" onclick=\"javascript:DisplayAlert("+msgID+");\">" + strTitle + "</a></div>";
    statID = SP.UI.Status.addStatus(statClass, statTitle, true);
    SP.UI.Status.setStatusPriColor(statID,"green");
    function DisplayAlert(msgID) {
    var options = {
    title: "Miller & Martin Alert!",
    url: "/sites/MMTP1/SitePages/ShowAlert02.aspx?ID="+msgID,
    allowMaximize: false,
    showClose: true
    SP.UI.ModalDialog.showModalDialog(options);
    // ]]>
    </script>

  • Why not use Fourier transforms for filtering?

    Are there any resources for constructing filters using discrete Fourier transforms (DFTs)? Or is it as easy as it seems. For example, for lowpass filtering I obtain the DFT of my signal, zero out components above the selected cutoff frequency and then transform back to get my signal minus the high frequency (noise) components. It seems to behave correctly for the signal I've applied it to, but am I missing something. Upsides would appear to be (1) no time delay between the input and output and (2) the filter is sharp with no transition band. Downside is that this method is slower than using impulse filters, but are there other upsides, downsides, or considerations I'm missing?

    The technique of filtering using frequency domain truncation and IFFT is used in specific areas where computation time is essential (to avoid the time domain convolution with a long impulse response), like image processing. However the technique also has some downsides you should be aware of.
    The frequency domain filtering performed on a data record is totally equivalent to a circular convolution made on your time signal with the impulse response of your ideal low-pass filter (typically a sin(x)/x function). The fact what we are doing a circular convolution will result in unwanted artifacts and you'll see some "parts" of the beginning of your signal at the end of the filtered signal and vice-versa.
    Try for example to create a short signal (like a sharp pul
    se) and extend it with zeros. After filtering you will see a sort of "pre-shoot" of your original signal at the very end of your signal. If you then rotate your time signal you'll discover that the signal is actually continuous (in a circular way).
    You can reduce the problem by, for example, adding "some" zeros at the beginning and at the end of your signal (zero-pad) before your filtering operation (before the FFT) and then remove these additional samples again from you filtered signal (after the IFFT).

  • Using Replacement Variables Without Filtering in a Query

    I want to use a replacement variable for the posting period and for current fiscal week, but I do not want my query results to be filtered by these values.  Instead, I just want to show a column with the fiscal period as a number and the current week as a number.  Does anyone know how to do this? 
    My query shows JAN-DEC values for all key figures but when I use the replacement variable to display NOV as a number, JAN-OCT is blank b/c the query is filtering by NOV.  I just want to see a column of "11s". 
    Any ideas?

    Hi Tracey,
    I was not able to reply you yesterday. After you gave the details, I had this solution in mind but it was a Friday evening and I had to leave.
    My understanding :
    When user enters the month in selection screen eg: 11 (Nov)
    The key figure which is getting displayed in the report till month of Nov should be KF1 else it should be KF2.
    So report should be like this
    Jan  - KF1
    Feb  - KF1
    Mar  - KF1
    Apr  - KF1
    May  - KF1
    Jun  - KF1
    Jul  - KF1
    Aug  - KF1
    Sep  - KF1
    Oct  - KF1
    Nov  - KF1
    Dec  - KF2
    Solution:
    Make a Restricted KF - RKF1
    This will have KF1 with a restriction on the month column "<= " month enetered by user in selection screen (use the same variable)
    Make one more Restricted KF - RKF2
    This will have KF2 with a restriction on the month column "> " month enetered by user in selection screen (use the same variable)
    Now make a Calulated KF
    CKF = RKF1 + RKF2
    Use this in your report.
    I think this is what you are trying to get.
    Please do award points if you found this useful.
    Regards, Mey

  • Issue when using Navigation attributes for filtering in BEX

    Hello,
    We are encountering an issue when applying filter on Navigation attributes in BEx query built on top of a BW HANA Virtual Provider.
    The interface is as below :
    HANA Calculation View -> SAP BW 7.4 Virtual InfoCube -> Multiprovider -> BEx Query.
    We have directly mapped the base Infoobject from HANA View to BW Virtual Provider and using this in BEx query free characteristics. We also have used the navigational attribute of this Infoobject in our Report variable screen as well as an Auth relevant object.
    Eg if ZMATERIAL is the base infoobject and ZMATERIAL__ZXYZ navigational attribute is used in the report variable screen and as Authorization variable.
    This is causing the query to fail.
    The query also fails if I apply any filter values on any Navigational attribute with error message  :
    "Termination message sent ERROR DBMAN (305): Error reading the data of InfoProvider"
    Using the navigational attribute with authorization variable fails with below :
    "Termination message sent ERROR DBMAN (099): Invalid query;Failed to find attribute ZMATERIAL__ZXYZ [...]"
    Appreciate any inputs on this issue and how this can be fixed.
    Thanks,
    Tintu

    Hi Andrey,
    Thank you for your input.
    Based on the OSS note , it says to import BW7.4 SP7. We are already on BW7.4 SP7
    We get error "Termination message sent ERROR DBMAN (099): Invalid query;Failed to find attribute
    ZMATERIAL__ZXYZ"  whenever we try to apply filters on any of the navigational attribute.
    Thanks,
    Tintu

  • List Views displaying error - when using Lookup column for filtering ( which are indexed )

    I'm trying to filter a large list that has more items than the list view threshold. The list has a lookup column that is indexed. If I  try to filter by other columns, the view works fine as long as it returns fewer than 5,000 items. However, if
    I try to filter by the lookup column, I get the error about not being able to display the items because the list is too large.
    The views are returning items which are less than threshold value , but still I am seeing the same issue.I Created some pages and added this filtered views to the pages it is showing below error
    This view cannot be displayed because it exceeds the list view threshold ....
    IF I navigate the view in the list it's returning zero records with out any error page . But no records. 
    Is there a known issue with filtering large lists by lookup column? Any other troubleshooting suggestions? Everything I'm doing here is through the web interface.

    Thank you for your reply. Yeah it’s default limit. But when I created view based on some filter condition on lookup column it’s not working.
    For example:
    Created a View based on Lookup column DEPT using filter condition Dept = HR , returned 1400 items
    Created another View based on Lookup column DEPT using filter condition Dept=Admin , returned 3600 items
    Adding this list view webparts to the page also working fine , displaying the results .
    After adding one item to this list , both the views are not displaying any results. Now the count is 5001.(it exceeded the list view threshold)
    The page where the list view web parts are added throwing the below error.
    This view cannot be displayed because it exceeds the list view threshold (5000 items) enforced by the administrator.
    To view items, try selecting another view or creating a new view. If you do not have sufficient permissions to create views for this list, ask your administrator to modify
    the view so that it conforms to the list view threshold.
    Learn about
    creating views for large lists.
    I am experiencing this problem only with lookup columns, Choice and site columns are working fine in this same situation .
    Thanks,

  • Can a single char be used both in rows, filters and free chars

    Hi.,
      Can 0customer can be used in rows, filters and free chars at a time ?
    Or the chars which are used in either one of themrows or filters or free chars) cant beused in the other(rows or filters or free chars)?

    NOpe, it can only be used in one place.
    May be what you have seen is it could be a nav. attribute of master data and transactional data with the same name. Or the same object name could have been in two different underlying model of infoset and it would be dragged and dropped with the same name.
    thanks.
    Wond

  • How to use a datagrid's "filters" parameter?

    I was looking at all the parameters for a datagrid can came
    across "filters". Does anyone know how this is used? I'd really
    like to shed my filterFunction for an easier solution to filtering
    a datagrid.

    Craig is correct. The filters proper refers to
    flash.filters.* classes like DropShadowFilter. What you are looking
    for is the filterFunction. Assign to this property the name of a
    function which takes a single parameter and returns a Boolean. The
    filterFunction will be called on every record in your dataProvider.
    If it returns true then the record will be displayed.
    mydata.filterFunction = myfilter;
    mydata.refresh();
    <mx:DataGrid dataProvider="{mydata}" ... >

  • Using Logical operators in filters

    Hi All,
    I want to filter rows from an XML using AND logical operator.
    <?xml version="1.0" encoding="UTF-8" ?>
    <RowSet>
    <Row>
    <Name>jake</Name>
    <Sem>First</Sem>
    <Score>100</Score>
    </Row>
    <Row>
    <Name>jake</Name>
    <Sem>second</Sem>
    <Score>200</Score>
    </Row>
    <Row>
    <Name>pete</Name>
    <Sem>First</Sem>
    <Score>300</Score>
    </Row>
    </RowSet>
    I want all the results with Name='jake' and Sem='First'.I tried this usig the AND operator but couldnt get the result .
    I tried :
    <?for-each-group: Row/{./Name='jake'} AND Row/{./Sem='Score'}?>
    <?Name?>
    <?Score?>
    <?end for-each?>
    This doesnt seem to work(with flower brackets repalced by square brackets).Although the OR operator works with the '|'(pipe) symbol in the same manner.
    Any suggestion on how to use the logical operators.
    Thanks!!
    Edited by: rick_me on May 23, 2009 2:09 AM
    Edited by: rick_me on May 23, 2009 2:10 AM

    Hi,
    Use:
    <?for-each:Row[./Name='jake' and ./Sem='First']?>
    <?Name?>
    <?Score?>
    <?end for-each?>Regards,
    Colectionaru

  • Opening file using JFileChooser with File filtering

    ok guys I am trying set a file filter object to my file chooser it compile but i have a run time error, the error says:
    Exception in thread "AWT-EventQueue-0" java.land.IllegalArgurmentException: Extension must be non-null and not empty
    at javax.swing.filechooser.FileNameExtensionFilter..........
    I have declared
    JFileChooser jfc = new JFileChooser();
    as a global variable
    and in to my ActionListener, ActionPerform the following:
    ActionListener listener = new ActionListener()
              String selection, file, copy;
         public void actionPerformed(ActionEvent e)
    int tipe =0, size = 16;
         String Stile = " ";
         if (e.getSource() == openItem)
              FileNameExtensionFilter filter = new FileNameExtensionFilter("txt");
    jfc.setFileFilter(filter);
              jfc.showOpenDialog(null);
              try
              File f = jfc.getSelectedFile();
              String file = f.getAbsolutePath();
              File f2 = new File(file);
              BufferedReader in = new BufferedReader(new FileReader(f2));
              String text = "";
    String textl = text;
    while( text != null)
                   text = in.readLine() ;
                   textl = textl + text + "\n";
                   System.out.println(text);
    Can some one please tell me whats wrong? and if possible how to fix it? Thank you guys

    A couple of things might help:
    It's a good idea to post the entire stack trace (even though it may appear a bit long). Specifically it helps to know which line in your code triggered the runtime error. You read the stack trace down from the top and the first line you find belonging to your code is a good place to begin looking hard at.
    Another debugging technique is the SSCCE. The idea with this is that you come up with a really brief example illustrating your problem. (ie it compiles, runs and spits out the runtime error). It can be made brief by getting rid of anything extraneous to the problem. A bare button in a frame which when clicked sets up and displays the file chooser should be enough. I describe this as a debugging technique because in the course of constructing such things I often find I isolate - and therefore can see and fix - an error.
    Anyway, sorry this is so general. Maybe someone will come along with a "missing semicolon in line 3"-type solution but, if not, it may be useful.

  • How to populate multiple records into 1 using addtl keyfigs

    Hi Gurus,
    Please take a look at this scenario.
    I have 3 records coming from source system.
    ex:
    key dateid startdate enddate
    c    1      d1         d2
    c    2      d3         d4
    c    3      d5         d6
    i need to populate these 3 records as one into the infoobject based on dateid.
    (dateid =1 then kf1=d1,kf2=d2;dateid =2 kf3=d3,kf3=d4 dateid = 3 kf1=d5,kf2=d6)
    i added 6 key figures ( kf1 kf2 kf3 kf4 kf5 kf6) as attributes to infoobject.The final
    record should look like the below one.
    key kf1 kf2 kf3 kf4 kf5 kf6
    c d1 d2 d3 d4 d5 d6
    Could you pls give me some thoughts on how to do this in a better way.
    Do i need to write update routine or just the formula in update rule is enough  ??
    Thanks in advance
    -dooDle

    Hi Ramesh,
    The scenario you have mentioned looks really complicated reason being, maintainance.
    Combining 3 records to one is possible in Start Routine. But it will be an expensive one.(I mean loopin)
    Pseudo code:
    LOOP AT DATA_PACKAGE.
    Check which records satisfy your criteria and fill a Temporary table. The fields will be your entire record to be appended to the fact table.
    Endloop.
    Delete your Data Package.
    populate the Temporary Internal Table onto the Data Package.
    Hope it helps.
    Regards,
    Praveen.

  • Attempting to report using multiple subqueries and filtering on result set

    I have an Oracle view which shows historic logs of changed data, effectively an audit view. The view is over two tables, a header and a detail table. I guess for the purpose of the question that is not too relevant but the structure of the view is. This is the view:
    SQL> desc ifsinfo.history_log_join
    Name Null? Type
    *LOG_ID                                    NOT NULL VARCHAR2(10)
    *MODULE                                    NOT NULL VARCHAR2(6)
    *LU_NAME                                   NOT NULL VARCHAR2(30)
    *TABLE_NAME                                NOT NULL VARCHAR2(30)
    *TIME_STAMP                                NOT NULL DATE
    *USERNAME                                  NOT NULL VARCHAR2(30)
    *KEYS                                      NOT NULL VARCHAR2(600)
    *HISTORY_TYPE                                       VARCHAR2(200)
    *HISTORY_TYPE_DB                           NOT NULL VARCHAR2(20)
    COLUMN_NAME NOT NULL VARCHAR2(30)
    OLD_VALUE VARCHAR2(2000)
    NEW_VALUE VARCHAR2(2000)
    I have indicated header information with *.
    The detail shows every column that was changed for a table (in header) and the old and new values, quite straight forward.
    The table I am interested in the audit of is:
    SQL> desc customer_order_reservation_tab
    Name Null? Type
    * ORDER_NO NOT NULL VARCHAR2(12)
    * LINE_NO NOT NULL VARCHAR2(4)
    * REL_NO NOT NULL VARCHAR2(4)
    * LINE_ITEM_NO NOT NULL NUMBER
    * CONTRACT NOT NULL VARCHAR2(5)
    * PART_NO NOT NULL VARCHAR2(25)
    CONFIGURATION_ID NOT NULL VARCHAR2(50)
    * LOCATION_NO NOT NULL VARCHAR2(35)
    * LOT_BATCH_NO NOT NULL VARCHAR2(20)
    * SERIAL_NO NOT NULL VARCHAR2(15)
    WAIV_DEV_REJ_NO NOT NULL VARCHAR2(15)
    ENG_CHG_LEVEL NOT NULL VARCHAR2(2)
    * PICK_LIST_NO NOT NULL VARCHAR2(15)
    PALLET_ID NOT NULL VARCHAR2(10)
    * LAST_ACTIVITY_DATE DATE
    SOURCE VARCHAR2(25)
    QTY_ASSIGNED NOT NULL NUMBER
    QTY_PICKED NOT NULL NUMBER
    QTY_SHIPPED NOT NULL NUMBER
    DELIV_NO NUMBER
    ROWVERSION DATE
    I have indicated columns that I am interested in (either as a key field or as changed data) by *
    Okay - so that's the background, what am I attempting to report.
    I want to return a single row per log id (for certain criteria) which shows:
    Log_Id
    History_Type
    Time_Stamp
    Username
    Order_No
    Pick_List_No
    Rel_No
    Line_No
    Part_No
    Loc_No
    Lot_Batch_No
    Serial_No
    The SQL I have currently is:
    select grp.*
    from
    (select h1.log_id, h1.history_type, time_stamp, username,
    (select h2.old_value||h2.new_value from ifsinfo.history_log_join h2 where h1.log_id=h2.log_id and h2.column_name ='ORDER_NO') Order_No,
    (select h2.old_value||h2.new_value from ifsinfo.history_log_join h2 where h1.log_id=h2.log_id and h2.column_name ='PICK_LIST_NO') Pick_List_No,
    (select h2.old_value||h2.new_value from ifsinfo.history_log_join h2 where h1.log_id=h2.log_id and h2.column_name ='REL_NO') Rel_No,
    (select h2.old_value||h2.new_value from ifsinfo.history_log_join h2 where h1.log_id=h2.log_id and h2.column_name ='LINE_NO') Line_No,
    (select h2.old_value||h2.new_value from ifsinfo.history_log_join h2 where h1.log_id=h2.log_id and h2.column_name ='PART_NO') Part_No,
    (select h2.old_value||h2.new_value from ifsinfo.history_log_join h2 where h1.log_id=h2.log_id and h2.column_name ='LOCATION_NO') Loc_No,
    (select h2.old_value||h2.new_value from ifsinfo.history_log_join h2 where h1.log_id=h2.log_id and h2.column_name ='LOT_BATCH_NO') Lot_Batch_No,
    (select h2.old_value||h2.new_value from ifsinfo.history_log_join h2 where h1.log_id=h2.log_id and h2.column_name ='SERIAL_NO') Serial_No
    from ifsinfo.history_log_join h1
    where
    table_name = 'CUSTOMER_ORDER_RESERVATION_TAB'
    and
    keys like upper('CONFIGURATION_ID=*^CONTRACT=&company%')
    and
    history_type in ('Delete','Insert')
    and
    column_name ='PICK_LIST_NO'
    and
    username != 'IFSAPP'
    and
    h1.old_value || h1.new_value != '*'
    and
    trunc(h1.time_stamp) > trunc(sysdate-1-&days_ago)
    order by 5, 6, 8, 7,9,10,2, 1) grp
    This is OK but..
    I only want to include rows where the same picklist / rel_no / line_no / part_no combination exist more than once (because there is always an insert and delete for the analysis I am doing).
    AND
    where for that combination, the lot_batch_no OR serial_no are different.
    Effectively the system does an insert / delete rather than an update, so that is why.
    Thanks

    Hi sanny007,
    As your issue is related to Reports, I'm moving your post to a more appropriate forum for better supports, thanks for your undrstanding.
    https://social.msdn.microsoft.com/Forums/en-US/home?forum=vsreportcontrols
    Best regards,
    Youjun Tang
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Use of Planning Filters in Queries in NW2004s

    I was wondering if any Integrated Planning experts could help me with a problem I have.
    In the 'old world' BPS a planning layout was attached to a planning level and by using filters (planning packages) many different 'views' or slices of information could be made available to the user. For example I could create a planning layout for my balance sheet and create a number of filters for the different parts of my business.
    In NW2004s planning is now done in the query and the planning filter can be placed in the filter of the query. However this enforces a one to one relationship between the filter and the query which would mean I would need multiple queries for each of the parts of my business instead of the one layout under BPS3.x. Being able to create a variable on the filter would be one way around this but this is not possible.
    Can anyone advise on how this now works in NW2004s as at present this looks like a significant retrograde step in functionality.
    Cheers,
    R

    I have somehow managed to workaround the issue.
    I use one aggregation level without Stage field to allow users to modify the data and then I use another aggregation level with Stage field to process the Stages using planning functions and filters. This works.
    I am still curious on the user exit proposed by Andrey.
    Andrey can you please provide step by step on how we achieve this?
    Thanks,
    DV

Maybe you are looking for

  • Cisco ASA 5512x - Restrict email delivery to ip address range..

    Hi, I was wondering how to tighten the security of my email delivery to a range of ip addresses (I know how on my old firewall but the cisco is quite a bit different).  Right now anyone sending email to a particular ip address on my firewall can do s

  • Issue with Fusion drive (Late 2012 iMac)

    I have a late 2009 iMac that has been backed up with Time Machine.  I recently picked up a late 2012 iMac with the 1TB Fusion drive.  When I first plugged in my Time Machine drive, I was asked if I'd like to transfer my files over.  I did, and everyt

  • Discoloration in display

    Anyone having a problem like this with a 24" cinema display?  It first turns on looking perfect, after a few minutes, this starts to appear and gets worse.  The picture below is after a few hours of being on.  Doesn't matter which laptop or OS I use,

  • Can't sync my videos!

    Hi, I have a sony cybershot DSC-W55 with 7.2 megapixels... when I connect the camera to my computer all of the photos and videos easily sync with iphoto, where I can view which ever. However, when I open imovie only my photos sync with the program. N

  • Java plugin not going away when browser closes

    Not really a huge problem, but just a question. At my work, we've developed an insurance card scanning applet and on one of the machines we have installed it on the plugin doesn't go away once all of the browsers are closed. The machine in question i