DBA Data[Home] [Help]

APPS.CS_COST_DETAILS_PVT dependencies on CS_BUS_PROCESS_TXNS

Line 781: --This procedure just checks if the Business process id is present in cs_bus_process_txns

777:
778: --===============================
779: ---VALIDATE_BUSINESS_PROCESS
780: --===============================
781: --This procedure just checks if the Business process id is present in cs_bus_process_txns
782:
783: PROCEDURE VALIDATE_BUSINESS_PROCESS(p_api_name IN VARCHAR2,
784: p_transaction_type_id IN NUMBER,
785: x_return_status OUT NOCOPY VARCHAR2,

Line 791: FROM cs_bus_process_txns

787: x_msg_data OUT NOCOPY VARCHAR2 ) IS
788:
789: CURSOR c_business_process IS
790: SELECT '1'
791: FROM cs_bus_process_txns
792: WHERE transaction_type_id = p_transaction_type_id;
793:
794: lv_exists_flag VARCHAR2(1) := 'N';
795: