Problem: The following code runs in SQL Developer and SQL*Plus from the server:
SELECT person_name, employee_number, date_from, date_to, segment_details FROM apps.hrfg_detailed_special_info WHERE to_date('&1', 'RRRR/MM/DD HH24:MI:SS') BETWEEN date_from AND date_to AND information_type = 'ABC Full Time Payroll Remarks' AND segment_name = 'Remarks' ORDER BY person_name /
However, when it is registered as a concurrent program and run, no output appears.
Solution: The apps_initialize subroutine must be called before running the script.
Recent Comments