Error trapping with OPEN FOR

I am trying to add some error handling to this packaged procedure written by someone else.
How can I check for an Oracle error in the query in m_sql_string? I have tried checking
SQLCODE after the 'OPEN FOR', but it is always 0 even when errors are being encountered.
I need to trap errors and write them to an error table.
CREATE OR REPLACE PACKAGE P1
AS
TYPE CHCUR IS REF CURSOR;
PROCEDURE QRY_WR_STATUS_CHANGES (tsAfter IN VARCHAR2, rsResult OUT CHCUR);
END P1;
CREATE OR REPLACE PACKAGE BODY P1
AS
PROCEDURE QRY_WR_STATUS_CHANGES(tsAfter IN VARCHAR2, rsResult OUT CHCUR)
IS
m_sql_string VARCHAR2(30000);
BEGIN
m_sql_string := 'SELECT TS_STATUS, CD_STATUS, CD_WR, RowId
FROM TABLE_A
WHERE
NOT EXISTS (SELECT ''X'' FROM TABLE_B where TABLE_B.USER_NAME =TABLE_A.ID_OPER)
) AND
NOT EXISTS (SELECT ''X'' FROM TABLE_C where TABLE_C.wr = TABLE_A.CD_WR and
TABLE_C.dist = TABLE_A.CD_DIST)
AND
TABLE_A.TS_STATUS >
TO_DATE('''||tsAfter||''', '||'''MM/DD/YYYY HH24:MI:SS'')
AND CD_STATUS Like ''%X''';
OPEN rsResult FOR m_sql_string;
END QRY_WR_STATUS_CHANGES;
END P1;
Thanks in advance.

Thank you. I just tried adding such an exception block. It compiles and runs fine, but isn't trapping the error. I see the error returned in the results when I call the proc from SQL*PLUS, but can't seem to trap it in the code...it's like I need to check the contents of the OUT data for the error or something. Below is the modified code and then showing executing it and the results. Any further ideas are greatly appreciated.
CREATE OR REPLACE PACKAGE P1
AS
TYPE CHCUR IS REF CURSOR;
PROCEDURE QRY_WR_STATUS_CHANGES (tsAfter IN VARCHAR2, rsResult OUT CHCUR);
END P1;
CREATE OR REPLACE PACKAGE BODY P1
AS
PROCEDURE QRY_WR_STATUS_CHANGES(tsAfter IN VARCHAR2, rsResult OUT CHCUR)
IS
m_sql_string VARCHAR2(30000);
BEGIN
m_sql_string := 'SELECT TS_STATUS, CD_STATUS, CD_WR, RowId
FROM TABLE_A
WHERE
NOT EXISTS (SELECT ''X'' FROM TABLE_B where TABLE_B.USER_NAME =TABLE_A.ID_OPER)
) AND
NOT EXISTS (SELECT ''X'' FROM TABLE_C where TABLE_C.wr = TABLE_A.CD_WR and
TABLE_C.dist = TABLE_A.CD_DIST)
AND
TABLE_A.TS_STATUS >
TO_DATE('''||tsAfter||''', '||'''MM/DD/YYYY HH24:MI:SS'')
AND CD_STATUS Like ''%X''';
OPEN rsResult FOR m_sql_string;
EXCEPTION
WHEN OTHERS THEN
DBMS_OUTPUT.PUT_LINE('Error code is: Long postings are being truncated to ~1 kB at this time.

Similar Messages

  • Help with "open for access" error

    Why am I getting file wasn't found error here? (The file is on the desktop).
    try
    -- set myPrefsFile to (choose file with prompt "Select a file to read:" of type {"TEXT"})
    open for access (file "10.3.9:desktop:myFile")
    set fileContents to (read file "10.3.9:desktop:myFile")
    close access file "10.3.9:desktop:myFile"
    display dialog fileContents
    on error Error_Message
    display dialog Error_Message
    end try
    Lennox

    1. You need to specify the correct path and extension. For example:
    10.3.9:Users:username:Desktop:myFile.txt
    2. You shouldn't need to use 'open for access' if you're only going to read the file.
    I don't have any additional suggestions for your other script.
    (36335)

  • Error trap with Start-Process

    I am trying to use Start-Process to drive Regedit merging a REG file with this code.
    Start-Process regedit -Argumentlist:"/S $TempReg" -Wait -ErrorAction:Stop
    When the REG file is properly formatted this works a treat, but I can't seem to address the error condition. If I do a Try/Catch it seems to produce a successful Try. I tried doing it with a return code as well, and that didn't seem to see the error either.
    Am I doing something wrong in the code, or is Regedit a special case, and if so, can I catch errors from it at all?
    Thanks!
    Gordon

    Hmm, I assume you mean Regedit can't be used "with an error trap"? So, perhaps a different form of the question. First thing to note is that I have tried to address this with direct PowerShell access to the registry, and for some reason Autodesk
    products don't respond well to that approach. Everything looks right when I do it, but then the Autodesk product will push it's own settings over the top, and their settings are idiotic. However, when I push my settings via REG file the Autodesk products accept
    it and move on.
    So, does anyone have a suggestion for either
    A: Identifying exactly what the difference is between the .REG and Set-ItemProperty approaches, so the more elegant solution can be made to also work? Or
    B: Another approach to REG file merge that does allow for error trapping?
    My only other option I think is to implement it without error trapping, as the functionality is pretty important, and the most likely errors will show up in testing not production anyway.
    Thanks!
    Gordon

  • IOS 8 - FileStream throwing error 2038 on open for write?

    Hey all,
    Going through iOS 8 compatibility checks with our Adobe AIR app (tested with AIR 13 and AIR 14), I'm noticing changes to file storage.
    In short, my code has always been as follows for simply storing a player profile file (matching iOS documentation for as fas as I know: File System Programming Guide: File System Basics). And this has worked well to prevent purges when the device is low on storage space as well as keeping the data there when updating the app.
    This code only seems to work for iOS 4 to iOS 7:
    var storagePath:File = new File(File.applicationDirectory.nativePath + "/\.\./Documents");
    try
         var targetFile:File = storagePath.resolvePath("profile.bin");
         var stream:FileStream = new FileStream();
         stream.open(targetFile, FileMode.WRITE);
         stream.writeBytes(<byteArray here>, 0, 0);
         stream.close();
    catch (err:Error)
         <informs user something went wrong, retries, etc. basic error handling>
    Running this on iOS 8 will always throw a SecurityError (#2038) from stream.open.
    Now, we can still save data and fix this by replacing the first line by:
    var storagePath:File = new File(File.applicationStorageDirectory.nativePath);
    But, this leaves me with a few things, in order of descending importance:
    1) Reading something like this makes me scared as our game has a large amount of daily players: "I’m using applicationStorageDirectory to store files. The problem is those files get deleted when the user updates his app…" (AIR App Compliance with Apple Data Storage Guidelines, last comment)
    2) What has changed in the iOS 8 file system that suddenly makes my original code fail? Apple developer documentation is still outlining this should be valid. Is this a possible AIR bug?
    3) I assume I need to set "don't backup" flags on the files when saving to the appStorageDir?
    4) Is anyone else running into this?
    Thanks in advance!

    Thanks for your quick reply!
    I agree about not traversing up the directory tree, but a blog post from an Adobe employee I read a long time ago put me on that track: Saumitra Bhave: AIR iOS- Solving [Apps must follow the iOS Data Storage Guidelines]
    Anyway, I ran some tests including your suggested solution and it returns an interesting result:
    #1 File.documentsDirectory (iOS 8)
    Full path = /var/mobile/Containers/Data/Application/<UUID>/Documents
    Result: works as expected, no errors thrown!
    #2 new File(File.applicationDirectory.nativePath + "/\.\./Documents")  (iOS 8)
    Full path = /private/var/mobile/Containers/Bundle/Application/<UUID>/Documents
    Result: error, no write permission! (as I would expect with 'private' being there)
    #3 File.documentsDirectory (iOS 7)
    Full path = /var/mobile/Applications/<UUID>/Documents
    Result: works as expected!
    #4 new File(File.applicationDirectory.nativePath + "/\.\./Documents")  (iOS 7)
    Full path = /var/mobile/Applications/<UUID>/Documents
    Result: works as expected! (notice it's exactly the same as #3)
    So, while the storage directory is easily adjustable and #1 should fit the bill nicely, I'm thinking of how to preserve user data when people begin updating from iOS 7 to iOS 8 as it will be kind of hard for me to locate my earlier data on iOS8 unless part of the update process is to also relocate all application data? I mean, even if I had used File.documentsDirectory before, this would still be a potential problem? In any case, it's obvious the iOS8 file system is different.
    How is this going to work?

  • Error message with opening a mp4 video

    after i undate by level to v5.0.0.973 i am receiving the error HTTP Error 413: Request entity too large when i try an open a mp4 video.
    i am receiving this error on videos that i was able to view before.  ALSO, since the update, i can not view mp4 video, but given the open to save to view.
    how can these two issue to resolved

    Hi,
    To downgrade your OS, follow these instructions:
    How to Downgrade Your Blackberry OS
    1. Make sure you have Blackberry Desktop Manager (BDM) installed on your computer. You can download it for free at http://na.blackberry.com/eng/services/desktop/ for PC or Mac.
    2. Download the OS you wish to downgrade to and install that file on your computer. It will integrate with BDM.
    3. Backup your contacts, settings, and personal files on your Blackberry with BDM. This will save you from losing your contact list and other personal information.
    4. To begin the downgrade process, start BDM with your Blackberry attached to your computer via the supplied cable.
    5. Once BDM has started and you are at the main screen, click on Application Loader and then Update Software.
    6. After the BDM reads information from your Blackberry, you will be presented with a list of available updates. Select the version you wish to install by checking the box next to the version and click Next.
    7. After the BDM reads your device, the process will start. Once started, follow the prompts and do not unplug your device or the installation will become corrupted. The process will take 25-30 minutes to complete. When the installation is complete, you will receive a message from BDM stating so.
    8. You may have to reinstall some programs such as Blackberry App World, special themes, or games you purchased. If you backed up your device, you can now allow BDM to restore your files.
    9. To restore files and settings, go to the main screen on BDM and select Backup and Restore and then select Restore.
    10. You will be prompted for the backup file from earlier, which by default has the date in the name of the file. Once completed you will be shown a message stating it is complete.
    Let me know if you have any problems,
    Doc

  • Error 6 with Open File

    My SW is running on a FP2000 with LV7.1. It generates many text files; periodically, the files are opened, a few lines are added, and the files are reclosed. The program runs fine for 15 minutes or so, then suddenly all "Open/create/replace file.vi" start to fail. I debugged them and i saw that it's "Open File" that fails. From now on it will always generate error 6 for every file, existing or new. I debugged the file paths wired to Open File, they're valid, and there's nothing new with name formats, file sizes, file contents, access mode... Also:
    - during this condition, FTP server doesn't work: i can browse the FP disk but can't transfer files
    - if i stop the program, FTP starts working again
    - if i reboot the FP or simply restart the program, all is ok again (for 15 minutes...)
    - if i run the same program under windows, i don't experience the problem
    - i've already tried to reformat the flash disk
    help!!!

    As the error comes up after some time the code has been running and it disappears whenever you restart your target, it appears the problem has to do with something that builds up over time.
    I suggest you use the Tools>>Realtime System Manager to track what happens on the FP from a Memory/CPU point of view.
    Also, try and see what happens with the attached example on your FP. I tested this on mine and it does not seem to cause any problem.
    Attachments:
    FileWrite(RT).vi ‏48 KB

  • Error message with QT for Windows Vista

    I have an error message from Windows Vista...
    Microsoft Visual C++ Runtime Library
    Buffer overrun detected!
    Program: C:\Program Files\QuickTime\QuickTimePlayer.exe
    A buffer overrun has been detected which has corrupted the program's internal state. The program cannot safely continue execution and must now be terminated.
    ....and it just close Quick Time, it happens to me all the time, can anybody please help me?

    I just answered this problem, so you arent the only one. As I said in the other post, I am only running XP Pro SP2...but I also had the same problem, and it just started recently. I fixed it by going into my Quicktime Preferences....and going to Advanced tab, and upping my Download cache to 300MB, and then clicking on Empty Cache. I also upped by Audio from 16bit to 24bit. Dunno which really fixed it, but those were the 2 things I changed, and it works no problem now.

  • Getting this error while opening a folder : This file does not have a program associated with it for performing this action. Please install a program or, if one is already installed, create an association in the Default Programs control panel

    Hi,
    While trying to open a folder on my Windows 7 Home Premium, an error comes "This file does not have a program associated with it for performing this
    action.  Please install a program or, if one is already installed, create an association in the Default Programs control panel." I tried searching on the net but did not get great support for the issue when it happens with folder opening.

    Hi Nikunj Shah,
    First, I suggest you download
    Microsoft Safety Scanner or
    Malicious Software Removal Tool to run a full scan.
    The error messages here seems to be caused by the corrupted registries, which related with the folder association.
    You may take a try to merge the following registry settings to reset the folder association, before that, remember to backup your registry settings first:
    How to back up and restore the registry in Windows
    Copy and paste the following commands into Notepad, and save it to a .reg file:
    =================
    Windows Registry Editor Version 5.00
    [HKEY_CLASSES_ROOT\Folder]
    "ContentViewModeLayoutPatternForBrowse"="delta"
    "ContentViewModeForBrowse"="prop:~System.ItemNameDisplay;~System.LayoutPattern.PlaceHolder;~System.LayoutPattern.PlaceHolder;~System.LayoutPattern.PlaceHolder;System.DateModified"
    "ContentViewModeLayoutPatternForSearch"="alpha"
    "ContentViewModeForSearch"="prop:~System.ItemNameDisplay;System.DateModified;~System.ItemFolderPathDisplay"
    @="Folder"
    "EditFlags"=hex:d2,03,00,00
    "FullDetails"="prop:System.PropGroup.Description;System.ItemNameDisplay;System.ItemTypeText;System.Size"
    "NoRecentDocs"=""
    "ThumbnailCutoff"=dword:00000000
    "TileInfo"="prop:System.Title;System.ItemTypeText"
    [HKEY_CLASSES_ROOT\Folder\DefaultIcon]
    @=hex(2):25,00,53,00,79,00,73,00,74,00,65,00,6d,00,52,00,6f,00,6f,00,74,00,25,\
      00,5c,00,53,00,79,00,73,00,74,00,65,00,6d,00,33,00,32,00,5c,00,73,00,68,00,\
      65,00,6c,00,6c,00,33,00,32,00,2e,00,64,00,6c,00,6c,00,2c,00,33,00,00,00
    [HKEY_CLASSES_ROOT\Folder\shell\explore]
    "MultiSelectModel"="Document"
    "ProgrammaticAccessOnly"=""
    "LaunchExplorerFlags"=dword:00000018
    [HKEY_CLASSES_ROOT\Folder\shell\explore\command]
    "DelegateExecute"="{11dbb47c-a525-400b-9e80-a54615a090c0}"
    [HKEY_CLASSES_ROOT\Folder\shell\open]
    "MultiSelectModel"="Document"
    [HKEY_CLASSES_ROOT\Folder\shell\open\command]
    "DelegateExecute"="{11dbb47c-a525-400b-9e80-a54615a090c0}"
    @=hex(2):25,00,53,00,79,00,73,00,74,00,65,00,6d,00,52,00,6f,00,6f,00,74,00,25,\
      00,5c,00,45,00,78,00,70,00,6c,00,6f,00,72,00,65,00,72,00,2e,00,65,00,78,00,\
      65,00,00,00
    [HKEY_CLASSES_ROOT\Folder\shell\opennewprocess]
    "MUIVerb"="@shell32.dll,-8518"
    "MultiSelectModel"="Document"
    "Extended"=""
    "LaunchExplorerFlags"=dword:00000003
    "ExplorerHost"="{ceff45ee-c862-41de-aee2-a022c81eda92}"
    [HKEY_CLASSES_ROOT\Folder\shell\opennewprocess\command]
    "DelegateExecute"="{11dbb47c-a525-400b-9e80-a54615a090c0}"
    [HKEY_CLASSES_ROOT\Folder\shell\opennewwindow]
    "MUIVerb"="@shell32.dll,-8517"
    "MultiSelectModel"="Document"
    "OnlyInBrowserWindow"=""
    "LaunchExplorerFlags"=dword:00000001
    [HKEY_CLASSES_ROOT\Folder\shell\opennewwindow\command]
    "DelegateExecute"="{11dbb47c-a525-400b-9e80-a54615a090c0}"
    [HKEY_CLASSES_ROOT\Folder\ShellEx\ContextMenuHandlers\BriefcaseMenu]
    @="{85BBD920-42A0-1069-A2E4-08002B30309D}"
    [HKEY_CLASSES_ROOT\Folder\ShellEx\ContextMenuHandlers\Library Location]
    @="{3dad6c5d-2167-4cae-9914-f99e41c12cfa}"
    [HKEY_CLASSES_ROOT\Folder\ShellEx\ContextMenuHandlers\Offline Files]
    @="{474C98EE-CF3D-41f5-80E3-4AAB0AB04301}"
    [HKEY_CLASSES_ROOT\Folder\ShellEx\DragDropHandlers\{BD472F60-27FA-11cf-B8B4-444553540000}]
    @=""
    [HKEY_CLASSES_ROOT\Folder\ShellEx\PropertySheetHandlers\BriefcasePage]
    @="{85BBD920-42A0-1069-A2E4-08002B30309D}"
    [HKEY_CLASSES_ROOT\Folder\ShellEx\PropertySheetHandlers\Offline Files]
    @="{7EFA68C6-086B-43e1-A2D2-55A113531240}"
    [-HKEY_CLASSES_ROOT\Folder\ShellNew]
    [HKEY_CLASSES_ROOT\Folder\ShellNew]
    "Directory"=""
    "IconPath"=hex(2):25,00,53,00,79,00,73,00,74,00,65,00,6d,00,52,00,6f,00,6f,00,\
      74,00,25,00,5c,00,73,00,79,00,73,00,74,00,65,00,6d,00,33,00,32,00,5c,00,73,\
      00,68,00,65,00,6c,00,6c,00,33,00,32,00,2e,00,64,00,6c,00,6c,00,2c,00,33,00,\
      00,00
    "ItemName"="@shell32.dll,-30396"
    "MenuText"="@shell32.dll,-30317"
    "NonLFNFileSpec"="@shell32.dll,-30319"
    [HKEY_CLASSES_ROOT\Folder\ShellNew\Config]
    "AllDrives"=""
    "IsFolder"=""
    "NoExtension"=""
    ==================
    Once done, right-click the REG file and choose Merge. Alternately, you can open the Registry Editor and then using the
    Import option from the File menu, to merge the REG file contents.
    Let me know if you need any further help.
    Best regards
    Michael Shao
    TechNet Community Support

  • Error: "File couldn't be opened for writing" with CinemaDNG sequence

    Using a Premiere Pro > After Effects workflow with my colorist.
    I created a project in Premiere CS6 and used MOV transcodes because Premiere CS6 does not read CinemaDNG sequences. I do not have CC installed on my computer. My colorist, on his computer (we are both using Mavericks), imported the .prproj into AE CS6. We tried to replace MOV files with CinemaDNG sequences, and AE returned this error:
    After Effects error: File couldn't be opened for writing: "[file path]". ( 3 :: 0 )
    Normally when you replace footage with a CinemaDNG sequence in AE, Adobe Camera Raw pops open so you can make changes before the file is important. I have never seen this error before.
    My colorist has CC installed as well as CS6, so we tried that instead.
    Colorist opened the Premiere CS6 project in Premiere CC, creating a new Premiere CC project. Replaced MOV files with CinemaDNG sequences within Premiere CC with no error, project plays fine in Premiere CC. Finally! So we imported the new Premiere CC project in AE CC, and all linked CinemaDNG sequences appear as color bars (unlinked footage). When testing to import a CinemaDNG sequence, AE CC returned the same error as AE CS6.
    So we tried opening the same CinemaDNG files in Photoshop CS6 and Photoshop CC to see if there was an error with Camera Raw. Both versions of Photoshop open the CinemaDNG files correctly in Camera Raw (version 8.3). So now we have CinemaDNG files functioning properly in Premiere Pro, Photoshop, but... not AE?
    Tried replicating this on a second, Mountain Lion computer with both versions of AE, and returned the same issue.
    CinemaDNG files from a different source DID open in AE CC and AE CS6 on both computers, which leads me to believe there is some kind of permissions/metadata issue in this particular set of CinemaDNG files I'm using that's causing problems for AE, but NOT Premiere Pro or Photoshop. Anyone experience anything like this?

    try the "oddball problems" fix:
    http://www.bulletsandbones.com/GB/GBFAQ.html#oddballprobs
    (Let the page FULLY load. The link to your answer is at the top of your screen)

  • I am using elements 11. I cannot open editor because configuration error occurs with message "errror 213:11". What happened? What can I do? Thanks a lot for your support.

    I am using elements 11 with Windows7. I cannot open editor because configuration error occurs with message "errror 213:11". What happened? What can I do? Thanks a lot for your support.

    See if this helps:
    Error "License store does not allow writing" | Install log | CS5, CS5.5

  • How to keep the field open for input with error message in report program

    Hi,
      Need a help in solving the below issue.
    "How to keep the field open for input with error message in report program"
    Regards,
    C.Shasiraj.

    Hi...
    you have to use the event:
    <b>AT SELECTION-SCREEN ON <FIELD> EVENT.</b>
    u have to give an error message in this event.
    Consider the following <b>Example:</b>
    <b>PARAMETERS : NUMBER TYPE I.
    AT SELECTION-SCREEN ON NUMBER.
      IF NUMBER = 10.
        MESSAGE 'Number vakue is 10' TYPE 'E'.
      ENDIF.
    START-OF-SELECTION.
      WRITE NUMBER.
    </b>
    in this if u give the value of number = 10, it will not proceed further, if u give some other value other than 10 you will proceed further...
    Execute this program once u will understand....
    also Consider the following links :
    <b>Regarding events:</b>
    http://help.sap.com/saphelp_erp2005vp/helpdata/en/79/34a237d9b511d1950e0000e8353423/frameset.htm
    http://help.sap.com/saphelp_erp2005vp/helpdata/en/79/34a23ad9b511d1950e0000e8353423/frameset.htm
    <b>Regarding messages:</b>
    http://help.sap.com/saphelp_erp2005vp/helpdata/en/c5/aa575426ad11d2954d0000e8353423/frameset.htm
    http://help.sap.com/saphelp_erp2005vp/helpdata/en/c5/aa575426ad11d2954d0000e8353423/frameset.htm
    This is very useful.......
    Reward points if useful....
    Suresh....

  • ITunes installation error: does not have program associated with it for performing this action

    Repeated tries to install iTunes continues to fail. Installing on Acer laptop using Windows 7.
    Error: does not have program associated with it for performing this action
    We have done the following: open Default programs, clicked associate a file type, clicked on change program button and selected a program to open with and clicked OK/enter.
    The installation continues. we get to the finish window; click finish.
    Next error: iTunes has been installed incorrectly.
    So, what do we do to get iTunes working?
    Thank you.

    Hi normeagle,
    Welcome to Apple Support Communities.
    You may find this article helpful for troubleshooting your iTunes installation:
    Trouble installing iTunes or QuickTime for Windows
    http://support.apple.com/kb/HT1926
    Best,
    Jeremy

  • The report terminated with error:  REP-110: File test2. cannot be opened. REP-1070: An error occurred while opening or saving a document.

    Hi,
    I'm getting the below error for reports.
    The report terminated with error:
    REP-110: File test2. cannot be opened. REP-1070: An error occurred while opening or saving a document. REP-0110: File test2. cannot be opened. .
    When checked Environment using url 'http://host:port/reports/rwservlet/showenv?server=your_repserver_name"
    found below
    ==================================================
    Reports Servlet Environment Variables 11.1.1.4.0
    Security Mode Non-secure
    HTTP Environment Variables 11.1.1.4.0
    SERVER_NAME   09.14.4.41
    SERVER_PORT   8888
    SCRIPT_NAME   /rwservlet
    SERVER_PROTOCOL   HTTP/1.1
    SERVER_SOFTWARE   undefined
    GATEWAY_INTERFACE   undefined
    SERVER_PORT_SECURE   undefined
    ACCEPT   image/jpeg, application/x-ms-application, image/gif, application/xaml+xml, image/pjpeg, application/x-ms-xbap, application/vnd.ms-excel, application/vnd.ms-powerpoint, application/msword, */*
    REQUEST_METHOD   GET
    REMOTE_HOST   test-wam-app
    REMOTE_ADDR   09.14.4.41
    REMOTE_USER   undefined
    AUTH_TYPE   undefined
    PATH_INFO   showenv
    QUERY_STRING   server=RptSvr_test-wam-app_wamtest
    PATH_TRANSLATED   undefined
    CONTENT_LENGTH   undefined
    CONTENT_TYPE   undefined
    AUTHORIZATION   undefined
    USER-AGENT   Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.2; Trident/6.0; .NET4.0E; .NET4.0C; .NET CLR 3.5.30729; .NET CLR 2.0.50727; .NET CLR 3.0.30729; InfoPath.3; MS-RTC LM 8)
    REMOTE_IDENT   undefined
    REFERER   undefined
    Oracle Reports Services - Servlet Environment Variables  Select to jump to the top of the page  Return to Top
    KeyMapFile   /u03/apptest/FMW_11.1.1/user_projects/domains/WamTest/config/fmwconfig/servers/WLS_REPORTS/applications/reports_11.1.1.2.0/configuration/cgicmd.dat
    DBAUTH   /u03/apptest/FMW_11.1.1/apphome/reports/templates/rwdbauth.htm
    SYSAUTH   /u03/apptest/FMW_11.1.1/apphome/reports/templates/rwsysauth.htm
    server   rep_wls_reports_test-wam-app_wamtest1
    DIAGNOSTIC   yes
    ERRORTEMPLATE   /u03/apptest/FMW_11.1.1/apphome/reports/templates/rwerror.htm
    SERVER_IN_PROCESS   yes
    COOKIEEXPIRE   30
    ENCRYPTIONKEY   reports9i
    DIAGHEADTAGS   undefined
    DIAGBODYTAGS   undefined
    HELPURL   undefined
    RELOAD_KEYMAP   undefined
    IMAGEURL   http://09.14.4.41:8888/reports/rwservlet 
    SINGLESIGNON   no
    Oracle Reports Services - Server and Engine Environment Variables  Select to jump to the top of the page  Return to Top
    PATH   /u01/wamtest/FMW_11.1.1/apphome/jdk/bin:/u01/wamtest/FMW_11.1.1/apphome/bin:/u01/wamtest/FMW_11.1.1/apphome/jdk/bin:/u01/wamtest/FMW_11.1.1/apphome/bin:/u01/wamtest/FMW_11.1.1/apphome/bin:/u01/wamtest/FMW_11.1.1/apphome/bin:/u01/java/jdk1.6.0_23/bin:/usr/kerberos/bin:/usr/local/bin:/bin:/usr/bin
    DISPLAY  
    LD_LIBRARY_PATH   /u01/wamtest/FMW_11.1.1/apphome/jdk/jre/lib/amd64/server:/u01/wamtest/FMW_11.1.1/apphome/jdk/jre/lib/amd64:/u01/wamtest/FMW_11.1.1/apphome/jdk/jre/../lib/amd64:/u01/wamtest/FMW_11.1.1/apphome/jdk/jre/lib/amd64/native_threads:/u01/wamtest/FMW_11.1.1/apphome/jdk/jre/lib/amd64:/u01/wamtest/FMW_11.1.1/apphome/lib:/u01/wamtest/FMW_11.1.1/apphome/jdk/jre/lib/amd64/server:/u01/wamtest/FMW_11.1.1/apphome/jdk/jre/lib/amd64/native_threads:/u01/wamtest/FMW_11.1.1/apphome/jdk/jre/lib/amd64:/u01/wamtest/FMW_11.1.1/apphome/lib:/u01/wamtest/FMW_11.1.1/apphome/jdk/jre/lib/amd64/server:/u01/wamtest/FMW_11.1.1/apphome/opmn/lib:/u01/wamtest/FMW_11.1.1/apphome/lib
    ORACLE_HOME   /u01/wamtest/FMW_11.1.1/apphome
    TNS_ADMIN   /u01/wamtest/FMW_11.1.1/instance1/config
    NLS_LANG   AMERICAN_AMERICA.WE8ISO8859P1
    USER_NLS_LANG  
    RW   /u01/wamtest/FMW_11.1.1/apphome/reports
    REPORTS_PATH   /u01/wamtest/FMW_11.1.1/apphome/reports/templates:/u01/wamtest/FMW_11.1.1/apphome/reports/samples/demo:/u01/wamtest/FMW_11.1.1/apphome/reports/integ:/u01/wamtest/FMW_11.1.1/apphome/reports/printers:/u01/wamtest/FMW_11.1.1/instance1/reports/fonts:/u01/wamtest/FMW_11.1.1/apphome/reports/templates:/u01/wamtest/FMW_11.1.1/apphome/reports/samples/demo:/u01/wamtest/FMW_11.1.1/apphome/reports/integ:/u01/wamtest/FMW_11.1.1/apphome/reports/printers:/u01/wamtest/FMW_11.1.1/instance1/reports/fonts:
    REPORTS_TMP   /tmp
    REPORTS_TAGLIB_URI   /WEB-INF/lib/reports_tld.jar
    java.class.path   /u01/wamtest/FMW_11.1.1/apphome/reports/jlib/rwrun.jar
    sourceDir  
    tempDir  
    useDataCache  
    ignoreDataParameter
    =========================================================================
    ORACLE_HOME is on mount point u03, checked config.properties but no mention of mount point /u01.
    Dont know from where /u01 came. Could you please help me re configuring the env pointing to /u03.
    Reports server is up though without any issues.
    Regards,
    Djay

    Ensure that the report name is correct. Also ensure that the report exist in REPORTS_PATH environment variable. Otherwise run the report including the reports path.
    E.g.
    report=<reports directory>/test2.rdf

  • Error message when opening a shared workbook with Excel 2007

    Hello,
    We would like to share a workbook outside BW (by saving into a serveur).Since we use Excel 2007, we can't anymore open this workbook.
    We have a message error (see bellow).
    For your information, it was ok with Excel 2003.
    When whe save the workbook in local disk and then copy from local disk
    to a serveur, it's ok.
    We use SAPGUI 7.10 support package 8, patch 1 Revision 1443 & BI 7.0.
    Best regards
    Nicolas Triqnuand

    hey Nicolas,
    first of all, your error message is in French... not too many people out there will be able to understand. Eventhough I do understand French, it doesn't make much sense to me... BUT... in Excel2007 all macro's are by default disabled. When you enable them (you should get a "Security Warning" right under "the Ribbon"), your BI stuff should work again.
    Just gave it a try, and it runs smoothly over here.
    Cheers,
    RafB

  • IPhoto frustrating error..The volume for "Df23.JPG" cannot be found. It prompts for all photos with this issue rather than offering an option to ignore. I can find the images in spotlight but not in Find Photo. Does anyone have a solution

    iPhoto frustrating error..The volume for "Df23.JPG" cannot be found. It prompts for all photos with this issue rather than offering an option to ignore. I can find the images in spotlight but not in Find Photo. Does anyone have a solution?

    Unless you have the source files that were on the TC or Windows machine you will have to start over with a new library as follows:
    Start over from scratch with new library
    Start over with a new library and import the Originals (iPhoto 09 and earlier) or the Masters (iPhoto 11) folder from your original library as follows:
    1.  Move the existing library folder to the desktop.
    2. Open the library package like this.
    Click to view full size
    3. Launch iPhoto and, when asked, select the option to create a new library.
    4. Drag the Masters (iPhoto 11) folder from the iPhoto Library on the desktop into the open iPhoto window.
    Click to view full size
    This will create a new library with the same Events as the original library but will not keep the metadata, albums, books slideshows and other projects.  Your original library will remain intact for further attempts at fixes is so desired.
    OT

Maybe you are looking for

  • SVG file with links to other SVG files - links don't work

    I have an SVG image with a few dozen linked images, all of which are pointing to external SVG files. If I open the main SVG in a web browser, it loads up correctly with all the linked images, so I know the file is correct. When I open it in illustrat

  • Why do my email attachments open as only one page in Preview, I can't print multiple page documents

    Why do my emailattachments open as only one page in Preview? Multiple page attachments only will print as 1 page with very small  print?

  • HOW TO USE field value in repeat_fram formate trigger

    i have a field on report layout. i want to use its value in formate trigger to filter the record in which that field value is zero. field is number type, getting stock of item. i want if stock of item is zero than it should not display, for this i us

  • Stars as amount

    Hi Guys, I am printing out an aging report, and for one of my creditors the opening balance amount is showing as stars i.e. ****** All other vendors show properly. The database and SAP was recently upgraded from SAP 2005 to SAP 8.81 It was showing pr

  • Org Unit Asssignment for Activities

    Hi,     We have recently upgraded from CRM 4.0 --> 5.0 SP 11, for certain individuals who now create data in the mobile applicatio and conntrans it ,  the Organizational Unit is not being assigned to the activities that they are creating. The Sales O