SELECT TRUNC(SYSDATE, 'Month') FROM dual
Monday, May 16, 2022
Friday, May 13, 2022
Query to get Employee Contract Duration in Oracle Apps
Nav: Global HRMS Manager--> People-->Enter and Maintain--> Query Employee--> Click on Others Button-->Select Contract from List
select papf.person_id ,papf.employee_number ,papf.full_name ,pcf.duration ,hl.meaning Units from per_all_people_f papf ,per_contracts_f pcf ,hr_lookups hl where papf.person_id = pcf.person_id AND papf.person_id = :p_person_id AND NVL (TRUNC (papf.effective_end_date), SYSDATE) >= TRUNC (SYSDATE) AND NVL (TRUNC (pcf.effective_end_date), SYSDATE) >= TRUNC (SYSDATE) AND pcf.duration_units = hl.lookup_code AND hl.lookup_type(+) = 'QUALIFYING_UNITS'
Query to get Employee Dependent Date Of Birth(Contact Information) in Oracle APPS
Thursday, May 12, 2022
Why there is no entry in AR_PAYMENT_SCHEDULES_ALL even after completing the AR Transaction in Oracle APPS
- After completing AR Transaction there is no data or entry in AR_PAYMENT_SCHEDULES_ALL table.
- Possible reason is "Open Receivables" check box is not checked for the Transaction Type while creating it.
- If Open Receivable is set to Yes then Receivables updates Customer Balances each time you create a complete Credit Memo, Debit Memo, Chargeback, or On-Account Credit with this Transaction Type.
- This also includes these Transactions in the Standard Aging and Collection Processes in Receivables.
Query to get the list of contexts for each formula type in Oracle Fusion HCM
select t.base_formula_type_name , ttl.formula_type_name , ttl.description , c.base_context_name from ff_formula_types_b t ,...
-
The XDOLoader utility is a Java-based command line program to load template (RTF, PDF, and XSL-FO), XML, and XSD files to the XML Publis...
-
SELECT HAOU.NAME "Operating Unit", OTTT_H.NAME "Transaction Type", OTTT_H.DESCRIPTION "Descripti...
-
GL tables are linked to Subledger Accounting (XLA tables). Regarding gl_import_references, there is a one-to-one correspondence between X...
