DBA Data[Home] [Help]

APPS.GHR_PA_REQUESTS_PKG dependencies on FND_CONCURRENT_PROGRAMS

Line 1561: -- This function looks at the AOL table FND_CONCURRENT_PROGRAMS to return the defualt printer for the

1557: RETURN(l_ret_val);
1558:
1559: END position_assigned;
1560:
1561: -- This function looks at the AOL table FND_CONCURRENT_PROGRAMS to return the defualt printer for the
1562: -- given concurrent program , Doesn't pass in application ID as 8301 is assumed
1563: FUNCTION get_default_printer (p_concurrent_program_name IN VARCHAR2)
1564: RETURN VARCHAR2 IS
1565: --

Line 1568: FROM fnd_concurrent_programs cop

1564: RETURN VARCHAR2 IS
1565: --
1566: CURSOR c_cop IS
1567: SELECT cop.printer_name
1568: FROM fnd_concurrent_programs cop
1569: WHERE cop.application_id = 8301
1570: AND cop.concurrent_program_name = p_concurrent_program_name;
1571: --
1572: --Note: There is a uinque index on application id and concurrent_program_name