DBA Data[Home] [Help]

APPS.OKL_STRM_GEN_TEMPLATE_PVT dependencies on OKL_GTT_PVT

Line 112: okl_gtt_pvt.insert_row(

108: l_gttv_rec_in.version := '1.0';
109: l_gttv_rec_in.tmpt_status := G_INIT_TMPT_STATUS;
110:
111: -- Call the insert method of the Stream Generation Template
112: okl_gtt_pvt.insert_row(
113: p_api_version => l_api_version
114: ,p_init_msg_list => p_init_msg_list
115: ,x_return_status => l_return_status
116: ,x_msg_count => l_msg_count

Line 444: okl_gtt_pvt.update_row

440: l_new_gttv_in_rec.gts_id := gts_id_rec.gts_id;
441: l_new_gttv_in_rec.version := gts_id_rec.version;
442: l_new_gttv_in_rec.end_date := l_gttv_rec_in.start_date - 1;
443:
444: okl_gtt_pvt.update_row
445: (
446: p_api_version => l_api_version
447: ,p_init_msg_list => p_init_msg_list
448: ,x_return_status => l_return_status

Line 498: okl_gtt_pvt.update_row

494: l_new_gttv_in_rec.gts_id := gts_id_rec.gts_id;
495: l_new_gttv_in_rec.version := gts_id_rec.version;
496: l_new_gttv_in_rec.start_date := l_gttv_rec_in.end_date + 1;
497:
498: okl_gtt_pvt.update_row
499: (
500: p_api_version => l_api_version
501: ,p_init_msg_list => p_init_msg_list
502: ,x_return_status => l_return_status

Line 518: okl_gtt_pvt.update_row(

514: */
515:
516:
517: -- Call the update method of the Stream Generation Template
518: okl_gtt_pvt.update_row(
519: p_api_version => l_api_version
520: ,p_init_msg_list => p_init_msg_list
521: ,x_return_status => l_return_status
522: ,x_msg_count => l_msg_count

Line 964: okl_gtt_pvt.update_row(

960: -- Current version template end_date will be updated with l_max_chr_start_date + 1
961: l_gttv_rec_prev_version_in := l_gttv_rec_in;
962: l_gttv_rec_prev_version_in.id := l_gtt_id;
963: l_gttv_rec_prev_version_in.end_date := l_max_chr_start_date + 1;
964: okl_gtt_pvt.update_row(
965: p_api_version => l_api_version
966: ,p_init_msg_list => p_init_msg_list
967: ,x_return_status => l_return_status
968: ,x_msg_count => l_msg_count

Line 986: okl_gtt_pvt.insert_row(

982: END IF;
983: l_gttv_rec_in.id := G_MISS_NUM;
984: l_gttv_rec_in.tmpt_status := G_INIT_TMPT_STATUS; -- Make the New Template Status to NEW
985: l_gttv_rec_in.end_date := G_MISS_DATE; -- END_DATE as G_MISS_DATE
986: okl_gtt_pvt.insert_row(
987: p_api_version => l_api_version
988: ,p_init_msg_list => p_init_msg_list
989: ,x_return_status => l_return_status
990: ,x_msg_count => l_msg_count

Line 3950: okl_gtt_pvt.update_row(

3946: -- 1. Template status should be 'COMPLETE'
3947: IF ( l_gttv_rec_in.tmpt_status = G_STATUS_COMPLETE )
3948: THEN
3949: l_gttv_rec_in.tmpt_status := G_STATUS_ACTIVE;
3950: okl_gtt_pvt.update_row(
3951: p_api_version => l_api_version
3952: ,p_init_msg_list => p_init_msg_list
3953: ,x_return_status => l_return_status
3954: ,x_msg_count => l_msg_count

Line 4393: okl_gtt_pvt.update_row(

4389: l_gttv_rec_in.tmpt_status := G_STATUS_INCOMPLETE;
4390: END IF;
4391: END IF;
4392: -- Call the update method of the Stream Generation Template
4393: okl_gtt_pvt.update_row(
4394: p_api_version => l_api_version
4395: ,p_init_msg_list => p_init_msg_list
4396: ,x_return_status => l_return_status
4397: ,x_msg_count => x_msg_count