DBA Data[Home] [Help]

APPS.FLM_KANBAN_PUB dependencies on FND_FILE

Line 1631: fnd_file.put_line(fnd_file.log,' Pull Sequence details with Interface Id : '|| p_pull_sequence_tbl(i).interface_id ||

1627:
1628: if l_ret_status = FND_API.G_RET_STS_SUCCESS then
1629: p_pull_sequence_tbl(i).pull_sequence_id := r_pull_seq_rec.pull_sequence_id;
1630: p_pull_sequence_tbl(i).process_status := FLM_KANBAN_MASSLOAD.COMPLETED;
1631: fnd_file.put_line(fnd_file.log,' Pull Sequence details with Interface Id : '|| p_pull_sequence_tbl(i).interface_id ||
1632: ' was processed successfully . ');
1633: /* elsif l_ret_status = 'W' then
1634: p_pull_sequence_tbl(i).process_status := FLM_KANBAN_MASSLOAD.WARNING;
1635: p_pull_sequence_tbl(i).error_text := l_error_msg;*/

Line 1639: fnd_file.put_line(fnd_file.log,' Pull Sequence details with Interface Id : '|| p_pull_sequence_tbl(i).interface_id ||

1635: p_pull_sequence_tbl(i).error_text := l_error_msg;*/
1636: elsif l_ret_status = FND_API.G_RET_STS_ERROR then
1637: p_pull_sequence_tbl(i).process_status := FLM_KANBAN_MASSLOAD.ERROR;
1638: p_pull_sequence_tbl(i).error_text := l_error_msg;
1639: fnd_file.put_line(fnd_file.log,' Pull Sequence details with Interface Id : '|| p_pull_sequence_tbl(i).interface_id ||
1640: ' failed due to following : '|| l_error_msg );
1641: else
1642: p_pull_sequence_tbl(i).process_status := FLM_KANBAN_MASSLOAD.ERROR;
1643: p_pull_sequence_tbl(i).error_text := l_error_msg;

Line 1644: fnd_file.put_line(fnd_file.log,' Pull Sequence details with Interface Id : '|| p_pull_sequence_tbl(i).interface_id ||

1640: ' failed due to following : '|| l_error_msg );
1641: else
1642: p_pull_sequence_tbl(i).process_status := FLM_KANBAN_MASSLOAD.ERROR;
1643: p_pull_sequence_tbl(i).error_text := l_error_msg;
1644: fnd_file.put_line(fnd_file.log,' Pull Sequence details with Interface Id : '|| p_pull_sequence_tbl(i).interface_id ||
1645: ' failed due to following : '|| l_error_msg );
1646: end if;
1647:
1648: IF l_ret_status <> FND_API.G_RET_STS_SUCCESS THEN

Line 3211: fnd_file.put_line(fnd_file.log,' Kanban card details with Interface Id : '|| p_card_int_tbl(i).interface_id ||

3207:
3208: IF l_ret_status = FND_API.G_RET_STS_ERROR THEN
3209: p_card_int_tbl(i).process_status := FLM_KANBAN_MASSLOAD.ERROR;
3210: p_card_int_tbl(i).error_text := l_err_msg;
3211: fnd_file.put_line(fnd_file.log,' Kanban card details with Interface Id : '|| p_card_int_tbl(i).interface_id ||
3212: ' failed due to following : '|| l_err_msg );
3213: ELSIF l_ret_status = FND_API.G_RET_STS_UNEXP_ERROR THEN
3214: p_card_int_tbl(i).process_status := FLM_KANBAN_MASSLOAD.ERROR;
3215: p_card_int_tbl(i).error_text := l_err_msg ;

Line 3216: fnd_file.put_line(fnd_file.log,' Kanban card details with Interface Id : '|| p_card_int_tbl(i).interface_id ||

3212: ' failed due to following : '|| l_err_msg );
3213: ELSIF l_ret_status = FND_API.G_RET_STS_UNEXP_ERROR THEN
3214: p_card_int_tbl(i).process_status := FLM_KANBAN_MASSLOAD.ERROR;
3215: p_card_int_tbl(i).error_text := l_err_msg ;
3216: fnd_file.put_line(fnd_file.log,' Kanban card details with Interface Id : '|| p_card_int_tbl(i).interface_id ||
3217: ' failed due to following : '|| l_err_msg );
3218: ELSIF l_ret_status = FND_API.G_RET_STS_SUCCESS THEN
3219: p_card_int_tbl(i).process_status := FLM_KANBAN_MASSLOAD.COMPLETED;
3220: p_card_int_tbl(i).kanban_card_id := r_kanban_card_rec.kanban_card_id;

Line 3222: fnd_file.put_line(fnd_file.log,' Kanban card details with Interface Id : '|| p_card_int_tbl(i).interface_id ||

3218: ELSIF l_ret_status = FND_API.G_RET_STS_SUCCESS THEN
3219: p_card_int_tbl(i).process_status := FLM_KANBAN_MASSLOAD.COMPLETED;
3220: p_card_int_tbl(i).kanban_card_id := r_kanban_card_rec.kanban_card_id;
3221: mydebug('Kanban Card Id : '|| p_card_int_tbl(i).kanban_card_id);
3222: fnd_file.put_line(fnd_file.log,' Kanban card details with Interface Id : '|| p_card_int_tbl(i).interface_id ||
3223: ' was processed successfully. ');
3224: ELSIF l_ret_status = 'W' THEN
3225: p_card_int_tbl(i).process_status := FLM_KANBAN_MASSLOAD.WARNING;
3226: p_card_int_tbl(i).kanban_card_id := r_kanban_card_rec.kanban_card_id;

Line 3227: fnd_file.put_line(fnd_file.log,' Kanban card details with Interface Id : '|| p_card_int_tbl(i).interface_id ||

3223: ' was processed successfully. ');
3224: ELSIF l_ret_status = 'W' THEN
3225: p_card_int_tbl(i).process_status := FLM_KANBAN_MASSLOAD.WARNING;
3226: p_card_int_tbl(i).kanban_card_id := r_kanban_card_rec.kanban_card_id;
3227: fnd_file.put_line(fnd_file.log,' Kanban card details with Interface Id : '|| p_card_int_tbl(i).interface_id ||
3228: ' had following warnings : '|| l_err_msg );
3229: END IF;
3230: IF l_ret_status not in (FND_API.G_RET_STS_SUCCESS,'W') THEN
3231: l_count := l_count + 1;