DBA Data[Home] [Help]

APPS.GMI_CMP_TRAN_PVT dependencies on IC_TRAN_CMP

Line 165: -- insert row in ic_tran_cmp

161:
162: -- Move completed transaction record to local
163: l_cmp_tran_rec := p_cmp_tran_rec;
164:
165: -- insert row in ic_tran_cmp
166: IF NOT insert_ic_tran_cmp(l_cmp_tran_rec)
167: THEN
168: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
169: END IF;

Line 166: IF NOT insert_ic_tran_cmp(l_cmp_tran_rec)

162: -- Move completed transaction record to local
163: l_cmp_tran_rec := p_cmp_tran_rec;
164:
165: -- insert row in ic_tran_cmp
166: IF NOT insert_ic_tran_cmp(l_cmp_tran_rec)
167: THEN
168: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
169: END IF;
170:

Line 236: -- insert row in ic_tran_cmp

232:
233: -- Move completed transaction record to local
234: l_cmp_tran_rec := p_cmp_tran_rec;
235:
236: -- insert row in ic_tran_cmp
237: IF NOT insert_ic_tran_cmp(l_cmp_tran_rec)
238: THEN
239: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
240: END IF;

Line 237: IF NOT insert_ic_tran_cmp(l_cmp_tran_rec)

233: -- Move completed transaction record to local
234: l_cmp_tran_rec := p_cmp_tran_rec;
235:
236: -- insert row in ic_tran_cmp
237: IF NOT insert_ic_tran_cmp(l_cmp_tran_rec)
238: THEN
239: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
240: END IF;
241:

Line 302: -- insert row in ic_tran_cmp

298:
299: -- Move completed transaction record to local
300: l_cmp_tran_rec := p_cmp_tran_rec;
301:
302: -- insert row in ic_tran_cmp
303: IF NOT insert_ic_tran_cmp(l_cmp_tran_rec)
304: THEN
305: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
306: END IF;

Line 303: IF NOT insert_ic_tran_cmp(l_cmp_tran_rec)

299: -- Move completed transaction record to local
300: l_cmp_tran_rec := p_cmp_tran_rec;
301:
302: -- insert row in ic_tran_cmp
303: IF NOT insert_ic_tran_cmp(l_cmp_tran_rec)
304: THEN
305: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
306: END IF;
307:

Line 349: --| Insert_Ic_Tran_Cmp |

345:
346: -- Func start of comments
347: --+==========================================================================+
348: --| FUNCTION NAME |
349: --| Insert_Ic_Tran_Cmp |
350: --| |
351: --| USAGE |
352: --| Inserts a row into ic_tran_cmp |
353: --| |

Line 352: --| Inserts a row into ic_tran_cmp |

348: --| FUNCTION NAME |
349: --| Insert_Ic_Tran_Cmp |
350: --| |
351: --| USAGE |
352: --| Inserts a row into ic_tran_cmp |
353: --| |
354: --| DESCRIPTION |
355: --| This function inserts a row into ic_tran_cmp |
356: --| |

Line 355: --| This function inserts a row into ic_tran_cmp |

351: --| USAGE |
352: --| Inserts a row into ic_tran_cmp |
353: --| |
354: --| DESCRIPTION |
355: --| This function inserts a row into ic_tran_cmp |
356: --| |
357: --| PARAMETERS |
358: --| p_cmp_tran_rec IN RECORD - Inventory Transction Details |
359: --| |

Line 368: FUNCTION Insert_Ic_Tran_Cmp

364: --| HISTORY |
365: --| |
366: --+==========================================================================+
367: -- Func end of comments
368: FUNCTION Insert_Ic_Tran_Cmp
369: (p_cmp_tran_rec IN cmp_tran_typ)
370: RETURN BOOLEAN
371: IS
372:

Line 375: INSERT INTO ic_tran_cmp

371: IS
372:
373: BEGIN
374:
375: INSERT INTO ic_tran_cmp
376: ( item_id
377: , line_id
378: , trans_id
379: , co_code

Line 448: , 'insert_ic_tran_cmp'

444: -- (FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
445: -- THEN
446:
447: FND_MSG_PUB.Add_Exc_Msg ( G_PKG_NAME
448: , 'insert_ic_tran_cmp'
449: );
450: -- END IF;
451: RETURN FALSE;
452:

Line 453: END Insert_Ic_Tran_Cmp;

449: );
450: -- END IF;
451: RETURN FALSE;
452:
453: END Insert_Ic_Tran_Cmp;
454:
455: -- Func start of comments
456: --+==========================================================================+
457: --| FUNCTION NAME |