DBA Data[Home] [Help]

APPS.PO_LOG dependencies on PO_SESSION_GT

Line 992: -- Logs STATEMENT-level messages containing data from PO_SESSION_GT.

988: --Pre-reqs: None.
989: --Modifies: FND_LOG_MESSAGES
990: --Locks: None.
991: --Function:
992: -- Logs STATEMENT-level messages containing data from PO_SESSION_GT.
993: --Parameters:
994: --IN:
995: --p_module_base
996: -- The log module base as obtained from get_subprogram_base().

Line 1000: -- Indicates which rows from PO_SESSION_GT to report.

996: -- The log module base as obtained from get_subprogram_base().
997: --p_position
998: -- A location indicator for the calling subprogram.
999: --p_key
1000: -- Indicates which rows from PO_SESSION_GT to report.
1001: -- All rows WHERE PO_SESSION_GT.key = p_key will be reported.
1002: --p_column_name_tbl
1003: -- The column names whose values for the specified rows should be reported.
1004: -- If all column values should be reported, use NULL.

Line 1001: -- All rows WHERE PO_SESSION_GT.key = p_key will be reported.

997: --p_position
998: -- A location indicator for the calling subprogram.
999: --p_key
1000: -- Indicates which rows from PO_SESSION_GT to report.
1001: -- All rows WHERE PO_SESSION_GT.key = p_key will be reported.
1002: --p_column_name_tbl
1003: -- The column names whose values for the specified rows should be reported.
1004: -- If all column values should be reported, use NULL.
1005: --End of Comments

Line 1021: FROM PO_SESSION_GT

1017: IF d_stmt THEN
1018:
1019: SELECT rowid
1020: BULK COLLECT INTO l_rowid_tbl
1021: FROM PO_SESSION_GT
1022: WHERE key = p_key
1023: ;
1024:
1025: stmt_table(

Line 1028: , p_table_name => 'PO_SESSION_GT'

1024:
1025: stmt_table(
1026: p_module_base => p_module_base
1027: , p_position => p_position
1028: , p_table_name => 'PO_SESSION_GT'
1029: , p_rowid_tbl => l_rowid_tbl
1030: , p_column_name_tbl => p_column_name_tbl
1031: );
1032:

Line 1053: FROM po_session_gt psgt

1049: update_po_log_tbl:=po_tbl_number();
1050:
1051: SELECT psgt.key
1052: BULK COLLECT INTO update_po_log_tbl
1053: FROM po_session_gt psgt
1054: WHERE psgt.index_char1=p_record_identifier ;
1055:
1056:
1057: FOR i in 1..update_po_log_tbl.COUNT LOOP