DBA Data[Home] [Help]

APPS.GL_JE_LINES_PKG dependencies on GL_JE_LINES_RECON_PKG

Line 1053: gl_je_lines_recon_pkg.insert_row(

1049: CLOSE C;
1050:
1051: -- Insert a reconciliation row if reconciliation is on
1052: IF (X_Recon_On_Flag = 'Y') THEN
1053: gl_je_lines_recon_pkg.insert_row(
1054: X_Rowid=>X_Recon_Rowid,
1055: X_Je_Header_Id=>X_Je_Header_id,
1056: X_Je_Line_Num=>X_Je_Line_Num,
1057: X_Ledger_Id=>X_Ledger_Id,

Line 1364: gl_je_lines_recon_pkg.lock_row(

1360: AND (X_Third_Party_Id IS NULL)))
1361: ) then
1362:
1363: IF (X_Recon_Rowid IS NOT NULL) THEN
1364: gl_je_lines_recon_pkg.lock_row(
1365: X_RowId => X_Recon_Rowid,
1366: X_Je_Header_Id=>X_Je_Header_id,
1367: X_Je_Line_Num=>X_Je_Line_Num,
1368: X_Ledger_Id=>X_Ledger_Id,

Line 1555: gl_je_lines_recon_pkg.insert_row(

1551:
1552: -- If no row exists, insert one if reconciliation is now on
1553: IF (X_Recon_Rowid IS NULL) THEN
1554: IF (X_Recon_On_Flag = 'Y') THEN
1555: gl_je_lines_recon_pkg.insert_row(
1556: X_Rowid=>X_Recon_Rowid,
1557: X_Je_Header_Id=>X_Je_Header_id,
1558: X_Je_Line_Num=>X_Je_Line_Num,
1559: X_Ledger_Id=>X_Ledger_Id,

Line 1573: gl_je_lines_recon_pkg.update_row(

1569: -- If a row exists, update it if reconciliation is on. Delete it if
1570: -- reconciliation is off.
1571: ELSE
1572: IF (X_Recon_On_Flag = 'Y') THEN
1573: gl_je_lines_recon_pkg.update_row(
1574: X_Rowid=>X_Recon_Rowid,
1575: X_Je_Header_Id=>X_Je_Header_id,
1576: X_Je_Line_Num=>X_Je_Line_Num,
1577: X_Ledger_Id=>X_Ledger_Id,

Line 1586: gl_je_lines_recon_pkg.delete_row(

1582: X_Last_Update_Date=>X_Last_Update_Date,
1583: X_Last_Updated_By=>X_Last_Updated_By,
1584: X_Last_Update_Login=>X_Last_Update_Login);
1585: ELSE
1586: gl_je_lines_recon_pkg.delete_row(
1587: X_Rowid=>X_Recon_Rowid);
1588: X_Recon_Rowid := null;
1589: END IF;
1590: END IF;

Line 1619: gl_je_lines_recon_pkg.delete_row(

1615: GL_IMPORT_REFERENCES_PKG.delete_line (lv_header_id ,lv_line_num );
1616:
1617: -- Delete any reconciliation row
1618: IF (X_Recon_Rowid IS NOT NULL) THEN
1619: gl_je_lines_recon_pkg.delete_row(
1620: X_Rowid=>X_Recon_Rowid);
1621: END IF;
1622: END Delete_Row;
1623: