Creating dynamic filter which shows next 30 days

Hi,
How to create dynamic filter which shows next 30 days?
I've tried greater than or equal to TIMESTAMPADD(SQL_TSI_DAY, 30, CURRENT_DATE) but it doesn't work.

Hi,
I think it should be something like below (inclusive of current month)
You may have to test this out
(YEAR("Close Date".Date) >= YEAR(CURRENT_DATE) AND
MONTH("Close Date".Date) >= MONTH(CURRENT_DATE)
) AND (YEAR("Close Date".Date) <= YEAR(TimestampAdd(SQL_TSI_MONTH,11, CURRENT_DATE)) AND MONTH("Close Date".Date) <= MONTH(TimestampAdd(SQL_TSI_MONTH,11, CURRENT_DATE)))
Hope it helps
-- Venky CRMIT

Similar Messages

  • How to create a report which shows leave entitlement balances on a eff date

    Hi,
    customer would like to get a report, or sql statement, which shows employees net entitlements for an accrual plan. Because it is a calculated amount, I am not able to get my own quick paint or standard report.
    Who can help?
    ruud

    You can do this in 3 steps.
    1) First of all you'll need a package that wraps one of the Oracle-delivered PLSQL procedures into a SQL-callable function:
    create or replace package xx_pto_balance AS
    FUNCTION get_net_entitlement
    (p_assignment_id in number
    ,p_plan_id in number
    ,p_calculation_date in date) return number;
    end xx_pto_balance;
    create or replace package body xx_pto_balance AS
    FUNCTION get_net_entitlement
    (p_assignment_id in number
    ,p_plan_id in number
    ,p_calculation_date in date) return number IS
    l_net_entitlement number;
    l_last_accrual_date date;
    BEGIN
    hr_pto_views.get_pto_ytd_net_entitlement
    (p_assignment_id => p_assignment_id
    ,p_plan_id => p_plan_id
    ,p_calculation_date => p_calculation_date
    ,p_net_entitlement => l_net_entitlement
    ,p_last_accrual_date => l_last_accrual_date);
    RETURN l_net_entitlement;
    END get_net_entitlement;
    end xx_pto_balance;
    2) Next you'll need to initialize your apps session (if calling from SQL):
    exec fnd_global.apps_initialize(<user_id>, <responsibility_id>, <responsibility_application_id>, <security_group_id>);
    insert into fnd_sessions values (userenv('sessionid'), trunc(sysdate));
    3) Then you can you use a SQL statement like this one (noting the call to the above package function):
    SELECT papf.employee_number
    ,papf.full_name
    ,pap.accrual_plan_name
    ,xx_pto_balance.get_net_entitlement
    (paaf.assignment_id
    ,pap.accrual_plan_id
    ,trunc(sysdate)) net_entitlement
    FROM per_all_people_f papf
    ,per_all_assignments_f paaf
    ,pay_element_entries_f pee
    ,pay_accrual_plans pap
    WHERE papf.person_id = paaf.person_id
    AND nvl(papf.current_employee_flag, 'N') = 'Y'
    AND paaf.assignment_type = 'E'
    AND paaf.primary_flag = 'Y'
    AND paaf.assignment_id = pee.assignment_id
    AND pee.element_type_id = pap.accrual_plan_element_type_id
    AND trunc(sysdate) BETWEEN
    papf.effective_start_date AND papf.effective_end_date
    AND trunc(sysdate) BETWEEN
    paaf.effective_start_date AND paaf.effective_end_date
    AND trunc(sysdate) BETWEEN
    pee.effective_start_date AND pee.effective_end_date
    ORDER BY papf.full_name;
    This gets the net entitlement for all employees' accrual plans. You can of course tweak this as you like.
    Don't expect this to be fast! In fact, expect it to be painfully slow: because balances are calculated on-the-fly and run Fast Formula it takes a couple of seconds per person, depending on your Fast Formula code. To improve performance these are some things you can do:
    a) Put the above SQL into a materialized view and refresh it regularly (eg, daily)
    b) Build a Concurrent Program that populates a 'snapshot' table of balances and then report off that
    c) Use the Accrual Plan Payroll Balance architecture to store entitlements in payroll balances and then retrieve the payroll balances
    I hope that helps.

  • How to create dynamic link which point to a BLOB column in report

    Hello,
    I am fighting with the issue for about 2 days.
    My purpose is to use Oracle Report Builder to build a report of our employee directory which contains employee's information and also employee's picture. The requirement is that our report is going to generate a html file to our web server. By creating a dynamic hyperlink to the Employee's name in the report output file (the html file generated to our web server), it should then display the corresponding employee's picture which is a BLOB column stored in our oracle database.
    I only can create the hyperlink for the employee's name if the link is static, like 'http://www.google.com
    But from the Oracle Reports 10g Release2 (10.1.2), about the exmaple 1: Dynamic hyperlink, I refered the link
    http://www.oracle.com/webapps/online-help/reports/10.1.2/state/content/navId.3/navSetId._/vtTopicFile.htmlhelp_rwbuild_hs%7Crwcontxt%7Cprops%7Cpi_lay_hyperlink%7Ehtm/
    The link gave he following example shows a value for the Hyperlink property that specifies a link to a destination identified dynamically:
    'DEPT_DETAILS_' || LTRIM(TO_CHAR(:DEPTNO))
    where :DEPTNO is a column value retrieved from the database at runtime.
    I tried as the same way to want it dynamcially shows the column :EMP_PHTOT, which is one BLOB column, but it was failed.
    Anyone knows how to implement this? Any inputs is appreciated!
    Thanks,
    Jing

    What exactly is the error messag u are getting ?
    If u have a hyperlink which refers to www.oracle.com in ur pdf, does it work ?
    I think simple URL from PDF will not retrieve any data from the oracle database since it has to make some database connection.
    My suggestion would be whenever request for employee information comes,
    extract that picture from blob and put it a virtual folder in the application server.
    And from the pdf/report access the URL with reference to the picture...
    Rajesh Alex

  • How do i create a closing which shows on every outgoing email automatically, please ?

    procedural question: how do i create a closing line which automatically appears on every outgoing email? thanx!

    Nope, nothing happens...
    I don't know how Apple does it but it is definetly something on the CD itself when you burn it; I've tried it with Disk Burner, Disk Utillity and Toast, but I can't trigger it.
    Anyone who knows how I can pull it off ?

  • Creating password fields which shows ****

    Hi,
    can anyone help me with creating a password field in which the entry looks like *******
    thanks

    Hi Manish.....
    Try the following code.....
    it helps you a lot.......
    PARAMETERS :
    USERNAME(10) TYPE C,
    PASSWORD(10) TYPE C.
    AT SELECTION-SCREEN OUTPUT.
      LOOP AT SCREEN.
        IF SCREEN-NAME = 'PASSWORD'.
          SCREEN-INVISIBLE = '1'.
          MODIFY SCREEN.
        ENDIF.
      ENDLOOP.
    START-OF-SELECTION.
      WRITE: 'User name is  : ' , USERNAME,
            /'Password is   : ',  PASSWORD.
    if u want any explanation see :
    http://help.sap.com/saphelp_erp2005vp/helpdata/en/9f/dbab6235c111d1829f0000e829fbfe/frameset.htm
    Reward points if useful.......
    Suresh......

  • OBIEE -- How to create a filter between current_date and 31 days pass

    Hello guys
    I was trying to put a filter on the date column and filter between timestampadd(sql_tsi_day,-31,current_date) and current_date
    I was successfully able to define both field on sql expression of the filter and I selected "is between"
    when I put this date column with measures and other columns then run report, I get a different error:
    State: HY000. Code: 10058. NQODBC SQL_STATE: HY000 nQSError: 10058 A general error has occurred. nQSError: 42043 An external aggregate is found in an outer query block. (HY000)
    SQL Issued: SELECT Product."Brand Name" saw_0, "Up Level"."Trial - level 12" saw_1, "Year"."Transaction Year" saw_2, "Year"."Transactoin Month" saw_3, "Year"."Transaction Date" saw_4, tranSale.count_of_transactions saw_5, Avg(tranSale.count_of_transactions by "Up Level"."Trial - level 12", "Year"."Transactoin Month", Product."Brand Name") saw_6 FROM tranSale_cube WHERE ("Up Level"."Trial - level 12" IN ('0', 'Product Upsell')) AND ("Year"."Transactoin Month" >= '2009 Feb') AND ("Year"."Transaction Date" BETWEEN timestampadd(sql_tsi_day,-31,current_date) AND current_date) ORDER BY saw_0, saw_1, saw_2, saw_3, saw_4
    I believe it must be something with the essbase that is not serving OBIEE well. Because I tried the same filter on a different environment not having essbase, it return me the right results..
    Could anyone help?
    Thanks

    Another example to look at to see historical data for x number of years in the past from current year can be found in this blog:
    http://oraclebizint.wordpress.com/2008/03/11/oracle-bi-ee-101332-rolling-yearmonth-and-date-filters-moving-window-filters/

  • How to avoid crosstab - Show number of days according to groups

    Morning all,
    I think you all would agree with me that even having crosstab as a great tool in Crystal 2008, there are still quite allot of limitations to it.
    I have created a report using crosstab which shows number of days and jobs according to those days grouped by account number, product code, sales area. This report is working fine until my director asked me to further group those days according to sub categories of lenses.
    For example
    Crosstab shows
    Number of days - Day 1,day 2, day 3
    Number of jobs - 111----123--1213
    Percentage - -
    12%---34% 60%
    Now if you look at the example it says day 1, 111 jobs went out. What the director would like to see is those jobs being sub divided into types of lenses.
    So out of 111 jobs, 25 would be Finished lenses, 30 could be uncut lenses and so on.
    The new report should be like this
    Number of days -
    Day1---Day2---Day3
    Number of Jobs:-
    Finished -
    25--34-----23
    Uncut--3045-----23
    AR--7056-----76
    Total----125135----122
    Percentage:-
    Finished -
    25%--34%-----23%
    Uncut--30%45%-----23%
    AR--70%56%-----76%
    Total----100%100%----100%
    Now if we look at the above criteria it seems that I have to use groups even further down the report where I am using crosstab at the moment. This means I have to get rid of the crosstab and run a report manually.
    However the big question is, how to get the report calculating number of days and jobs according to customer account number, product code and sales area manually?
    I tried the following formula but this requires to write way too many formulas, for example some of the jobs have taken more than 60 days and if i use this formula I have to write 60 formulas for number of days which is not feasable.
    **//provided by IIbas in another forum**
    whileprintingrecords;
    numbervar day0;
    numbervar day1;
    numbervar day2;
    if {@workingdays} = 0 then
    day0 := day0 + 1 else
    if {@workingdays} = 1 then
    day1 := day1 + 1 else
    if {@workingdays} = 2 then
    day2 := day2 + 1 else //up to the maximum number of days.
    Then in the report footer, reference the days in separate formulas, and identify them with text boxes, e.g.,
    //{@day0};
    whileprintingrecords;
    numbervar day0;
    I can sort out the Finished, uncut,AR by grouping them however I am wondering how to create a manual running total of jobs complying with number of days without using crosstab.
    Any ideas?
    Many thanks
    Regards
    Jehanzeb

    no answer closing

  • How can I create a Filter for a four week period?

    Post Author: Sarahg
    CA Forum: Formula
    I am trying to create a filter so that on a sales report I can have a Year to Date figure and then the last 4 weeks shown. So far I have tried to creat a filter that shows current week number - 4 but this does not show the correct weeks.
    Any Ideas?

    Post Author: jsanzone
    CA Forum: Formula
    sarahg,
    You don't mention if there is a Universe involved or not, but if there were then you could create some objects that calculate measures based on a timeframe.  For instance, if you have a date field (date_fld) and a measure (x) in your database then you could create a measure such as:
    case when <date_fld> between getdate()-28 and getdate() then sum(x) else 0 end
    (the SQL code I'm using is in MS SQL server, so you may need to adapt if you're using a different DBMS).
    The key to dealing with the date field is in substracing 28 (i.e. 28 days), so any time that this report would run and include the above coding it would be a 28-day lookback.

  • How can I create a filter that automatically copies sent items to other folder than "sent" folder?

    I tried to create filter which automatically copies sent to different recipients messages to other folder than "sent". I tried many times with different setting but it doesn't work. With inbox messages it works fine.
    Thank you

    If you want to 'reply' to an email, but you want the sent reply to auto appear in the same folder of the message you are replying to.
    Tools > Account Settings > Copies & folders for the mail account
    There is a checkbox to select: 'Place replies on the folder of the message being replied to'
    then click on OK to save changes.
    If you want all sent emails not just replies to got to different fodlers based on who you sent the email to, then you would need to create a filter which when manually run moves selected emails to specific folders.
    So let the sent emails get auto stored in Sent folder.
    Tools > Message Filter
    click on New
    give filter suitable name
    Apply filter when: manually run
    select 'match all of the following'
    To is email address
    Perform these actions
    Move message to and select the folder.
    Do not enable.
    When you need to run this filter,
    open Message filter.
    enable only the filters you require
    Run selected filters on: Sent folder on the mail account
    click on 'run now'
    Best used when you have several sent emails which you need moving.
    Not exactly what you are looking for, but works if organising loads of sent emails.

  • How to create dynamic Invoice report based on Tax calculations

    Hi Ppl,
    I have an invoice report requirement. There are multiple line items in invoice and each line item will have a tax % and discount associated with it. Discount has to be applied at line item level. Tax will be applicable on resultant amount which respect to tax share on total amount. Below is example
    Part# Tax     Qty     UnitPrice Amount     Discount     Net Value
    1     12.5%     40     10          400          100          300
    2     12.5%     50     20          1000          200          800
    3     4%     10     30          300          50          250
                             SubTotal                    1350
                             VAT 12.5% on 1100(300+800)     137.50
                             VAT 4% on 250               10
                             Total Amount               1497.5
    I have created a static rtf which does all calculations correctly. I have hardcoded 12.5 and 4 % tax values for calculations. But issue is that taxes are changeable in future so I want to create dynamic template which takes care for tax calculations. I thought of to create an array to store distinct tax values from XML data and then to perform calculation but don’t know how to do that.
    Can some body help me out as this is very critical and urgent?
    Note: Tax calculation can be done at line item level itself but there are some scenarios where additional discounts are there so tax calculation can not be done at line item level.
    Below is the sample XML data
    <?xml version="1.0" encoding="UTF-8" ?>
    - <ListOfBipActionTest>
    - <Action>
    <AccountId>1</AccountId>
    <PartName>17211KCC900LS</PartName>
    <TAX>12.5</TAX>
    <QTY>40</QTY>
    <UNITPRICE>47.06</UNITPRICE>
    <DIS>15.00</DIS>
    <TaxType>CST</TaxType>
    </Action>
    - <Action>
    <AccountId>2</AccountId>
    <PartName>17213KCC900LS</PartName>
    <TAX>12.5</TAX>
    <QTY>50</QTY>
    <UNITPRICE>19.53</UNITPRICE>
    <DIS>8.00</DIS>
    <TaxType>CST</TaxType>
    </Action>
    - <Action>
    <AccountId>3</AccountId>
    <PartName>28302KAG900S</PartName>
    <TAX>12.5</TAX>
    <QTY>50</QTY>
    <UNITPRICE>59.49</UNITPRICE>
    <DIS>15.00</DIS>
    <TaxType>CST</TaxType>
    </Action>
    - <Action>
    <AccountId>4</AccountId>
    <PartName>2830AKAG900S</PartName>
    <TAX>12.5</TAX>
    <QTY>10</QTY>
    <UNITPRICE>168.7</UNITPRICE>
    <DIS>15.00</DIS>
    <TaxType>CST</TaxType>
    </Action>
    - <Action>
    <AccountId>4</AccountId>
    <PartName>91001GF6000S</PartName>
    <TAX>4.00</TAX>
    <QTY>60</QTY>
    <UNITPRICE>115.34</UNITPRICE>
    <DIS>17.00</DIS>
    <TaxType>CST</TaxType>
    </Action>
    </ListOfBipActionTest>
    Thanks
    Ashish

    Dear Efstratios Kara,
    I installed SAP Integration Kit 3.1. Yes I installed the integration kit after installing CR.
    I have uninstalled the earlier version and i have reinstalled CR with (12.3.0.601) version.
    But still i cant view the SAP connectivity. can u tell me from which version they have included this connectivity option in CR.
    If CR going to support SAP Table connectivity on specific version, what is that version.
    Waiting for your reply.
    Regards,
    Suman

  • I'm getting a notice on my iPad saying...Provisioning Expiration "Lynx Enterprise Release" expires in 3 days...show or remind. Option are verify or remove...which I am hesitant to do because the icon it shows next to it is the one for "settings".

    I'm getting a notice on my iPad saying...Provisioning Expiration "Lynx Enterprise Release" expires in 3 days...show or remind. Option are verify or remove...which I am hesitant to do because the icon it shows next to it is the one for "settings".

    Why is that making you hesitate?  You can't accidentally remove any of the built-in apps, that I'm aware of.

  • How to create a dynamic RTF report which creates dynamic columns based on dynamic column selection from a table?

    Hi All,
    Suppose I have table, whose structure changes frequently on daily basis.
    For eg. desc my_table gives you following column name on Day 1
    SQL > desc my_table;
    Output
    Name
    Age
    Phone
    On Day 2, two more columns are added, viz, Address and Salary.
    SQL > desc my_table;
    Output
    Name
    Age
    Phone
    Address
    Salary
    Now I want to create an Dynnamic RTF report which would fetch data from ALL columns from my_table on daily basis. For that I have defined a concurrent program with XML as output type and have attached a data template/data definition to it which takes in XML as input and gives final output of conc program in EXCEL layout. I am able to do this for constant number of columns, but dont know how to do it when the number of columns to be displayed changes dynamically.
    For Day 1 my XML file should be like this.
    <?xml version="1.0" encoding="UTF-8"?>
    <dataTemplate name="XYZ" description="iExpenses Report" Version="1.0">
    <dataQuery>
    <sqlStatement name="Q2">
    <![CDATA[
    SELECT Name
    ,Age
    ,Phone
    FROM my_table
    ]]>
    </sqlStatement>
    </dataQuery>
    <dataStructure>
    <group name="G_my_table" source="Q2">
      <element name="Name" value="Name" />
      <element name="Age" value="Age" />
      <element name="Phone" value="Phone" />
    </group>
    </dataStructure>
    </dataTemplate>
    And my Day 1, EXCEL output from RTF template should be like this.
    Name     Age     Phone
    Swapnill     23     12345
    For Day 2 my XML file should be like this. With 2 new columns selected in SELECT clause.
    <?xml version="1.0" encoding="UTF-8"?>
    <dataTemplate name="XYZ" description="iExpenses Report" Version="1.0">
    <dataQuery>
    <sqlStatement name="Q2">
    <![CDATA[
    SELECT Name
    ,Age
    ,Phone
    ,Address
    ,Salary
    FROM my_table
    ]]>
    </sqlStatement>
    </dataQuery>
    <dataStructure>
    <group name="G_my_table" source="Q2">
      <element name="Name" value="Name" />
      <element name="Age" value="Age" />
      <element name="Phone" value="Phone" />
      <element name="Address" value="Address" />
      <element name="Salary" value="Salary" />
    </group>
    </dataStructure>
    </dataTemplate>
    And my Day 2, EXCEL output from RTF template should be like this.
    Name     Age     Phone     Address     Salary
    Swapnill     23     12345         Madrid     100000
    Now, I dont know below things.
    Make the XML dynamic as in on Day 1 there must be 3 columns in the SELECT statement and on Day 2, 5 columns. I want to create one dynamic XML which should not be required to be changed if new columns are added in my_table. I dont know how to create this query and also create their corresponding elements below.
    Make the RTF template dyanamic as in Day1 there must 3 columns in EXCEL output and on Day 2, 5 columns. I want to create a Dynamic RTF template which would show all the columns selected in Dynamic XML.I dont know how the RTF will create new XML tags and how it will know where to place it in the report. Means, I can create RTF template on Day 1, by loading XML data for 3 columns and placing 3 XML tags in template. But how will it create and place tags for new columns on Day 2?
    Hope, you got my requirement, its a challenging one. Please let me know how I can implement the required solution using RTF dynamically without any manual intervention.
    Regards,
    Swapnil K.
    Message was edited by: SwapnilK

    Hi All,
    I am able to fulfil above requirement. Now I am stuck at below point. Need your help!
    Is there any way to UPDATE the XML file attached to a Data Definition (XML Publisher > Data Definition) using a standard package or procedure call or may be an API from backend? I am creating an XML dynamically and I want to attach it to its Data Definition programmatically using SQL.
    Please let me know if there is any oracle functionality to do this.
    If not, please let me know the standard directories on application/database server where the XML files attached to Data Definitions are stored.
    For eg, /$APPL_TOP/ar/1.0/sql or something.
    Regards,
    Swapnil K.

  • How to create a variant which take dynamic weekend dates only

    Hello All-
    I would like to create a variant which will take the ship date as saturday and sunday dynamically from current date to next two
    months.
    I was looking at this link but dont see any option which can serve my purpose.
    http://help.sap.com/saphelp_nw70/helpdata/EN/c0/98039be58611d194cc00a0c94260a5/content.htm
    Thanks,
    FJ

    hi
    this is to inform you that; please check shipping point calendar or plant claendar that SATRDAY AND SUNDAY AS ACTIVE
    this can be achieved in SHD0 -
    To assign a date calculation variable to an existing variant by selecting attributes goto change mode and select D -
        here your requriment is to tae SATURDAY AND SUNDAY ALS into consideration for shipment or creating a delivery right.
    giyou will have to create 4 + 4 = 8 varints in total to ful fill your requriment.
    the procedure is as follows; today is WEDNESDAY
    please choose current day +/- days = +3 days to mae it to reach upto friday and saturday also and sunday you want to ship high light those days
    proceed with your requriment.
    hope this clears your issue.
    balajia

  • Dynamic actions - how to create an infotype with a date - 1 day.

    Hi everyone,
    I need a requirement to change an infotype through dynamic action with ENDDA = BEGDA of maintaned infotype(0000) - 1 day.
    In other words when a  personel action is performed, another infotype (2001) should appear for change, and in the validity period of this infotype should end with the day before the start of the personel action.
    is it possible to achieive this using dynamic actions? how?
    Thanks!
    Stanislaw Adamski

    Hi Adamski,
    A dynamic action has the following components.
    Infotype Number (INFTY): specifies the infotype for which you want the dynamic action triggered
    Subtype (SUBTY): narrows the focus to a specific subtype
    Field Name (FIELDN): starts your action when a maintenance function is performed on a particular field
    Function (FC): specifies the various maintenance operations to which your dynamic action would respond. They are 02 (change); 04 (create); 06 (create and change); 08 (delete); 10 (change and delete); 12 (create and delete). Dynamic actions are only applicable in maintenance operations, not in display functions.
    Sequence Number (NO): refers to a sequential number.
    Step (A): specifies a particular type of action. No dynamic action is executed if the function character has a value other than one of the following:
                 P: Plausibility checks, which allow you to check certain conditions.          
                 I: Calls an infotype for processing
                 W: Called after the I statement and used to assign values to screen fields while creating or copying another infotype record through the I statement 
                  F: Calls a FORM routine (subroutines in ABAP) during your action. The routine may reside in or out the module pool MPNNNN00.
                 V: Lets you treat collectively a number of fields for which you want to define a common dynamic action
                  M: Sends SAP Office mail
    Variable function part: The variable function part along with the step indicator forms the core part of your action. It specifies the processing details when the dynamic action is triggered. For example: 
    you have to look for the scenario what you are planning tyo create .
    The maintenance of dynamic actions is done via the view V_T588Z, as shown in 1 (IMG menu path Personnel Management>Global Settings in Personnel Management>Basic Settings>Infotypes>Create Dynamic Actions
    Here you havev to use conditions INS for the infotype what you want to create..
    Please brief the light on the scenario.
    Warm Regards,
    Kapil Kaushal

  • MS Project 2013 - How to create a report filter to show Tasks Completed Last Week

    I am attempting to create a report that can show all tasks that have been completed in the past week.  When I create the filter I can find no inherent way for this to be done and I see no basis for the logic necessary to complete this in the other predefined
    filters.  Essentially I understand the filter tool enough to be able to display all completed tasks, what i am lacking is the syntax necessary to limit the results in the "value(s)" section of the Filter Definitions screen to only present the
    previous weeks results.
    Something like this would be ideal, but it does not seem to work  "Start of the week is:"? -7d
    Any assistance with this question would be greatly appreciated.

    Thanks Rod I am going to give this a try.  I have a related question with regard to the Values that you can filter against.   I attempted to attach a screenshot of the
    filter definition for Tasks Due This week, but I am not verified so it will not allow for that.  If you go to the view tab in Project 2013, select more filters in the data section, you can select the  Tasks
    Due This Week filter and select edit.  In here you will see the values I am talking about.  I am thinking that there has to be a way to change the value that is used
    here ("Start of the week is:"?) to be that - 7 days.  To that point I have not seen anywhere that these values (EXAMPLE: "Start
    of the week is:"?) are defined, yet they are actionable in the application and are calculated values that the filter seems to understand.  They
    do not exist in the drop down for the values and I cannot find a list of all available values that MS Project will support. 
    Thank you all again for the assistance, I will give your idea a shot this morning and let you know how it goes.

Maybe you are looking for

  • Help with JTree refresh

    I am having trouble displaying a JTree with newly added nodes. I have a JTree, inside a JPanel, JScrollPane and JSplitPane. I create the JTree with a single root node which displays correctly. I update the JTree with new children which displays corre

  • Can Javascript trigger an action in a swf file?

    Earlier I was able to create flash buttons in a swf object in a widget on a Jive page, and have each of them trigger a separate Javascript function. That worked well.I used this in Flash: import flash.external.ExternalInterface; Now I would like to b

  • When to use primitive numbers range

    Hi I am a noob and was just wondering in what programming situations I would use javas various number primitives e.g. int, double, byte, long, short, float. The only situations I have used numbers is: int - to represent whole numbers double - to repr

  • Clarifications on How to Activate ABAP Proxies

    Hi, Iam doing Proxy Outbound Scenario Iam doing the following WEBLOG to activate the ABAP Proxy /people/vijaya.kumari2/blog/2006/01/26/how-do-you-activate-abap-proxies In this BLOG they have mentioned 3 steps to achieve the requirement. Do we need to

  • Errors in slider action

    Hello guys, I want to use a slider to show some images, but I'm missing something in the script. Here's what I did so far. http://www.acaray.com/public/Sebastian/borrar-roby.fla http://www.acaray.com/public/Sebastian/borrar-roby.swf Two years ago I m