EVENT_MOUSE_WHEEL_SCROLL do not trigger

I try to activate the scrolling mouse in a table control. Simple right? And I could swear I've done it before, but it doesn't work immediately.

int CVICALLBACK TableCallback(int panel, int control, int event, void *callbackData, int eventData1, int eventData2)
{
switch (event)
{
case EVENT_MOUSE_WHEEL_SCROLL:
DebugPrintf ("triggered wheel! ("type = %i, amount = %i\n", eventData1, eventData2);
break;

case EVENT_MOUSE_POINTER_MOVE:
DebugPrintf ("mouse moved! (%i %i\n ", eventData1, eventData2);
break;
}
return 0;
}

The above gets triggers the mouse pointer. I also get triggers for clicks RIGHT and LEFT. But nothing not scrolling. Also tried two different mice. This computer is bound?

Nevermind, I figured it.  My table control has been updated with the fashion of the indicator.  To scroll wheel events, fashion must be hot.

Tags: NI Software

Similar Questions

  • My iMac crashed and will not trigger upward.  I bought a new IMack.  There is no way I can I disable the Deluxe Suite CS3 on the machine 'dead '.  My Apple notebook has been stolen and had the second CS3.  I just can't disable and reactivate the CS3 on th

    My iMac crashed and will not trigger upward.  I bought a new IMack.  There is no way I can I disable the Deluxe Suite CS3 on the machine 'dead '.  My Apple notebook has been stolen and had the second CS3.  I just can't disable and reactivate the CS3 on the new machine.

    If you see an anomaly of counting activation, contact adobe for hourly pst support by clicking here and, when available, click on "still need help," https://helpx.adobe.com/contact.html and request an account reset activation.

  • in the APEX by clicking on the link hyper does not trigger session timeout page

    Hi all
    I have a question about the application of APEX session time-out. I created a simple application of the APEX. In the region report SQL section, I have code like this:

    SELECT DOC_Name, DOC_URL,
    "" < a href = "" | DOC_URL | "target ="_blank"/" > download < /a > ' pdf_link
    FROM test_table
    where emp_number = 00010001

    When the user click on the hyper link, it will show the landing page for the user (for example if DOC_URL = 'http://forums.oracle.com', it displays the oracle forum page in a new browser).

    But the problem is that after the user session timeout (I set to 240 seconds through shared components > change the security attributes, I put max the session for example 240 seconds timeout) when I click on this hyperlink, it does not raise my session timeout page and it still shows the page (oracle forum page).

    Why in the APEX by clicking on the link hyper does not trigger page session timeout after the user session timeout?

    How implememt or fix to trigger the session timeout page after clicking on hyperlinks?

    (BTW, our version of the APEX is 3.2)

    Thank you!

    Hello

    rather than use your my_stored_procedure you could call a new APEX page where you have a page called P999_PDF_ID. On this new page you would have
    treat a front header PL/SQL with the same code you have in your "my_stored_procedure". The only change would be to add a

    apex_application.g_unrecoverable_error := TRUE;
    

    at the end of your code as well as APEX does not generate a standard page of APEX.

    That's all. If a user clicks on a link, APEX will check the session timeout and if everything is ok, download your PDF file.

    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

  • onLoad, not trigger on the login failure

    Hello

    I'm having a problem with XML.onLoad not to shoot if there is no connection available. If I start the application, disable the connection when I press the button to get the XML does not trigger the onLoad. If I just enter a URL not valid it fires. I can't use the HTTPstatus method as it is for FP8 and we will still have to use the FP6.

    Anyone have any ideas?

    See you soon,.
    Scott

    I found the answer! It works fine in IE, but when he is seen in FireFox. I had to implement a timeout function that displays a message after a certain amount of time has elapsed.

  • Why the DR unit does not trigger schema when it is called remotely?

    Hi all

    I have a question about the triggers of oracle schema and I would be grateful if you could kindly give me a helping hand.

    Oracle version: 11 GR 2 (11 g Enterprise Edition Release 11.2.0.1.0 - 64 bit)

    OS:                      Linux Fedora Core 17 (X86_64)

    I was reading the online documentation on schema triggers where oracle says:

    Assume that users user1 and user2 own schema triggers and user1 invokes a DR unit owned by user2. Inside the DR unit, User2 is the current user. Therefore, If the DR unit triggers the triggering event of a trigger schema that User2 owns, while the trigger is activated.

    I wanted to see this behavior in practice, so I made the following test case:

    -There are two schemas:

    • testuser where I create a procedure with AUTHID DEFINE (a unit of the Dr. therfore) named createTab. This procedure takes a table name as a parameter and if no table with this name exists already in the testuser schema, it will create a new table with the same name with a single column of type NUMBER (well, it's just an example to this issue, in practice I never create my tables this way)

    • training is therefore another scheme to which we grant the privilege EXECUTE on the above mentioned procedure createTab so that it may be possible to create tables on schema testuser by calling the remote procedure.

    The idea behind the test is to create a schema for testusertrigger, so that whenever he is, for example, a creation of the table, a message is inserted into a table of newspaper (just an example to show proof that trigger the diagram has been drawn on the table creation event). Now assuming I admit the EXECUTE privilege on the procedure of createTab for the trainingscheme, then any creation of the remote table must trigger the schema trigger, because according to the documentation inside the unit of the DR, the user is not considered appellant user (= training) but actually the owner (= testuser) that created the trigger and procedure.

    The problem is that I cannot see it in my test. Therefore I will write here my test case so that you can have a look at it and to indicate where I did wrong, and what I misunderstood in the documentation.

    So here's what I created on the schema testuser

    Code

    SET SQLBLANKLINES

    ALTER SESSION SET PLSQL_WARNINGS = ' ENABLE: ALL ';

    SET SERVEROUTPUT ON;

    -A table of newspaper in which the schema trigger inserts messages


    -indicating that the schema trigger was triggered (as proof)

    CREATE TABLE tablog (logMsg VARCHAR2 (100));

    -Here is the procedure that updates the above defined log table (tablog)

    -This procedure (autonomous transaction) is called by the schema trigger

    CREATE OR REPLACE PROCEDURE updateLog (p_logMsg IN tablog.logMsg%TYPE)

    DEFINE AUTHID

    IS

    PRAGMA AUTONOMOUS_TRANSACTION;

    BEGIN

    INSERT INTO tablog (logMsg) VALUES (p_logMsg);

    COMMIT;

    END updateLog;

    /

    DISPLAY ERRORS;

    -This is the procedure we use to create tables (which will be called so

    -remotely from another schema-> training)

    -As stated above, the procedure takes a table
    -name as a parameter and creates a table with a single column of type NUMBER

    -that if no table with this name exists already

    CREATE OR REPLACE PROCEDURE createTab

    (

    p_tabName IN user_tables.table_name%TYPE

    )

    AUTHID DEFINE - Therefore a unit DR that we explicitly specify AUTHID DEFINE

    IS

    BEGIN

    < < bk > >

    DECLARE

    tabName user_tables.table_name%TYPE;

    BEGIN

    -Check to see if a table with the name p_tabName
    -already exists

    T1.table_name SELECT INTO bk.tabName

    FROM user_tables t1

    WHERE t1.table_name = upper (p_tabName);

    EXCEPTION

    -No table with this name exists, so we create now

    WHEN NO_DATA_FOUND THEN

    IMMEDIATELY RUN 'CREATE TABLE ' |

    p_tabName | '(NUMÉRO n) ';

    END;

    END createTab;

    /

    DISPLAY ERRORS;

    - And finally it is the schema for the schema 'testuser '.

    -Any appeal of the above mentioned procedure createTab (if the procedure)
    -creates a new table) fires the following trigger

    CREATE OR REPLACE TRIGGER testuser_schema_tr

    Before you CREATE on testuser.schema

    BEGIN

    -Just insert a message into the table of the newspaper showing the evidence
    -that our schema trigger wiped of CREATE TABLE
    -statements

    updateLog

    (

    TO_CHAR (sysdate, ' ' MON-DD-YYYY HH24:Mi:ss) |

    ' ': Schema for testuser trigger pulled.

    );

    END testuser_schema_tr;

    /

    DISPLAY ERRORS;

    -I grant the privileges required for the formation of the user/schema
    -may also be able to remotely run my procedure

    GRANT EXECUTE ON createTab to training;

    GRANT SELECT ON tablog to training;

    First, I tested the procedure createTab locally (so be etre connecte connected as drawing testuser , in other words, the owner of the procedure and the relaxation). Everything worked pretty well and created table, that table the journal has been updated by the trigger which showed that in fact after each CREATE TABLE statement, the trigger was activated.

    However, when I opened a new SQL * Plus term, this time in being connected as a training scheme, I have observed that, once again, it was possible to create tables on schema testuser remotely, but the log table has been updated no more, which means that the trigger has not wiped CREATE TABLE statements that were issued remotely (by remote createTab procedure call).

    Code

    SQL > EXECUTE testuser.createTab ('tmptab');

    PL/SQL procedure successfully completed.

    SQL > SELECT * FROM testuser.tablog;

    no selected line

    SQL > USER to see THE

    The USER is 'TRAINING'


    SQL >

    Any idea? Why unity DR (createTab procedure) does not have the schema trigger, unlike what documents said, when it is called remotely?

    Thanks in advance,

    Dariyoosh

    It works for me on Oracle 11.2.0.3

    August 21, 2013 18:10:12: trigger pulled schema

    But not on 11.2.0.1

    It looks like a bug.

  • Please draw what's not in the TRIGGER script, does not trigger.

    Hi gurus of the Oracle,.

    Please help me to find out what's wrong in the trigger statement. It does not create trigger, instead, it displays line numbers like 1, 2, 3, 4... After pressing the Enter key,

    I enclose the full script, where it modifies the table, then creates the new table, the sequence of creates... Finally, it fails to create the trigger.
    ==================================================================================

    SQL > ALTER TABLE MOBILE. ADD MOBILE_USER (LAST_LOGIN TIMESTAMP);

    Modified table.

    SQL > CREATE TABLE "MOBILE". "" AUDIT_LOG.
    (
    2 3 NUMBER (16.0) 'AUDIT_LOG_ID' NOT NULL ACTIVATE.
    4 'DATE_CREATED' TIMESTAMP (6) NOT NULL ACTIVATE.
    VARCHAR2 (20 BYTE) 'AUDIT_TYPE' 5 NOT NULL ACTIVATE.
    CLOB 6 "AUDIT_DATA."
    7 CONSTRAINT "AUDIT_LOG_PK" KEY PRIMARY ("AUDIT_LOG_ID") WITH THE HELP OF INDEX PCTFREE, INITRANS 10 2 ALLOW MAXTRANS 255 STORAGE (INITIAL 65536 THEN 1048576 MINEXTENTS 1 MAXEXTENTS 2147483645 PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1 USER_TABLES DEFAULT TABLESPACE) "SERVICES_DATA".
    6 g
    9 10 PCTUSED 40 INITRANS PCTFREE MAXTRANS 255 NOCOMPRESS LOGGING STORAGE 1
    (
    INITIALS 65536 THEN 1048576 MINEXTENTS 1 MAXEXTENTS 2147483645 PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1 DEFAULT USER_TABLES
    (10-11-12)
    TABLESPACE LOB OF 'SERVICES_DATA '.
    (13-14)
    15 "AUDIT_DATA".
    16)
    17 STORE AS
    18)
    STORAGE OF 'SERVICES_DATA' CHUNK ONLINE STORAGE 8192 PCTVERSION 10 NOCACHE RECORD TABLESPACE 19 (INITIAL 65536 THEN 1048576 MINEXTENTS 1 MAXEXTENTS 2147483645 PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1 DEFAULT USER_TABLES)
    (20);

    Table created.

    SQL > CREATE the SEQUENCE "MOBILE". "' AUDIT_LOG_SEQ ' INCREMENT BY 1 START WITH 1000 CACHE 20 NOCYCLE.

    Order of creation.

    SQL > create or replace
    TRIGGER "MOBILE". "' AUDIT_LOG_TRGR ' front
    INSERT in 'AUDIT_LOG' for EACH row BEGIN if insertion THEN if: NEW. "' AUDIT_LOG_ID ' IS NULL THEN
    SELECT AUDIT_LOG_SEQ.nextval
    IN: NEW. "" AUDIT_LOG_ID ".
    DOUBLE;
    END IF;
    END IF;
    END;

    We already checked that AUDIT_LOG exists.

    AUDIT_LOG exists for schema MOBILE, but NOT for the scheme which tries to create the trigger.

    INSERT in 'AUDIT_LOG' for EACH row BEGIN if insertion THEN if: NEW. "' AUDIT_LOG_ID ' IS NULL THEN

    not like above, but as below
    INSERT ON MOBILE. AUDIT_LOG FOR EACH row BEGIN if insertion THEN if: NEW. "' AUDIT_LOG_ID ' IS NULL THEN

  • After the trigger Update do not trigger

    Hi all
    PL help me to correct the error of this trriger.


    CREATE TRIGGER AUDIT_DEV.trg1
    AFTER DELETE OR UPDATE OF EMP_STATUS ON AUDIT_DEV. AUDIT_PERSONS
    declare
    AUDIT_PERSONS. TYPE % EMP_USER_MODIFIED;
    AUDIT_PERSONS. TYPE % EMP_DATE_MODIFIED;
    AUDIT_PERSONS. TYPE % EMP_SK;
    AUDIT_PERSONS. EMP_ID % TYPE;
    AUDIT_PERSONS. EMP_NAME % TYPE;
    EMP_STATUS_OLD VARCHAR2 (10);
    EMP_STATUS_NEW VARCHAR2 (10);
    EMP_PERSONS. TYPE % EMP_RESIGNATION_DATE;
    V_$ SESSION. OSUSER % TYPE;
    V_$ SESSION. MACHINE % TYE;
    V_$ SESSION. USER_NAME % TYPE;
    BEGIN
    Select
    SID, serial # username, osuser, machine, logon_time in sid, serial # username, osuser, machine, logon_time
    session $ v where sid = (select sid from v$ mystat where rownum = 1);

    INSERT INTO AUDIT_PERSONS_LOG
    (EMP_USER_MODIFIED, EMP_DATE_MODIFIED, EMP_SK, EMP_ID, EMP_NAME, EMP_RESIGNATION_DATE, EMP_STATUS_OLD, EMP_STATUS_NEW, osuser, db_user, machine) VALUES
    (
    EMP_USER_MODIFIED, EMP_DATE_MODIFIED, EMP_SK, EMP_ID, EMP_NAME, EMP_RESIGNATION_DATE,: old. Emp_status,: new. Emp_status, osuser, db_user, machine
    )
    END;
    /

    Error report:
    ORA-04082: NEW or OLD references not allowed in table level triggers
    04082 00000 - "NEW or OLD references not allowed in table level triggers.
    * Cause: The trigger accesses values 'new' or 'old' within a trigger from the table.
    * Action: Delete all references, new or old.

    Published by: Abk November 4, 2010 11:09

    What is the result of

    SELECT * FROM user_triggers
    WHERE trigger_name='your_trigger_name';
    

    Especially note the status column.

  • create the task of the user do not trigger

    Hello

    I've created a workflow approval for the provision of a resource. I have some problems with it.

    (1) the approver and the applicant are not able to change the shape of the object.
    (2) the workflow is gettting stuck in provisioing State. I see that the task of the user to create isn't triggerred. I have to go and enter data in the form of process to trigger the process task for the user to create and configure the resource manually.

    Thanks in advance for the help.

    concerning
    Chandra

    Hello

    1. to give approval to change the shape of the object, you will need to give permissions to a group. Go to design console and go to your object and then see the authorization tab. Add the group there and add your approver in that group.
    2.i think you are missing the auto save option. Go to delivery process and check the automatic backup option.

    Let me know if you have more doubts.

    Concerning
    Nitesh

  • Front do not Trigger report

    Hello

    I have a PLSQL procedure that must take before that one of my reports to be run. I have it in my report of trigger in a data model. Please see the example below. For some reason any he does not fire. I also have a version where this procedure is a function.

    Is someone can you please tell me what is the problem?

    < name of dataTemplate = 'RoleWorksheet"description = 'model desription' than one dataSourceRef ="Rolemine">

    < dataQuery >
    < SQLStatement instance name = "Q1" >
    <! [CDATA [select p.GIVEN_NAME |']] '|| p.FAMILY_NAME as NAME, p.JOB_TITLE AS function, p.DEPTNAME AS DEPTNAME, p.COST_CENTER AS COST_CENTER, p.LOCATION AS LOCATION, p.ATTRIBUTE_1 AS ATTRIBUTE_1, p.ATTRIBUTE_2 AS ATTRIBUTE_2, p.ATTRIBUTE_3
    of smperson p
    ORDER BY 2,3,4,5,6,7]] >
    < / sqlStatement >
    < SQLStatement instance name = "Q2" >
    <! [CDATA [SELECT distinct p.deptname, p.cost_center, p.location, p.job_title, p.attribute_1, p.attribute_2, p.attribute_3, r.role_name, pr.privilege_name, pr.privilege_desc
    OF smperson p, r smrole, smroleprivs PR smprivilege pr
    WHERE r.person_id = p.person_id
    AND r.role_name = rp.role_name
    AND rp.priv_id = pr.privilege_id
    ORDER BY 2,3,4,5,6,7]] >
    < / sqlStatement >
    < SQLStatement instance name = "Q3" >
    <! [CDATA [SELECT p.deptname, p.cost_center, p.location, p.attribute_1, p.attribute_2, p.attribute_3, r.role_name, pr.privilege_name, pr.privilege_desc, p.given_name: ']] '|| p.family_name, p.job_title, o.muser
    OF smperson p, r, smroleprivs, smprivilege, out_of_band_access o pr PR smrole
    WHERE r.person_id = p.person_id
    AND r.role_name = rp.role_name
    AND rp.priv_id = pr.privilege_id
    and r.person_id = o.person_id
    and p.person_id = o.person_id
    and r.role_name = o.role_id
    and rp.role_name = o.role_id
    and o.muser = 2]] >
    < / sqlStatement >
    < / dataQuery >
    < name dataTrigger = "beforeReport" source = "rolemine.build_role_hierachy.prereport_trigger ()" / >
    < dataStructure >
    < group name = "G_USER_GROUPS" source = "Q1" >
    < element name = "NAME" value = "name" / >
    < element name = "Function" value = "Function" / >
    < element name = "DEPTNAME" value = "DEPTNAME" / >
    < element name = "COST_CENTER" value = "COST_CENTER" / >
    < feature name = 'LOCATION' value = 'LOCATION' / >
    < element name = "ATTRIBUTE_1' value ="ATTRIBUTE_1"/ >
    < element name = "ATTRIBUTE_2" value = "ATTRIBUTE_2" / >
    < element name = "ATTRIBUTE_3" value = "ATTRIBUTE_3" / >
    < / Group >
    < name of group = "G_BR_IT" source = "Q2" >
    < element name = "DEPTNAME" value = "deptname" / >
    < element name = "COST_CENTER" value = "cost_center" / >
    < feature name = 'LOCATION' value = 'location' / >
    < element name = "Function" value = "function" / >
    < element name = "ATTRIBUTE_1' value ="attribute_1"/ >
    < element name = "ATTRIBUTE_2" value = "attribute_2" / >
    < element name = "ATTRIBUTE_3" value = "attribute_3" / >
    < element name = "ROLE_NAME" value = "role_name" / >
    < element name = "PRIVILEGE_NAME" value = "privilege_name" / >
    < element name = "PRIVILEDGE_DESC" value = "priviledge_desc" / >
    < / Group >
    < group name = "G_OUT_OF_BAND_ACCESS" source "Q3" = >
    < element name = "DEPTNAME" value = "deptname" / >
    < element name = "COST_CENTER" value = "cost_center" / >
    < feature name = 'LOCATION' value = 'location' / >
    < element name = "Function" value = "function" / >
    < element name = "ATTRIBUTE_1' value ="attribute_1"/ >
    < element name = "ATTRIBUTE_2" value = "attribute_2" / >
    < element name = "ATTRIBUTE_3" value = "attribute_3" / >
    < element name = "ROLE_NAME" value = "role_name" / >
    < element name = "PRIVILEGE_NAME" value = "privilege_name" / >
    < element name = "PRIVILEDGE_DESC" value = "priviledge_desc" / >
    < element name = "NAME" value = "name" / >
    < element name = "HAVE" value = "have" / >
    < / Group >
    < / dataStructure >
    < / dataTemplate >

    A function that returns a Boolean value (TRUE to succeed).

    Kind regards
    Gareth

  • PartialTrigger does not trigger the onChange event of a InputText.

    Hello

    I have a problem with partial triggers. I have 1 inputText and commandButton 1 as below:

    "< tr:inputText id = value =" #{MyBean.locationString "input1"} "partialTriggers =" * testButton * "onchange =" alert (1); " "/ >
    "< tr:commandButton id =" "* testButton *" action = "#{MyBean.testAction}" partialSubmit = "true" / >

    If I enter inputText and manually change something, it triggers the onChange event. But if I change it with PPR, it does not raise.

    How can I trigger inputText onchange event OR how can I invoke a javascript function after the end of partialSubmit?...

    Thank you.

    Hello

    How can I trigger the inputText onchange event

    Set true to autosubmit property and as soon as you exit the field the value is submitted

    OR how can I invoke a javascript function after the end of partialSubmit?...

    Using the Trinity, you can call JavaScript from a managed bean. But for this, the PPR request to access a bean

    Frank

  • value chain control event does not trigger change

    Hello

    I am trying to scan a barcode with a barcode usb HID scanner. I use a structure of the event to detect the change in the value of a control of the chain. When I scan the barcode, the chain control updates on the front panel, but the event does not fire until I left on my mouse on the front panel. can someone help? See attached vi

    Your barcodes are probably fixed length. When you get an event, check the length. If it corresponds to the length of the barcode, then process the data, otherwise wait for more characters.  This can be treated very quickly in the case of the event.

    Lynn

  • HP PC does not trigger new HP F4500 printer/scanner/copier.

    New printer installed & system said successfully but not recognized by the pc. Copy & scan OK, but does not print. On page pc printer, the F4500 is labeled "error" & I can't change the status. Is this the problem & otherwise...

    What have I done wrong?

    http://h20180.www2.HP.com/apps/lookup?h_lang=en&h_cc=us&cc=us&h_page=hpcom&lang=en&h_client=S-A-R163-1&h_pagetype=s-002&h_query=HP+F4500+printer&submit.x=3&submit.y=6

    Choose your correct model and install the drivers by following installation printer HP info on link.

    http://h20180.www2.HP.com/apps/lookup?h_lang=en&h_cc=us&cc=us&h_page=hpcom&lang=en&h_client=S-A-R163-1&h_pagetype=s-001&h_query=HP+F4500+printer&submit.x=6&submit.y=4

    Click on model for more information on installation.

    To contact HP re problems with their product info:

    http://welcome.HP.com/country/us/en/contact_us.html

    See you soon.

    Mick Murphy - Microsoft partner

  • OnLoad = "init ()" or any menu event does not trigger in Cordova BlackBerry mobile application "

    Hello

    IM using BlackBerry device 9320. I have developed an application using cordova-phonegap 2.2.0. This not the html body onload event triggers and the menu is not fired. I have included the cordova.js in the html file.

    Please help me

    It's my code...




    Thomas-Login











    menuDiv = document.querySelector ("#menu");

    document.addEventListener ("menu" button, doMenu, false);
    }

    onResume() {} function
    {setTimeout (function ()}
    TODO: do your thing!
    Window.Location.Reload (true);
    }, 0);
    }

    function doMenu() {}
    Console.log ("the menu was clicked...");
    {if (menuOpen)}
    Console.log ("close the menu");
    menuDiv.style.display = "none";
    menuOpen = false;
    } else {}
    Console.log ("open the menu");
    menuDiv.style.display = "block";
    menuOpen = true;
    }

    }

    function authenticate() {}

    document.getElementById('loadImg').style.display = 'block ';
    Window.UserName = document.login_form.username.value;
    Window.Password = document.login_form.password.value;
    success of the var = false, isAuthenticated = false;

    Validation
    If (! username &! password)
    return;

    Authenticate

    $.ajax({)

    type: 'HEAD ',.
    URL: "",
    cross-domain: true,
    data : {username: encodeURIComponent (username), password: encodeURIComponent (password)},

    success: function (responseData, textStatus, jqXHR)
    {
    document.getElementById('loadImg').style.display = 'none ';
    {if (document.login_form.rememberCredentials.Checked)}
    localStorage.setItem ('username', username);
    localStorage.setItem ('password', password);

    } else {}
    sessionStorage.setItem ('username', username);
    sessionStorage.setItem ('password', password);

    }

    Console.log (responseData);
    Console.log('!!!) e + textStatus); console.log('!!!) e (+ jqXHR);
    Window.Location.href = "index.html";
    },
    error: function (responseData, textStatus, errorThrown)
    {
    document.getElementById('loadImg').style.display = 'none ';
    Console.Warn (responseData, textStatus, errorThrown);

    Alert ("the connection has failed. Please re-login ');
    document.login_form. UserName.Value ="";
    document.login_form. Password.Value ="";
    {if (localStorage.GetItem ('username') & {localStorage.getItem ('password'))}
    localStorage.removeItem ('username');
    localStorage.removeItem ('password');
    } else {}
    sessionStorage.removeItem ('username');
    sessionStorage.removeItem ('password');
    }
    return;
    }
    });

    {if (document.login_form.rememberCredentials.Checked)}
    localStorage.setItem ('username', username);
    localStorage.setItem ('password', password);
    } else {}
    sessionStorage.setItem ('username', username);
    sessionStorage.setItem ('password', password);
    }

    }




    Thomas












    Send



    It is resolved. Could make the function call.

  • The assembler service does not trigger the same page as Discover electronic front end app

    Hello

    I was stuck on this issue for some time, so any help will be appreciated.

    I put a trigger in experience Manager for a certain page is displayed when the brand name = Kodak. This page is under browse Web/Web Pages.

    It works fine if I go to http://localhost:8006 - authoring/discover /? N = 4294967262

    However, if I use the same query for the assembler service, http://localhost:8006 / assembler-authoring/json/pages/browse? N = 4294967262

    I don't get the right page of Kodak, instead, I get the default page browse (which is also the object of the Web Pages browse) with only results from Kodak. How can I get the right page.

    Found the solution here:

    https://QA.endecacommunity.com/questions/798/assembler-query-node

    Commenting on urlParamEncoders fixed the problem

  • Business event does not trigger the PLSQL procedure... What should do?

    We need to call a plsql procedure when the workflow approval GL ended with approval. I thought I could do it by customizing the relevant business event.

    We are on EBS 12.1.3 with RDBMS: 11.2.0.3.0.

    I see the event oracle.apps.gl.Journals.journal.approve company has been disabled currently. I've enabled and created a subscription for her. Subscription was a PLSQL procedure. Currently, for objective test only thing it does is to insert a row in a table.

    Parameters of the subscription to corporate events:
    System: ORDEBS. SYSTEM.COM

    Triggering event
    Source type: Local
    Event filter: oracle.apps.gl.Journals.journal.approve


    Execution condition
    Phase: 100
    Status: enabled
    Rule data: Message

    Action type: custom
    Error on: stop blocking and cancellation

    Action
    Rule of PL/SQL function: XX_GL_APPROVE_BE_PKG. Get_Attributes
    Priority: normal

    Documentation (not sure what value to give the latter. I went with the values below).
    Owner: Name of the company
    Tag owner: custom Schema

    Using query I can see the event company is called when occurs below approval (an added line each time approval that has happened). But I don't see all the lines in the table where to insert a line. What could go wrong? How can I make sure that the procedure was called?

    Select * from WF_DEFERRED where corrid'art = 'APPS:oracle.apps.gl.Journals.journal.approve. '

    Procedure:
    CREATE OR REPLACE PACKAGE BODY APPS. XX_GL_APPROVE_BE_PKG
    AS
    PROCEDURE Get_Attributes
    IS
    BEGIN
    INSERT INTO xx.xx_test_table VALUES (' to BE');
    COMMIT;
    END Get_Attributes;
    END XX_GL_APPROVE_BE_PKG;

    Hello

    This OWNER_TAG represents an actual application under license, as "DNF" without the quotes. The business event system will send subscriptions for licensed products.

    Also, in order to detect any other possible errors please add a subscription of type error. In this way the BES will catch the error and will notify SYSADMIN of this failure, it's not silent. You can use this link to see how: https://blogs.oracle.com/oracleworkflow/entry/defining_business_events_with_synchronous

    Kind regards

    Alejandro

Maybe you are looking for