Sign Up to our social questions and Answers to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers to ask questions, answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
JBO-25058: Definition Attribute10 of type Attribute not found in XXPickSlipVO
Hello @Ovilia, Such an error could happen because other regions or items are using the same attribute10. Still, when deleting the VO or removing it from the application module, it won't change the dependencies automatically. The solution is to find the region that utilizing this VO and delete the whRead more
Hello Ovilia,
Such an error could happen because other regions or items are using the same attribute10. Still, when deleting the VO or removing it from the application module, it won’t change the dependencies automatically. The solution is to find the region that utilizing this VO and delete the whole region and recreate it again. It will solve your problem.
regards.
See lessIs this PA_CUSTOMERS_ALL table name available in Oracle EBS R12
Hi, There is a table called "PA_PROJECT_CONTACTS" its used to stores customer representatives involved with projects. Check this table it might help. The second idea would be to create an event alert on the customer address table once changed you can update the address that resides on the project byRead more
Hi,
There is a table called “PA_PROJECT_CONTACTS” its used to stores customer representatives involved with projects. Check this table it might help. The second idea would be to create an event alert on the customer address table once changed you can update the address that resides on the project by passing the new address ID. for sure the update process should be from standard API.
Note : I didn’t tried this before, Just to give you an insight that might help you in this regard.
Regards.
See lessoracle.apps.fnd.framework.OAException: Application: ICX, Message Name: Could not find the specified responsibility.
is application developer responsibility assigned to the user in above property: username password try to give sysadmin user because sure this user has application developer responsibility
is application developer responsibility assigned to the user in above property:
See lessusername
password
try to give sysadmin user because sure this user has application developer responsibility
oracle.apps.fnd.framework.OAException: Application: ICX, Message Name: Could not find the specified responsibility.
Hello Sri Harsha, First thing this happened only when trying to run a custom page from JDeveloper on your local machine. So this will not happen if you register and upload the page to the server. I use APPLICATION DEVELOPER responsibility under the FND application in the development phase, and everyRead more
Hello Sri Harsha,
First thing this happened only when trying to run a custom page from JDeveloper on your local machine. So this will not happen if you register and upload the page to the server.
I use APPLICATION DEVELOPER responsibility under the FND application in the development phase, and everything works fine. Please see the screenshot below:
Also, don’t forget to enter the user that has application developer responsibility.
See lessQuery to get all inventory periods for a specific organization
Hello @Waqas, You can use the following query to get inventory periods with it's status for one or more inventory organization also there is a condition hashed for period name if you want to query about particular period. you just need to un hash the condition. SELECT OOD.ORGANIZATION_CODE,OAP.PERIORead more
Hello Waqas,
You can use the following query to get inventory periods with it’s status for one or more inventory organization also there is a condition hashed for period name if you want to query about particular period. you just need to un hash the condition.
Which one do better performance NOT IN vs NOT EXISTS ?
Hi @Maran Firstly It’s not about the difference in performance only because they are not the same when dealing with nulls in the data. for example, we want to check how many employees are not managers of other employees by using NOT IN SELECT COUNT (*) FROM EMPLOYEES WHERE EMPLOYEE_ID NOT IN (SELECTRead more
Hi Maran Firstly
It’s not about the difference in performance only because they are not the same when dealing with nulls in the data.
for example, we want to check how many employees are not managers of other employees by using NOT IN
the result will be :
This means all employees are managers in this case.
let’s then take the same example but using NOT EXISTS
the result will be :
So here, out of 101 employees, there are 89, not managers.
The most crucial thing is NULL represented in the manager_id column for the first employee 101 (Steven King). So wherever null is there while using NOT IN or IN, the evaluation of the inner query will be either FALSE or NULL and will return no records.
So now, when it comes to performance, it depends on the amount of data that both subquery and the outer query returns. If they are small, then IN is typically more appropriate. And vise versa. But remember, we have assumed that there are no nulls in the subquery result.
Regards
See lessHow to select a random row in SQL& MySQL?
Hi Sam I don't know what the case you need this to, but anyway you can use the following query to get random row from employees table as an example. 1- Oracle : SELECT * FROM (SELECT * FROM EMPLOYEES ORDER BY DBMS_RANDOM.VALUE) WHERE ROWNUM = 1 2- MySQL : SELECT column FROM table ORDER BY RAND() LIMRead more
Hi Sam
I don’t know what the case you need this to, but anyway you can use the following query to get random row from employees table as an example. 1- Oracle :
2- MySQL :
The idea here in both examples is to get all rows in employees table but in random orders then using ROWNUM in Oracle and LIMIT clause in MySQL to return one row from them.
See lessHow to use COMMIT or ROLLBACK inside database trigger ?
Hello @albert Actually we cannot do commit or rollback inside a database trigger, because the trigger is an extension of a DML statements (Insert & Update & Delete). So the changes happened inside trigger should be committed or rollbacked as part of the original transaction. So if you are trRead more
Hello albert
Actually we cannot do commit or rollback inside a database trigger, because the trigger is an extension of a DML statements (Insert & Update & Delete). So the changes happened inside trigger should be committed or rollbacked as part of the original transaction.
So if you are traying to do commit inside the trigger you will get clear exception which is :
See lessHow to loop through VO View Object in OAF?
Hello @Chandra, To iterate through a VO in OAF by either RowSetIterator and then loop through it to fetch attributes value, or using FilteredRows this will give us an advantage of getting only rows that meets a particular condition, or using RowQualifier this is similar to FilteredRows but insteadRead more
Hello Chandra,
To iterate through a VO in OAF by either RowSetIterator and then loop through it to fetch attributes value, or using FilteredRows this will give us an advantage of getting only rows that meets a particular condition, or using RowQualifier this is similar to FilteredRows but instead of typing the condition using VO attribute, we are write normal SQL condition.
Now let’s see an example using the first option:
How To store WHO Column values In new custom forms ?
Hello @Beter, To set who columns in a new custom form in oracle apps you have to follow this two basic steps: 1- you have to have the who columns which is (CREATION_DATE,CREATED_BY,LAST_UPDATED_BY,LAST_UPDATE_DATE and LAST_UPDATE_LOGIN) first created on the table whose your database block is based oRead more
Hello Beter,
To set who columns in a new custom form in oracle apps you have to follow this two basic steps:
1- you have to have the who columns which is (CREATION_DATE,CREATED_BY,LAST_UPDATED_BY,LAST_UPDATE_DATE and LAST_UPDATE_LOGIN) first created on the table whose your database block is based on.
2- Call fnd_standard.set_who; on (pre-insert & pre-update) triggers on block level.
That’s it.
See less