Always incompatible error when using the app for the first time

We get the following error every once in a while when you realize an IISReset and newspaper, GSM or SCRM or NDP (have not tested the other apps) for the first time.  The only recovery of this seems to be to make an another IISReset and try again keep doing so until the stop occurring.  Does anyone else have this problem?

Exceptions: System.Web.HttpUnhandledException: Exception of type 'System.Web.HttpUnhandledException' was thrown. ---> System.ApplicationException: could analyze not String Boolean value: "${UserInRole:CP_SYSTEM_ADMIN} '-> System.FormatException: string was not recognized as a valid Boolean value.

at System.Boolean.Parse (String value)

at Xeno.Web.UI.NavigationControls.Builder.Helper.AttributeSetter.ParseBooleanValue (String attributeValue)

-End of the exception stack trace internal-

at Xeno.Web.UI.NavigationControls.Builder.Helper.AttributeSetter.ParseBooleanValue (String attributeValue)

at Xeno.Web.UI.NavigationControls.Builder.Helper.AttributeSetter.SetAttributeValue (String attributeName, attributeValue, menuObj, Boolean isIgnore Object String)

Xeno.Web.UI.NavigationControls.Builder.YApplicationMenuBuilder.BuildMenuItem (model IMenuModel, BaseMenu menuToBuild)

Xeno.Web.UI.NavigationControls.Builder.YApplicationMenuBuilder.BuildMenuItem (model IMenuModel, BaseMenu menuToBuild)

Xeno.Web.UI.NavigationControls.Builder.YApplicationMenuBuilder.BuildMenuItem (model IMenuModel, BaseMenu menuToBuild)

Xeno.Web.UI.NavigationControls.Builder.YApplicationMenuBuilder.Build (model IMenuModel)

to Xeno.Web.UI.NavigationControls.NavigationControlContainer.OnInit (ByVal e As EventArgs)

Oracle support should be able to provide a help file, AssembliesPage.aspx, that you can place in your WebCommon directory. When you then navigate to this page in the URL, it will try to load all the dll dependent and relevant. If one of the required DLL is not found, it should give you a message at the bottom of the page showing you what dll (if any) was absent. It is the most common cause associated with this type of error reported. If you add the missing dll, dealing with the issue.

You can access the support page by typing the address bar something like the following:
https:// /gsm/WebCommon/AssembliesPage.aspx
This assumes that you have placed the page in the directory web\WebCommon

- - - -
Kind regards

Ron

Tags: Oracle Applications

Similar Questions

  • Popup error when using the AJAX or update Action for the region or a State

    Hello

    I had a problem with an application that I developed and I was banging my head against the wall with this for some time without success. Several pages in my application rely on the use of AJAX to refresh a region on the page with the updated data, running every 5 seconds. I have the following code in the foot in my region:

    var refresh_region = function (region_in) {
        try {
            jQuery(region_in).trigger('apexrefresh');
        } catch (e) {
            //Suppress error messages
        } finally {
            setTimeout(function() {refresh_region(region_in)}, 5000);
        }
    }
    refresh_region('##REGION_STATIC_ID#');
    
    
    

    What is happening is that I often have a popup with the title "Message from Web page:" and one of the descriptions following error (with the last being the most common):

    • : Error - HTTP Version not supported
    • Error: error - unknown

    The problem is that this page is used on the kiosks without keyboard, and once the error popup is displayed, the page continues to answer and user interaction to click on the Ok"" button. Another question, which is even more frustrating, is that these windows will accumulate above the other nearly one hundred sometimes profoundly, to the point where, sometimes, I need to force, exit the browser or restart the kiosk. There are also cases where the entire application stops responding and none of the pages will load. The only way to solve this problem is to have my DBA restart Glassfish. He went through some of the papers, but he sees nothing specific that helps him understand why he keeps to himself, but he believes that all these popups eat connections until the server runs.

    This has been a recurring topic since the app went live and I had hoped that with the help of a block try {} catch {} would prevent these popups errors but no luck. I also made a copy of the page today and refresh moved dynamic Action using the timer plugin but the popup always appears. I am following up to see if it happens more often than the AJAX approach.

    In the end, there are two issues here:

    1. What causes the error in the first place?
    2. How can I prevent the error popup windows until I can find #1

    I have tried everything I can find online to disable popups, all of this without a bit of luck:

    • Using try {} catch {}
    • Disable script debugging in Internet Explorer
    • Uncheck 'display a notification of every script error '.
    • Catch the window.onerror event

    Does anyone have any suggestions on how I can avoid these popups?

    I have a copy of the application on apex.oracle.com:

    • Workspace: SCCC_TEST
    • User/Pass: TEST/test
    • Page: 5

    Thank you!

    Once I started to think the ajax Manager that I started, I was wondering if ajax would actually raise an error at all, and it is not just the success of shooting when but throwing an error because it cannot handle the return (error page html for example). I'm not sure.

    You can try to use this code, which will replace the current call and will call _Appel with your own parameters. _Appel is a private member is not accessible so it's probably the best alternative. Not really a hack in my book. The structure is in place, then why not.

    //preserve original function
    var asw_orig = apex.server.widget;
    //override existing function
    apex.server.widget = function(pName, pData, pOptions){
      var lOpts = pOptions;
      //set the error handler function
      lOpts.error = function(){alert("this is my error handler function");};
      //pass along the variables to the original call
      asw_orig(pName, pData, lOpts);
    };
    

    I wondered if maybe the session may have expired at a certain time and therefor, you found these errors, because the update is not aware of this and therefore makes invalid calls. Just throw something out there.

  • Get the error when using the UTL_SMTP function in Oracle 11 g

    Hello

    I get the error when executing a trigger e-mail code in oracle 11 g:

    I have following trigger on the temporary table:

    CREATE OR REPLACE TRIGGER temp_temp_message AFTER

    INSERT OR UPDATE ON temp_message FOR EACH LINE

    declare

    Conn UTL_SMTP . CONNECTION ;

    msg VARCHAR2 (2000);

    Start

    Conn := UTL_SMTP . open_connection ( host => '10.250.1.149', port=>25 );

    UTL_SMTP . HELO ( conn, '10.250.1.149');

    UTL_SMTP . mail ( conn, '[email protected]');

    UTL_SMTP . RCPT () conn ' [email protected]');

    msg := "Hello, this is test mail." ;

    UTL_SMTP .data( conn, msg);

    UTL_SMTP . quit smoking ( conn );

    exception when others then

    dbms_output.put_line (sqlerrm);

    raise_application_error (-20000,

    "Failed to send because of the following error messages: ' " || sqlerrm);

    end;

    Insert in temp_message values ()1

    );

    When I insert the record in the table there are given the following error.

    ORA-20000: failed to send messages because of the following error: ORA-24247: access denied by access control (ACL) of network list

    ORA-06512: at the 'APPS '. TEMP_TEMP_MESSAGE', line 14

    ORA-04088: error during execution of trigger ' APPS. TEMP_TEMP_MESSAGE'

    But if I run the next plsql through sqlplus send mail successfully:

    declare

    Conn UTL_SMTP . CONNECTION ;

    MSG VARCHAR2 (2000);

    Start

    Conn := UTL_SMTP . open_connection ( host => '10.250.1.149', port=>25 );

    UTL_SMTP . HELO ( conn, '10.250.1.149');

    UTL_SMTP . mail ( conn, '[email protected]');

    UTL_SMTP . RCPT () conn ' [email protected]');

    msg := "Hello, this is test mail." ;

    UTL_SMTP .data( conn, msg);

    UTL_SMTP . quit smoking ( conn );

    exception when others then

    dbms_output.put_line (sqlerrm);

    raise_application_error (-20000,

    "Failed to send because of the following error messages: ' " || sqlerrm);

    end;

    Thanks in advance.

    Yoann

    To resolve ORA-24247 you must:

    (1) create an acl (if it is not already created)

    (2) add the user privileges using the resources of the network

    (3) to use the ACL to a specific address

    This might be useful

    How to fix an ORA-24247: access denied by access control (ACL) of network list | DB tips

  • Interface not found error when using Snap example for Firewire (IEEE 1394)

    Recently, I installed a SONY XCD-SX910 in interface with Labview 8.2.  When you choose the driver, only the Legacy driver would work for the installation of Firewire (R) (or IEEE 1394).  After installing the driver, I have images of the inteface to MAX.  However, when you attempt to trace through the example of Snap 1394 legacy since the document installation IEEE 1394, I get the error "Interface not found".  I tried a few iterations to try to name the camera as "cam0' (the name given to the camera to the MAX) and" cam0: SONY XCD-SX910.  However, the error continues.

    What should I name my camera so he could find the interface?  Will there be another underlying problem that is not obvious?

    Control of IO is not something that will be filled when you use the Legacy 1394 driver. If you use IMAQdx as your driver, it will fill. Thus, when you use the Legacy 1394 driver, you have control of the chain on your façade. When you use control of the chain, you must set the name of the camera as "cam0" as you did before. As long as this corresponds to what is able & Automation Explorer, you should be good as long as MAX uses the same driver that you are trying to use.

  • Get errors when using the xml parsers in my client application.

    Hello

    I use JDE 4.5.0, Jdk 1.6.  In my application, I need to read the xml data so I used the packages below

    import java.io.File;
    Import javax.xml.parsers.DocumentBuilder;
    Import javax.xml.parsers.DocumentBuilderFactory;
    to import org.W3C.DOM.document;
    Import org.w3c.dom.Element;
    Import org.w3c.dom.Node;
    Import org.w3c.dom.NodeList;

    But when compiling it's show

    Cannot resolve symbol
    symbol: DocumentBuilderFactory class
    location: packet analyzers
    Import javax.xml.parsers.DocumentBuilderFactory;

    Cannot resolve symbol
    symbol: class file
    Location: package io
    import java.io.File; ...............

    Same type of java file that uses similar packages is correctly compile another IDE (Editplus). That's why show this compilation errors.  I scoured the forums of Sun they mentioned that "XML support is build in the JVM 1.4 and later." No need of extra pots.  How do I set this compilation errors.

    Please give your suggestion, thanks for the tip for the same thing.

    Kind regards

    Sunil.G

    Thanks for your reply MSohm.

    In my class used resulting classes that the errors below.

    Import javax.xml.parsers.DocumentBuilder;

    Import javax.xml.parsers.DocumentBuilderFactory;

    now instead of what I used

    Import net.rim.device.api.xml.parsers.DocumentBuilder;
    Import net.rim.device.api.xml.parsers.DocumentBuilderFactory;

    reading file, I use (instead of java.io.File)

    InputStream inputStream is getClass () .getResourceAsStream (_xmlFileName);.
    Doc document = db.parse (inputStream);

  • error when using the acs technology

    I get the error message

    Windows cannot find the error awupdater.exe.

    Hello

    1. the problem occurs there only using ACS technology program?
    2. when exactly you get the error message?
    3. don't you make changes to the computer before the show?
    4. does the problem occur during the installation of the program or by using the program?

    Suggestions for a question on the help forums
    http://support.Microsoft.com/kb/555375

    The information is not sufficient to answer your question. Please provide us with more information to answer your question better.

    If the problem only occurs when you use the program, then I suggest you to contact the support of Technologies of ACS.
    http://www.acstechnologies.com/about/contact

  • Error when using the API to publish on form

    Hello

    I use the instructions here to post data to a form of eloqua. When the form is displayed, I get the message:

    Code: UnexpectedDataException

    Message: Could not submit form. Check that the required fields have been provided and that all fields are of the correct type.

    Again, using the example as a guide, form Eloqua is only 3 fields - Email, full name, company. None of the fields are mandatory and are all text.

    I'm at a loss. According to me, there I'm missing something simple, but can't. Anyone has an idea on what might be causing this error?

    Thank you

    Nick

    OK, you can use DescribeEntityType, which will bring back all forms and their identity papers, to ensure that you have the right one.  Also, once you have the right ID, you can use DescribeEntity (to aid the DynamicEntity ID) to get a list of all the fields and whether or not they are required.

  • WCF error when using the API of VSM

    VSM 9.1.4

    Oracle 10g R2

    I am attemtping to use the "MessageSendMessage" command in the VSM API to send back the client permissions and I get the following error message when running it from the VSM server.

    ERROR: The operation 'ContractUnlinkCIAsync' cannot be loaded because it has a parameter or type System.ServiceModel.Channels.Message or a type that has the MessageContractAttribute and other parameters of different types of return. When using System.ServiceModel.Channels.Message or types with MessageContractAttribute, the method should not use other types of settings.

    It's an odd error because I do not use the "ContractUnlinkCI" command which tells me that there is a problem with the generation of the class file.

    I ran the following command to generate my config file and the class in the directory "C:\Program Files (x 86) \Microsoft 4.0 Tools":

    Svcutil t:code /MessageContract. [URL ServiceManager.svc] / out: ISMAPI.cs /config:ISMAPI.config

    The class files and generated config ok. Then I copied the game config to the Web site's web.config file:

    < system.serviceModel >

    < links >

    < basicHttpBinding >

    < connection name = "BasicHttpBinding_IServiceManager" / >

    < / basicHttpBinding >

    < / links >

    < customer >

    < endpoint address = "[ServiceManager.svc URL]" binding = "basicHttpBinding" bindingConfiguration = contract "BasicHttpBinding_IServiceManager" = "IServiceManager" name = "BasicHttpBinding_IServiceManager" / >

    < / customer >

    < system.serviceModel >

    I put the ISMAPI.cs file in the App_Code to my site folder:

    DirectoryStructure.JPG

    My code works fine when I run locally and include the correct querystring values, but it returns the error above, when I run the code from the VSM server. The query string I used: default.aspx? ajaxfunction = 2 & tasknumber = 425134 & agent = 2370 & recvofficer = 2370

    using System;
    using System.Collections.Generic;
    using System.Web;
    using System.Web.UI;
    using System.Web.UI.WebControls;
    using System.Data;
    using Oracle.DataAccess.Client;
    using Oracle.DataAccess.Types;
    using System.Runtime.Serialization;
    using System.ServiceModel;

    partial class _Default: System.Web.UI.Page
    {
    Protected Sub Page_Load (object sender, EventArgs e)
    {
    Response.Expires = - 1;
    Response.ContentType = "text/plain";
    If (Request.QueryString ["ajaxfunction"]! = null)
    {
    Try
    {
    Int16 intFunction = Int16.Parse (Request.QueryString ["ajaxfunction"]. (ToString());
    Switch (intFunction)
    {
    case 1:
    If (Request.QueryString ["tasknumber"]! = null)
    {
    Int64 intTaskNumber = Int64.Parse (Request.QueryString ["tasknumber"]. (ToString());
    Response.Write (getTaskApprovalComments (intTaskNumber.ToString ()));
    }
    break;
    case 2:
    If (Request.QueryString ["tasknumber"]! = null & & Request.QueryString ["officer"]! = null & & Request.QueryString ["recvofficer"]! = null)
    {
    MessageRequest load = new MessageRequest();
    inStruct.sLoginUserID = System.Configuration.ConfigurationManager.AppSettings ["apiLogin"];
    inStruct.sLoginPassword = System.Configuration.ConfigurationManager.AppSettings ["apiPassword"];
    inStruct.sDatabase = System.Configuration.ConfigurationManager.AppSettings ["apiDatabase"];
    inStruct.eEntityType = CRTEntityForEmail.Task;
    inStruct.nEntityRef = Int32.Parse (Request.QueryString ["tasknumber"]);
    inStruct.ePriority = MailPriority.Normal;
    inStruct.eMMAMessageType = MessageMMAType.Approval;
    inStruct.nMessageType = 130;
    inStruct.lRecipientRef = ' ~ ' + Request.QueryString ["recvofficer"];
    inStruct.eRecipientType = MessageRecipientType.Person;
    inStruct.bEmail = true;
    MessageResponse outStruct = new MessageResponse();
    SMC ServiceManagerClient = new ServiceManagerClient();
    outStruct = SCM. MessageSendMessage (inStruct);
    Response.Write (outStruct.sMessage);
    }
    break;
    by default:
    Response.Write ("ERROR: invalid function!");
    break;
    }
    }
    catch (System.Exception Exception)
    {
    Response.Write ("ERROR:" + exception.) (Message);
    }
    }
    Response.End ();
    }

    I hope one of the other directors VSM has met this problem and knows a solution. I tried Googling this issue but with my knowledge of WCF, I don't know what I'm looking at. I also tried commenting on the problem area in the ISMAPI.cs file but it gives me an other errors so I obviously don't know what I'm doing.

    Thank you.

    If locally it works fine I guess you should compare the versions of .net framework assigned to your web applications (application pool), and all the parameters specified in the web.config file.

  • Error when using the plugin

    Hello

    I get a strange error when I try to use a plugin.

    On page 5 of the Wizard after you press on create a new element on a region, it gives me the following error:
    ORA-06502 pl sql numeric or value error character string too small buffer

    I guess that's the page where the wizard is supposed to show me the attributes of plugins, because if I continue the wizard I have all of the attributes listed in the plugin either.

    Anyone knows what is the cause?

    Here is the error:
    http://test.Kolonist.dk/SQL_ERROR.jpg

    Hello

    Yes, this is a known issue that will be fixed in our 4.0.2 group of hotfixes.

    Concerning
    Patrick
    -----------
    My Blog: http://www.inside-oracle-apex.com
    APEX 4.0 Plug-Ins: http://apex.oracle.com/plugins
    Twitter: http://www.twitter.com/patrickwolf

  • Error when using the SmartView Ad - hoc analysis

    Hi all

    When I use the Ad hoc analysis of SmartView, it has this error message you are invited to:

    "Cannot perform the operation view cube. OLAP error (1020011): maximum number of lines [5000] exceeded. »

    I modifed a line in the essbase.properties "service.olap.dataQuery.grid.maxRows = 5000" the value between 5000 and 10000 and it's still not working. I restart all services of Hyperion and it's still doesn't work.

    Can anyone give me some suggestions?

    Thank you

    Gary

    It will be in the APS, in V11 directory, the directory is % HYPERION_HOME%\products\Essbase\aps\bin\essbase.properties, to 9.3.1 is % HYPERION_HOME%\AnalyticProviderServices\bin, after you have updated the file, restart the APS service.

    See you soon

    John
    http://John-Goodwin.blogspot.com/

  • Error when using the no_lig function in forms6i

    Oracle forms6i

    Hai

    When you use the function num row in my forms, I got an error.

    My code is

    declare
    pin_no varchar2 (16);
    date of pin_date;
    pin_time varchar2 (25);
    Ilan varchar2 (200);
    m_file TEXT_IO. TYPE_DE_FICHIER;
    m_file_path varchar2 (100): =: global.filename;
    number of line_count;
    M_BARCODE VARCHAR2 (16);
    DATE OF M_BARDATE;
    M_BARTIME varchar2 (25);
    Number of M_No;
    Cursor c1 is
    Select the code bars, bardate, bartime,
    ROW_NUMBER() (partition by bartime barcode order): nurse - the error on this line
    of temp_attendance
    Group of barcodes, bardate, bartime
    order by bardate;
    Start
    If m_file_path is not null then
    m_file: = TEXT_IO.fopen (m_file_path, 'r');
    -ELIMINATION OF temp_attendance;
    Loop
    Start
    TEXT_IO.get_line (m_file, Mstr);
    MSTR: = ltrim (rtrim (mstr));
    M_barcode: = substr (mstr, 1, 16);
    M_bardate: is to_date (substr (mstr, 17, 8), ' DD/MM/YYYY');.
    M_bartime: = (substr (mstr, 25, 4));

    INSERT INTO temp_attendance (BARCODE, BARDATE, BARTIME, RN) VALUES(M_BARCODE,M_BARDATE,M_BARTIME,M_No);
    Exception
    When no_data_found then
    TEXT_IO.fclose (m_file);
    "exit";
    End;
    End loop;
    go_block ('TEST_MS1');
    clear_block (no_validate);
    To r1 c1 loop
    : bar code: = r1.barcode;
    : bardate: = r1.bardate;
    : bartime: = r1.bartime;
    next_Record;
    end loop;
    premier_enregistrement;
    end if;
    exception
    while others then
    forms_ddl ('ROLLBACK');
    message (sqlerrm);
    end;

    Thanks and greetings

    Srikkanth.M

    6i u cannot use this type of analytical functions... motor of PL/SQL forms 6i is 8.0

    Bangoura
    [My Oracle Blog | http://baigsorcl.blogspot.com/]

  • root properties in the connected data store: error when accessing the date/time storage

    When you browse the properties my connected data store I get an error message when you try to read the value of the property of 'storage date/time': object doesn't support this property or method.

    Here is a minimal example:

    Dim oMyDataStore, MyProperty, oMyProperties
    Set oMyDataStore = Navigator.ConnectDataStoreByParameter ("TOC", "" & "C:\Program Files (x 86) \National 2012\Examples\Data\Example_data.tdm" & "" ')
    Set oMyProperties = oMyDataStore.RootElements (1). Properties
    For each MyProperty in oMyProperties
    Call MsgBoxDisp ("property name:" & MyProperty.Name & + "\n"&"property value:" & MyProperty.Value "")
    Next

    Why can I not access this particular property by default?

    Hi Phex,

    for the date/time properties, an object called UsiTimeDisp is returned. This object allows to that extend features of service as access to each part separately (day, year, hour, seconds,...) of your date/time value. If you want to print the value of time with MessageBoxDisp, you can use the VariantDate this object property.

    Your code might look like this then:

    Dim oMyDataStore, MyProperty, oMyProperties
    Set oMyDataStore = Navigator.ConnectDataStoreByParameter ("TOC", "" & "C:\Program Files (x 86) \National 2012\Examples\Data\Example_data.tdm" & "" ')
    Set oMyProperties = oMyDataStore.RootElements (1). Properties
    For each MyProperty in oMyProperties
    MyProperty.DataType = eTime Then
    Call MsgBoxDisp ("property name:" & MyProperty.Name & + "\n"&"property value:" & MyProperty.Value. ' ") VariantDate)
    On the other
    Call MsgBoxDisp ("property name:" & MyProperty.Name & + "\n"&"property value:" & MyProperty.Value "")
    End If
    Next

    I hope this helps.

    Good day

    Eva

  • management of the script errors when using the step of the call placed

    I have a script which is activated by a trigger of jtapi. At some point places the caller on hold, makes a call using step Place call, plays a prompt and then terminates the call.

    If the trigger (first contact) hangs up when the phone for the second contact rings, when the second contact answers the phone plays the default script or "Sorry we currently live the problems of the system."

    Here's what I did (without success) to try to get around it: changed the default script for the application (do not know why it does not work.) This logic is invoked in a subflow, maybe that's the problem?), placed a Terminate step for the second contact in case of square step call, put in a bunch of steps On Error Goto who attend a stage finish to the second contact.

    Brandon, until the original caller is replaced, an 'exception' will be thrown.

    To make up for it, to the step "On Exception GoTo" > choose the ContactInactiveException > choose the label you want the call to go into the script > clears the exception (on no exception) and then play your .wav file (sorry, the band hung up.. blah, blah) > and then terminate.

    who should git'r done.

    Pleae rate useful positions.

  • dbms_crypto - avoid error when using different key in lower environment

    Hello Experts,

    We use Oracle 11.2.0.2. We intend to implement dbms_crypto to encrypt some columns. Clone us the production data at the lower environment (DEV, QC).

    The lowest environments, we do not want to obtain the sensitive data from production and do not plan to use the same key. Instead of getting an error when using different keys, is it possible to get a different set of results.

    In other words, we want the implementation will be same in environments but use a different key in lower environment and obtain different results (or garbage).

    Any suggestions would be greatly appreciated.

    The test of this logic, I get following error when using the different keys to decrypt. It works fine if I use the same key.
    Error on line 1
    ORA-28817: PL/SQL function has returned an error.
    ORA-06512: at "SYS." DBMS_CRYPTO_FFI', line 67
    ORA-06512: at "SYS." DBMS_CRYPTO", line 44
    ORA-06512: at line 19
    DECLARE
      l_credit_card_no    VARCHAR2(19) := '1234 5678 9012 3456';
      l_ccn_raw           RAW(128) := UTL_RAW.cast_to_raw(l_credit_card_no);
     
     l_key               RAW(128) := UTL_RAW.cast_to_raw('abcdefgh');
       l2_key               RAW(128) := UTL_RAW.cast_to_raw('12345678');
    
      l_encrypted_raw     RAW(2048);
      l_decrypted_raw     RAW(2048);
    BEGIN
      DBMS_OUTPUT.put_line('Original  : ' || l_credit_card_no);
    
      l_encrypted_raw := DBMS_CRYPTO.encrypt(src => l_ccn_raw, 
                                             typ => DBMS_CRYPTO.des_cbc_pkcs5, 
                                             key => l_key);
    
      DBMS_OUTPUT.put_line('Encrypted : ' || RAWTOHEX(UTL_RAW.cast_to_raw(l_encrypted_raw)));
    
      l_decrypted_raw := DBMS_CRYPTO.decrypt(src => l_encrypted_raw, 
                                             typ => DBMS_CRYPTO.des_cbc_pkcs5, 
                                             key => l2_key); --**Using different key to decrypt
    
      DBMS_OUTPUT.put_line('Decrypted : ' || UTL_RAW.cast_to_varchar2(l_decrypted_raw));
    END;
    Thank you.

    In general, you can't get different results in different environments, no.

    Of course, you could write your routine to decrypt so that it intercepts it and returns a random string of RAW.

    However, this is not normally the way people go on hiding sensitive data in environments below. It would be much more common to use a tool that is designed for this tool. For example, Oracle has a Pack of masking of data for Enterprise Manager that allows to replace sensitive data with false, but realistic data as part of the updating of the environments below. There are also data from third-party tools like masqueur datamasking.

    Justin

  • For the first time using BMP - app ever built, plugin file error constant

    Hello - I am trying to build for the first time and many plugins are errors. I am commenting them one at a time from the XML config and one of the culprits is the plugin file that I need to use. The other is the network plugin which also gives errors. The State errors that are not compatible with CLI 6.3.0

    I know it's the plugin developer to make compatible - y at - it something somewhere that indicates which versions of the plugins are compatible with versions of BMP? How can I find out what previous version of BMP is compatible with anything?

    Also, and this might be relevant to the question - when I look at the BMP to see what are the versions that I build for, I see that apparently I'm targeting iOS4.2?

    http://www.rickluna.com/pgb_err.PNG

    In my XML I'm deploying to iOS 9 but does not change the value of GBP v 4.2

    < preference name = "deployment target" value = "9.0" / >

    DRM for suggestions!

    r

    These plugins are all using the deprecated point rating. You must use:

    etc.

    Can I ask where you got to go to? I want to assure you that the resource is updated to the correct format.

Maybe you are looking for