Time_building_block_id and object version number

Hello,
could someone help me out with an explanation how the time_building_block_id and object version number to be interpreted?
Are these independent? What actions create new ID and new ovn?
My first idea was that one ID can have different instances in the table with different object version numbers. However I found cases belonging to the same parent buildingblock where both the id and ovn are different.
So based on this only one of the columns could be primary.
However for the joins both are used typically at the same time, suggesting that the two together constitutes a primary key.
Are the DETAIL level records belonding to the same DAY level record to be treated as co-existing entries and their measure to be summarized? Or only the latest (bigger ovn?) to be considered, so it is an updated version of the record with the previous ovn?
thanks!

The version number in the TC Building blocks is used to identify changes to timecard building blocks. It is not the same as an object version number on a record in a table.
OTL keeps an audit history of all changes to the timecard, at whatever level they occur. It uses this in retropay processes to identify the 'true' hours to use.
TC Building blocks have a 'scope', for example there are building blocks at these levels:
Timecard
Period / Application
Day
Detail
If you entered 8 hours on a new timecard for Monday 07/09/09 it would create a building block record for that date and call it version 1.
If you later make a change to that DAY, OTL will create a new record with version 2. Say this one shows 7 hours.
OTL can then interpret this as -8 + 7 = -1 and make the appropriate adjustment.
Hope that helps explain it!
Regards
Tim

Similar Messages

  • The same Object Version Number for the same person id multiple times

    Hello all,
    I am currently facing an issue with HRMS tables and the object version number for employees. I am trying to write a report but due to the same object version number for the same person appearing in several row i am getting duplicate information. For example,
    person id 91 object version number 32 is on 4 rows and i have no idea why...help please guys, I'm at a lost so far 50 people are facing the same issue.

    Hi Baal666bobo,
    The person table is date-tracked, so the PK has effective start and end dates as well.
    Get the correct record with sysdate(or any particular date) and then check the OVN.
    Cheers,
    Vignesh

  • Element Object version Number

    Where can I get the object version number of an element. I cant seem to find it in any of the element tables
    Thanks

    If I correctly understood you:
    SQL> INSERT INTO checkpoint VALUES
      2  ( 1
      3  , person_typ('Ignat'));
    1 row created.
    SQL> INSERT INTO checkpoint VALUES
      2  ( 2
      3  , employee_typ ( 'Scott', 111 ) );
    1 row created.
    SQL> INSERT INTO checkpoint VALUES
      2  ( 3
      3  , visitor_typ ( 'Adams', 333 ) );
    1 row created.
    SQL> column person format a30
    SQL> select  id,
      2          person,
      3          sys_typeid(person)
      4    from  checkpoint
      5  /
            ID PERSON(NAME)                   SYS_TYPEID(PERSON)
             1 PERSON_TYP('Ignat')            01
             2 EMPLOYEE_TYP('Scott', 111)     02
             3 VISITOR_TYP('Adams', 333)      03
    SQL> As you can see, function sys_typeid gives you type "version" number. Now, how to trace that "version" number to type name? Unfortunately, data dictionary views do not provide that. This is another example of DD inefficiency. If you check SYS.TYPE$ table:
    SQL> desc sys.type$
    Name                                                                     Null?    Type
    TOID                                                                     NOT NULL RAW(16)
    VERSION#                                                                 NOT NULL NUMBER
    VERSION                                                                  NOT NULL VARCHAR2(30)
    TVOID                                                                    NOT NULL RAW(16)
    TYPECODE                                                                 NOT NULL NUMBER
    PROPERTIES                                                               NOT NULL NUMBER
    ATTRIBUTES                                                                        NUMBER
    METHODS                                                                           NUMBER
    HIDDENMETHODS                                                                     NUMBER
    SUPERTYPES                                                                        NUMBER
    SUBTYPES                                                                          NUMBER
    EXTERNTYPE                                                                        NUMBER
    EXTERNNAME                                                                        VARCHAR2(4000)
    HELPERCLASSNAME                                                                   VARCHAR2(4000)
    LOCAL_ATTRS                                                                       NUMBER
    LOCAL_METHODS                                                                     NUMBER
    TYPEID                                                                            RAW(16)
    ROOTTOID                                                                          RAW(16)
    SPARE1                                                                            NUMBER
    SPARE2                                                                            NUMBER
    SPARE3                                                                            NUMBER
    SUPERTOID                                                                         RAW(16)
    HASHCODE                                                                          RAW(17)
    SQL> you'll notice ROOTTOID which is, unfortunately, not mapped into DD XXX_TYPE views. What you can do is something like:
    SQL> CREATE OR REPLACE
      2    TYPE TRAINEE_TYP UNDER EMPLOYEE_TYP(trainee_id NUMBER)
      3      NOT FINAL
      4  /
    Type created.
    SQL> set linesize 132
    SQL> column owner format a5
    SQL> column root_type_owner format a15
    SQL> column supertype_owner format a15
    SQL> column type_name format a15
    SQL> column root_type_name format a15
    SQL> column supertype_name format a15
    SQL> column typeid format a6
    SQL> select  tc.owner,
      2          tc.type_name,
      3          tc.typeid,
      4          roottoid,
      5          tc.supertype_owner,
      6          tc.supertype_name,
      7          tp.owner root_type_owner,
      8          tp.type_name root_type_name
      9    from  dba_types tc,
    10          sys.type$ t,
    11          dba_types tp
    12    where t.toid = tc.type_oid
    13      and tp.type_oid = nvl(t.roottoid,t.toid)
    14      and tc.owner = 'SCOTT'
    15      and tc.type_name in ('PERSON_TYP','EMPLOYEE_TYP','VISITOR_TYP','TRAINEE_TYP')
    16    order by tc.typeid
    17  /
    OWNER TYPE_NAME       TYPEID ROOTTOID                         SUPERTYPE_OWNER SUPERTYPE_NAME  ROOT_TYPE_OWNER ROOT_TYPE_NAME
    SCOTT PERSON_TYP      01                                                                      SCOTT           PERSON_TYP
    SCOTT EMPLOYEE_TYP    02     33A90A8C974E4BF4B369D443E27A83B9 SCOTT           PERSON_TYP      SCOTT           PERSON_TYP
    SCOTT VISITOR_TYP     03     33A90A8C974E4BF4B369D443E27A83B9 SCOTT           PERSON_TYP      SCOTT           PERSON_TYP
    SCOTT TRAINEE_TYP     04     33A90A8C974E4BF4B369D443E27A83B9 SCOTT           EMPLOYEE_TYP    SCOTT           PERSON_TYP
    SQL> SY.

  • Object Version Number  column

    Hi all,
    In the OAF dev guide,they have given some information on object version number column which can be used to store the version of the row data entered.
    This can be achieved by mapping a attribute to ObjectVersionNumber attribute.
    I tried mapping it i didn't see any attribute with the name ObjectVersionNumber in the BC4j EO wizard.
    Can somebody please give more information on this
    And do correct me if i gone wrong somewhere
    Thanks in advance
    Ashwini

    Another use of this column is to maintain the history record. So each time you update the record, another record with same primary key, but with an increased OVN.
    --Shiv                                                                                                                                                                                                                                                                                                                                                       

  • Those that have successfully downloaded mac lion please write the md5, sha1, exact file size and the version number, please.

    those that have successfully downloaded mac lion please write the md5, sha1, exact file size and the version number, please.

    This is how, for instance, on a flsh drive:
    http://lifehacker.com/5823096/how-to-burn-your-own-lion-install-dvd-or-flash-dri ve

  • To fetch details of services deployed and their version number

    We have an EM environment where in we have deployed composite applications. We have several partitions running with number of services deployed in them. We want to fetch the details of the services deployed and their versions in each partition from a file if it stored in a file or from a table if it is stored in table. We are not sure if these details are stored in a file or table. Instead of fetching manually from console everytime, We want it be retrieved in a file or table which will help us control versions of services deployed. Please help regarding this.

    Using ant -f ant-sca-mgmt.xml listCompositesInPartition, We can get the details of the composites deployed in a particular partition.

  • JSP and Servlet Version Number

    Dear all:
    Does any one know how to find out the version number of JSP and servlet. I am currently using IBM WSAD as development tools.
    Thanks for your attention.

    The web.xml would also help. Look at the dtd/schema definition in web.xml -
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <!DOCTYPE web-app
         PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
        "http://java.sun.com/dtd/web-app_2_3.dtd">
    <web-app>.....indicates servlet 2.3 specification (jsp 1.2, j2ee 1.3)
    where as
    <?xml version="1.0"?>
    <web-app xmlns="http://java.sun.com/xml/ns/j2ee"
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"
        version="2.4">indicates servlet 2.4 spec (jsp 2.0, j2ee 1.4)
    cheers,
    ram.

  • Patch Set Updates and the version number

    Oracle document 854428.1, Patch Set Updates (PSUs) for Oracle Products, has this to say about the version number:
    2.3 Baseline Version for Easier Tracking
    Oracle associates a version number to the patch. The fifth number of the database version is incremented for each PSU. For example, the initial PSU is version 11.1.0.7.1, the second PSU for Release 11.1.0.7 is 11.1.0.7.2, and so on.
    My DBAs just told me that they applied PSU3 to our database, which had version number 11.2.0.2.0. I checked the version number after the PSU was applied, but it is still the same:
    SQL> select version from v$instance;
    VERSION
    11.2.0.2.0
    Do the PSUs change the fifth number in the version or not?

    SQL> select comments from sys.registry$history where action_time > sysdate - 1
    COMMENTS
    PSU 11.2.0.2.3
    Thankyou, that answers my question. The fifth number in the version column of the v$instance view does not seem to change when a PSU is applied. However, the sys.registry$history view has a record of the PSU with the correct fifth number in the version.

  • I have upgraded to 8.0 and the version number comes up correct except in most sites it says I'm running 3.5.6?? I have continually upgraded and don't know how to make websites see the upgrade.

    Everytime there is an upgrade I install it. My browser says I'm using 8.0 and that my browser is up-to-date. However, when I try to install Firebug for 8.0 or any other add on it says I'm using 3.5.6. Even gmail is saying that my browser is out dated! How can I get my browser to be truly updated??

    Your UserAgent string in Firefox is messed up by another program that you installed. <br />
    [http://en.wikipedia.org/wiki/User_Agent]
    type '''about:config''' in the URL bar and hit Enter <br />
    ''If you see the warning, you can confirm that you want to access that page.'' <br />
    Filter = '''general.useragent.''' <br />
    Right-click the preferences that are '''bold''', one line at a time, and select '''''Reset'''''. <br />
    Then restart Firefox

  • Acrobat Version Type And Version Number, For Creative Suite 5 (5.0) / CS5 For Windows

    I would like to know the version type and pricise version number for Acrobat that is supplied with Creative Suite 5 (5.0) for Windows Retail Version.  (This is the default version number, before any updates) :
    To summarise:
    For the product:
    Platform: Windows
    Suite: Creative Suite 5 (CS5) / 5.0
    Distribution: Retail
    Application: Acrobat
    I require:
    Version Type: Standard / Pro / Extended
    Version Number (Precise): 9.0 / 9.3 / 9.3.2 / (or other)
    Disc's Volume Label: (As shown in Windows Explorer)
    Ideally this would be found by looking at Acrobat's HELP > ABOUT menu option. (From a Windows installtion of CS5, that has NOT been updated), and not just looking at what is printed on the disc label.
    More replies of the above information, will confirm any information provided in replies.

    Hello
    there are two ways i can suggest:
    First your own account: https://www.adobe.com/account.html and
    Second the general informations there: http://helpx.adobe.com/x-productkb/global/find-serial-number.html
    Helpful woud be http://helpx.adobe.com/contact.html
    And what concerns Amazon: this "serial number" obtained from Amazon is not a serial number, only a code with which you can request a serial number from Adobe. Here you have to go through "Adobe Store", and look for the button "Serial Number Request". Fill in the form and, after a while you will get a "real" serial number.
    Hans-Günter

  • DBD::mysql object version 4.013 does not match bootstrap parameter 4.005

    The issue is with XServe running 10.6.2.
    Out of the box Perl doesn't come with DBM::MySQL module installed. To be able to install it, I first had to download MySQL libraries (instructions and link to the file are here: http://support.apple.com/kb/HT4006 ).
    After that I was able to install (manually with "make") the latest module DBD-mysql-4.013 which Perl now acknowledges. However, when module is called, following error is thrown:
    "install_driver(mysql) failed: DBD::mysql object version 4.013 does not match bootstrap parameter 4.005 at /System/Library/Perl/5.10.0/darwin-thread-multi-2level/DynaLoader.pm line 230.
    Compilation failed in require at (eval 3) line 3."
    Suspecting that Perl is looking for a 3-year old version 4.005, I did try removing 4.013 and installing 4.005 instead (as I couldn't find any other clear solution) but 4.005 failed to pass "make test" - not very surprisingly as it is that old - so I chose not to try installing it and put 4.013 back in and still got same error.
    If somebody could kindly provide/direct me to clear instructions to resolve this problem your help will be much appreciated! Thanks in advance.

    Unfortunately, I didn't document right away what I did to get this resolved but this is what I remember. This is a hack, I found a suggestion online that lead me to this. However, a FAIR WARNING - this is dangerous for the system.
    I went into the module file mysql.pm located here:
    cd /Library/Perl/5.10.0/darwin-thread-multi-2level/DBD
    vi mysql.pm
    I commented out the line that specifies version of the file, 4.013, and put 4.005 line instead:
    #$VERSION = '4.013';
    $VERSION = '4.005';
    If server is not rebooted, this doesn't change anything, error will still be thrown. So I rebooted the server from command line.
    This reboot did not go well, server went into some kind of intermediate state, I lost web access. We had to do a hard reboot by cycling power physically on the server itself. After that server came back up, log was full of all kinds of errors. Now all of a sudden the error "object version 4.013 does not match bootstrap parameter 4.005" wasn't thrown anymore. Apparently, version of this module is not read from the module .pm file itself every time module is called, it is instead stored somewhere else and is looked up there, wherever "there" may be. I suspect one of the files used during boot got confused when version number didn't match and it caused chain reaction and a bad reboot.
    Later on I went back into the file and changed version number back to 4.013 as it is supposed to be, and commented the other line out:
    $VERSION = '4.013';
    #$VERSION = '4.005';
    MySQL on Perl functioned fine since then.
    Server has been rebooted weeks later during 10.6.3 upgrade and this time it didn't cause any problems with the module. Still works.

  • WRT54G no version number

    My WRT54G does not have a version number on the label What firmware do I download? currently v4.30.5, SN:CDF003164208 MAC:000C25BBD017. Thanks, MikeMc

    No I did not try it. I am not sure what will happen if I flash to wrong version to it. If my memory is correct I bought this right when the G version came out, between that and no version number I suspect it might be version 1.0. I have flashed it a few years ago so that might be why the firmware version it is running does not match the hardware version. I was hoping I could verify the hardware version via serial number or MAC. Thanks for checking. MikeMc

  • How do I know what version number I have.  I have looked...

    How do I know what version number I have.  I have looked at the place it says where it should be and it only says WRT54G and no version number after it.  Can I assume it is version 1.0?

    Yes. It should be 1.0. You can also check wikipedia. They list all versions including the serial number prefixes.

  • Class file minor version number

    I installed JDK 1.5.0_15, was previously on 1.5.0_06. It looks like the minor version number in the .class files didn't change - in fact, both have zeroes.
    The first 8 bytes under both contain: cafe babe 0000 0031

    I'd say it's because the major and minor version number in the class file refers to the structure of the class file, ie. it's a version number of the class file format not of the JDK that created it.
    The format hasn't changed between those JDK releases... so the version numbers stay the same.
    regards,
    Owen

  • BO XI & CR product and service patch version number

    hi,
    anyone know
    (1) how to find out the product & service patch version number matrix for BO XI and CR ?
    e.g. I found from my BO XI that the version is 11.0.0.748, but don't know any service patch has applied.
    can find a list like:
    BO XI => 11.0.xxxx
    BO XI R2 => 11.xxxx
    BO XI R2 SP1 => 11.xxxx
    CR XI => xxxx
    etc.
    (2) can a CR report created by CR version 11 be run in BO XI R2 ? what is the compatibility of BO XI and CR ?

    Hi Eddie,
    Adding more: how to get which all versions of BusinessObjects and Crystal Reports is installed on server or on client?
    1. To get to know about the Service Packs for CR and BO:
    -  Go to Start > Control Panel > Add or Remove Programs > here you will get the list of Crystal Reports and Business Objects Product along with the Service packs and Fix Packs  too.
    However if BO has MHF or CHF then this information you will not get in Add or Remove programs.
    2. about which MHF (Monthly Hot Fix) or CHF (Critical Hot Fix):
    For BO:
    Go to My Computers > Installation Directory: \ Program Files > BusinessObjects Enterprise 11.5 > Patch Folder (inside this folder you will get the details)
    For Crystal Reports:
    The information on what updates have been installed in Crystal Reports XI Release 1 can be found in C:\Program Files\Business Objects\Crystal Reports 11\Patches\History.txt.
    Hope this helps you.
    Regards,
    Deepti Bajpai

Maybe you are looking for

  • Deploying oem grid control to e bussiness suites

    We have installation of EBS R12, the AMP pack for EBS system is installed on the and already running. Now we want to use oem grid control to manage the EBS suites. We have installed the eom 11G grid control and installed the application management pa

  • I have a Mac and Acrobat Pro, how do I create an interactive PDF file?

    I have  a Mac and Acrobat Pro, how do I create an interactive PDF File?

  • Sound Blaster Audigy 4 Standard - Front Panel connectio

    Can someone help me out with a front panel connection for a standard Audigy 4. I have removed the connections form my motherboard as i was using onbaord sound, and i would like to connect them to my Audigy 4. Please could someone post an image or a l

  • Invoice and Order Confirmation automatic Print

    Hi everyone, The user wants the following configurations: Automatic printing of Invoices and Order Confirmations to the following printer: #$%$#%#%u2026.this printer is located on the following server: $%$#%$# Thanks for prompt response Nick

  • # Anchor Tag Syntax

    I have a page with a Dynamic SQL Region that generates several large blocks of HTML. In the SQL code for the region, I have included: '<a name="'||P1_ID||'">'which yields a series of anchor tags that look like: <a name="1">, <a name="2">...This all w