Counting Version 1 and 0

I have a table with the following...
Date id version_num total
01/01/2009 09:00:00 101 0 99
01/01/2009 09:00:00 101 1 100
02/01/2009 09:00:00 101 1 201
03/01/2009 09:00:00 101 1 150
04/01/2009 09:00:00 101 1 99
05/01/2009 09:00:00 101 0 103
05/01/2009 09:00:00 101 1 104
01/01/2009 09:00:00 202 1 99
02/01/2009 09:00:00 202 0 98
02/01/2009 09:00:00 202 1 97
03/01/2009 09:00:00 202 0 200
04/01/2009 09:00:00 202 0 99
I want to show all of the rows with a version 1 and also a version 0 for the same date...
01/01/2009 09:00:00 101 0 99
01/01/2009 09:00:00 101 1 100
05/01/2009 09:00:00 101 0 103
05/01/2009 09:00:00 101 1 104
02/01/2009 09:00:00 202 0 98
02/01/2009 09:00:00 202 1 97
If a date only has a version 0 and no version 1 then it should be ignored.
I only want to show dates with BOTH version 1 and 0.

It always helps if you post your sample data using DDL/DML (Create/Insert) scripts so we can easily generate results. Also please post sample data and expected results in \ tags.
Here is a possible solution:SQL> WITH test_data AS
2 (
3 SELECT TO_DATE('01/01/2009 09:00:00','MM/DD/YYYY HH24:MI:SS') AS DT, 101 AS ID, 0 AS VERSION_NUM, 99 AS TOTAL FROM DUAL UNION ALL
4 SELECT TO_DATE('01/01/2009 09:00:00','MM/DD/YYYY HH24:MI:SS') AS DT, 101 AS ID, 1 AS VERSION_NUM, 100 AS TOTAL FROM DUAL UNION ALL
5 SELECT TO_DATE('02/01/2009 09:00:00','MM/DD/YYYY HH24:MI:SS') AS DT, 101 AS ID, 1 AS VERSION_NUM, 201 AS TOTAL FROM DUAL UNION ALL
6 SELECT TO_DATE('03/01/2009 09:00:00','MM/DD/YYYY HH24:MI:SS') AS DT, 101 AS ID, 1 AS VERSION_NUM, 150 AS TOTAL FROM DUAL UNION ALL
7 SELECT TO_DATE('04/01/2009 09:00:00','MM/DD/YYYY HH24:MI:SS') AS DT, 101 AS ID, 1 AS VERSION_NUM, 99 AS TOTAL FROM DUAL UNION ALL
8 SELECT TO_DATE('05/01/2009 09:00:00','MM/DD/YYYY HH24:MI:SS') AS DT, 101 AS ID, 0 AS VERSION_NUM, 103 AS TOTAL FROM DUAL UNION ALL
9 SELECT TO_DATE('05/01/2009 09:00:00','MM/DD/YYYY HH24:MI:SS') AS DT, 101 AS ID, 1 AS VERSION_NUM, 104 AS TOTAL FROM DUAL UNION ALL
10 SELECT TO_DATE('01/01/2009 09:00:00','MM/DD/YYYY HH24:MI:SS') AS DT, 202 AS ID, 1 AS VERSION_NUM, 99 AS TOTAL FROM DUAL UNION ALL
11 SELECT TO_DATE('02/01/2009 09:00:00','MM/DD/YYYY HH24:MI:SS') AS DT, 202 AS ID, 0 AS VERSION_NUM, 98 AS TOTAL FROM DUAL UNION ALL
12 SELECT TO_DATE('02/01/2009 09:00:00','MM/DD/YYYY HH24:MI:SS') AS DT, 202 AS ID, 1 AS VERSION_NUM, 97 AS TOTAL FROM DUAL UNION ALL
13 SELECT TO_DATE('03/01/2009 09:00:00','MM/DD/YYYY HH24:MI:SS') AS DT, 202 AS ID, 0 AS VERSION_NUM, 200 AS TOTAL FROM DUAL UNION ALL
14 SELECT TO_DATE('04/01/2009 09:00:00','MM/DD/YYYY HH24:MI:SS') AS DT, 202 AS ID, 0 AS VERSION_NUM, 99 AS TOTAL FROM DUAL
15 )
16 /* END TEST DATA */
17 SELECT *
18 FROM test_data
19 WHERE DT IN
20 (
21 SELECT DT
22 FROM TEST_DATA
23 WHERE VERSION_NUM IN (0,1)
24 GROUP BY DT
25 HAVING COUNT(DISTINCT VERSION_NUM) = 2
26 )
27 ORDER BY DT
28 , ID
29 /
DT ID VERSION_NUM TOTAL
01/01/2009 09:00:00 101 1 100
01/01/2009 09:00:00 101 0 99
01/01/2009 09:00:00 202 1 99
02/01/2009 09:00:00 101 1 201
02/01/2009 09:00:00 202 0 98
02/01/2009 09:00:00 202 1 97
03/01/2009 09:00:00 101 1 150
03/01/2009 09:00:00 202 0 200
04/01/2009 09:00:00 101 1 99
04/01/2009 09:00:00 202 0 99
05/01/2009 09:00:00 101 0 103
05/01/2009 09:00:00 101 1 104                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

Similar Messages

  • How do I get rid of the new toolbar that was added by versions 20 and 21?

    I have tried both versions 20 and 21 and both have the bugs below so I ended up having to re-install version 19:
    1.) Versions 20 and 21 add a new toolbar that has nothing but a "Firefox" button on it - and no way to get rid of this toolbar is provided. It wastes far too much space on my laptop's screen - that button should have been put on one of the other toolbars or simply made part of the icon set that users can use to customize their menubar or other toolbars.
    2.) That new toolbar is not customizable. Hence, I don't have the option of recovering screen space by moving everything from my menubar onto the new toolbar then hiding the menubar.
    3.) The back, forward, and stop|reload buttons on my menubar no longer work. Moving them back to the navigation toolbar and showing that toolbar does not solve the problem. Nor can I right-click on a web page and select those functions from the context menu: they are permanently disabled there too.
    4.) I can no longer right click on the menubar or a toolbar and get a context menu from which you I can pick a "customize" option - I can't get a context menu AT ALL. In order to customize things for versions 20 or 21, I first have to reinstall version 19, do the customizations, then reinstall version 20 or 21.

    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance).
    *Do NOT click the Reset button on the Safe Mode start window or otherwise make changes.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes
    You can also check for problems with the localstore.rdf file.
    *http://kb.mozillazine.org/Corrupt_localstore.rdf

  • Using Adobe Photoshop CS2 version 9 and have updated it, but when stacking photos, it comes up with PSD, whereas I want Jpeg, and I change the format to Jpeg and the box then comes up with cannot save as there is a program error. Be very grateful for help

    Using Adobe Photoshop CS2 version 9 and have updated it, but when stacking photos, it comes up with PSD, whereas I want Jpeg, and I change the format to Jpeg and the box then comes up with cannot save as there is a program error. Be very grateful for help with this, please.

    jpg does not support Layers.
    Just to make sure, what exactly do you mean by "stacking photos" and what do you want to achieve thereby?

  • I have upgraded Apple Aperture from version 2 to version 3 and I'm having a problem with the "Highlights and Shadows" adjustment. According to the user's manual, I should have access to an advanced disclosure triangle which would allow me to adjust mid co

    I have upgraded Apple Aperture from version 2 to version 3 and I'm having a problem with the "Highlights and Shadows" adjustment. According to the user's manual, I should have access to an advanced disclosure triangle which would allow me to adjust mid contrast, colour, radius, high tonal width and low tonal width.
    If anyone has any suggestions as to how to access this advanced section, I'd be most grateful.

    Hi David-
    The advanced adjustments in the Highlights & Shadows tool were combined into the "Mid Contrast" slider in Aperture 3.3 and later. If you have any images in your library that were processed in a version of Aperture before 3.3, there will be an Upgrade button in the Highlights & Shadows tool in the upper right, and the controls you asked about under the Advanced section. Clicking the Upgrade button will re-render the photo using the new version of Highlights & Shadows, and the Advanced section will be replaced with the new Mid Contrast slider. With the new version from 3.3 you probably don't need the Advanced slider, but if you want to use the older version you can download it from this page:
    http://www.apertureexpert.com/tips/2012/6/12/reclaim-the-legacy-highlights-shado ws-adjustment-in-aperture.html

  • Link between Delivery schedule line counter from PO and the material docume

    Dear Gurus,
    I have one PO with single line item having delivery schedule -
    Material 1 -
    delivery schedule 01.01.2009     2000
                                                         01.03.2009    5000
    I have received quantity against this Po
    I want to know where I can find the link between Delivery schedule line counter from PO and the material document
    Best regards
    Sar

    There is no link from the MAterial document line item (Table Mseg) to the PO Schedule Line (EKET).
    If this is for Evaluating an on time delivery or GR, you may consider the following approach.
    PO details Po Date  QTY
    Sch1   01Jun2009   200   
    SCH2  08Jun2009   100
    GR Details
    GR1   01Jun2009   180
    GR2   07Jun2009   110
    GR3  09Jun2009      10
    Calculate a *** total qty for the PO Line.
    PO details Po Date  CUMUL QTY
    Sch1   01Jun2009   200   
    SCH2  08Jun2009   300
    Calculate a *** total qty for the ontime GR.
    PO details Po Date  CUMUL PO QTY  CUMUL GR on time
    Sch1   01Jun2009   200                180
    SCH2  08Jun2009   300                 290 (180+110)  the 3rd GR was too late
    Evaluate the PO SChedule Lines as follows:
    Po SCL qty + CUMUL GR QTY - CUMUL PO QTY = ADJ GR ON Time Qty
    SCH1 01Jun2009
    200 + 180 - 200 = 180 on time for 01Jun2009 date ( 90% fill rate)
    SCH2 08Jun2009
    100 + 290 - 300 = 90 on time for 08Jun2009 date (90 % fill rate) the first 20 of the GR on 07Jun2009 went to fill the late, early date.
    Best of luck !
    SCH2 100 +290 - 300 = 90 on time for 07Jun2009 date

  • My ipod touch 4g upgrade to version 5 and when I connect to iTunes stays in step 2 of 7 steps: backup saved ...... 1 hour goes well and you reinstall iTunes, reconnect, etc..

    my ipod touch 4g upgrade to version 5 and when I connect to iTunes stays in step 2 of 7 steps: backup saved ...... 1 hour goes well and you reinstall iTunes, reconnect, etc..HELPME!!!!

    Try:
    - Powering off and then back on your router.
    - Anything else here
    iTunes for Windows: iTunes cannot contact the iPhone, iPad, or iPod software update server
    - Change the DNS to either Google's or Open DNS servers
    Public DNS — Google Developers
    OpenDNS IP Addresses
    - Try on another computer/network
    - Wait if it is an Apple problem

  • Sync play count, last played, and rating with iOS 5

    From other threads (https://discussions.apple.com/message/16563011#16563011 and https://discussions.apple.com/message/16505730#16505730 for example) it is clear that there are some problems with play count, last played, and rating information updating and syncing under iOS 5. I have at least a partial solution. I am posting it here instead of under one of the existing threads because 1) some discussions seem to be confusing the difference between updating the iOS 5 device data and syncing the updated data to the computer, and 2) some of the discussions are focused iPhone, and though the problem appears similar I only have an iPod touch to test the solution on.
    First of all, this is not a new problem. Prior to iOS 5, I would plug my iPod Touch into the computer and not see any play count or last played data for songs I knew I had just listened to. I discovered that if I clicked (in my computer's iTunes display of the iPod) on one song that I had recently listened to, it would suddenly display play count and last played for all the songs played since the last update. I could then transfer this playlist data (more on this in a minute) to the corresponding songs on the computer. Under iOS 5, this no longer works, and in fact causes the new play count and last played data on the iPod to be lost. However, under iOS 5 there is a way to get this information to update, even though you don't see it when you first connect to the computer.
    To make this work, you have your iPod set on Manually manage music and videos under the Summary tab of the iPod settings in iTunes. I have messed around with this for hours, including several restores and resets of my iPod touch, and have found no way to get this to work under various Sync Music options. I have been using the Manually manage mode for years because I use my iPod with numerous different iTunes Libraries on several different external hard drives.
    Here's the trick: Manually manage must be in effect before you connect the iPod to the computer. After your iPod shows up in the iTunes interface on your computer, in the main view (where it shows the different tabs at the top and capacity at the bottom) there is a Sync button at the very bottom right. Click on this and wait for it to go through the Sync steps (don't worry, you're not losing anything), and, voila, when you go to the songs (on the iPod) you have listened to since the last time you connected to the computer, the play count and last played data will be there.
    Unfortunately, it's not a simple matter to get this data synced to the computer, but it can be done. At first I thought that once I got the data to show up on the iPod I could go to the Music tab and Sync Music to get the playlist data to the computer, but this does not work. It will sync the play count and last played data that are on the computer to the iPod, overriding the newer data. The way I have been getting my playlist data from my iPod to my computer without ever changing the Manually manage setting is by using the Copy Tag Info Tracks To Tracks script from Doug's AppleScripts for iTunes <http://dougscripts.com/itunes/scripts/ss.php?sp=copytinforackstotracks>. This isn't hard to download or install or use and copies playlist information very quickly.
    I have never had a problem with play count or last played on my 2nd generation nano, which still works beautifully. As far as I can tell, play count and last played have never worked well on the iPod touch; there are threads in discussions complaining about this from years ago. It would be nice if Apple would recognize that these are extremely important features to many users and make it a priority to make these basics work before (or while) adding a lot of other fancy features.

    Just for posterity in case anyone else ever has a similar problem.
    I found out I can work around my problem, but I have limitations. The only time it'll update the correct songs is after I restore it and then add the initial songs on to the Shuffle. The key is to not ever have a situation where I reshuffle the order of those songs. If I ever shuffle to better alphebatize or categorize things, the sync updating screws everything up. If say Song #3 on my Shuffle's playlist after the intitial transfer gets moved around to being anything other than the third song played, my Shuffle/iTunes will still think that song has been played although the Song #3 I actually listened to after the sync update will be different. Now I have to carefully compose and place what songs I want loaded on since I can't mess around with the playlist setup at all.
    I know Apple support would likely blame my Shuffle for the problem (it's over 6 years old now). But it's funny how this only happened right after I installed 11.0. The update to 11.0.2 did nothing.

  • I have my library in AIFF format on my iMac. I want to converte all in Apple less loss on my macbook pro. how can i do? becouse if i converte the files, i find on library the two version, AIFF and Apple lessloss....

    about 300 CD imported on my IMAC in AIFF version.
    I want to create the same library on my macbook pro, but Apple lessloss to use for ipod and other device.
    I import on the finder'S macbook pro all the library ( many gigabyte in AIFF version). I open Itunes, add to library the folder, on preference i set Apple lessloss, but itunes import AIFF version.
    If i converte on itunes the files, i find all the two version: AIFF and Apple lessloss. I cannot remove manually all the file AIFF....
    Duplicate files is impossible to remove with 11 version...

    Select 'Songs' then 'List'. Click on the top of the 'Kind' column to sort by type of file, thus bringing all the AIFF files together. (If you don't have a 'Kind' column, enable it in View>View Options).
    Click on the top AIFF file in the list, then shift click on the bottom one to select them all. Hit the delete key. At the prompt, be sure to choose to move them to the Trash or they will disappear from the list but remain in the actual Library in the Finder.

  • How do I install Reader Version 8 and Version 11 on the same computer?

    I have old fillable forms that will not work with the free reader above vesion 8.  I also have programs that require the free reader version or above.  I am trying to get both the free reader versions 8 and 11 on the same computer.  When I installed version 11, version 8 was removed.  When I tried to reinstall version 8 the message said I had a more up to date version and the install stopped.  Any suggestions?

    Thanks for the suggestion, it worked!  What I had to do was after steps 1 & 2
    3.  move the entire Version 8 folder to a flash drive
    4.  reinstall Version 11
    5.  add a new folder called Adobe 8 to the program file directory
    6.  copy Version 8 folder from flash drive file to new folder
    7.  add shortcut to desktop.
    Now I can open my old forms in Version 8 and edit and save them.
    Thanks again.

  • How can I install CS5 on a new/replacement laptop? I paid full price in 2011 and have the key (and it shows up in my Adobe account under products), but it was a downloaded product and I can't find a download of that version online and my key doesn't work

    How can I install CS5 on a new/replacement laptop? I paid full price in 2011 and have the key (and it shows up in my Adobe account under products), but it was a downloaded product and I can't find a download of that version online and my key doesn't work in CC.

    Your key cannot work in CC, it's newer version, and would require a new purchase.
    Downlaod CS5 here.
    Download CS5 products

  • How do I rid myself of the "english version" notice and subsequent block of opening iTunes on a new iTunes 10.6 update without altering my current iTunes folder?

    I just updated iTunes to version 10.6 on my 10.6.8 OS X Mac Book Pro and am getting the old "english version" prompt.
    This version of iTunes has not been correctly localized for this language. Please run the english version
    Yes, that's right, I cannot open iTunes. When I attempt to open it a popup with the above-quoted text appears and the opening process terminates.
    There were threads on this years ago as I recall and I've revisited them. They don't address the present question and I think those thread focused mainly on iTunes version 9 and/or earlier versions.
    Steps taken thus far:
         I removed the iTunes app from the apps folder and deleted it.
         I have also re-downloaded iTunes 10.6.
         I have NOT yet attempted to re-install.
    My question is: when I reinstall must I do anything with my ~/Music/iTunes folder to protect its contents from the install process? Or can I leave it alone and just re-install the app without suffering any overwrite or screwups of the ~/Music/iTunes folder or anything therein?
    Notes: installed from an English language computer set to English language and inside the continental US.
    Already deleted the app file from the Applications folder.

    Solved my own problem.
    For the record, fixing iTunes without moving or copying the ~/Music/iTunes folder can be done if you have your iTunes.app file backed up with Time Machine.
    Just delete the newly installed iTunes.app file and then restore the iTunes.app file that existed before the update that borked the install.
    That's it. iTunes opened right back up and accessed my old data like nothing ever happened. No moving or copying of hundreds of gigabytes of music data needed.

  • SCCM 2012 R2 client version 1101 and 1104 queries

    There are several samples of collection query code for SCCM 2012 R2 client version 5.00.7958.1000, which is the base R2 client version. Patches can change this to 5.00.7958.1101 and 5.00.7958.1104. But there is a problem. These two patches
    display as 1101 and 1104 when you go to Control Panel\Configuration Manager\General tab but when you go to Programs and Features and look in there the DisplayVersion is 5.00.7958.1000--so all query code samples are unable to different between the base versions
    and version 1101 and 1004. I have been unable to find out how to write a query that finds version s 1101 and 1104. Does anyone know how to do this? Thanks.

    Use ClientVersion from SMS_R_System within a console query or ClientVersion0 from V_R_system in a SQL query.
    Even this can be deceptive though because the agent only reflects the highest version number of one of its subcomponets. This post, specific to 2007, describes the complexity: http://blog.configmgrftw.com/configmgr-client-hotfix-versioning/.
    Specific to your question though, why do you care if either of these hotfixes are distributed to your clients? 2905002 is only necessary during WinPE (and if you are actually not using download on demand content during OSD) and 2910552 is only applicable
    if you are rolling out Win 8.1 using a single TS to your XP systems using a refresh methodology.
    Jason | http://blog.configmgrftw.com

  • Table For Purchase Order Version Number and Version Created Date

    Dear Sir,
    Whenever we make any change in Purchase Order , then a new Version Number  along with Created Date is assigned . In Me23n the Version Number and It's Created date is also displayed ( at PO Header Level) .
    We request you to kindly guide us as which Table is required to be reffered to get the Version Number and Version Created date  for the Purchase Order .
    With Thanks and Rgds
    Sonia

    Hi
    Check in EKKO - Purchase order header
    EKPO - Purchase order item
    CDHDR
    CHPOS
    Regards
    Ram
    Edited by: Parasuram M on Sep 16, 2009 11:59 AM

  • Differences between the "Adobe Acrobat Versions 7 and 9"

    Dear Adobe Support Team,
    I need to know the differences between the "Adobe Acrobat Versions 7 and 9". I have worked with Acrobat 7 and have used the same script after installing Acrobat 9 for Automation Testing with QTP for validating pdf. The object "AcroExch.AVDoc" is not getting identified as object while working in QTP in the system/machine which has Acrobat 9 installed, whereas it works well in the machine which has Acrobat 7 installed . So it will be better if two things are known as per my understanding, ie.,
    it must have compatibility issue (i need the difference between "Adobe Acrobat versions 7 & 9" to assure this) or
    installation issue( which can be confirmed if the former question is answered).
    So i kindly request you to help me out for this scenario.
    Kind Regards,
    Vikraman.G

    Countless new features were introduced between Acrobat 7 and 9, are you really expecting us to type out a full list from memory?
    If you are having specific issues with the Acrobat SDK, first refer to the Acrobat SDK for the higher version. If there remains an issue I suggest posting about the specific problem in the Acrobat SDK forum, rather than asking for an encylopedia of all possible information...
    Note that Adobe do not support multiple installations of Acrobat on the same machine, so you can expect development issues if you do this.

  • 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

Maybe you are looking for

  • Additional cost for finished goods

    Hi all, Here we are following fifo method valuation. we are using SAP B1 2007B PL 04. I have a doubt how do we account the additional cost like Rent, Electricity etc. and What G/L Account need to specify at determination level. Here we are determing

  • Hide/Show a button on a tile, based on the tileset you're in.

    Hey, I made a new tileset Z_CustomerPlan, it has an existing tile in it, capshort1. I added a button to this existing tile capshort1, named Z_BTNPreviewAll. But this button should ONLY be visible when in the new tileset Z_CustomerPlan because capshor

  • Datapackage

    Hi all, I have to load data to an InfoObject from another InfoObject. My requirement is while loading data, records with same key should be selected in same datapackage. I am using 3.5 update rule and infopackage for updating the target. For example

  • To convert special characters to English characters.

    Is there any functional module to convert special characters(Latin) to English characters?

  • Read and assign the highest value

    Hi experts        I want to read the highest value of the records in a condition basis for example matnr wise then assign that value to some records.      how to read and assign the value, pls help me out. Thanks in advance. regards Rajaram