DBA Data[Home] [Help]

APPS.FLM_KANBAN_PUB dependencies on INVKBCGN

Line 2629: mydebug('Calling INVKBCGN.card_check_and_create');

2625: l_pull_seq_rec.wip_line_id := r_kanban_card_rec.wip_line_id ;
2626: l_pull_seq_rec.release_kanban_flag := l_release_kanban_flag;
2627: */
2628:
2629: mydebug('Calling INVKBCGN.card_check_and_create');
2630: -- This API doesn't allow us to create cards in Plan Status from Planning. Also card doesn't get created in 'Onhold' status.
2631: /*
2632: INV_kanban_PVT.create_kanban_cards(l_ret_status,
2633: l_kanban_card_ids,

Line 2845: invkbcgn.print_error;

2841: WHEN FND_API.G_EXC_ERROR THEN
2842: p_kanban_card_rec := r_kanban_card_rec;
2843: x_ret_status := FND_API.G_RET_STS_ERROR;
2844: x_err_msg := 'error in process_kanban_cards procedure '||l_error_msg||SQLERRM;
2845: invkbcgn.print_error;
2846: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
2847: p_kanban_card_rec := r_kanban_card_rec;
2848: x_ret_status := FND_API.G_RET_STS_UNEXP_ERROR;
2849: x_err_msg := ' Error in process_kanban_cards procedure '||l_error_msg||SQLERRM;

Line 2850: invkbcgn.print_error;

2846: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
2847: p_kanban_card_rec := r_kanban_card_rec;
2848: x_ret_status := FND_API.G_RET_STS_UNEXP_ERROR;
2849: x_err_msg := ' Error in process_kanban_cards procedure '||l_error_msg||SQLERRM;
2850: invkbcgn.print_error;
2851: WHEN OTHERS THEN
2852: p_kanban_card_rec := r_kanban_card_rec;
2853: x_err_msg := 'Unexpected error in process_kanban_cards procedure '||SQLERRM;
2854: x_ret_status := FND_API.G_RET_STS_UNEXP_ERROR;

Line 2855: invkbcgn.print_error;

2851: WHEN OTHERS THEN
2852: p_kanban_card_rec := r_kanban_card_rec;
2853: x_err_msg := 'Unexpected error in process_kanban_cards procedure '||SQLERRM;
2854: x_ret_status := FND_API.G_RET_STS_UNEXP_ERROR;
2855: invkbcgn.print_error;
2856: END process_kanban_cards;
2857:
2858: ------------------------------------------------------------------------
2859: --Procedure to load Cards, which calls validate and process kanban cards

Line 4043: mydebug('Calling INVKBCGN.create_kanban_cards procedure.');

4039: end if;
4040:
4041: -- call api to generate cards
4042: IF l_generate_cards = 'Y' and l_ret_status = FND_API.G_RET_STS_SUCCESS THEN
4043: mydebug('Calling INVKBCGN.create_kanban_cards procedure.');
4044:
4045: INVKBCGN.create_kanban_cards(
4046: errbuf => l_error_msg
4047: ,retcode => l_ret_code

Line 4045: INVKBCGN.create_kanban_cards(

4041: -- call api to generate cards
4042: IF l_generate_cards = 'Y' and l_ret_status = FND_API.G_RET_STS_SUCCESS THEN
4043: mydebug('Calling INVKBCGN.create_kanban_cards procedure.');
4044:
4045: INVKBCGN.create_kanban_cards(
4046: errbuf => l_error_msg
4047: ,retcode => l_ret_code
4048: ,x_org_id => null
4049: ,x_item_lo => null

Line 4073: -- set l_ret_status based on l_ret_code of INVKBCGN.create_kanban_cards

4069:
4070: mydebug('l_ret_status='||l_ret_status);
4071: mydebug('l_error_msg='||l_error_msg);
4072:
4073: -- set l_ret_status based on l_ret_code of INVKBCGN.create_kanban_cards
4074: IF l_ret_code <> 1 THEN
4075: l_ret_status := FND_API.G_RET_STS_ERROR;
4076: ELSE
4077: l_ret_status := FND_API.G_RET_STS_SUCCESS;