DBA Data[Home] [Help]

APPS.QP_BULK_PREQ_GRP dependencies on FND_API

Line 421: IF l_debug = FND_API.G_TRUE THEN

417: QP_PREQ_PUB.G_STATUS_UNCHANGED,
418: QP_PREQ_PUB.G_YES
419: );
420: QP_PREQ_GRP.G_INT_ATTRS_NO := QP_PREQ_GRP.G_INT_ATTRS_NO + G_attr_context.count;
421: IF l_debug = FND_API.G_TRUE THEN
422: oe_debug_pub.add ('QP_PREQ_GRP.G_INT_ATTRS_NO='||QP_PREQ_GRP.G_INT_ATTRS_NO);
423: END IF;
424: end if;--G_line_index.count
425:

Line 433: x_return_status := FND_API.G_RET_STS_ERROR;

429: COMMIT;
430:
431: EXCEPTION
432: When OTHERS Then
433: x_return_status := FND_API.G_RET_STS_ERROR;
434: x_return_status_text := 'Exception in Bulk_insert_lines '||SQLERRM;
435: If l_debug = 'T' Then
436: oe_debug_pub.add ('Finished QPBGPREB lines:' ||SQLERRM);
437: End If;

Line 642: IF l_debug = FND_API.G_TRUE THEN

638: --and lines_iface.header_id = line.header_id
639: and ll.list_line_id = adj_iface.list_line_id
640: and lhdr.list_header_id = ll.list_header_id);
641:
642: IF l_debug = FND_API.G_TRUE THEN
643: oe_debug_pub.add ('QP_BULK_PREQ_GRP.bulk_insert_adj inserted adj count='||SQL%ROWCOUNT);
644: END IF;
645:
646: --added for java engine stats accumulation on li's request

Line 660: IF l_debug = FND_API.G_TRUE THEN

656: and ll.list_line_id = adj_iface.list_line_id
657: and lhdr.list_header_id = ll.list_header_id;
658:
659: QP_PREQ_GRP.G_INT_LDETS_NO := QP_PREQ_GRP.G_INT_LDETS_NO + ldet_count;
660: IF l_debug = FND_API.G_TRUE THEN
661: oe_debug_pub.add ('QP_PREQ_GRP.G_INT_LDETS_NO='||QP_PREQ_GRP.G_INT_LDETS_NO);
662: END IF;
663:
664: IF l_debug = FND_API.G_TRUE THEN

Line 664: IF l_debug = FND_API.G_TRUE THEN

660: IF l_debug = FND_API.G_TRUE THEN
661: oe_debug_pub.add ('QP_PREQ_GRP.G_INT_LDETS_NO='||QP_PREQ_GRP.G_INT_LDETS_NO);
662: END IF;
663:
664: IF l_debug = FND_API.G_TRUE THEN
665: FOR cl in (select line_index, line_detail_index, operand_value, operand_calculation_code, updated_flag, applied_flag
666: ,created_from_list_line_id, automatic_flag, override_flag from qp_int_ldets)
667: LOOP
668: oe_debug_pub.add('Inserted ldet details: line_index '||cl.line_index||' line_detail_index '||cl.line_detail_index

Line 682: x_return_status := FND_API.G_RET_STS_ERROR;

678: oe_debug_pub.add ('Finished QPBGPREB adjs: Success') ;
679: End If;
680: EXCEPTION
681: When OTHERS Then
682: x_return_status := FND_API.G_RET_STS_ERROR;
683: x_return_status_text := 'Exception in Bulk_insert_adj '||SQLERRM;
684: If l_debug = 'T' Then
685: oe_debug_pub.add ('Finished QPBGPREB adjs:' ||SQLERRM);
686: End If;