Date Filter via Query Variable

Hi,
I have a DSO with the following entries.
Document Number.                 Approval Stage.            Approved Date.             Approved  Time.     Approved By.
A2000.                                                     1.              20.06.2011.          8:00.               Manager.
A2000.                     2.              20.06.2011.          9:30.               VP.
A2000.                     3.                         21.06.2011.          7:30.               SVP.
A1000.                    1.              21.06.2011.          15:30.               SVP.
A1000.                    2.              21.06.2011.          16:00.               EVP.
A3000.                    1.              21.06.2011.          11:30.               Manager.
A3000.                    2.              21.06.2011.          12:30.               VP.
A3000.                    3.               21.06.2011.          13:45.               SVP.
A3000.                    4.              21.06.2011.          15:00.               EVP.
I need a query that returns me the document number along with the last approved person and time.
Document Number.                  Approval Stage.           Approved Date.             Approved  Time     .Approved By.
A2000.                     3.                         21.06.2011.          7:30.               SVP
A1000.                    2.              21.06.2011.          16:00.               EVP
A3000.                    4.              21.06.2011.          15:00.               EVP
Is there a way to achieve this via query itself?

Hi  Suraj,
  Create a top layer over this DSO say a cube and do full load.
In the transformation , please do like this.
Sort ur dso date by document calday descending time descending.
Delete adjacent duplicates comparing document.
And that ur desired output.I am not sure hwo to achieve this direclty at report level.
Regards
Vamsi

Similar Messages

  • Date Picker for Query Variable

    Hello,
    I have a query, which has a input variable as date. For the Query Variables when i drag and create an input form, i have the field as input field. How do i change this field to a date picker drop down...I do not get any option to make it as a date picker/calendar...
    REgards,
    Vikram

    Hello Vikram,
    If I understand correctly, the field type is String, but it represents a Date. You want to be able to edit it as such.
    1. In the input Form open the Define Data dialog (using the Right Click context menu) and add a field of type Date (letu2019s say its name is u201CDATE1u201D).
    2. On the link between the input Form and the Service Open the Map Data dialog using Right Click => Map Datau2026
    3. Find the relevant Field Assign in the table. Here you want to get the Date value converted into a String. From the Assign Value drop down you can choose Define Expression to open the Dynamic Expression Editor (you can skip this and write the value yourself in the Assign Value input if you know what to write).
    4. On the right hand side you have model elements and functions to create an expression. You can use the function DSTR(@DATE,[format]) u2013 where parameter 1 is the Date field and parameter 2 is the Format (optional). The function returns a String representation of a given Date.
    5. Your expression can look like this for example: =DSTR(@DATE1,"dd/mm/yyyy"), assuming the name of the new Date field in the Form is DATE1.
    6. You can remove the old Text field from the Input Form if you donu2019t need it u2013 using the Define Data dialog.
    Hope this helps,
    Udi

  • Dynamic default date filter in Query Panel

    I have a report in which I want to always filter data up until the previous Saturday based on a certain date field. e.g. if date today is 2nd July then the report can have data up to 28th June only and nothing after that.
    Is there a way I can set something up like this in the Query panel itself? If not, is there an alternate method?

    Vivek,
    Create an object at universe level with the following syntax
    [Last_Saturday] = next_day(sysdate,'SUNDAY')-1
    Now create a prompt in query filter on Date like [Date] --- lessthan or equal to --- [Last_Saturday]
    or
    In Web I, create a variable
    Last_Saturday = RelativeDate(LastDayOfWeek(CurrentDate());-1).
    Use this Variable in block instead of original Date object.

  • Data filter when migrating Oracle to SQL

    How can I use a data filter (via t-sql or ??) when using SSMA to migrate data from Oracle to SQL Server ?

    Hi sqlworker,
    SQL Server Migration Assistant for Oracle are designed to migrate data from Oracle to SQL Server, we can convert and synchronize the schema of database, the particular category of the schema, and the attributes of objects. However, we can only use data filter
    to help you retrieve from a database table by using the WHERE clause to specify search conditions in SQL. According to your description, we need to verify if you just want to migrate some specific data from Oracle to SQL Server, or just use data filter in
    SQL Server after migration. You can post more information for analysis.
    For more information, you can review the following article.
    migrating
    data form Oracle to SQL Serve via SSMA.
    Filtering Data Retrieved from Database Table in SQL
    Regards,
    Sofiya Li
    Sofiya Li
    TechNet Community Support

  • Row Level Security - Data filter - Roles Variable Not working in OBIEE 11.1.1.7.1

    Hi all,
    Previously, we were using OBIEE 11.1.1.5.0 and we were able to assign users to application roles by using the initialization block to assign the ROLES session variables.
    1. My USER_SECURITY table in Oracle database:
    USER_NAME | USER_ID | ROL
    user1       | 1723    | GobalDataRole
    user2       | 1739    | GobalDataRole
    user3      | 1743    | GobalDataRole
    2. The SQL query in my session initialization block:
    select USER_NAME, USER_ID, ROL
    from USER_SECURITY
    where USERNAME = ':USER'
    3. The row-wise initialization option is not checked.
    4. In the Oracle Enterprise Manager Fusion Middleware Control, we created new application role: GobalDataRole and sync with rpd.
    5. The GobalDataRole is used in the RPD to filter the data under permissions --> data filter. GobalDataRole only has access to Country A data.
    6. Result: under my account, also in rpd Manage --> Sessions, user variable details
    User_name , user_id & Rol variable is working fine as expected,
    When we log in as user1, we can see in My Account, user assigned to: BI Consumers; Authenticated Role; GobalDataRole
    When we log in as user2, we can see in My Account, user assigned to: BI Consumers; Authenticated Role; GobalDataRole
    When we log in as user3, we can see in My Account, user assigned to: BI Consumers; Authenticated Role; GobalDataRole
    User1, User2, and User3 are able to see the data correctly according the their data access setup.
    Now, we using OBIEE 11.1.1.7.1 and using the same method, but we not able to assign users to application roles by using the initialization block to assign the ROLES session variables anymore.
    Result:
    User_name & user_id variable is working fine as expected, but the ROl variaible is not capturing the DB value,
    When we log in as user1, we can see in My Account, user assigned to: BI Consumers; Authenticated Role
    When we log in as user2, we can see in My Account, user assigned to: BI Consumers; Authenticated Role
    When we log in as user3, we can see in My Account, user assigned to: BI Consumers; Authenticated Role
    User1, User2, and User3 can see all data (which is wrong) because they are not assigned to the correct application role that sets the data restriction/filter.
    Has anyone encountered the same issue? Any advice on how to solve this?
    Thanks in advance!
    Satheeshkumar P

    Thanks user10615659     ,
    - Yes the variable ROLES available in OBIEE 11.1.1.7.1
    - Tested the init block and variables in offline rpd its working as expected.
    - In online rpd, except ROLES and GROUP variable remaining variables working fine.
    - Verified log file in both online and offline init block testing - the init block execution is successful.
    Thanks

  • Date filter is coming in physical query

    Hi,
    I have following problem,please help me.
    1.My OBI in connecting Vertica Database through ODBC 3.5.
    2.It's working fine for all report and if I give date filter condition then in physical query ,which is sending by OBI to Vertica doesn't have date filter condition:
    Ex: I have Call Type,and Date as dimension table and Call Mesures as fact table
    when I am selecting in answer select Call type name,measure1 for a particula Call type='Dropped'
    Physical Query generated by OBI as
    Select Call type name,mesure 1 from call_type_dim a,call_measures b where a.call_type_key=b.call_type_key and call_type_name='Dropped'
    But when I am loking for particular calandar date(for 07/27/2009:
    it's generating following query:
    Select Call type name,mesure 1 from call_type_dim a,call_measures b,date c where a.call_type_key=b.call_type_key and call_type_name='Dropped' and c.calandar_date_key=b.calandar_date_key
    But in logical query it's showing calandar_date='07/27/2009'
    I am expecting OBI should generate query:
    Select Call type name,mesure 1 from call_type_dim a,call_measures b,date c where a.call_type_key=b.call_type_key and call_type_name='Dropped' and c.calandar_date_key=b.calandar_date_key and c.calandar_date='07/27/2009'
    Where I have done wrong ,please help for Oracle DB i.e OCI 10g ,it's generating correct physical query

    Check cache settings.
    prefix this in prompt
    set variable disable_cache_hit=1;
    btw: Did you get a chance to look at https://forums.oracle.com/thread/2594287

  • Can we use session variables in BI publisher's Data Model SQL Query?

    Hi Experts,
    We need to implement Data level security in BI Publisher 11g.
    In OBIEE we do so by using session variables, so just wanted to ask if we can use the same session variables in BI Publisher as well
    ie can we include the where clause in the Data Models SQL Query like
    Where ORG_ID = @{biServer.variables['NQ_SESSION.INV_ORG']}
    Let me know your views on this.
    PS: We are implementing EBS r12 security in BI Publisher.
    Thanks

    Read this -> OBIEE 11g: Error: "[nQSError: 23006] The session variable, NQ_SESSION.LAN_INT, has no value definition." when Creating a SQL Query using the session variable NQ_SESSION.LAN_INT in BI Publisher [ID 1511676.1]
    Follow the ER - BUG:13607750 - NEED TO BE ABLE TO SET A SESSION VARIABLE IN OBIEE AND USE IT IN BI PUBLISHER
    HTH,
    SVS

  • How can I do for a row of a query be data provider for a variable?

    Hi friends, I have a problem !
    How can I do for a row of a query be data provider for a variable?
    I need that a value of variable be stored when the user select a row in a query. At the BPS we can do this configuring the variable selector in WIB, and in a WAB how I can do this ?
    Best regards,
    Gustavo Liberado

    In this case when I press the key to call other forms I need to wait for the response in the secondary form and then process the result.That is exactly what a "modal JDialog" (or JOptionPane) are used for.
    Try it. Create a short demo program. All you need is a JFrame with a single button to show the modal dialog. All you modal dialog needs is a single button to close the dialog. After you show the modal dialog add a System.out.println(...) statement in your code and you will see that it is not executed until the dialog is closed.
    Then once you understand the basics you add the code to your real program.
    If you need further help then you need to create a [Short, Self Contained, Compilable and Executable, Example Program (SSCCE)|http://homepage1.nifty.com/algafield/sscce.html], that demonstrates the incorrect behaviour.
    Don't forget to use the Code Formatting Tags so the posted code retains its original formatting. That is done by selecting the code and then clicking on the "Code" button above the question input area.

  • Why does DB2 Data Flow Task query does not accept a date coming from a string or datetime variable in SSIS?

    I am trying to compare a DB2 date format to a date variable from SSIS. I have tried to set the variable as datetime and string. I have also casted the SQL date as date in the data flow task. I have tried a number of combinations of date formats, but no luck
    yet. Does anyone have any insights on how to set a date (without the time) variable and be able to use it in the data flow task SQL? It has to be an easy way to accomplish that. I get the following error below:
    An invalid datetime format was detected; that is, an invalid string representation or value was specified. SQLSTATE=22007".
    Thanks!

    Hi Marcel,
    Based on my research, in DB2, we use the following function to convert a string value to a date value:
    Date(To_Date(‘String’, ‘DD/MM/YYYY’))
    So, you can set the variable type to String in the package, and try the following query:
    ACCOUNT_DATE  BETWEEN  '11/30/2013' AND  Date(To_Date(?, ‘DD/MM/YYYY’))
    References:
    http://stackoverflow.com/questions/4852139/converting-a-string-to-a-date-in-db2
    http://www.dbforums.com/db2/1678158-how-convert-string-time.html
    Regards,
    Mike Yin
    TechNet Community Support

  • Variable : Key date of the query

    Hello Everyone,
    I would like to share couple of points with you all during this cool holiday season.
    I need to use variable for a  time dependent hierarchy. I have a variable and selected that. Again I want to restrict this hierarchy by using variable for key date of the query.
    I can select a variable for the hierarchy. But I am not able to restrict the hierarchy.  When I choose a varaible for "key date of the query" system responed with an error message ' For characteristic 0Date, enter value in permitted format'. So I am not able to select a variable for "key date of the query " and restrict the hierarchy to choose a node.
    Please share your valuable inputs.
    Thanks in advance
    RJ

    Hello,
    what is the variable name that you are using to restrict the hierarchy date?
    Regards,
    Daniel

  • CAML Query help using recursiveall and date filter together

    Hello,
    Please let me know what is wrong with the query below,
    <View Scope='RecursiveAll'>
    <Query>
    <Where>
    <Leq>
    <FieldRef Name='Modified'/>
    <Value Type='DateTime' IncludeTimeValue='FALSE'>date value</Value>
    </Leq>
    </Where>
    </Query>
    </View>
    Above query returns zero items, it should return 3 items in my current scenario.
    If I do just the folllowing, three items are returned
    <View Scope='RecursiveAll'>
    <Query>
    </Query>
    </View>
    I need date filter to work with recursiveall . Not sure what is wrong with the query
    Student For Life

    Hi,
    Per my understanding, you might want to use “RecursiveAll” with date filter in your CAML query statement.
    I suggest you take the code demo below which writes in Server Object Model for a try in your environment to see if it can work for you:
    using (SPSite oSiteCollection = new SPSite("http://yoursite"))
    using (SPWeb web = oSiteCollection.RootWeb)
    SPList list = web.Lists["List1"];
    SPQuery qry = new SPQuery();
    qry.Query =
    @" <Where>
    <And>
    <Leq>
    <FieldRef Name='Modified' />
    <Value Type='DateTime'>2015-03-07T12:00:00Z</Value>
    </Leq>
    <Eq>
    <FieldRef Name='FSObjType' />
    <Value Type='Integer'>0</Value>
    </Eq>
    </And>
    </Where>";
    qry.ViewFields = @"<FieldRef Name='Title' />";
    qry.ViewAttributes = "Scope='RecursiveAll'";
    SPListItemCollection items = list.GetItems(qry);
    foreach (SPListItem item in items)
    Console.WriteLine(item["Title"]);
    Thanks
    Patrick Liang
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • ColdFusion: onload pass a variable via query string

    Hey guys - I have a form on a page that creates a coupon code (something like 879COUPON) and emails it to the user when they submit the form. They are also taken to a thank you page after submitting the form.
    What I want is to pass the variable (879COUPON) via query string to an outside URL (www.notmysite.com?id=879COUPON) when the thank you page loads.
    I use ColdFusion to generate the code, so is there a ColdFusion way to automatically send the query string when the second page loads? Or do I need to do some kind of ColdFusion/JavaScript hybrid?

    Thanks for the reply.  I just want to pass the query string info to the page without actually going to the page.  I also want it to be automatic when they arrive on the first page, the second page would then recieve the query string info and the person on the page would not be aware of it being passed (i.e., they wouldn't have to click a link).

  • How to track query variable input in FM

    Hi All,
    There are a MultiCube1 and a Query1 based on it.
    There is Virtual Infoprovider1 based on Query1.
    And finaly there is a Query2 based on Virtual Provider1.
    How to check inputed variables of Query2 in FM for Virtual Provider1.

    Hi,
    there is no way to read query variables in the is_protected method, since data slice run time and query run time are separated.
    Of course you can do the 'usual' trick by implementing an exit variable, export some variable values to memory and read it in the is_protected method.
    But is_overlapping is the correct method to read the used selection (of a query of planning function filter) to do some initializing work. This method is called when a function is processed or a query will be opened. Is_protetecd is called on a record basis, i.e. maybe very often.
    Regards,
    Gregor

  • Consequences of using unconstrained query variables?

    I'm trying to determine what the consequences are (if any) of using
    unconstrained query variables vs using variables with a contains clause in
    order to navigate through collection fields.
    In the Java Data Objects book the example given for collection field
    navigation is as follows...
    String filter = "customer.orders.contains(o) && o.dispatched == false";
    q.declareVariables("Order o");
    Using uncontrained variables this could be rewritten as...
    String filter = "customer.orders.dispatched == false";
    I'm using kodo 2.5.5 and need to navigate through multiple collection
    fields. It is far simpler and easier for me to do this using the second
    example above, but I can't find any documentation describing whether its a
    good idea or not. So far the queries generated are correct.
    Regards
    Nathan

    Hi Marc,
    Using the query form with the variable is portable at present, but I can't
    help wonder whether the spec will change in the future to make using QL
    simpler. All of the examples given in both the JDO book and Kodo
    documenation only ever demonstrate the simplest example. Trying to construct
    a query that spans multiple collections is very time consuming as the
    smallest error in the QL seems to result in "red herring" error messages.
    I've constructed and example for you that uses both methods and produces
    exactly the same SQL. I'm very tempted to continue using the unconstrained
    method because it works and is so simple. Note that in the generated SQL,
    the reason that the table "BOA" is joined to most of the other tables is due
    to vertical inheritance. The example data model is a very cut down diagram
    purely to show the relationships.
    "Marc Prud'hommeaux" <[email protected]> wrote in message
    news:[email protected]...
    Nathan-
    You should use the query form with the variable, since it is portable
    and spec compliant.
    I'm actually a little surprised that the second filter works at all.
    What is the SQL that results from both the queries?
    In article <[email protected]>, nathan boyes wrote:
    I'm trying to determine what the consequences are (if any) of using
    unconstrained query variables vs using variables with a contains clause
    in
    order to navigate through collection fields.
    In the Java Data Objects book the example given for collection field
    navigation is as follows...
    String filter = "customer.orders.contains(o) && o.dispatched == false";
    q.declareVariables("Order o");
    Using uncontrained variables this could be rewritten as...
    String filter = "customer.orders.dispatched == false";
    I'm using kodo 2.5.5 and need to navigate through multiple collection
    fields. It is far simpler and easier for me to do this using the second
    example above, but I can't find any documentation describing whether itsa
    good idea or not. So far the queries generated are correct.
    Regards
    Nathan
    Marc Prud'hommeaux [email protected]
    SolarMetric Inc. http://www.solarmetric.com
    begin 666 query syntax.txt
    M"7!R:79A=&4@=F]I9"!P<F]J96-T475E<GE5;F-O;G-T<F%I;F5D*$ET96T@
    M:71E;2E[#0H)"0T*"0E%>'1E;G0@97@@/2!C;VYT97AT+F=E=%!E<G-I<W0H
    M*2YG971%>'1E;G0H4')O:F5C="YC;&%S<RP@=')U92D[#0H)"5%U97)Y('$[
    M#0H)"4-O;&QE8W1I;VX@8V]L(#T@;G5L;#L-"@D)4W1R:6YG0G5F9F5R(&9I
    M;'1E<B ](&YE=R!3=')I;F="=69F97(H*3L-"@T*"0EF:6QT97(N87!P96YD
    M*")H;VUE1F]L9&5R+G)O;W1&;VQD97(N:6YD:7)E8W1#:&EL9')E;BYF;VQD
    M97))=&5M<RYI=&5M(#T]('!A<DET96TB*3L-"@D)#0H)"7$@/2!C;VYT97AT
    M+F=E=%!E<G-I<W0H*2YN97=1=65R>2AE>"D[#0H)"7$N9&5C;&%R94EM<&]R
    M=',H(FEM<&]R="!A82YC;W)R97-P;VYD96YC92Y)=&5M.R(I.PT*"0EQ+F1E
    M8VQA<F5087)A;65T97)S*"))=&5M('!A<DET96TB*3L-"@D)<2YS971&:6QT
    M97(@*&9I;'1E<BYT;U-T<FEN9R@I*3L-"@D)#0H)"6-O;" ]("A#;VQL96-T
    M:6]N*2!Q+F5X96-U=&4H:71E;2D[#0H)"0T*"7T-"@T*"7!R:79A=&4@=F]I
    M9"!P<F]J96-T475E<GE5<VEN9U9A<FEA8FQE<RA)=&5M(&ET96TI>PT*"0D-
    M"@D)17AT96YT(&5X(#T@8V]N=&5X="YG971097)S:7-T*"DN9V5T17AT96YT
    M*%!R;VIE8W0N8VQA<W,L('1R=64I.PT*"0E1=65R>2!Q.PT*"0E#;VQL96-T
    M:6]N(&-O;" ](&YU;&P[#0H-"@D)4W1R:6YG0G5F9F5R(&9I;'1E<B ](&YE
    M=R!3=')I;F="=69F97(H*3L-"@D)4W1R:6YG0G5F9F5R(&EM<&]R=',@/2!N
    M97<@4W1R:6YG0G5F9F5R*"D[#0H)"5-T<FEN9T)U9F9E<B!V87)I86)L97,@
    M/2!N97<@4W1R:6YG0G5F9F5R*"D[#0H)"0T*"0EI;7!O<G1S+F%P<&5N9"@B
    M:6UP;W)T(&%A+F-O<G)E<W!O;F1E;F-E+DET96T[("(I.PT*"0EI;7!O<G1S
    M+F%P<&5N9"@B:6UP;W)T(&%A+F9O;&1E<BY&;VQD97))=&5M.R B*3L-"@D)
    M:6UP;W)T<RYA<'!E;F0H(FEM<&]R="!A82YF;VQD97(N1F]L9&5R.R(I.PT*
    M#0H)"79A<FEA8FQE<RYA<'!E;F0H(D9O;&1E<B!V87));F1I<F5C=$-H:6QD
    M1F]L9&5R.R(I.PT*"0EV87)I86)L97,N87!P96YD*")&;VQD97))=&5M('9A
    M<D9O;&1E<DET96TB*3L-"@D)"0D-"@D)9FEL=&5R+F%P<&5N9"@B:&]M949O
    M;&1E<BYR;V]T1F]L9&5R+FEN9&ER96-T0VAI;&1R96XN8V]N=&%I;G,H=F%R
    M26YD:7)E8W1#:&EL9$9O;&1E<BD@)B8@(BD[#0H)"69I;'1E<BYA<'!E;F0H
    M(G9A<DEN9&ER96-T0VAI;&1&;VQD97(N9F]L9&5R271E;7,N8V]N=&%I;G,H
    M=F%R1F]L9&5R271E;2D@)B8@(BD[#0H)"69I;'1E<BYA<'!E;F0H(G9A<D9O
    M;&1E<DET96TN:71E;2 ]/2!P87))=&5M(BD[#0H)"0T*"0EQ(#T@8V]N=&5X
    M="YG971097)S:7-T*"DN;F5W475E<[email protected]*"0EQ+F1E8VQA<F5);7!O
    M<G1S*&EM<&]R=',N=&]3=')I;F<H*2D[#0H)"7$N9&5C;&%R95!A<F%M971E
    M<G,H(DET96T@<&%R271E;2(I.PT*"0EQ+F1E8VQA<F5687)I86)L97,H=F%R
    M:6%B;&5S+G1O4W1R:6YG*"DI.PT*"0EQ+G-E=$9I;'1E<B H9FEL=&5R+G1O
    M4W1R:6YG*"DI.PT*"0D-"@D)8V]L(#T@*$-O;&QE8W1I;VXI('$N97AE8W5T
    692AI=&5M*3L-"@D)#0H)"0T*"7T-"@``
    `
    end
    begin 666 generatedQuery.sql
    M4T5,14-4($1)4U1)3D-4( T*"70P+DE$+" -"@ET,2Y*1$]#3$%34U@L( T*
    M"70Q+DI$3TQ/0TM8+" -"@ET,2Y#55)214Y404Q415)!5$E/3DE$+" -"@ET
    M,"Y!0U1)5D5?1"P@#0H)=# N8V]M<&]N96YT260L( T*"70P+F1A=&52;VQE
    M365M8F5R<TUO9&EF:65D7V0L( T*"70P+DAO;65&;VQD97))1"P@#0H)=# N
    M3U))1TE.04Q04D]*14-4240L( T*"70P+G!R;VIE8W13=&%T=7,L( T*"70P
    M+E)%1D5214Y#15]$+" -"@ET,"Y32$]25$1%4T-27T0@#0I&4D]-( T*"5!2
    M3TI%0U0@=# @24Y.15(@2D])3B -"@E"3T$@=#$@3TX@=# N240@/2!T,2Y)
    M1"!)3DY%4B!*3TE.( T*"4A/345&3TQ$15(@=#(@3TX@=# N2&]M949O;&1E
    M<DE$(#T@=#([email protected](@2D])3B -"@E"3T$@=#,@3TX@=#(N240@/2!T
    M,RY)1"!)3DY%4B!*3TE.( T*"49/3$1%4B!T-"!/3B!T,BYR;V]T1F]L9&5R
    M240@/2!T-"Y)1"!)3DY%4B!*3TE.( T*"4)/02!T-2!/3B!T-"Y)1" ]('0U
    M+DE$($E.3D52($I/24X@#0H)26YD:7)E8W1#:&EL9$9O;&1E<B!T-B!/3B!T
    M-"Y)1" ]('0V+FEN9&ER96-T4&%[email protected](@2D])3B -"@E&3TQ$
    M15(@=#<@3TX@=#8N:6YD:7)E8W1#:&EL9$ED(#T@=#<[email protected](@2D])
    M3B -"@E"3T$@=#@@3TX@=#<N240@/2!T."Y)1"!)3DY%4B!*3TE.( T*"49/
    M3$1%4DE414T@=#D@3TX@=#<N240@/2!T.2YP87)E;G1F;VQD97)I9"!)3DY%
    M4B!*3TE.( T*"4)/02!T,3 @3TX@=#DN240@/2!T,3 N240@#0I72$5212 -
    M"@DH=#DN:71E;6ED(#T@/RD@04Y$( T*"70Q+DI$3T-,05-36" ](#\I.B!;
    M<F5U<V5D/3$[<&%R86US/7LH:6YT*3,Q,3$L*%-T<FEN9REC;VTN;6%L;&5S
    C;VYS+G-E<G9I8V5N970N86$N<')O:F5C="Y0<F]J96-T?5T`
    `
    end
    begin 666 example datamodel.doc
    MT,\1X*&Q&N$`````````````````````/@`#`/[_"0`&```````````````!
    M````(@``````````$ ``) ````$```#^____`````"$```#_____________
    M____________________________________________________________
    M____________________________________________________________
    M____________________________________________________________
    M____________________________________________________________
    M____________________________________________________________
    M____________________________________________________________
    M____________________________________________________________
    M____________________________________________________________
    M____________________________________________________________
    M_______________________LI<$`"R )! ``\!*_````````$ ``````! ``
    M?@0```X`8FIB:N `X `````````````````````````)!!8`+@P``()J`0""
    M:@$`% ``````````````````````````````:0````````#__P\`````````
    M``#__P\```````````#__P\``````````````````````&P``````*@`````
    M````J ```*@`````````J `````````8`@```````!@"````````& (``!0`
    M`````````````$P"````````? (```````!\`@```````'P"````````? (`
    M``P```"(`@``# ```$P"````````X@X``+8```"@`@```````* "````````
    MH (```````"@`@```````* "````````A0L```````"%"P```````(4+````
    M````80X```(```!C#@```````&,.````````8PX```````!C#@```````&,.
    M````````8PX``"0```"8#P``( (``+@1``!&````APX``!4`````````````
    M````````````& (```````"%"P````````````````````````````!'"0``
    M/@(``(4+````````A0L```````"%"P```````(<.````````40P```````"H
    M`````````*@`````````H (``````````````````* "``"G!@``G X``!8`
    M``!1# ```````%$,````````40P```````"%"P``0 ```*@````(`0``H (`
    M```````8`@```````* "````````80X``````````````````%$,````````
    M````````````````````````````````````````````````````````````
    M````A0L```````!A#@```````%$,```0`@``40P``````````````````&$.
    M````````L $``&@````8`@``````````````````````````````````````
    M````````````````````````````````````````````80X```````"@`@``
    M`````)0"```,````,*'_R.K3PP%,`@``, ```'P"````````Q0L``#H```!A
    M#@``````````````````80X```````"R#@``, ```.(.````````80X`````
    M``#^$0```````/\+``!2````_A$```````!A#@```````%$,````````+ (`
    M`!(````^`@``#@```*@`````````J ````````"H`````````*@`````````
    M`@#9````" @(" @(" @(" @(" @(" @(" UP<F]J96-T#0UH;VUE1F]L9&5R
    M#0U2;V]T1F]L9&5R("A&;VQD97(@;V)J96-T*0T-26YD:7)E8W1#:&EL9')E
    M;B H1F]L9&5R(&]B:F5C="D-#69O;&1E<DET96T-#6ET96T-#0T-#0T-````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````! ``$P0``'X$``#Q````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M`````````````!P#:@````!#2A0`50@!;4@`!&Y(``1S2 D$=0@!`@`$```4
    M! ``' 0``!T$```H! ``*00``$0$``!%! ``9@0``&<$``!R! ``<P0``'@$
    M``!Y! ``>@0``'L$``!\! ``?00``'X$``#]````````````````_0``````
    M`````````/T```````````````#]````````````````_0``````````````
    M`/T```````````````#]````````````````_0```````````````/T`````
    M``````````#]````````````````_0```````````````/T`````````````
    M``#]````````````````_0```````````````/T```````````````#]````
    M````````````_0```````````````/T`````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M``````````$````2``0``!0$``!]! ``_?T`````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M```````````````````````````````$! `!`0(L`#&0: $?L((N(+#&02&P
    M" <BL @'(Y"@!220H 4EL ``%[#$`ABPQ (,D,0"````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````% `/``H``0!I``\``P```````````#@``$#Q
    M_P(`. `,``8`3@!O`'(`;0!A`&P````"````& !#2A@`7T@!!&%*& !M2 D,
    M<T@)#'1("00````````````````````````\`$% \O^A`#P`# `6`$0`90!F
    M`&$`=0!L`'0`( !0`&$`<@!A`&<`<@!A`' `: `@`$8`;P!N`'0`````````
    M``````````````D````5````,0```%,```!?````90```&8```!G````: ``
    M`'X````!````````````_____P($`````````0```````````/____\#! ``
    M``````$```````````#_____! 0````````!````````````_____P4$````
    M`````0```````````/____\&! ````````$```````````#_____!P0`````
    M```(`````0````$`_____P``````````!@````(````!`/____\`````````
    M`/____\``````0#_____```````````'`````P``````````````````````
    M``````D````5````,0```%,```!?````90```&8```!G````: ```&L`````
    M```````!```````"```````#```````$```````%```````&``````@'````
    M``@(``````C__P``````````?@````0```P```4`_____P$````&(/__`0`B
    M)J,```````````!^`````````````````!0```!_````G@``````````````
    M`( ```" F@```````````````( ```" ``0``'X$```#``````0``'X$```$
    M``````0``'T$```%````#P``\#@```````;P& ```"($```"````& ````$`
    M```!````(@```$ `'O$0````__\`````_P" @( `]P``$ `/``+P7@8``! `
    M"/ (````% ```"$$```/``/P_ 4```\`!/ H`````0`)\! `````````````
    M`````````````@`*\ @`````! ``!0````\`!/!"````$@`*\ @````"! ``
    M``H``!,`"_ &````@ ````$````0\ 0````/```````1\ 0````$```````-
    M\ 0```````$`#P`$\$(````2``KP" ````,$````"@``$P`+\ 8```" ````
    M`@```!#P! ```! ``````!'P! ````4```````WP! ```````@`/``3P0@``
    M`!(`"O (````! 0````*```3``OP!@```( ````#````$/ $`````0``````
    M$? $````#0``````#? $```````#``\`!/!"````$@`*\ @````%! ````H`
    M`!,`"_ &````@ ````0````0\ 0````````````1\ 0````-```````-\ 0`
    M``````0`#P`$\$(````2``KP" ````8$````"@``$P`+\ 8```" ````!0``
    M`!#P! ```!$``````!'P! ````H```````WP! ``````!0`/``3P0@```!(`
    M"O (````!P0````*```3``OP!@```( ````&````$/ $````$@``````$? $
    M````"P``````#? $```````&``\`!/!(````0@$*\ @````)! ````H``$,`
    M"_ 8````1 $$````?P$```$`OP$``! `_P$0`! ````0\ 0````.```````1
    M\ 0````#````#P`$\$@```!"`0KP" ````H$````"@``0P`+\!@```!$`00`
    M``!_`0```0"_`0``$ #_`1 `$ ```!#P! ````T``````!'P! ````,````/
    M``3P2 ```$(!"O (````"P0````*``!#``OP& ```$0!! ```'\!```!`+\!
    M```0`/\!$ `0````$/ $````# ``````$? $`````P````\`!/!(````0@$*
    M\ @````,! ````H``$,`"_ 8````1 $$````?P$```$`OP$``! `_P$0`! `
    M```0\ 0````+```````1\ 0````#````#P`$\$@```!"`0KP" ````T$````
    M"@``0P`+\!@```!$`00```!_`0```0"_`0``$ #_`1 `$ ```!#P! ````H`
    M`````!'P! ````,````/``3P2 ```$(!"O (````& 0``$ *``!#``OP& ``
    M`$0!! ```'\!```!`+\!```0`/\!$ `0````$/ $````" ``````$? $````
    M!0````\`!/!(````0@$*\ @````9! ````H``$,`"_ 8````1 $$````?P$`
    M``$`OP$``! `_P$0`! ````0\ 0````)```````1\ 0````&````#P`$\$@`
    M``!"`0KP" ```!L$``! "@``0P`+\!@```!$`00```!_`0```0"_`0``$ #_
    M`1 `$ ```!#P! ````<``````!'P! ````4````/``3P2 ```$(!"O (````
    M' 0````*``!#``OP& ```$0!! ```'\!```!`+\!```0`/\!$ `0````$/ $
    M````!@``````$? $````!0````\`!/!(````0@$*\ @````=! ````H``$,`
    M"_ 8````1 $$````?P$```$`OP$``! `_P$0`! ````0\ 0````%```````1
    M\ 0````%````#P`$\$@```!"`0KP" ```!X$``! "@``0P`+\!@```!$`00`
    M``!_`0```0"_`0``$ #_`1 `$ ```!#P! ````0``````!'P! ````4````/
    M``3P2 ```$(!"O (````'P0````*``!#``OP& ```$0!! ```'\!```!`+\!
    M```0`/\!$ `0````$/ $`````P``````$? $````!0````\`!/!(````0@$*
    M\ @````@! ``0 H``$,`"_ 8````1 $$````?P$```$`OP$``! `_P$0`! `
    M```0\ 0````"```````1\ 0````%````#P`$\$(````2``KP" ````$$````
    M#@``4P`+\!X```"_`0``$ #+`0````#_`0``" `$`PD````_`P$``0```!'P
    M! ````$``````````0````(````#````! ````4````&````!P````@````)
    M````"@````L````,````#0````X````/````$ ```!$````2````?@````4$
    M```(!P``S!4``&04``#H%P``= ``````! 0```@'```L$ ``_!(``$@2``!T
    M```````@! ``) D``&P;``#8"0``(!P``'0``````!\$``#8"0``;!L``(P*
    M```@' ``= ``````'@0``"0)```8%0``V D``,P5``!T```````=! ``V D`
    M`!@5``","@``S!4``'0``````!P$```D"0``/!X``-@)``#P'@``= ``````
    M&P0``-@)```\'@``C H``/ >``!T```````8! ``V D``$@2``","@``_!(`
    M`'0``````!D$```D"0``2!(``-@)``#\$@``= ``````#00``-@)```\'@``
    MV D``'0B``!T```````,! ``V D``.@7``#8"0``(!P``'0```````L$``#8
    M"0``2!(``-@)``#,%0``= ``````"@0``-@)``"H# ``V D``"P0``!T````
    M```)! ``V D``%0&``#8"0``C H``'0```````($```(!P``. 0``%P-``!4
    M!@``= ```````P0```@'``","@``7 T``*@,``!T```````&! ``" <``" <
    M``!<#0``/!X``'0```````<$```(!P``="(``%P-``"0) ``= ``````````
    M`!0````=````)P```"D````S````10```%4```!G````<0```'\````'``<`
    M' `'`!P`!P`<``<`' `'```````4````&P```!T````G````9P```'$```!S
    M````=P```'\````'`#H`!P`Z``<`.@`'`#H`!P````````````$````!````
    M`@````H````1````$0```!,````4````&P```!T```!\````?P````0``P`$
    M``,`! `#``0``P`'``0``P`$``,`__\&````!P!N`&$`8@!O`'D`90!S`&P`
    M0P`Z`%P`1 !O`&,`=0!M`&4`;@!T`',`( !A`&X`9 `@`%,`90!T`'0`:0!N
    M`&<`<P!<`&X`80!B`&\`>0!E`',`7 !!`' `< !L`&D`8P!A`'0`:0!O`&X`
    M( !$`&$`= !A`%P`30!I`&,`<@!O`',`;P!F`'0`7 !7`&\`<@!D`%P`00!U
    M`'0`;P!2`&4`8P!O`'8`90!R`'D`( !S`&$`=@!E`" `;P!F`" `90!X`&$`
    M;0!P`&P`90`@`&0`80!T`&$`;0!O`&0`90!L`"X`80!S`&0`!P!N`&$`8@!O
    M`'D`90!S`#\`0P`Z`%P`1 !O`&,`=0!M`&4`;@!T`',`( !A`&X`9 `@`%,`
    M90!T`'0`:0!N`&<`<P!<`&X`80!B`&\`>0!E`',`7 !$`&4`<P!K`'0`;P!P
    M`%P`90!X`&$`;0!P`&P`90`@`&0`80!T`&$`;0!O`&0`90!L`"X`9 !O`&,`
    M!P!N`&$`8@!O`'D`90!S`#\`0P`Z`%P`1 !O`&,`=0!M`&4`;@!T`',`( !A
    M`&X`9 `@`%,`90!T`'0`:0!N`&<`<P!<`&X`80!B`&\`>0!E`',`7 !$`&4`
    M<P!K`'0`;P!P`%P`90!X`&$`;0!P`&P`90`@`&0`80!T`&$`;0!O`&0`90!L
    M`"X`9 !O`&,`_T #@ $````````````0`/(#`0`!````````````````````
    M```"$ ````````!^````0 ``" ! ``#__P$````'`%4`;@!K`&X`;P!W`&X`
    M__\!``@``````````````/__`0``````__\```(`__\`````__\```(`__\`
    M`````P```$<6D $```("!@,%! 4"`P2'>@`@````@ @`````````_P$`````
    M``!4`&D`;0!E`',`( !.`&4`=P`@`%(`;P!M`&$`;@```#46D $"``4%`0(!
    M!P8"!0<`````````$ ``````````````@ ````!3`'D`;0!B`&\`; ```#,F
    MD $```(+!@0"`@("`@2'>@`@````@ @`````````_P$```````!!`'(`:0!A
    M`&P````B``0`<0B(& #PT (``&@!`````-,R@4;3,H%&``````,`!P``````
    M`````````0`!````! `#$ $```````````````$``0````$`````````(0,`
    M\! `````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M" >@!;0`M "!@3(P````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M``````(```!3`P``````,H,1`/ 0``@`````````````````````````````
    M````````````__\2````````````````````!P!N`&$`8@!O`'D`90!S``<`
    M;@!A`&(`;P!Y`&4`<P``````````````````````````````_O\```4!`@``
    M`````````````````````0```."%G_+Y3V@0JY$(`"LGL]DP````5 $``! `
    M```!````B ````(```"0`````P```)P````$````J ````4```"X````!P``
    M`,0````(````V ````D```#H````$@```/0````*````$ $```P````<`0``
    M#0```"@!```.````- $```\````\`0``$ ```$0!```3````3 $```(```#D
    M! ``'@````$``````',`'@````$``````',`'@````@```!N86)O>65S`!X`
    M```!`````&%B;QX````+````3F]R;6%L+F1O= ``'@````@```!N86)O>65S
    M`!X````"````,P!B;QX````3````36EC<F]S;V9T(%=O<[email protected]``! ````
    M`.I6^@````! `````/* KNK3PP% `````/* KNK3PP$#`````0````,`````
    M`````P`````````#````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M`````````````````````````````````````````````````/[_```%`0(`
    M``````````````````````$````"U<W5G"X;$).7" `K+/FN, `````!```,
    M`````0```&@````/````< ````4```"4````!@```)P````1````I ```!<`
    M``"L````"P```+0````0````O ```!,```#$````%@```,P````-````U ``
    M``P```#A`````@```.0$```>````&@```$UA;&QE<V]N<R!3=&5P:&5N($IA
    M8W%U97,`( `#`````0````,````!`````P`````````#````#AL)``L`````
    M````"P`````````+``````````L`````````'A ```$````!``````P0```"
    M````'@````8```!4:71L90`#`````0``````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M````````````````````````````````````````````````````````````
    M```````````````````````````````````````````````````!`````@``
    M``,````$````!0````8````'````_O___PD````*````"P````P````-````
    M#@````\````0````_O___Q(````3````% ```!4````6````%P```!@```#^
    M____&@```!L````<````'0```!X````?````( ```/[____]____(P```/[_
    M___^_____O____________

  • Compund data error for query

    Hi All,
    Iss Of Compund data,
    Controlling area is a compound object for cost center.
    Suppose .......
    Controlling are is - ca01
    cost center - cc01, cc02
    now while we use thes in report variable.
    controlling area value given CA01
    for cost center value should be CA01/CC01 AND CA01/CC02.
    But in Query it's showing me 3 values
    CA01/#
    CC01
    CC02.
    Why this data is is available for cost center.
    that should be CA01/CC01 AND CA01/CC02.
    i checked master data thes combination record is there and coming in cost center data also.
    why CA01/CC01 AND CA01/CC02 is not coming ??
    Please reply  for this issu

    Hi,
    if you filter your query with 0CO_AREA = CA01, the keys of the costcentre won't be displayed as "CO_AREA/COSTCENTER"; except perhaps the "not assigned" cost centre: CA01/#.
    CA01/CC01 and CA01/CC02 will therefore be displayed as CC01 and CC02 (since the CO_AREA is known and well defined as CA01)
    If you run the same query with no filter on CO_AREA the system will display the double key.
    CA01/CC01 AND CA01/CC02 will be display as is.
    If you have both object in the drilldown, CO_AREA and COSTCENTRE in this order, the system won't display the double key either...
    CA01/CC01 AND CA01/CC02 will be displayed as
    CA01_____CC01
    CA01_____CC02
    hope this helps...
    Olivier.

Maybe you are looking for

  • Actually, how transmit high volumes batch of images to someone? Do not matter what it cost, needs to be easy, without struggle, easy go! Txs

    Do not matter to pay for it! It needs to be easy for uploading from within Aperture if possible, easy for the receiver to open the imagefiles, to download them on theit own computer. I do a lot of pictures when travelling with my friens. They ask me

  • PowerBook 1400 and PCMCIA Ethernet card

    I have some problems to find out list of supported PCMCIA Ethernet cards by MacOS 7 (B1-7.5.3) on PowerBook 1400. I would be very please to receive driver for 3Com OfficeConnect 572B what I own. Is it available? regards,

  • Flickr Refresh Rate Apple TV

    I have a Flickr account which I often post new pictures to. I want my Apple TV to automatically cycle through the account, but to recognise the new pictures and add them to the slideshow as they are uploaded to Flickr. Can anyone tell me how often th

  • Non-breaking dash

    How do I stop a dash character (m-dash) from break to the next line. Is there a short cut in Dreamweaver (8) or what is the html code to use manually? Thanks for any help anyone can offer to a part-time user.

  • I need help with iAD/App development!

    So I released an app, and it went on sale yesterday on the App Store (free app: if you want it, the developer name is Abdulrahman Ahmad, and the game name is Space Defense), but I'm having some problems. When I was testing the app (on an iPhone, and