B1 DB Profiler does not work

Hello devs,
I have been trying to use B1TE to optimize our addon. But the B1 Db profiler is not running properly.
Scenario:
SAP Business One 9.0 PL 15 32bits;
MSSQL Server 2008;
MS Windows Server 2008 R2 (hosting the SQL Server instance)
MS Windows 7 (hosting SAP Business One Server and client)
B1TESetup9.0_32bits (v 2.6)
When I run B1 DB Profiler Window application, no errors happen. I have copied the necessary code into the stored procedure SBO_SP_PostTransactionNotice. When I run the test addon by clicking the T button, a message pops up informing that if no lines appear in the grid, I should check the aforementioned stored procedure.
I have enabled OAP using this:
sp_configure 'show advanced options', 1
GO
RECONFIGURE;
GO
sp_configure 'Ole Automation Procedures', 1
GO
RECONFIGURE;
GO
sp_configure 'show advanced options', 1
GO
RECONFIGURE;
I tryed copying the stored procedure code (only the content in SBO_SP_PostTransactionNotice.txt) into the stored procedure SBO_SP_TransactionNotification and the following error pops up:
That is the content of the stored procedures:
SBO_SP_TransactionNotification
USE [SBO_CertTest]
GO
/****** Object:  StoredProcedure [dbo].[SBO_SP_TransactionNotification]    Script Date: 03/09/2015 09:00:56 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
ALTER proc [dbo].[SBO_SP_TransactionNotification]
@object_type nvarchar(20),                 -- SBO Object Type
@transaction_type nchar(1),            -- [A]dd, [U]pdate, [D]elete, [C]ancel, C[L]ose
@num_of_cols_in_key int,
@list_of_key_cols_tab_del nvarchar(255),
@list_of_cols_val_tab_del nvarchar(255)
AS
begin
-- Return values
declare @error  int                -- Result (0 for no error)
declare @error_message nvarchar (200)         -- Error string to be displayed
select @error = 0
select @error_message = N'Ok'
--    ADD    YOUR    CODE    HERE
DECLARE @object int  --declare the object variable
DECLARE @hresult int --declare the hresult variable
EXEC @hresult = sp_OACreate 'B1DbProfilerCOM.Profiler', @object OUT
EXEC @hresult = sp_OAMethod @object, logDb,  NULL,
    @object_type,
    @transaction_type,
    @num_of_cols_in_key,
    @list_of_key_cols_tab_del,
    @list_of_cols_val_tab_del
IF @hresult <> 0
   BEGIN
    EXEC sp_OAGetErrorInfo @object
    RETURN
   END
-- Select the return values
select @error, @error_message
end
SBO_SP_PostTransactionNotice
USE [SBO_CertTest]
GO
/****** Object:  StoredProcedure [dbo].[SBO_SP_PostTransactionNotice]    Script Date: 03/09/2015 09:32:40 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
ALTER proc [dbo].[SBO_SP_PostTransactionNotice]
@object_type nvarchar(20),                 -- SBO Object Type
@transaction_type nchar(1),            -- [A]dd, [U]pdate, [D]elete, [C]ancel, C[L]ose
@num_of_cols_in_key int,
@list_of_key_cols_tab_del nvarchar(255),
@list_of_cols_val_tab_del nvarchar(255)
AS
begin
-- Return values
declare @error  int                -- Result (0 for no error)
declare @error_message nvarchar (200)         -- Error string to be displayed
select @error = 0
select @error_message = N'Ok'
--    ADD    YOUR    CODE    HERE
DECLARE @object int  --declare the object variable
DECLARE @hresult int --declare the hresult variable
EXEC @hresult = sp_OACreate 'B1DbProfilerCOM.Profiler', @object OUT
EXEC @hresult = sp_OAMethod @object, logDb,  NULL,
    @object_type,
    @transaction_type,
    @num_of_cols_in_key,
    @list_of_key_cols_tab_del,
    @list_of_cols_val_tab_del
IF @hresult <> 0
   BEGIN
    EXEC sp_OAGetErrorInfo @object
    RETURN
   END
-- Select the return values
select @error, @error_message
end
What else am I missing?

Bruno,
The B1TE Help documentation for the DB Profiler states to change only "
Insert the statements contained in the SBO_SP_PostTransactionNotice.txt file (C:\Program Files\SAP\SAP
Business One Test Environment\B1DbProfiler) into the SBO_SP_PostTransactionNotice
stored procedure.
2.      Use the SQL Server Enterprise Manager or .NET
          Server Explorer to edit the SBO_SP_PostTransactionNotice Stored Procedure of
          your current Company Database.
Why did you add the code also to the SBO_SP_TransactionNotification?
Eddy

Similar Messages

  • HCP debugging and profiling does not work anymore

    Hi,
    starting HCP in debug or profile mode does not work anymore.
    Last week I developed a small java app and could debug it on HCP. Today I updated the HCP Tools eclipse plugins and now I can't change the state of the server to debug or profile. Of course the debugger does then not stop at my breakpoints.
    Any hints?
    Regards Helmut

    Hi Alex,
    as you can see on the screenshots the option is available. When I start in Debug Mode the state changes to started instead of debugging. Setting breakpoints then has no effect.
    1. Start in Debug Mode
    2. Server not started in Debug Mode
    Regards Helmut

  • B1Db Profiler does not work

    Hello everyone
    I cannot seem to be able to make B1DB Profiler work.
    I have SAP B1 2007A (8.00.175) SP:00 PL:30 and using B1 Test Environment Tools 2.2.
    Although I've tried every possible way, the stored procedure to insert the code into is not clear:
    Insert the statements contained in the SBO_SP_PostTransactionNotice.txt file (C:\Program Files\SAP\SAP Business One Test Environment\B1DbProfiler) into the SBO_SP_PostTransactionNotice stored procedure.
    Use the SQL Server Enterprise Manager or .NET Server Explorer to edit the SBO_SP_TransactionNotification Stored Procedure of your current Company Database.
    When I try to to do a test (by clicking on the T button), I get an error message:
    An addon test has been run. Several lines should appear in the B1DdProfiler window, otherwise your B1DbProfiler is not correctly configured. If failed please check you have copied the needed code into the SBO_SP_TransactionNotification stored procedure.
    And here is the code that is in the SBO_SP_PostTransactionNotice.txt file:
    DECLARE @object int  --declare the object variable
    DECLARE @hresult int --declare the hresult variable
    EXEC @hresult = sp_OACreate 'B1DbProfilerCOM.Profiler', @object OUT
    EXEC @hresult = sp_OAMethod @object, logDb,  NULL,
         @object_type,
         @transaction_type,
         @num_of_cols_in_key,
         @list_of_key_cols_tab_del,
         @list_of_cols_val_tab_del
    IF @hresult <> 0
       BEGIN
         EXEC sp_OAGetErrorInfo @object
         RETURN
       END
    If anybody is able to make B1DBProfiler work with a version similar to mine, can you tell me:
    -which is the correct stored procedure to insert the code into
    -if the code that I'm inserting is correct
    -what could be a cause to this problem
    Thank you for your help.
    Pierre

    Hi Pierre,
    Have you turned on OLE Automation in the Surface Area Configuration? This is required in order to run the code used by the DBProfiler.
    Also, try running the code in SQL Studio Management directly by substituting dummy values for the parameters:
    DECLARE @object int  --declare the object variable
    DECLARE @hresult int --declare the hresult variable
    EXEC @hresult = sp_OACreate 'B1DbProfilerCOM.Profiler', @object OUT
    EXEC @hresult = sp_OAMethod @object, logDb,  NULL,
         '15',
         'A',
         1,
         'DocEntry',
         '100'
    IF @hresult <> 0
       BEGIN
         EXEC sp_OAGetErrorInfo @object
         RETURN
       END
    If this fails you should get a more specific error message.
    Kind Regards,
    Owen

  • Roaming profiles does't work with ZCM 10.3.3

    Hi,
    We have Zenworks Configuration management 10.3.3. Fully patched. We have also latest zenworks agents 10.3.3.44426.
    Our roaming profiles does not work any more after we patched zenworks agents.
    Now our existing Roaming Profiles do not update any more. No matter where profiles are stored (linux, netware or windows).
    We have DLU Policy and Roaming Profile Policy. If I delete the user account and its
    profile on the client, the account will be recreated by DLU-Policy and
    the Roaming Profile gets copied to the server once. After that no changes will be synced.
    It looks it has something with Novell client. If you don't have Novell Client on workstation, everything works fine.
    I try also simulate this problem in test environment. Same problems.
    I am now asking Novell. How it is possible that patch for this is not available ? It looks users has this problems more than half year.
    Are we the only one on this world who are using roaming profiles with Zenworks ?
    Any ideas ?
    Roman

    I knew, I am the only one on this world who are using roaming profiles with Novell client.
    But that is only one of a tousands bugs with Novell Zenworks.
    And novell support ? They need at least two weeks or more to setup one zenworks server and one XP workstation with novell client and test this.
    They are now somewhere in the middle of installing windows XP workstation.
    Roman
    >>> Automatic Reply<[email protected]> 20.9.2011 19:17 >>>
    Roman,
    It appears that in the past few days you have not received a response to your
    posting. That concerns us, and has triggered this automated reply.
    Has your problem been resolved? If not, you might try one of the following options:
    - Visit http://support.novell.com and search the knowledgebase and/or check all
    the other self support options and support programs available.
    - You could also try posting your message again. Make sure it is posted in the
    correct newsgroup. (http://forums.novell.com)
    Be sure to read the forum FAQ about what to expect in the way of responses:
    http://forums.novell.com/faq.php
    If this is a reply to a duplicate posting, please ignore and accept our apologies
    and rest assured we will issue a stern reprimand to our posting bot.
    Good luck!
    Your Novell Product Support Forums Team
    http://forums.novell.com/

  • Smart collection has "source color profile" as filter option, does not work on camera profiles

    In Lightroom 5 i tried to use the "source color profile" filter option in smart collection, however it only seems to work on rgb files (jpg, tiff) that have a profile embedded. It does not work on values like "Adobe Standard" which is a "source" profile of a RAW file, or any of the camera profiles i can choose fo given Raw file. What am i doing wrong?
    The Help does not give any clue on this, nor does the coverage by any of the Lightroom guru's like Juleanne Kost.

    In my opinion the filter is acting correctly.
    The Adobe Standard profile is not a profile defined in the source file, it is a profile assigned to the file in the raw converter and used with raw files that do not have a source color profile, already, so to me the filter is acting correctly because “source” means where the profile comes from, rather than what profile a master photo has had assigned to it. 
    The source-color-profile option is useful to determine the size of the color gamut in a file’s color numbers which indicates its suitability for various purposes:  An sRGB file can be safely uploaded to the web, an AdobeRGB file is going to look right on a wide-gamut monitor and printablebut shouldn’t be uploaded to the web, while a ProPhotoRGB file has a large color space and can be safely edited in a way that adjusts the colors significantly, especially if it is 16-bit, without color-banding or posterization, but a ProPhotoRGB file will probably not look good if directly uploaded to the web or sent to a print-shop that doesn’t do their own color profile conversions.
    I would agree that being able to filter raw files based on the assigned color profile would also be useful, but this is a different thing, to me at least, than filtering by the source-color-profile.

  • Flash player 10.3.1.8.34 (lastest verison)icon on my desktop ,does not work ?

    .I>m using windows7 OS IE9 downloaded and installed fifty times and it always say download and installation was sucessful ,that I"m now using flashplayer 10.5 ect. there is the flashplayer icon sitting right on my desktop .from control panel in programs there is is adobe flash player in the list. every time i click to view a video,says to view this i need to download flash player over and over, I"ve read all the other post.tried all the answers ,been to all support sitesmore than 10 times each I"ve been up all night again it"s now morning  i"m still lost.all help will be appreciated...................................                penny

    Yes all that u sugested i followed from the help and support at adobe.Now i downloaded flashplayer beta 11 and it"s working perfectly .I"m at peace for the moment.In my profile i "ve given my PC model and the whole works on my system.for the record I"m using windows7,IE 9,64bit shockwave is enabled and active xfiltering was disabled it just would not work..
                            thank u very much
    From: ʇɐb ɹəuəllıʍ <[email protected]>
    >To: penny torrence <[email protected]>
    >Sent: Monday, July 25, 2011 8:57 PM
    >Subject: Re: flash player 10.3.1.8.34 (lastest verison)icon on my desktop ,does not work ?
    >
    >
    >1. There is no Flash Player 10.5; the currently available version is 10.3
    >2. What Internet Explorer version are you using: 32-bit or 64-bit?
    >3. What Windows version are you using: 32-bit or 64-bit?
    >4. Have you checked the add-ons on IE9 (Shockwave Flash Object); is it enabled?
    >5. Have you checked ActiveX Filtering on IE9; is it enabled?  (It needs to be disabled.)
    >

  • Firefox does not work after update to 3.6.6 (and all later revisions)

    (EDIT: I found the exact revision from which the Firefox is not starting, it is 3.6.6 so I changed them throughout this post, previous revision value was 3.6.8)
    I am using Windows 7 x64
    After Firefox recently updated to 3.6.6 it does not work any more. The application is listed in task manager but it does not do anything. There is no user interface or anything. Only way to interact with it is "End process". Starting in safe mode or starting Profile manager is not possible.
    I tried all possible and suggested solutions in mozilla KB, this and other forums but without success (windows safe mode, firefox safe mode, renaming firefox, waiting, checking for firewall or malware/virus issues, deleting profile, uninstall, clean reinstall and every possible combination of those that I could think of). Always the same result, no error message, firefox shown in task manager and that's it.
    When I do clean install of all later firefox revisions starting from 3.6.6 the problem remains, including latest Firefox 4 beta6.
    I have no issues with any firefox versions on my Vista laptop, so I would guess that something in my windows environment is not suitable for newer versions of firefox.
    As I cannot find official older 3.6.x revision of Firefox, I am currently using 3.5.13 and it works flawlessly.
    Any help is appreciated, I ran out of ideas.

    You can try a direct connection and select No Proxy in the connection settings.
    You can find the connection settings in "Tools > Options > Advanced : Network : Connection"
    Also do a malware check with a few malware scan programs.<br />
    You need to use all programs because each detects different malware.<br />
    Make sure that you update each program to get the latest version of the database before doing a scan.
    * http://www.malwarebytes.org/mbam.php - Malwarebytes' Anti-Malware
    * http://www.superantispyware.com/ - SuperAntispyware
    * http://www.safer-networking.org/en/index.html - Spybot Search & Destroy
    * http://www.lavasoft.com/products/ad_aware_free.php - Ad-Aware Free
    * http://www.microsoft.com/windows/products/winfamily/defender/default.mspx - Windows Defender: Home Page
    See also "Spyware on Windows": http://kb.mozillazine.org/Popups_not_blocked and [[Searches are redirected to another site]]

  • "Always ask me where to save files" does not work.

    Summary: The "Always ask me where to save files" feature does not work. No dialog box comes up, apparently because the browser is stuck on a bad old read-only lastDir location, in a prefs.js file that I can't edit.
    Details:
    I am using Firefox 30.0 on Mac OS 10.6.8. My Mac has a both a read/write Mac partition that I use most of the time, and a bootcamp Windows partition drive ("C"), which I can read but not write to.
    At some point I accidentally tried to download a file from a site, using Firefox, to the read-only Windows C drive. Ever since that time, I have not been able to download any files from Firefox, except to the firefox/downloads folder. This is inconvenient. If, in preferences, I try to set downloads to ""Always ask me where to save files", the dialog box does not come up when I actually try to save files. This problem does not apply to saving photos by right-clicking them.
    If I open, in text-edit, mozilla/firefox/profiles/t4vockvue.default/prefs.js, which was saved yesterday, I can see a problematic line. It reads:
    user_pref("browser.download.lastDir", "C:\\Documents and Settings\\[etcetc]");
    C:\\Documents and Settings\\[etcetc] being the read-only windows directory.
    This prefs.js is apparently not an editable file.
    I tried to fix this by opening a browser tab in Firefox and opening about:config. The editable browser.download.lastDir does NOT show the same "lastDir"....it shows some directory that I successfully downloaded photos to, by right-clicking on a photo.
    How can I fix this problem?
    Thanks.

    To confirm which profile folder is active when you are running Firefox, it is easiest to open it from inside Firefox as follows:
    Sometimes the file that stores the customizations becomes corrupted and fails to update properly at the end of your session. You can rename the file and customize from scratch.
    * "3-bar" menu button > "?" button > Troubleshooting Information
    * (menu bar) Help > Troubleshooting Information
    In the first table on the page, click the "Show in Finder" button (Windows: "Show Folder" button).
    Hopefully you are using a separate profile folder on each OS.

  • N95 8GB unlokced , Vibrating alert does not work

    Hi
    I just bought used N95 8 GB from my friend which is locked to a network provider.
    My friend took it to shop to unlock service provider (he didn't realise that service provider does it for free), now I tried to test income call vibration but it seems to me it does not work , I tried under Tool > Profile > Create new profile (vibrating on) ,,,,but still there is no vibration when I receive call!!!
    I tried "Factory Settings" for the mobile but still same problem
    Would unlock be the reason for that (I don't know if vibration was working before unlock) ?
    Any other suggestion how to test that ?
    Thanks

    jimmyireland wrote:
    1st see if you have the latest firmware installed, if you dont have the latest update and if problem still occurs after the update try a hard reset the code is Press *#7370#
    if this fails you will need to take it to a nokia care centre.
    1- Yes it already has updated firmware
    2- I did a hard resst without any success.
    3- Would unlocking process normally create this problem ?
    Message Edited by zillah on 20-Jun-2009 12:02 AM

  • TS1702 On the game "pinball HD" for the Ipad the right flipper does not work on my 2 ipads

    I have two ipads one is the original that first came out and the other is an Ipad mini.  I have installed on both the piball game "pinball HD".   On both devices the right flipper on the game does not work.  Seems strange it is happening on both my devices which leads me to belive it is a software issue.  Was wondering if any one else has experianced this problem.  I would not mind so much if it is free, but it was not.  I have sent an email to the developer but so far no answer.  Is any one else experiancing this problem ??

    Create a new profile as a test to check if your current profile is causing the problems.
    See "Basic Troubleshooting: Make a new profile":
    *https://support.mozilla.com/kb/Basic+Troubleshooting#w_8-make-a-new-profile
    There may be extensions and plugins installed by default in a new profile, so check that in "Tools > Add-ons > Extensions & Plugins" in case there are still problems.
    If that new profile works then you can transfer some files from the old profile to that new profile, but be careful not to copy corrupted files.
    See:
    *http://kb.mozillazine.org/Transferring_data_to_a_new_profile_-_Firefox
    You can also try a clean (re)install and delete the Firefox program folder (C:\Program Files\Mozilla Firefox\) before installing a newly downloaded copy of the Firefox installer.
    *Firefox 8.0.x: http://www.mozilla.com/en-US/firefox/all.html
    *http://kb.mozillazine.org/Standard_diagnostic_-_Firefox#Clean_reinstall

  • My New Tab Page does not work at all. I just have the empty squares with nothing in them at all?

    My New Tab Page does not work at all. I just have the empty squares with nothing in them at all?
    I know how to use about:config & have had the usual problems with newtab page tiles but this is more like a bug- using 33.0.1. Doesn't show tiles icon in top right corner just shows a gear that is used to hide the empty tiles that I can't fill with sites. First it would only show 2 rows of 4 columns even though I had it set to 5 & 6 then few days later for no reason they went empty with a serrated line around the tiles & can't drag from the bookmarks---- really bloody annoying!!!!!!! Possibly a setting in the about:config but i can't fig it out?

    Reset Firefox to its default state
    If you're having major problems which you can't resolve, start fresh with only your essential information.
    Troubleshooting Information
    This page contains technical information that might be useful when you're trying to solve a problem. If you are looking for answers to common questions about Firefox, check out our support website.
    Application Basics
    Name Firefox
    Version 33.0.1
    Update History
    User Agent Mozilla/5.0 (Windows NT 6.1; WOW64; rv:33.0) Gecko/20100101 Firefox/33.0
    Profile Folder
    Enabled Plugins about:plugins
    Build Configuration about:buildconfig
    Memory Use about:memory
    Multiprocess Windows 0/1
    Crash Reports for the Last 3 Days
    Report ID Submitted
    All Crash Reports
    Extensions
    Name Version Enabled ID
    Adblock Plus 2.6.5 true {d10d0bf8-f5b5-c8b4-a8b2-2b9879e08c5d}
    Adblock Plus Pop-up Addon 0.9.2 true [email protected]
    Skype Click to Call 7.3.16540.9015 true {82AF8DCA-6DE9-405D-BD5E-43525BDAD38A}
    Trend Micro BEP Firefox Extension 8.0.0.1173 true [email protected]
    Trend Micro NSC Firefox Extension 6.8.0.1120 true {22C7F6C6-8D67-4534-92B5-529A0EC09405}
    Trend Micro Toolbar 7.0.0.1243 true {22181a4d-af90-4ca3-a569-faed9118d6bc}
    Graphics
    Adapter Description Intel(R) HD Graphics
    Adapter Drivers igdumd64 igd10umd64 igdumdx32 igd10umd32
    Adapter RAM Unknown
    Device ID 0x0046
    Direct2D Enabled true
    DirectWrite Enabled true (6.2.9200.16571)
    Driver Date 1-30-2013
    Driver Version 8.15.10.2993
    GPU #2 Active false
    GPU Accelerated Windows 1/1 Direct3D 11 (OMTC)
    Vendor ID 0x8086
    WebGL Renderer Google Inc. -- ANGLE (Intel(R) HD Graphics Direct3D9Ex vs_3_0 ps_3_0)
    windowLayerManagerRemote true
    AzureCanvasBackend direct2d
    AzureContentBackend direct2d
    AzureFallbackCanvasBackend cairo
    AzureSkiaAccelerated 0
    Important Modified Preferences
    Name Value accessibility.blockautorefresh true
    accessibility.typeaheadfind.flashBar 0
    browser.cache.disk.capacity 358400
    browser.cache.disk.smart_size_cached_value 358400
    browser.cache.disk.smart_size.first_run false
    browser.cache.disk.smart_size.use_old_max false
    browser.cache.frecency_experiment 1
    browser.places.smartBookmarksVersion 7
    browser.sessionstore.upgradeBackup.latestBuildID 20141023194920
    browser.startup.homepage www.google.com
    browser.startup.homepage_override.buildID 20141023194920
    browser.startup.homepage_override.mstone 33.0.1
    browser.tabs.loadInBackground false
    dom.mozApps.used true
    extensions.lastAppVersion 33.0.1
    font.internaluseonly.changed true
    gfx.direct3d.last_used_feature_level_idx 1
    keyword.URL http://www.bing.com/search?FORM=UP97DF&PC=UP97&q=
    media.gmp-gmpopenh264.lastUpdate 1413750166
    media.gmp-gmpopenh264.version 1.1
    media.gmp-manager.lastCheck 1414375733
    network.cookie.prefsMigrated true
    places.database.lastMaintenance 1414404204
    places.history.expiration.transient_current_max_pages 102059
    plugin.disable_full_page_plugin_for_types application/pdf
    plugin.importedState true
    plugin.state.npmedia 0
    plugin.state.nptimegrid 1
    print.printer_Canon_MG2100_series_Printer.print_bgcolor false
    print.printer_Canon_MG2100_series_Printer.print_bgimages false
    print.printer_Canon_MG2100_series_Printer.print_colorspace
    print.printer_Canon_MG2100_series_Printer.print_command
    print.printer_Canon_MG2100_series_Printer.print_downloadfonts false
    print.printer_Canon_MG2100_series_Printer.print_duplex 3997817
    print.printer_Canon_MG2100_series_Printer.print_edge_bottom 0
    print.printer_Canon_MG2100_series_Printer.print_edge_left 0
    print.printer_Canon_MG2100_series_Printer.print_edge_right 0
    print.printer_Canon_MG2100_series_Printer.print_edge_top 0
    print.printer_Canon_MG2100_series_Printer.print_evenpages true
    print.printer_Canon_MG2100_series_Printer.print_footercenter
    print.printer_Canon_MG2100_series_Printer.print_footerleft &PT
    print.printer_Canon_MG2100_series_Printer.print_footerright &D
    print.printer_Canon_MG2100_series_Printer.print_headercenter
    print.printer_Canon_MG2100_series_Printer.print_headerleft &T
    print.printer_Canon_MG2100_series_Printer.print_headerright &U
    print.printer_Canon_MG2100_series_Printer.print_in_color true
    print.printer_Canon_MG2100_series_Printer.print_margin_bottom 0.5
    print.printer_Canon_MG2100_series_Printer.print_margin_left 0.5
    print.printer_Canon_MG2100_series_Printer.print_margin_right 0.5
    print.printer_Canon_MG2100_series_Printer.print_margin_top 0.5
    print.printer_Canon_MG2100_series_Printer.print_oddpages true
    print.printer_Canon_MG2100_series_Printer.print_orientation 0
    print.printer_Canon_MG2100_series_Printer.print_page_delay 50
    print.printer_Canon_MG2100_series_Printer.print_paper_data 1
    print.printer_Canon_MG2100_series_Printer.print_paper_height 11.00
    print.printer_Canon_MG2100_series_Printer.print_paper_name
    print.printer_Canon_MG2100_series_Printer.print_paper_size_type 0
    print.printer_Canon_MG2100_series_Printer.print_paper_size_unit 0
    print.printer_Canon_MG2100_series_Printer.print_paper_width 8.50
    print.printer_Canon_MG2100_series_Printer.print_plex_name
    print.printer_Canon_MG2100_series_Printer.print_resolution 7602290
    print.printer_Canon_MG2100_series_Printer.print_resolution_name
    print.printer_Canon_MG2100_series_Printer.print_reversed false
    print.printer_Canon_MG2100_series_Printer.print_scaling 1.00
    print.printer_Canon_MG2100_series_Printer.print_shrink_to_fit true
    print.printer_Canon_MG2100_series_Printer.print_to_file false
    print.printer_Canon_MG2100_series_Printer.print_unwriteable_margin_bottom 0
    print.printer_Canon_MG2100_series_Printer.print_unwriteable_margin_left 0
    print.printer_Canon_MG2100_series_Printer.print_unwriteable_margin_right 0
    print.printer_Canon_MG2100_series_Printer.print_unwriteable_margin_top 0
    privacy.sanitize.migrateFx3Prefs true
    privacy.sanitize.timeSpan 2
    storage.vacuum.last.index 1
    storage.vacuum.last.places.sqlite 1412311800
    Important Locked Preferences
    Name Value
    JavaScript
    Incremental GC true
    Accessibility
    Activated false
    Prevent Accessibility 0
    Library Versions
    Expected minimum version Version in use
    NSPR 4.10.7 4.10.7
    NSS 3.17.1 Basic ECC 3.17.1 Basic ECC
    NSSSMIME 3.17.1 Basic ECC 3.17.1 Basic ECC
    NSSSSL 3.17.1 Basic ECC 3.17.1 Basic ECC
    NSSUTIL 3.17.1 3.17.1
    Experimental Features
    Name ID Description Active End Date Homepage

  • Emagic mt4 and intel iMac does not work with 10.4.5

    Hi there,
    after updating my iMac on 10.4.5 my MT4 does not work any longer. It is still shown in the system profiler! But that`s it! After I`ve installed the latest driver (emagic v1.7), it was not shown in the audio/midi preferences. On my G4 with 10.3.9 it is still working properly. I have tried to use it with Garage Band 3, while I am waiting for Logic Pro 7.2 . It worked in the begining, but now the USB connection on the MT4 does not light up, but the midi devices. My question is: Do I need a driver using Logic Pro 7.2 with an Intel iMac? Includes the update the driver for Emagic MT4?
    thanks a lot for any reply, experiences and clues
    jay markus
    iMac Intel core 20''   Mac OS X (10.4.5)  

    Hi Glyn,
    I will try to get some driver information of apple. Emagic is apple now, so who else could that know?! I use an m-audio fw audio-interface. For that m-audio got a driver and it works by now. Fortunately! I will tell you if apple got a clue.
    Thanks for reply ( So I am not the only one in universe with that problem!)
    Best regards
    Jay
    iMac Intel core 20''   Mac OS X (10.4.5)  

  • Discoverer Reports does not work in Multi-org Environment after R12 Upgrade

    Discoverer Reports does not work in Multi-org Environment after R12 Upgrade. Created a simple report using the below query:
    SELECT po_header_id, segment1, type_lookup_code
    FROM po_headers
    WHERE segment1 = '5000002'
    Query works perfectly fine; when i set the ORG_CONTEXT in the database using the command:
    EXEC mo_global.set_policy_context('S',129)
    But the report doesn't fetch any data when ran from an Org based responsibility. We've ensured that the MO: Operting Unit is set accurately and general Oracle reports (PLSQL Program OR XML Publisher) are working perfectly fine.
    ===========
    I followed the steps provided in Metalink Note: 732826.1 - It works for some responsibilities where the MO: Security Profile is not set; but fails for those responsibilities where the MO: Security Profile is set.
    I am looking for specific solution that works irrespective of either the MO: Operating Unit profile is set of not.
    Please suggest. Appreciate your response.
    Thanks,
    Kesava Chunduri

    Hi Hussein,
    Thanks for the quick response.
    Yes, I've gone thru both the notes specified below:
    Discoverer Workbooks Based On Organization Enabled Views Are Not Populated [ID 1293438.1]
    - Tried this option; but this option is messing up a couple of Oracle Standard Functionalities.
    - For ex: If i set this profile option; we are not able to create any receipts using Custom Responsibilities.
    I am able to create the receipt, when i remove this profile option.
    No Data Shows for Reports in Discoverer 10g with Applications Release 12 [ID 1054380.1]
    - I see that the products i am running these reports from AR/GL - already exists in these tables.
    Anything other options??
    Thanks,
    Kesava

  • Internet does not work after Installation of Oracle10g on SuSE 10 Enterpris

    Hi,
    I installed SUSE 10 then configured the network services using network manager as it did not work by just putting the DNS servers and router address. The internet was working fine till I installed Oracle 10g. It somehow modified my DNS address from 203.97.33.1 to 203.97.33.14. The web interface for Oracle works fine.
    If I run the Network manager again, my internet starts working but the Oracle web interface does not work.
    I do not understand what's happening. Please help.
    Thanks.

    I have never liked using Network Manager with Oracle. If you use traditional ifup, you can use SCPM and have different profiles. The first 2 things I do during an install of Suse Linux that will have Oracle 10g is disable Network Manager and disable IPv6. Go to /etc/hosts and remove all entries that have the IPv6 addresses. The 10g OC4J applications from database and application servers have problems with IPv6 addressing. Make note of your current DNS addresses and your route before reconfiguring to ifup. Use route -n to get the router address if you do not already know it. It is the gateway with values. It is also a good idea to configure your wired ethernet device to start on boot up, then you can ping your hostname whether or not your cable becomes disconnected, i.e. still access dbconsole with the router down.

  • The Help Link from the Application Pages Does not Work for Peoplesoft Campus Solutions 9.0

    Hi everyone.
    I have a problem, I have been trying to set up the Help Link from the Application Pages for Peoplesoft Campus Solutions 9.0 according to the instructions given in the Document: http://docs.oracle.com/cd/E17566_01/epm91pbr0/eng/psbooks/EnablingtheHelpLinkfromApplicationPages.pdf ,  (referenced in the Doc ID 1289101.1, E-PB: How to Set Up the Context Sensitive Help with Hosted PeopleBooks using Universal Linking).
    I follow the instructions of that document carefully:
    I go to: PeopleTools -> Web Profile -> Web Profile Configuration
        2. Then I choose the Web Profile: "Development".
        3. Then Change the value for the Help URL field by entering the following URL format: http://www.oracle.com/pls/topic/lookup?id=%CONTEXT_ID%&ctx=hrcs90r5 , the ctx parameter selected is the one that correspond to  the Campus Solutions (hrcs90r5) according to the Product Line Code Table (ULinkID) especified in the mentioned document.
        4. Stop the Web Domain and Clear cache.
        5. Start the Web Domain again.
    After setting up the Web Profile Configuration I test the help links, thas is why I click in the Help link in any Peoplesoft CS 9.0 Application Page (modify a person), but the next error message appears: "We're sorry, the topic you requested was not found.".
    I tried many combinations with the ctx parameters URL but it does not work yet. 
    I did the same test, but this time using the Help URL field with a HRMS ctx parameter by entering the following URL format: http://www.oracle.com/pls/topic/lookup?id=%CONTEXT_ID%&ctx=hcm92pbr5 , and It works fine !!!
    According to the previous test you realize that It works with HRMS ctx parameter but not with Campus Solutions 9.0 ctx parameter,  Does anybody know what else can I do ? Am I doing anything wrong or missing? or maybe the Oracle's ctx parameter for Campus Solutions URL It is broken simply.
    Thanks for you help and feedback.

    2799444 - The page you are testing with appears to be a Workforce Administration page. Is that correct?
    The CS PeopleBooks would only work for CS pages, e.g.: try navigating to Main Menu > Campus Community > Personal Information > Add/Update a Person
    Also, you can use multiple ctx parameters:
    E.g.: http://www.oracle.com/pls/topic/lookup?id=%CONTEXT_ID%&ctx=hrcs90r5&ctx=hcm92pbr5&ctx=pt852pbh2
    This way the help would work for the HR related pages like Workforce Administration, Campus Solutions pages like Campus Community and also PeopleTools pages like Web Profile Configuration. Hope this clarifies your question. Thanks!

Maybe you are looking for

  • RAM issues after installation (Late 2009 iMac)

    I was trying to upgrade a late 2009 iMac computer from its original RAM of 4GB. I purchased 8GB of memory from Corsair off Amazon (http://www.amazon.com/Corsair-Channel-204-Pin-SO-DIMM-CMSA8GX3M2A1066C7/dp/B0050 5EZYW/ref=sr_1_6?ie=UTF8&qid=140320129

  • Can I run apple hardware disk from a clone of the Install disk 2 on an external hard drive?

    I have just installed a new SATA cable and HDD and want to check everything is in order.  I don't have my original disks with me, but I do have copies of both disks on an external hard drive.  Can I use that to run Apple Hardware Test on my machine?

  • Zen Touch Froz

    Hi, I've had my Zen Touch for a few months now and it was great, but now lately, everytime I try to turn it on and pick a song, it freezes and i'd have to reset it, but now I can't to listen to any songs on it nor can I connect it to my computer, is

  • Characters on display have gone haywire.

    I have an HP All-inOne 1600 series & have reinstalled. OP is  XP. I have never had a problem with this printer.  It has been great!! ... until now.  I hit print and got a "Carriage jam" message.  I opened it and corrected it.  When I closed the top,

  • Connecting Oracle to HP COBOL based apps in OpenVMS(x) OS platform

    How to connect Oracle Database to applications built upon HP COBOL deployed on the OpenVMS Alpha, OpenVMS I64 and OpenVMS VAX operating systems. Also, currently the customer is using flat file system for data handling and according to the prodcut doc