DBA Data[Home] [Help]

APPS.GL_JE_LINES_PKG dependencies on GL_JE_LINES_RECON_PKG

Line 1086: gl_je_lines_recon_pkg.insert_row(

1082: CLOSE C;
1083:
1084: -- Insert a reconciliation row if reconciliation is on
1085: IF (X_Recon_On_Flag = 'Y') THEN
1086: gl_je_lines_recon_pkg.insert_row(
1087: X_Rowid=>X_Recon_Rowid,
1088: X_Je_Header_Id=>X_Je_Header_id,
1089: X_Je_Line_Num=>X_Je_Line_Num,
1090: X_Ledger_Id=>X_Ledger_Id,

Line 1442: gl_je_lines_recon_pkg.lock_row(

1438: AND (X_Global_Attribute_Category IS NULL)))
1439: ) then
1440:
1441: IF (X_Recon_Rowid IS NOT NULL) THEN
1442: gl_je_lines_recon_pkg.lock_row(
1443: X_RowId => X_Recon_Rowid,
1444: X_Je_Header_Id=>X_Je_Header_id,
1445: X_Je_Line_Num=>X_Je_Line_Num,
1446: X_Ledger_Id=>X_Ledger_Id,

Line 1656: gl_je_lines_recon_pkg.insert_row(

1652:
1653: -- If no row exists, insert one if reconciliation is now on
1654: IF (X_Recon_Rowid IS NULL) THEN
1655: IF (X_Recon_On_Flag = 'Y') THEN
1656: gl_je_lines_recon_pkg.insert_row(
1657: X_Rowid=>X_Recon_Rowid,
1658: X_Je_Header_Id=>X_Je_Header_id,
1659: X_Je_Line_Num=>X_Je_Line_Num,
1660: X_Ledger_Id=>X_Ledger_Id,

Line 1674: gl_je_lines_recon_pkg.update_row(

1670: -- If a row exists, update it if reconciliation is on. Delete it if
1671: -- reconciliation is off.
1672: ELSE
1673: IF (X_Recon_On_Flag = 'Y') THEN
1674: gl_je_lines_recon_pkg.update_row(
1675: X_Rowid=>X_Recon_Rowid,
1676: X_Je_Header_Id=>X_Je_Header_id,
1677: X_Je_Line_Num=>X_Je_Line_Num,
1678: X_Ledger_Id=>X_Ledger_Id,

Line 1687: gl_je_lines_recon_pkg.delete_row(

1683: X_Last_Update_Date=>X_Last_Update_Date,
1684: X_Last_Updated_By=>X_Last_Updated_By,
1685: X_Last_Update_Login=>X_Last_Update_Login);
1686: ELSE
1687: gl_je_lines_recon_pkg.delete_row(
1688: X_Rowid=>X_Recon_Rowid);
1689: X_Recon_Rowid := null;
1690: END IF;
1691: END IF;

Line 1720: gl_je_lines_recon_pkg.delete_row(

1716: GL_IMPORT_REFERENCES_PKG.delete_line (lv_header_id ,lv_line_num );
1717:
1718: -- Delete any reconciliation row
1719: IF (X_Recon_Rowid IS NOT NULL) THEN
1720: gl_je_lines_recon_pkg.delete_row(
1721: X_Rowid=>X_Recon_Rowid);
1722: END IF;
1723: END Delete_Row;
1724: