Recordstore- check existance of records without opening?

Hello all
This might be a really daft question but:
Is is possible to check a the existance of records in a RecordStore without actually opening the Store?
I would have thought not, but...
I have just read that opening and closing RecordStores can take a long time therefore on opening my prog I would like to be able to check to see if the Store has anything in, without actually opening it.
Thanks
Dan

BlueNeelu
Please don't post in old threads that are long dead. This question was asked more than 2½ years ago. Do you really think that DanielFoord was waiting all this time for you to come and answer it, do you?
I'm locking this thread now.
db

Similar Messages

  • LSMW- How to modify existing Master Records without using Recording/SBatch?

    Hi,
    Can anyone tell me of an alternative way to modify massive Vendor Master records except a transaction recording or Standard Batch Program?
    Actually my problem is that, i need to update Search Terms, whose lengths exceed the standard length for Search Terms.

    hi,
    use fm  ADDR_MAINTAIN_COMPLETE table ADDR1_DATA
    A.

  • How to check 802.11n antenna support on X61 7673-74G without opening?

    Hi,
    Is there any way to check if the laptop got antenna support for 802.11n, without opening/unscrewing the laptop?
    Can I in that case install any 802.11n Intel card? (like the 5300 AGN)

    marihole, welcome to the forum,
    according to the support site your system has an Intel 4965AGN (n-disabled) wlan card. The "n" cannot be re-enabled.
    Product: ThinkPad X61 7673-74G
    Original description: T7300(2GHz), 1GB RAM, 80GB 5400rpm HD, 12.1in
    1024x768 LCD, Intel X3100, Intel 802.11agn(n-disabled), Bluetooth, Modem, 1Gb
    Ethernet, Secure chip, FIngerprint reader, 8c Li-Ion, WinXP Pr
    Having then looked at the parts list, the Intel 4965AGN wlan card (without n-disabled), with FRU number 42T0867, will work for you.
    Hope this helps
    Andy  ______________________________________
    Please remember to come back and mark the post that you feel solved your question as the solution, it earns the member + points
    Did you find a post helpfull? You can thank the member by clicking on the star to the left awarding them Kudos Please add your type, model number and OS to your signature, it helps to help you. Forum Search Option T430 2347-G7U W8 x64, Yoga 10 HD+, Tablet 1838-2BG, T61p 6460-67G W7 x64, T43p 2668-G2G XP, T23 2647-9LG XP, plus a few more. FYI Unsolicited Personal Messages will be ignored.
      Deutsche Community     Comunidad en Español    English Community Русскоязычное Сообщество
    PepperonI blog 

  • Check whether master record conversions exist

    Dear All,
    I have copied the requests from developement server to quality server for SD IMG configrations.
    When i am doing consistency check in Developement server there is no error.
    However when i check the same in quality server I am getting the following error.
    Check whether master record conversions exist
    Dist. channel is missing for condition conversion 1000 10
    Dist. channel missing for customer/material conversion 1000 10
    Check whether master record conversions exist
    Division is missing for condition conversion 1000 10
    Division missing for customer conversion 1000 10
    Can some body help me to solve this problem.This very urgent and will really appreciate your timely support.
    Thanking you,
    Best regards,
    R.Srinivasan
    Check whether master record conversions exist
    Division is missing for condition conversion 1000 10
    Division missing for customer conversion 1000 10

    Experiencing the same problem also.
    Right now, i'm re transporting the DEV config for Define Dist Channel, Define Division, Assign Dist channel to sales org, Assign Division to sales org, and Set up sales area. I hope once i transport them again in this order, the issue will be resolved is QAS.
    Anyone know what i should do?

  • Check for duplicate record in SQL database before doing INSERT

    Hey guys,
           This is part powershell app doing a SQL insert. BUt my question really relates to the SQL insert. I need to do a check of the database PRIOR to doing the insert to check for duplicate records and if it exists then that record needs
    to be overwritten. I'm not sure how to accomplish this task. My back end is a SQL 2000 Server. I'm piping the data into my insert statement from a powershell FileSystemWatcher app. In my scenario here if the file dumped into a directory starts with I it gets
    written to a SQL database otherwise it gets written to an Access Table. I know silly, but thats the environment im in. haha.
    Any help is appreciated.
    Thanks in Advance
    Rich T.
    #### DEFINE WATCH FOLDERS AND DEFAULT FILE EXTENSION TO WATCH FOR ####
                $cofa_folder = '\\cpsfs001\Data_pvs\TestCofA'
                $bulk_folder = '\\cpsfs001\PVS\Subsidiary\Nolwood\McWood\POD'
                $filter = '*.tif'
                $cofa = New-Object IO.FileSystemWatcher $cofa_folder, $filter -Property @{ IncludeSubdirectories = $false; EnableRaisingEvents= $true; NotifyFilter = [IO.NotifyFilters]'FileName, LastWrite' }
                $bulk = New-Object IO.FileSystemWatcher $bulk_folder, $filter -Property @{ IncludeSubdirectories = $false; EnableRaisingEvents= $true; NotifyFilter = [IO.NotifyFilters]'FileName, LastWrite' }
    #### CERTIFICATE OF ANALYSIS AND PACKAGE SHIPPER PROCESSING ####
                Register-ObjectEvent $cofa Created -SourceIdentifier COFA/PACKAGE -Action {
           $name = $Event.SourceEventArgs.Name
           $changeType = $Event.SourceEventArgs.ChangeType
           $timeStamp = $Event.TimeGenerated
    #### CERTIFICATE OF ANALYSIS PROCESS BEGINS ####
                $test=$name.StartsWith("I")
         if ($test -eq $true) {
                $pos = $name.IndexOf(".")
           $left=$name.substring(0,$pos)
           $pos = $left.IndexOf("L")
           $tempItem=$left.substring(0,$pos)
           $lot = $left.Substring($pos + 1)
           $item=$tempItem.Substring(1)
                Write-Host "in_item_key $item in_lot_key $lot imgfilename $name in_cofa_crtdt $timestamp"  -fore green
                Out-File -FilePath c:\OutputLogs\CofA.csv -Append -InputObject "in_item_key $item in_lot_key $lot imgfilename $name in_cofa_crtdt $timestamp"
                start-sleep -s 5
                $conn = New-Object System.Data.SqlClient.SqlConnection("Data Source=PVSNTDB33; Initial Catalog=adagecopy_daily; Integrated Security=TRUE")
                $conn.Open()
                $insert_stmt = "INSERT INTO in_cofa_pvs (in_item_key, in_lot_key, imgfileName, in_cofa_crtdt) VALUES ('$item','$lot','$name','$timestamp')"
                $cmd = $conn.CreateCommand()
                $cmd.CommandText = $insert_stmt
                $cmd.ExecuteNonQuery()
                $conn.Close()
    #### PACKAGE SHIPPER PROCESS BEGINS ####
              elseif ($test -eq $false) {
                $pos = $name.IndexOf(".")
           $left=$name.substring(0,$pos)
           $pos = $left.IndexOf("O")
           $tempItem=$left.substring(0,$pos)
           $order = $left.Substring($pos + 1)
           $shipid=$tempItem.Substring(1)
                Write-Host "so_hdr_key $order so_ship_key $shipid imgfilename $name in_cofa_crtdt $timestamp"  -fore green
                Out-File -FilePath c:\OutputLogs\PackageShipper.csv -Append -InputObject "so_hdr_key $order so_ship_key $shipid imgfilename $name in_cofa_crtdt $timestamp"
    Rich Thompson

    Hi
    Since SQL Server 2000 has been out of support, I recommend you to upgrade the SQL Server 2000 to a higher version, such as SQL Server 2005 or SQL Server 2008.
    According to your description, you can try the following methods to check duplicate record in SQL Server.
    1. You can use
    RAISERROR to check the duplicate record, if exists then RAISERROR unless insert accordingly, code block is given below:
    IF EXISTS (SELECT 1 FROM TableName AS t
    WHERE t.Column1 = @ Column1
    AND t.Column2 = @ Column2)
    BEGIN
    RAISERROR(‘Duplicate records’,18,1)
    END
    ELSE
    BEGIN
    INSERT INTO TableName (Column1, Column2, Column3)
    SELECT @ Column1, @ Column2, @ Column3
    END
    2. Also you can create UNIQUE INDEX or UNIQUE CONSTRAINT on the column of a table, when you try to INSERT a value that conflicts with the INDEX/CONSTRAINT, an exception will be thrown. 
    Add the unique index:
    CREATE UNIQUE INDEX Unique_Index_name ON TableName(ColumnName)
    Add the unique constraint:
    ALTER TABLE TableName
    ADD CONSTRAINT Unique_Contraint_Name
    UNIQUE (ColumnName)
    Thanks
    Lydia Zhang

  • Actions Possible Without Opening Raw File in Photoshop?

    Is it possible to record certain actions on a raw file without opening the file in Photoshop?
    Let's assume I have 250 files, all needing lens correction (and maybe other common tweaks) as a basic first step.  I'd like to be able to record an action that (1) opens my NEF file in ACR; (2) makes the lens correction based on the profile for the particular lens I used; (3) [other tweak--say noise reduction]; (4) [other tweak--say color temperature]; and then (5) closes the file generating nothing but the .xmp file.
    Then when I go to work on each file, all my basic corrections have been made so that when I reopen later in ACR, I only have to make custom changes before finally opening in Photoshop.
    I've tried a few things, scanned the forums, checked the online help center, gone through a few Adobe TV tutorials, but I can't figure out how to do it.
    Any help?
    I'm in CS6.
    I just realized that this question probably belongs here rather than the ACR discussion.  I apologize for cross posting.

    Phoenix89MR wrote:
    Is it possible to record certain actions on a raw file without opening the file in Photoshop?
    No...an Action is something that records something in Photoshop. Yes, an Action can record ACR settings....but you need to actually end up opening the image in Photoshop and it will render the file.
    What you really want to do is to look into Camera Raw Presets and using them while in Bridge. You would open a representative image, adjust the image, save a preset and then apply that preset to as many images as you want to in Bridge. Also note you can open multiple images in ACR, select them and adjust multple images at once. You can also adjust an image and then in Bridge, copy the settings from the one file and paste them to others.
    Lots of way to accomplish what you want but not really by Actions in Photoshop.

  • How to reset firefox without openning the firefox as after repeated installation it fails to start and gives error message " Your Firefox profile cannot be load

    "Your Firefox profile cannot be loaded. It may be missing or inaccessible."
    I dont know why this message has appeared. i have tried uninstalling and reinstalling firefox after completely deleting all files and folders of mozilla from program files and registry.Despite of that firefox will not start and keep giving error message. i can not reset firefox without openning firefox.Profile does not open in window search.
    On openning app data profile manually there is nothing much i can do as it shows [General]
    StartWithLastProfile=1
    [Profile0]
    Name=default
    IsRelative=1
    Path=Profiles/2tt76737.default
    how shall i fix and restore firefox as i am desperate please , please help....

    Does that Profiles/2tt76737.default still exist?
    Create a new profile as a test to check if your current profile is causing the problems.
    See "Creating a profile":
    *https://support.mozilla.org/kb/profile-manager-create-and-remove-firefox-profiles
    *http://kb.mozillazine.org/Standard_diagnostic_-_Firefox#Profile_issues
    If the new profile works then you can transfer some files from an existing profile to the new profile, but be careful not to copy corrupted files.
    *http://kb.mozillazine.org/Transferring_data_to_a_new_profile_-_Firefox

  • My MacBook get's hot really quick and then discharge's quickly without opening any program, please help.

    My MacBook get's hot really quick and then discharge's quickly without opening any program, please help.
    I have checked the cooling fan, and it's working, and I took it to an IT technician and he said my hardware is allright, so is it a problem from the OS it self??
    OS X(10.8.5)

    Restart with the Option key held down and the Mac OS X install disk inserted, provide the firmware password, click on the DVD, press the button with the straight arrow, access the firmware settings, disable the password, and use FireWire Target Disk mode. If you can't do that or it doesn't work, contact Apple.
    (38384)

  • Edit document without open?

    Hi all,
    is it possible to edit a document without open it?
    thx

    Ok, thats fine...my little problem now is that i have the following code:
    var BookContents = app.activeBook.bookContents;
    for (var x = 0; x <= BookContents.count(); x++) {
         var file = new File("/Volumes"+BookContents[x].filePath);
         alert(file.exists); << This returns true
         var doc = app.open(file, false);
         alert(app.activeDocument()); << This returns null !!!!
         alert(app.documents[0]); << Also returns null !!!!
    As u can see i want to iterate over bookcontents, open every doc an change some links.
    Now i cant get the doc because this is null....
    Maybe you have an idea?

  • Attaching/Subclassing Object Libraries Without Opening in 6i FMB

    Hi All,
    Our requirement is to subclass a object group which contains different set of elements in it. (i.e. Blocks, Property classes, Canvas etc) how can we subclass this OLB in a form without opening the form in a 6i Builder. Tried the header functions available in Forms C API but i find no API which allows this type of operations to be done for object libraries. We have successfully automated such redundant activities for other items like canvas, items etc.
    Can you suggest a way to achieve this in a object library, if its possible. Because we need to do this for nearly 500+ forms. Why we are thinking of this alternative is because of the fact that if we have these elements said above in a object group of a template form, we will have to drag and drop this object group in each forms from template form.
    Its a new object group and we are not in a position to add the newly created elements into any other existing object group because of few other reasons which may disturb the existing functionality, because if we can do that recompiling all forms against template form will have the newly created elements reflected.
    Hope i have conveyed it clearly, please comment and advice to achieve our requirement.
    Edited by: ramarun on Sep 30, 2011 11:50 AM

    This is not possible with Forms 6i. Referred with Oracle Support for this Issue.
    Thanks

  • How to I restore the ability to view the contents of emails without opening

    Several times I have been scrolling throuhg emails and the view of messages in my inbox will change so that I can no longer read messages without opening them.  How do I change this back?

    Two potential fixes.
    1) BE sure they are apps that you installed and didn't come with ios5
    2) Check your restrictions settings and be sure the "Delete Apps" isn't set to ON
    Other than that, try resetting ipad (you dont lose anything) by holding power and home button until you see the Apple logo then let go. Once is powers back up see if you can delete again.

  • Is it possible to create info record without material number

    Hi all,
    Is it possible to create infor record without material master and what is the importance of the field Info update in PO.
    Thank you for the help.

    Hi,
    1.Yes you can create Info record without material no. but you have create it for material group.Go to ME11 and only enter vendor ,Purchasing organization , and Plant don't enter material no.. and again enter maitain material gruop and require data for Material group.
    2.Info Update indicator -
    Info record update
        Determines whether the prices and conditions of this purchase order ite
        are suggested in future PO items.
    Use
        Selecting InfoUpdate causes one of the following situations to occur:
            -   If just one info record (with or without plant) exists, it is
                updated.
            -   If no info record exists and "plant condition requirement" was
                specified in Customizing, an info record with plant is created.
                Otherwise, an info record without plant is created.
            -   If two info records exist (that is, one info record with plant
                and one without plant) the info record with plant is updated.
    reward if helpful,
    Regards,
    Chetan.

  • Find/change across multiple docs in book without opening all first?

    I am working on a book that contains hundreds of individual documents. I would like to be able to find/change globally across all documents, but as far as I can tell, I must first open all of the documents in the book so that the scope menu in the find/change dialog contains "All Documents" as an option. Needless to say, having to open more than a dozen or so documents causes my computer to bog down and it's practical.
    Am I missing something here? Is there a way for me to make global search/replaces across all docs in a book without opening them? If so, how?

    I'm not able to check this now, but I believe that FrameMaker can open closed book documents to perform spell checking on them. FM leaves the files open, whether or not corrections were made. I'm not sure if such opened files, in which no corrections have been made, need to be saved when closing them, but the user must close them. Files that contain cross-file cross-references are by default checked for valid cross-reference links, which requires the user to choose Save or Don't Save in order to close them, even if no corrections were made. The link-checking is considered to be a change; some folks consider this a bug, others a feature.
    I agree that it's a good feature to request for ID. A related feature request would be the ability to open next or previous ID files when paging through to the start or end of a file that's a member of a currently-opened book.
    HTH
    Regards,
    Peter Gold
    KnowHow ProServices

  • Purchasing Info record without material

    Hi All,
    How to create purchasing info record without material by Material group.
    What is the t.code used .Is there any config
    G.Ganesh Kumar

    you can create by using the same tcode ME11 without mentioning the material number and after entering the relevant data in the screen pleasepress enter and in the next screen enter the materail group.
    Do always mention the order unit as for the material group it is very necessary.
    The order unit and material group are used as a checking criteria.
    When you create Free Text Preq SYSTEM will suggest automatically the info record as a source of supply for the particular material group but it will not suggest automatically for the  free text PO.
    There you have to take the  searchhelp for material groups in the relevant field in the item overview screen where material group and order unit are taken into account for the checking criteria.
    Regards
    Ankur

  • Able to open fse2 without opening client

    Hi,
    In our production environment one user is able to open fse2 transaction code, without opening client,
    While remaining users are not able to, if any other user is trying to open fse2 tcode getting status "client XXX has status not modifiable"
    I have checked roles, parameters of the user who is trying to open fse2 and given same roles and parameters to another user, but he is not able to open.
    I want fse2 transaction code to be opened for another user without asking  "client XXX has status not modifiable"
    Thanks in advance.
    Gowtham

    Hi Gowtham,
    I assume below configuration has been performed for one of the users in Production.
    1. Change the SPRO settings for view V_T011 using SOBJ as outlined in SAP Note#135028 - Transfer IMG activity to Current Settings.
    2. Further, Message FE-146, also needs to converted to an Information or Warning message, using OBA5 as outlined in SAP Note#109577 - Changing FS version although client not changeable.
    Due to this only one user can perform the changes. Please cross and do the needful as required.
    Hope this helps.
    Regards,
    Deepak Kori

Maybe you are looking for

  • Problems with my account. How to setup a new one and copy all data in it?

    I've had this Admin account called 'Alex' since my TiBook days. It was on a freshly installed Panther, but for some reason it had a few problems. Just within my own account, that is. My 'Alex' account happened to be the only Admin account; all the ot

  • Is there a way to pass files to a LV app in Mac OS X?

    There is an option in the Finder in Mac OS X to open files with the specified application. I tried it with my LV app, but unfortunately I haven't found any way to read out the filename passed to the app. (The Application/Command Line Arguments Proper

  • Error in PRRW because posting to CO-PA is required

    Hi, I am working with Travel management and we are getting problems in transaction PRRW because the account used in a trip requires posting to CO-PA. I heard that BADI TRIP_POST_FI (method FILL_EXT_RAWDATA) could be implemented to derive and pass the

  • HR forms character format

    Hi,     How we will make a field Bolder in HR forms. Tcode PE51. Regards, Karthik.k

  • Static Ranking in WebI 4.1

    Hi Guys, I have a requirement where I need to rank the data based on Total Cost. Basically, the report has 2 tabs. In the first tab,I need to rank by applying some filters which is done. Now the same table is copied in the second tab and if I filter