DBA Data[Home] [Help]

APPS.WSH_INTEGRATION dependencies on WSH_DETAILS_VALIDATIONS

Line 31: l_minmaxinrectype WSH_DETAILS_VALIDATIONS.MinMaxInRecType;

27: x_msg_count OUT NOCOPY NUMBER,
28: x_msg_data OUT NOCOPY VARCHAR2
29: )
30: IS
31: l_minmaxinrectype WSH_DETAILS_VALIDATIONS.MinMaxInRecType;
32: l_minmaxinoutrectype WSH_DETAILS_VALIDATIONS.MinMaxInOutRecType;
33: l_minmaxoutrectype WSH_DETAILS_VALIDATIONS.MinMaxOutRecType;
34:
35: --

Line 32: l_minmaxinoutrectype WSH_DETAILS_VALIDATIONS.MinMaxInOutRecType;

28: x_msg_data OUT NOCOPY VARCHAR2
29: )
30: IS
31: l_minmaxinrectype WSH_DETAILS_VALIDATIONS.MinMaxInRecType;
32: l_minmaxinoutrectype WSH_DETAILS_VALIDATIONS.MinMaxInOutRecType;
33: l_minmaxoutrectype WSH_DETAILS_VALIDATIONS.MinMaxOutRecType;
34:
35: --
36: l_debug_on BOOLEAN;

Line 33: l_minmaxoutrectype WSH_DETAILS_VALIDATIONS.MinMaxOutRecType;

29: )
30: IS
31: l_minmaxinrectype WSH_DETAILS_VALIDATIONS.MinMaxInRecType;
32: l_minmaxinoutrectype WSH_DETAILS_VALIDATIONS.MinMaxInOutRecType;
33: l_minmaxoutrectype WSH_DETAILS_VALIDATIONS.MinMaxOutRecType;
34:
35: --
36: l_debug_on BOOLEAN;
37: --

Line 66: WSH_DEBUG_SV.logmsg(l_module_name, 'Calling WSH_DETAILS_VALIDATIONS.Get_Min_Max_Tolerance_Quantity');

62: x_return_status := FND_API.G_RET_STS_ERROR;
63: END IF;
64:
65: IF l_debug_on THEN
66: WSH_DEBUG_SV.logmsg(l_module_name, 'Calling WSH_DETAILS_VALIDATIONS.Get_Min_Max_Tolerance_Quantity');
67: END IF;
68:
69: l_minmaxinrectype.api_version_number := NVL(p_in_attributes.api_version_number, 1.0);
70: l_minmaxinrectype.source_code := p_in_attributes.source_code;

Line 75: WSH_DETAILS_VALIDATIONS.get_min_max_tolerance_quantity

71: l_minmaxinrectype.line_id := p_in_attributes.line_id;
72: l_minmaxinrectype.action_flag := 'C';
73: l_minmaxinoutrectype.dummy_quantity := p_inout_attributes.dummy_quantity;
74:
75: WSH_DETAILS_VALIDATIONS.get_min_max_tolerance_quantity
76: (p_in_attributes => l_minmaxinrectype,
77: x_out_attributes => l_minmaxoutrectype,
78: p_inout_attributes => l_minmaxinoutrectype,
79: x_return_status => x_return_status,

Line 85: WSH_DEBUG_SV.log(l_module_name,'Return status from WSH_DETAILS_VALIDATIONS.get_min_max_tolerance_quantity',x_return_status);

81: x_msg_data => x_msg_data
82: );
83:
84: IF l_debug_on THEN
85: WSH_DEBUG_SV.log(l_module_name,'Return status from WSH_DETAILS_VALIDATIONS.get_min_max_tolerance_quantity',x_return_status);
86: END IF;
87:
88: IF x_return_status in (WSH_UTIL_CORE.G_RET_STS_ERROR, WSH_UTIL_CORE.G_RET_STS_UNEXP_ERROR ) THEN
89: IF l_debug_on THEN