DBA Data[Home] [Help]

APPS.CTO_CONFIG_ITEM_PK dependencies on MRP_OM_API_PK

Line 78: | Calling MRP API MRP_OM_API_PK to insert the config items

74: | 09-27-2001 Kundan Sarkar Bugfix 2034342 ( Base bug 1998386 ).
75: | Passing PRIMARY_QUANTITY_UOM to ATP
76: |
77: | 10-02-2001 Kundan Sarkar Bugfix 2041612 ( Base bugs 2034419 and 1997355)
78: | Calling MRP API MRP_OM_API_PK to insert the config items
79: | line id during linking and delinking of config item.
80: |
81: | 10-29-2001 Kundan Sarkar Bugfix 2133816 ( Base bug 2047428 ).
82: | Loading Mandatory components even if Top Model ATP components

Line 922: p_config_line_arr_delink MRP_OM_API_PK.line_id_tbl;

918:
919: --Begin Bugfix 1997355
920:
921: index_counter_delink number;
922: p_config_line_arr_delink MRP_OM_API_PK.line_id_tbl;
923: l_return_status_delink varchar2(1);
924: vLineId number;
925:
926: --End Bugfix 1997355

Line 1732: MRP_OM_API_PK.MRP_OM_Interface

1728:
1729: p_config_line_arr_delink(index_counter_delink) := lConfigLineId;
1730: CLOSE delink_lines;
1731:
1732: MRP_OM_API_PK.MRP_OM_Interface
1733: (p_line_tbl => p_config_line_arr_delink,
1734: x_return_status => l_return_status_delink);
1735:
1736: IF PG_DEBUG <> 0 THEN

Line 1742: oe_debug_pub.add ('delink_item: ' || 'Failed in MRP_OM_API_PK.mrp_om_interface with expected error.', 1);

1738: END IF;
1739:
1740: if l_return_status_delink = FND_API.G_RET_STS_ERROR then
1741: IF PG_DEBUG <> 0 THEN
1742: oe_debug_pub.add ('delink_item: ' || 'Failed in MRP_OM_API_PK.mrp_om_interface with expected error.', 1);
1743: END IF;
1744:
1745: /* Bugfix 2454788 */
1746:

Line 1751: oe_debug_pub.add ('delink_item: ' || 'Failed in MRP_OM_API_PK.mrp_om_interface with unexpected error.', 1);

1747: raise FND_API.G_EXC_ERROR;
1748:
1749: elsif l_return_status_delink = FND_API.G_RET_STS_UNEXP_ERROR then
1750: IF PG_DEBUG <> 0 THEN
1751: oe_debug_pub.add ('delink_item: ' || 'Failed in MRP_OM_API_PK.mrp_om_interface with unexpected error.', 1);
1752: END IF;
1753:
1754:
1755: xMessageName := 'CTO_DELINK_ITEM_ERROR';

Line 8415: p_config_line_arr_link MRP_OM_API_PK.line_id_tbl;

8411:
8412: --Begin Bugfix 1997355
8413:
8414: index_counter_link number;
8415: p_config_line_arr_link MRP_OM_API_PK.line_id_tbl;
8416: l_return_status_link varchar2(1);
8417:
8418: --End Bugfix 1997355
8419:

Line 8827: MRP_OM_API_PK.MRP_OM_Interface

8823: IF PG_DEBUG <> 0 THEN
8824: oe_debug_pub.add('link_item: ' || 'Start MRP package for link', 1);
8825: END IF;
8826:
8827: MRP_OM_API_PK.MRP_OM_Interface
8828: (p_line_tbl => p_config_line_arr_link,
8829: x_return_status => l_return_status_link);
8830:
8831: IF PG_DEBUG <> 0 THEN

Line 8837: oe_debug_pub.add ('link_item: ' || 'Failed in MRP_OM_API_PK.mrp_om_interface with expected error.', 1);

8833: END IF;
8834:
8835: if l_return_status_link = FND_API.G_RET_STS_ERROR then
8836: IF PG_DEBUG <> 0 THEN
8837: oe_debug_pub.add ('link_item: ' || 'Failed in MRP_OM_API_PK.mrp_om_interface with expected error.', 1);
8838: END IF;
8839: raise FND_API.G_EXC_ERROR;
8840:
8841: elsif l_return_status_link = FND_API.G_RET_STS_UNEXP_ERROR then

Line 8843: oe_debug_pub.add ('link_item: ' || 'Failed in MRP_OM_API_PK.mrp_om_interface with unexpected error.', 1);

8839: raise FND_API.G_EXC_ERROR;
8840:
8841: elsif l_return_status_link = FND_API.G_RET_STS_UNEXP_ERROR then
8842: IF PG_DEBUG <> 0 THEN
8843: oe_debug_pub.add ('link_item: ' || 'Failed in MRP_OM_API_PK.mrp_om_interface with unexpected error.', 1);
8844: END IF;
8845: raise FND_API.G_EXC_UNEXPECTED_ERROR;
8846: end if;
8847: