DBA Data[Home] [Help]

APPS.WSH_CUSTOM_PUB dependencies on WSH_UTIL_CORE

Line 141: WSH_UTIL_CORE.printmsg('In the Others Exception of WSH_CUSTOM_PUB.ui_location_code');

137: EXCEPTION
138: WHEN others THEN
139: l_sqlcode := SQLCODE;
140: l_sqlerr := SQLERRM;
141: WSH_UTIL_CORE.printmsg('In the Others Exception of WSH_CUSTOM_PUB.ui_location_code');
142: WSH_UTIL_CORE.printmsg(l_sqlcode);
143: WSH_UTIL_CORE.printmsg(l_sqlerr);
144: ---Sample code end --
145: */

Line 142: WSH_UTIL_CORE.printmsg(l_sqlcode);

138: WHEN others THEN
139: l_sqlcode := SQLCODE;
140: l_sqlerr := SQLERRM;
141: WSH_UTIL_CORE.printmsg('In the Others Exception of WSH_CUSTOM_PUB.ui_location_code');
142: WSH_UTIL_CORE.printmsg(l_sqlcode);
143: WSH_UTIL_CORE.printmsg(l_sqlerr);
144: ---Sample code end --
145: */
146: END ui_location_code;

Line 143: WSH_UTIL_CORE.printmsg(l_sqlerr);

139: l_sqlcode := SQLCODE;
140: l_sqlerr := SQLERRM;
141: WSH_UTIL_CORE.printmsg('In the Others Exception of WSH_CUSTOM_PUB.ui_location_code');
142: WSH_UTIL_CORE.printmsg(l_sqlcode);
143: WSH_UTIL_CORE.printmsg(l_sqlerr);
144: ---Sample code end --
145: */
146: END ui_location_code;
147:

Line 406: p_line_id_tab IN WSH_UTIL_CORE.Id_Tab_Type,

402: -- with the order line_id and all the attributes can be overridden.
403: -- For Item Dimensions values to be sent as part of RIQ XML, the OTM Item Dimension UOM must be defined
404: -- and the Item Dimensions (Length, Width and Height) should all have valid values.
405: PROCEDURE Override_RIQ_XML_Attributes(
406: p_line_id_tab IN WSH_UTIL_CORE.Id_Tab_Type,
407: x_weight IN OUT NOCOPY NUMBER,
408: x_volume IN OUT NOCOPY NUMBER,
409: x_length IN OUT NOCOPY NUMBER,
410: x_height IN OUT NOCOPY NUMBER,

Line 442: x_return_status := WSH_UTIL_CORE.G_RET_STS_UNEXP_ERROR;

438: */
439:
440: EXCEPTION
441: WHEN others THEN
442: x_return_status := WSH_UTIL_CORE.G_RET_STS_UNEXP_ERROR;
443: END Override_RIQ_XML_Attributes;
444:
445: -- Bug 7131800
446: FUNCTION Cancel_Unpicked_Details_At_ITS(

Line 450: p_remain_details_id IN WSH_UTIL_CORE.Id_Tab_Type

446: FUNCTION Cancel_Unpicked_Details_At_ITS(
447: p_source_header_id IN NUMBER,
448: p_source_line_id IN NUMBER,
449: p_source_line_set_id IN NUMBER,
450: p_remain_details_id IN WSH_UTIL_CORE.Id_Tab_Type
451: ) RETURN VARCHAR2 IS
452: l_debug_on BOOLEAN;
453: l_cancel_flag VARCHAR2(1):= 'Y'; -- default Value is to Cancel (old Behaviour)
454: --