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.
How can I define a global variable in java
There is no global variable in Java. However, we have a static keyword that we can use to define a global variable by doing something like the below: public class A { public static String var1 = "Oraask"; public static int var2 = 37; } A.var1; A.var2; But be careful because if this class gets unloadRead more
There is no global variable in Java. However, we have a static keyword that we can use to define a global variable by doing something like the below:
public class A { public static String var1 = "Oraask"; public static int var2 = 37; }But be careful because if this class gets unloaded, you will end up with an undefined null error that is difficult to catch.
See lessORA-01417: a table may be outer joined to at most one other table
Before Oracle database release 12c, the error ORA-01417 is raised when you have more than one table on the left-hand side of an outer join. To overcome this limit, we can convert the join to an ANSI syntax, e.g.: SELECT * FROM EMPLOYEES E LEFT JOIN DEPARTMENTS D ON (D.DEPARTMENT_ID = E.DEPARTMENT_IDRead more
Before Oracle database release 12c, the error ORA-01417 is raised when you have more than one table on the left-hand side of an outer join. To overcome this limit, we can convert the join to an ANSI syntax, e.g.:
From the 12c version, Oracle has supported having multiple tables on the left-hand side of the join.
See lessTablespace size
Find below the query to find the free space of a tablespace: SELECT DFQ.TABLESPACE_NAME "Tablespace Name" ,DFQ.TOTALSPACE "Total Size MB" , (DFQ.TOTALSPACE - DSQ.TOTALUSEDSPACE) "Free Space MB" ,ROUND (100 * ( (DFQ.TOTALSPACE - DSQ.TOTALUSEDSPACE) / DFQ.TOTALSPACE)) || '%' "Free Space %" FROM (SELECRead more
Find below the query to find the free space of a tablespace:
Also, you can refer to this article to find a handful of detail about the tablespace:
Check Tablespace Usage in Oracle
See lessCreate Item not showing up in Personalize Table
You went in-depth, and to reach this point, I believe it's better to log SR with Oracle to ask them if they have something else (I doubt) or to get a confirmation that these attributes are used as DFF attributes. They are updatable through the backend without any other impact. If they verified to upRead more
You went in-depth, and to reach this point, I believe it’s better to log SR with Oracle to ask them if they have something else (I doubt) or to get a confirmation that these attributes are used as DFF attributes. They are updatable through the backend without any other impact.
If they verified to update these columns, you could do that by extending the controller to do the job on your own.
See lessCreate Item not showing up in Personalize Table
Firstly, It's ok to use dates in varchar attributes; that's why Oracle makes it varchar to accept multiple data types in the form of character, and later on, we can deal with it by converting that to date or number. The second point is the VO; try to look into this VO instead of the ones you were loRead more
Firstly, It’s ok to use dates in varchar attributes; that’s why Oracle makes it varchar to accept multiple data types in the form of character, and later on, we can deal with it by converting that to date or number.
The second point is the VO; try to look into this VO instead of the ones you were looking at
oracle.apps.pos.supplier.server.BCAttrVO oracle.apps.pos.supplier.server.BCAttrEO
This one is updateable VO.
Finally, you can add one of the general attributes that exist on the POS_BUS_CLASS_ATTR table
See lessby extending above VO and making this field updatable.
Create Item not showing up in Personalize Table
There are two columns already that may fits your need. START_DATE_ACTIVE Date when the classification becomes active for the supplier END_DATE_ACTIVE Date when the classification becomes inactive for the supplier However, if you need to capture more additional informations in any standard tables, OrRead more
There are two columns already that may fits your need.
START_DATE_ACTIVE
Date when the classification becomes active for the supplier
END_DATE_ACTIVE
Date when the classification becomes inactive for the supplier
However, if you need to capture more additional informations in any standard tables, Oracle recommended to capture those additional information through out a DFF attributes. In this table you have 5 addition attributes to use them. Therefore, Oracle not recommended to add any additional physical columns on any standard table.
See lessPayables Import Invoices
Unfortunately, you can't achieve this kind of requirement without create a distribution set as per Oracle note Doc ID 1954890.1 Also currently there is no an API or interface table available to create a new distribution set from the backend. The only way is to create a temporary distribution set andRead more
Unfortunately, you can’t achieve this kind of requirement without create a distribution set as per Oracle note Doc ID 1954890.1
Also currently there is no an API or interface table available to create a new distribution set from the backend. The only way is to create a temporary distribution set and delete it’s account distributions once you have done from your task.
If you go with creating distribution set you have to pass either distribution_set_id or distribution_set_name while populating “ap_invoice_lines_interface” interface table.
See lessWhat is fndload command for responsibility in oracle apps R12?
FNDLOAD to download responsibility from the source instance: FNDLOAD apps/<PWD> 0 Y DOWNLOAD $FND_TOP/patch/115/import/afscursp.lct <LDT_FILE_NAME>.ldt FND_RESPONSIBILITY RESP_KEY=”<RESPONSIBILITY_KEY>” FNDLOAD to upload responsibility to destination instance: FNDLOAD apps/<PWDRead more
FNDLOAD to download responsibility from the source instance:
FNDLOAD to upload responsibility to destination instance:
Notes:
Note: Don’t forget to move the LDT file after downloaded it from source instance to destination instance.
See lessFailedAuthentication Fault Reason : FailedAuthentication : The security token cannot be authenticated
Clarification: This message refer to failed authentication that's because of the credentials for one or more connections being used by your integration. Resolution: get the list of connections being used by your integration then go to them and make sure of the username and password that they are corRead more
Clarification: This message refer to failed authentication that’s because of the credentials for one or more connections being used by your integration.
Resolution: get the list of connections being used by your integration then go to them and make sure of the username and password that they are correct by doing validate and test.
See lessSQL query to find all customised dff in oracle 12g
What do you mean by Customized DFF? If you want to list all custom context that is created on a specific DFF you can run this query to get the result: SELECT FAPT.APPLICATION_NAME, FDFC.DESCRIPTIVE_FLEXFIELD_NAME, FDFC.DESCRIPTIVE_FLEX_CONTEXT_CODE, FDFC.ENABLED_FLAG, FDFC.GLOBAL_FLAG, FDFC.DESCRIPTRead more
What do you mean by Customized DFF?
If you want to list all custom context that is created on a specific DFF you can run this query to get the result:
P_APPLICATION_NAME : Is your application name
P_DFF_NAME : Is your Descriptive flexfield name. It’s not the title which is available on DFF screen, but you can find the column name “DESCRIPTIVE_FLEXFIELD_NAME” from help -> diagnostic -> examine.
Note: We have excluded three users because Oracle seeded DFF contexts are created by these users above, thus, we can get only the custom ones.
See less