DBA Data[Home] [Help]

APPS.PO_COPYDOC_S1 dependencies on PO_EXHIBIT_DETAILS

Line 4066: INSERT INTO po_exhibit_details

4062:
4063:
4064: -- CLM Phase 4 - Elins project
4065: -- Copy the exhibit details from source document.
4066: INSERT INTO po_exhibit_details
4067: (
4068: po_exhibit_details_id,
4069: exhibit_name,
4070: exhibit_description,

Line 4068: po_exhibit_details_id,

4064: -- CLM Phase 4 - Elins project
4065: -- Copy the exhibit details from source document.
4066: INSERT INTO po_exhibit_details
4067: (
4068: po_exhibit_details_id,
4069: exhibit_name,
4070: exhibit_description,
4071: is_cdrl,
4072: po_header_id,

Line 4082: po_exhibit_details_s.nextval,

4078: created_by,
4079: last_update_login
4080: )
4081: SELECT
4082: po_exhibit_details_s.nextval,
4083: exhibit_name,
4084: exhibit_description,
4085: is_cdrl,
4086: x_to_po_header_id,

Line 4101: po_exhibit_details

4097: SYSDATE,
4098: fnd_global.user_id,
4099: fnd_global.login_id
4100: FROM
4101: po_exhibit_details
4102: WHERE
4103: po_header_id = x_from_po_header_id;
4104:
4105: -- CLM CLIN/SLIN Changes Start