Hello oracle experts, I am developing new custom form in Oracle EBS R12 and i want to store WHO columns values like : CREATION DATE, CREATED BY, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN please guide me how to do this ? thanks in advance.
Oraask Latest Questions
when trying to extend a VO actually it's extended successfully but when i trying to search for more than one time inside LOV page this exception is throwing java.sql.SQLException: Invalid column type and this full error message: oracle.apps.fnd.framework.OAException: oracle.jbo.SQLStmtException: JBO-27122: SQL error ...
Hello,How can I load an image from the server and save it in the application on oracle forms, please?Thanks
hi i face this error oracle.apps.fnd.framework.OAException: Application: ICX, Message Name: Could not find the specified responsibility. when i'm trying to run welcomePG from jdeveloper i applied all jdeveloper configurations correctly but i don't know why this error is raising. this responsibility assigned to my ...
hello can I use select inside if statement like : begin if (select count(*) from employees) >= 15 then do something; end if; end; note : I want to delete rows from table where above condition evaluates with true
I have a PL/SQL procedure to update a number of rows in a table. is there is there any way to know the number of rows updated by update statement executed inside my procedure?
I want to raise user defined exception but with custom exception error message something like this : DECLARE ex_custom EXCEPTION; BEGIN RAISE ex_custom; EXCEPTION WHEN ex_custom THEN DBMS_OUTPUT.PUT_LINE(SQLERRM); END; The output is "User-Defined Exception" ...