DBA Data[Home] [Help]

APPS.OKL_CONS_BILL dependencies on FND_API

Line 257: IF FND_API.To_Boolean( p_commit ) THEN

253: -- ------------------------------------
254: END IF;-- If any records exist for updating
255:
256: IF saved_bill_rec.l_commit_cnt > G_Commit_Max THEN
257: IF FND_API.To_Boolean( p_commit ) THEN
258: COMMIT;
259: END IF;
260: saved_bill_rec.l_commit_cnt := 0;
261: END IF;

Line 2205: IF FND_API.To_Boolean( p_commit ) THEN

2201: p_commit,
2202: saved_bill_rec,
2203: l_update_tbl);
2204:
2205: IF FND_API.To_Boolean( p_commit ) THEN
2206: COMMIT;
2207: END IF;
2208:
2209: PRINT_TO_LOG( '========== END: Three LEVEL Processing ============');

Line 2269: IF FND_API.To_Boolean( p_commit ) THEN

2265: p_commit,
2266: saved_bill_rec,
2267: l_update_tbl);
2268:
2269: IF FND_API.To_Boolean( p_commit ) THEN
2270: COMMIT;
2271: END IF;
2272:
2273: PRINT_TO_LOG( '========== END: Two LEVEL Processing ============');

Line 2314: IF FND_API.To_Boolean( p_commit ) THEN

2310: p_commit,
2311: saved_bill_rec,
2312: l_update_tbl);
2313:
2314: IF FND_API.To_Boolean( p_commit ) THEN
2315: COMMIT;
2316: END IF;
2317:
2318: IF (G_IS_DEBUG_STATEMENT_ON = true) THEN

Line 2364: IF FND_API.To_Boolean( p_commit ) THEN

2360: p_commit,
2361: saved_bill_rec,
2362: l_update_tbl);
2363:
2364: IF FND_API.To_Boolean( p_commit ) THEN
2365: COMMIT;
2366: END IF;
2367:
2368: IF (G_IS_DEBUG_STATEMENT_ON = true) THEN

Line 2432: IF FND_API.To_Boolean( p_commit ) THEN

2428: -------------------------------
2429:
2430: -- Commit and reset if the limit reached
2431: IF l_commit_cnt > G_Commit_Max THEN
2432: IF FND_API.To_Boolean( p_commit ) THEN
2433: COMMIT;
2434: END IF;
2435: l_commit_cnt := 0;
2436: END IF;

Line 2525: IF FND_API.To_Boolean( p_commit ) THEN

2521: -- Increment the PL/SQL table index for updates
2522: cnr_tab_idx := cnr_tab_idx + 1;
2523: END LOOP; -- UBB Processing
2524:
2525: IF FND_API.To_Boolean( p_commit ) THEN
2526: COMMIT;
2527: END IF;
2528:
2529: IF (G_IS_DEBUG_STATEMENT_ON = true) THEN

Line 2594: IF FND_API.To_Boolean( p_commit ) THEN

2590: -------------------------------
2591:
2592: -- Commit and reset if the limit reached
2593: IF l_commit_cnt > G_Commit_Max THEN
2594: IF FND_API.To_Boolean( p_commit ) THEN
2595: COMMIT;
2596: END IF;
2597: l_commit_cnt := 0;
2598: END IF;

Line 2691: IF FND_API.To_Boolean( p_commit ) THEN

2687: -- Increment the PL/SQL table index for updates
2688: cnr_tab_idx := cnr_tab_idx + 1;
2689:
2690: END LOOP;
2691: IF FND_API.To_Boolean( p_commit ) THEN
2692: COMMIT;
2693: END IF;
2694:
2695: IF (G_IS_DEBUG_STATEMENT_ON = true) THEN

Line 2750: IF FND_API.To_Boolean( p_commit ) THEN

2746: -- Reset CNR ID for new Value
2747: -------------------------------
2748: -- Commit and reset if the limit reached
2749: IF l_commit_cnt > G_Commit_Max THEN
2750: IF FND_API.To_Boolean( p_commit ) THEN
2751: COMMIT;
2752: END IF;
2753: l_commit_cnt := 0;
2754: END IF;

Line 2840: IF FND_API.To_Boolean( p_commit ) THEN

2836: -- Increment the PL/SQL table index for updates
2837: cnr_tab_idx := cnr_tab_idx + 1;
2838:
2839: END LOOP;
2840: IF FND_API.To_Boolean( p_commit ) THEN
2841: COMMIT;
2842: END IF;
2843:
2844: IF (G_IS_DEBUG_STATEMENT_ON = true) THEN

Line 3109: IF FND_API.To_Boolean( p_commit ) THEN

3105: END IF; -- CNR entries not created
3106:
3107: -- Commit and reset if the limit reached
3108: IF l_commit_cnt > G_Commit_Max THEN
3109: IF FND_API.To_Boolean( p_commit ) THEN
3110: COMMIT;
3111: END IF;
3112: l_commit_cnt := 0;
3113: END IF;

Line 3119: IF FND_API.To_Boolean( p_commit ) THEN

3115: EXIT WHEN (cnr_tab_idx = cnr_update_tbl.LAST);
3116: cnr_tab_idx := cnr_update_tbl.NEXT(cnr_tab_idx);
3117: END LOOP;
3118: END IF;
3119: IF FND_API.To_Boolean( p_commit ) THEN
3120: COMMIT;
3121: END IF;
3122:
3123: IF (G_IS_DEBUG_STATEMENT_ON = true) THEN