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.
List of all Oracle EBS queries, questions, and answers. Find your answer or ask your question now.
What are GL Tables in Oracle APPS R12
SELECT * FROM gl_code_combinations;
How to Initialize Oracle APPS session using SQL Developer
You can use this script to initialize a session in SQL Developer and to be able to select from multi-org views in Oracle EBS R12 DECLARE l_user_id NUMBER; l_resp_id NUMBER; l_app_id NUMBER; l_org_id NUMBER; l_err_num VARCHAR2(1000); l_err_msg VARCHAR2(1000); BEGIN SELECT user_id INTO l_user_id FROMRead more
You can use this script to initialize a session in SQL Developer and to be able to select from multi-org views in Oracle EBS R12
Query to Get Supplier Details in Oracle APPS R12
Hi @Beter, Please find below a query to get the master supplier informations: SELECT HOU.NAME OU_NAME ,APPS.ORG_ID ,APS.SEGMENT1 SUPPLIER_NUMBER ,APS.VENDOR_TYPE_LOOKUP_CODE SUPPLIER_TYPE ,APS.VENDOR_NAME SUPPLIER_NAME ,APS.VENDOR_NAME_ALT SUPPLIER_NAME_ALT ,APS.NUM_1099 TAXPAYER_ID ,APS.VAT_REGISTRRead more
Hi Beter, Please find below a query to get the master supplier informations:
Above query will list all suppliers details: OU_NAME, ORG_ID, SUPPLIER_NUMBER, SUPPLIER_TYPE, SUPPLIER_NAME, SUPPLIER_NAME_ALT, TAXPAYER_ID, TAX_REGISTRATION_NUM, SUPPLIER_ALLOW_WITHHOLDING_TAX, ACTIVE_CODE, VENDOR_SITE_ID, INACTIVE_DATE, SUPPLIER_SITE_CODE, SITE_CODE_ALT, SITE_ALLOW_WITHHOLDING_TAX, ADDRESS_LINE1, ADDRESS_LINE2, ADDRESS_LINE3, ADDRESS_LINE4 ,CITY, STATE, POST_CODE, SITE_PO_NOTIF_METHOD, and SITE_PO_EMAIL. And the list is open to add any other column/s you prefer. Note: If you are looking also about other details for the supplier you can find them in the list below:
Hope this helps.
See lessQuery To Find Operating Unit And Corresponding Inventory Organizations Details in Oracle Apps R12
You can use the following SQL from the GL Ledgers and Organizations using blitz report SELECT HAOUV.NAME BUSINESS_GROUP , (SELECT DISTINCT LISTAGG (GL0.NAME, ', ') WITHIN GROUP (ORDER BY GL0.NAME) OVER (PARTITION BY GLSNAV.LEDGER_ID) LEDGER_SET FROM GL_LEDGER_SET_NORM_ASSIGN_V GLSNAV, GL_LEDGERS GL0Read more
You can use the following SQL from the GL Ledgers and Organizations using blitz report
Query to Get Chart of Account Description in Oracle APPS R12
You can use the following query from blitz report FND Key Flexfields: SELECT FAV.APPLICATION_NAME,FIF.ID_FLEX_NAME TITLE ,FIF.DESCRIPTION ,FIF.ID_FLEX_CODE ,FIF.APPLICATION_TABLE_NAME ,FIF.UNIQUE_ID_COLUMN_NAME ,FIF.SET_DEFINING_COLUMN_NAME ,DECODE (FIFSV.ENABLED_FLAG, 'Y', 'Y') STRUCTURE_ENABLED ,FRead more
You can use the following query from blitz report FND Key Flexfields:
Query to get posted AP invoice in Oracle APPS R12
There is a seeded standard function provided from oracle to identify whether the invoice is posted or not. Which is (AP_INVOICES_PKG.GET_POSTING_STATUS) . This function take the invoice_id parameter and return one of four values: 'Y' - Posted 'N' - Unposted 'S' - Selected 'P' - Partially Posted ThesRead more
There is a seeded standard function provided from oracle to identify whether the invoice is posted or not. Which is (AP_INVOICES_PKG.GET_POSTING_STATUS) .
This function take the invoice_id parameter and return one of four values:
‘Y’ – Posted
‘N’ – Unposted
‘S’ – Selected
‘P’ – Partially Posted
These values is the invoice posting status flag.
Example:
Output:
INVOICE_NUM
————————————————–
INVOICE_POSTING_FLAG
——————————————————————————–
ERS-9163-109073
Y
19879-781
N
ERS-4400-109091
Y
ERS-9164-109093
P
ERS-6970-109094
Y
ERS-6971-109095
See lessY
Query to get supplier bank details in Oracle APPS R12
Fantastic
Fantastic
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 lessQuery to get FND messages in Oracle apps R12
try this select MESSAGE_NAME from fnd_new_messages
try this
select MESSAGE_NAME from fnd_new_messages
See lessQuery to Get The Oracle Application URL From Database in Oracle APPS R12
To find the application URL from the backend use one of the following queries : SELECT HOME_URL FROM ICX_PARAMETERS; Result http://<host.domain:port>/OA_HTML/AppsLogin OR SELECT FPOV.PROFILE_OPTION_VALUE FROM FND_PROFILE_OPTIONS FPO, FND_PROFILE_OPTION_VALUES FPOV WHERE FPO.PROFILE_OPTION_ID =Read more
To find the application URL from the backend use one of the following queries :
OR
See less