DBA Data[Home] [Help]

APPS.GMI_MOVE_ORDER_LINES_PUB dependencies on WSH_UTIL_CORE

Line 101: WSH_Util_Core.PrintLn('Call Convert Missing To Null');

97: x_return_status := FND_API.G_RET_STS_SUCCESS;
98:
99:
100:
101: WSH_Util_Core.PrintLn('Call Convert Missing To Null');
102:
103: FOR I in 1..p_mo_line_tbl.COUNT LOOP
104:
105: l_mo_line_rec := p_mo_line_tbl(I);

Line 107: WSH_Util_Core.PrintLn('_Move_Order_line => '||l_mo_line_rec.operation);

103: FOR I in 1..p_mo_line_tbl.COUNT LOOP
104:
105: l_mo_line_rec := p_mo_line_tbl(I);
106:
107: WSH_Util_Core.PrintLn('_Move_Order_line => '||l_mo_line_rec.operation);
108:
109: -- HW BUG#:2643440 No need to call Convert_Miss_To_Null since
110: -- the record is set to NULL already
111: l_mo_line_rec := GMI_MOVE_ORDER_line_UTIL.Convert_Miss_To_Null

Line 118: WSH_Util_Core.PrintLn('CAlling Move order Lines PVT');

114: l_mo_line_tbl(I) := l_mo_line_rec;
115:
116: END LOOP;
117:
118: WSH_Util_Core.PrintLn('CAlling Move order Lines PVT');
119:
120: GMI_Move_Order_lines_PVT.Process_Move_Order_lines
121: (
122: p_api_version_number => l_api_version_number

Line 136: WSH_Util_Core.PrintLn('Count MOL table => ' || x_mo_line_tbl.count);

132:
133: /* Return Output Variables */
134:
135: x_mo_line_tbl := l_mo_line_tbl;
136: WSH_Util_Core.PrintLn('Count MOL table => ' || x_mo_line_tbl.count);
137:
138: /* Bug 4276612 Added the following to initate the Outbound for Third Party Integration */
139: OPEN get_sales_order(l_mo_line_rec.txn_source_line_id);
140: FETCH get_sales_order INTO l_source_line_id;

Line 159: WSH_Util_Core.PrintLn('Error occured on initiate the Outbound to Third Party with the following error message ' || l_msg_data);

155: x_error_code => l_error_code,
156: x_msg_data => l_msg_data);
157:
158: IF l_return_status <> 'S' THEN
159: WSH_Util_Core.PrintLn('Error occured on initiate the Outbound to Third Party with the following error message ' || l_msg_data);
160: ELSE
161: WSH_Util_Core.PrintLn('Successfully initiated the Outbound to Third Party => ' || l_mo_line_rec.inventory_item_id);
162: END IF;
163: /* End of the changes for GR Third Party Integration */

Line 161: WSH_Util_Core.PrintLn('Successfully initiated the Outbound to Third Party => ' || l_mo_line_rec.inventory_item_id);

157:
158: IF l_return_status <> 'S' THEN
159: WSH_Util_Core.PrintLn('Error occured on initiate the Outbound to Third Party with the following error message ' || l_msg_data);
160: ELSE
161: WSH_Util_Core.PrintLn('Successfully initiated the Outbound to Third Party => ' || l_mo_line_rec.inventory_item_id);
162: END IF;
163: /* End of the changes for GR Third Party Integration */
164:
165: /* GMI_Move_Order_Header_Util.Insert_Row( l_mo_hdr_rec); */