DBA Data[Home] [Help]

APPS.WSH_SHIPMENT_ADVICE_PUB dependencies on WSH_DEBUG_SV

Line 48: l_debug_on CONSTANT BOOLEAN := WSH_DEBUG_SV.is_debug_enabled;

44: l_api_version_number CONSTANT NUMBER := 1.0;
45: l_api_name CONSTANT VARCHAR2(30):= 'Shipment_Advice';
46:
47: --
48: l_debug_on CONSTANT BOOLEAN := WSH_DEBUG_SV.is_debug_enabled;
49: l_module_name CONSTANT VARCHAR2(100) := 'wsh.plsql.' || G_PKG_NAME || '.' || 'Shipment_Advice';
50: --
51: BEGIN
52: IF l_debug_on THEN

Line 53: WSH_DEBUG_SV.push(l_module_name);

49: l_module_name CONSTANT VARCHAR2(100) := 'wsh.plsql.' || G_PKG_NAME || '.' || 'Shipment_Advice';
50: --
51: BEGIN
52: IF l_debug_on THEN
53: WSH_DEBUG_SV.push(l_module_name);
54: WSH_DEBUG_SV.log(l_module_name,'P_INIT_MSG_LIST',P_INIT_MSG_LIST);
55: END IF;
56: IF FND_API.to_Boolean(p_init_msg_list) THEN
57: FND_MSG_PUB.initialize;

Line 54: WSH_DEBUG_SV.log(l_module_name,'P_INIT_MSG_LIST',P_INIT_MSG_LIST);

50: --
51: BEGIN
52: IF l_debug_on THEN
53: WSH_DEBUG_SV.push(l_module_name);
54: WSH_DEBUG_SV.log(l_module_name,'P_INIT_MSG_LIST',P_INIT_MSG_LIST);
55: END IF;
56: IF FND_API.to_Boolean(p_init_msg_list) THEN
57: FND_MSG_PUB.initialize;
58: END IF;

Line 72: WSH_DEBUG_SV.logmsg(l_module_name,'Calling program unit Create_Shipment_Advice', WSH_DEBUG_SV.C_PROC_LEVEL);

68: END IF;
69:
70: IF p_action = 'CREATE' THEN
71: IF l_debug_on THEN
72: WSH_DEBUG_SV.logmsg(l_module_name,'Calling program unit Create_Shipment_Advice', WSH_DEBUG_SV.C_PROC_LEVEL);
73: END IF;
74: Create_Shipment_Advice(
75: p_delivery_rec => p_delivery_rec,
76: x_return_status => l_return_status);

Line 89: WSH_DEBUG_SV.log(l_module_name, 'p_action_code should be CREATE.The current value is',p_action);

85: fnd_message.set_name('WSH', 'WSH_PUB_INVALID_ACTION');
86: fnd_message.set_token('ACTION_CODE', p_action);
87: wsh_util_core.add_message(x_return_status);
88: IF l_debug_on THEN
89: WSH_DEBUG_SV.log(l_module_name, 'p_action_code should be CREATE.The current value is',p_action);
90: END IF;
91: RAISE FND_API.G_EXC_ERROR;
92:
93: END IF;

Line 95: WSH_DEBUG_SV.pop(l_module_name);

91: RAISE FND_API.G_EXC_ERROR;
92:
93: END IF;
94: IF l_debug_on THEN
95: WSH_DEBUG_SV.pop(l_module_name);
96: END IF;
97:
98: EXCEPTION
99: WHEN FND_API.G_EXC_ERROR THEN

Line 102: WSH_DEBUG_SV.logmsg(l_module_name,'Rolling back the transactions');

98: EXCEPTION
99: WHEN FND_API.G_EXC_ERROR THEN
100: x_return_status := WSH_UTIL_CORE.G_RET_STS_ERROR;
101: IF l_debug_on THEN
102: WSH_DEBUG_SV.logmsg(l_module_name,'Rolling back the transactions');
103: END IF;
104: rollback;
105: fnd_msg_pub.count_and_get(p_count => x_msg_count,
106: p_data => x_msg_data,

Line 109: WSH_DEBUG_SV.pop(l_module_name,'EXCEPTION:FND_API.G_EXC_ERROR');

105: fnd_msg_pub.count_and_get(p_count => x_msg_count,
106: p_data => x_msg_data,
107: p_encoded => fnd_api.g_false);
108: IF l_debug_on THEN
109: WSH_DEBUG_SV.pop(l_module_name,'EXCEPTION:FND_API.G_EXC_ERROR');
110: END IF;
111: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
112: x_return_status := WSH_UTIL_CORE.G_RET_STS_UNEXP_ERROR;
113: IF l_debug_on THEN

Line 114: WSH_DEBUG_SV.logmsg(l_module_name,'Rolling back the transactions');

110: END IF;
111: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
112: x_return_status := WSH_UTIL_CORE.G_RET_STS_UNEXP_ERROR;
113: IF l_debug_on THEN
114: WSH_DEBUG_SV.logmsg(l_module_name,'Rolling back the transactions');
115: END IF;
116: rollback;
117: fnd_msg_pub.count_and_get(p_count => x_msg_count,
118: p_data => x_msg_data,

Line 122: WSH_DEBUG_SV.pop(l_module_name,'EXCEPTION:FND_API.G_EXC_UNEXPECTED_ERROR');

118: p_data => x_msg_data,
119: p_encoded => fnd_api.g_false);
120:
121: IF l_debug_on THEN
122: WSH_DEBUG_SV.pop(l_module_name,'EXCEPTION:FND_API.G_EXC_UNEXPECTED_ERROR');
123: END IF;
124: WHEN OTHERS THEN
125: x_return_status := WSH_UTIL_CORE.G_RET_STS_UNEXP_ERROR;
126: IF l_debug_on THEN

Line 127: WSH_DEBUG_SV.logmsg(l_module_name,'Rolling back the transactions');

123: END IF;
124: WHEN OTHERS THEN
125: x_return_status := WSH_UTIL_CORE.G_RET_STS_UNEXP_ERROR;
126: IF l_debug_on THEN
127: WSH_DEBUG_SV.logmsg(l_module_name,'Rolling back the transactions');
128: END IF;
129: fnd_msg_pub.count_and_get(p_count => x_msg_count,
130: p_data => x_msg_data,
131: p_encoded => fnd_api.g_false);

Line 134: WSH_DEBUG_SV.logmsg(l_module_name,'Unexpected error has occured. Oracle error message is '|| SQLERRM,WSH_DEBUG_SV.C_UNEXPEC_ERR_LEVEL);

130: p_data => x_msg_data,
131: p_encoded => fnd_api.g_false);
132: rollback;
133: IF l_debug_on THEN
134: WSH_DEBUG_SV.logmsg(l_module_name,'Unexpected error has occured. Oracle error message is '|| SQLERRM,WSH_DEBUG_SV.C_UNEXPEC_ERR_LEVEL);
135: WSH_DEBUG_SV.pop(l_module_name,'EXCEPTION:OTHERS');
136: END IF;
137: END Shipment_Advice;
138:

Line 135: WSH_DEBUG_SV.pop(l_module_name,'EXCEPTION:OTHERS');

131: p_encoded => fnd_api.g_false);
132: rollback;
133: IF l_debug_on THEN
134: WSH_DEBUG_SV.logmsg(l_module_name,'Unexpected error has occured. Oracle error message is '|| SQLERRM,WSH_DEBUG_SV.C_UNEXPEC_ERR_LEVEL);
135: WSH_DEBUG_SV.pop(l_module_name,'EXCEPTION:OTHERS');
136: END IF;
137: END Shipment_Advice;
138:
139:

Line 172: l_debug_on CONSTANT BOOLEAN := WSH_DEBUG_SV.is_debug_enabled;

168: l_return_status VARCHAR2(100);
169: l_exists NUMBER;
170: l_ins_rows NUMBER;
171: --
172: l_debug_on CONSTANT BOOLEAN := WSH_DEBUG_SV.is_debug_enabled;
173: l_module_name CONSTANT VARCHAR2(100) := 'wsh.plsql.' || G_PKG_NAME || '.' || 'Create_Shipmemt_Advice';
174: --
175: BEGIN
176: --

Line 178: WSH_DEBUG_SV.push(l_module_name);

174: --
175: BEGIN
176: --
177: IF l_debug_on THEN
178: WSH_DEBUG_SV.push(l_module_name);
179: --WSH_DEBUG_SV.logmsg(l_module_name,'Calling program unit Debug_Shipment_Advice', WSH_DEBUG_SV.C_PROC_LEVEL);
180: --Debug_Shipment_Advice(p_delivery_rec);
181: END IF;
182: --

Line 179: --WSH_DEBUG_SV.logmsg(l_module_name,'Calling program unit Debug_Shipment_Advice', WSH_DEBUG_SV.C_PROC_LEVEL);

175: BEGIN
176: --
177: IF l_debug_on THEN
178: WSH_DEBUG_SV.push(l_module_name);
179: --WSH_DEBUG_SV.logmsg(l_module_name,'Calling program unit Debug_Shipment_Advice', WSH_DEBUG_SV.C_PROC_LEVEL);
180: --Debug_Shipment_Advice(p_delivery_rec);
181: END IF;
182: --
183: x_return_status := WSH_UTIL_CORE.G_RET_STS_SUCCESS;

Line 192: WSH_DEBUG_SV.log(l_module_name, 'Mandatory input parameters have not been passed');

188: fnd_message.set_token('ATTRIBUTE','DOCUMENT_NUMBER ');
189: wsh_util_core.add_message(x_return_status);
190:
191: IF l_debug_on THEN
192: WSH_DEBUG_SV.log(l_module_name, 'Mandatory input parameters have not been passed');
193: END IF;
194: RAISE FND_API.G_EXC_ERROR;
195: END IF;
196: select count(*) into l_exists

Line 208: wsh_debug_sv.logmsg(l_module_name, 'The document already exists');

204: fnd_message.set_name('WSH', 'WSH_SA_DUP_DOCUMENT');
205: fnd_message.set_token('DOCUMENT_NUMBER', p_delivery_rec.document_number);
206: wsh_util_core.add_message(x_return_status);
207: IF l_debug_on THEN
208: wsh_debug_sv.logmsg(l_module_name, 'The document already exists');
209: END IF;
210: RAISE FND_API.G_EXC_ERROR;
211: END IF;
212:

Line 214: wsh_debug_sv.logmsg(l_module_name, 'Inserting into WSH_NEW_DEL_INTERFACE');

210: RAISE FND_API.G_EXC_ERROR;
211: END IF;
212:
213: IF l_debug_on THEN
214: wsh_debug_sv.logmsg(l_module_name, 'Inserting into WSH_NEW_DEL_INTERFACE');
215: END IF;
216:
217: INSERT INTO WSH_NEW_DEL_INTERFACE(
218: DELIVERY_INTERFACE_ID,

Line 353: WSH_DEBUG_SV.log(l_module_name, 'Number of records inserted into WSH_NEW_DEL_INTERFACE',l_ins_rows);

349: RETURNING DELIVERY_INTERFACE_ID into l_delivery_interface_id;
350:
351: l_ins_rows := sql%rowcount;
352: IF l_debug_on THEN
353: WSH_DEBUG_SV.log(l_module_name, 'Number of records inserted into WSH_NEW_DEL_INTERFACE',l_ins_rows);
354: WSH_DEBUG_SV.log(l_module_name, 'Number of Delivery Freight records',p_delivery_rec.delivery_freight_tab.count);
355: END IF;
356:
357:

Line 354: WSH_DEBUG_SV.log(l_module_name, 'Number of Delivery Freight records',p_delivery_rec.delivery_freight_tab.count);

350:
351: l_ins_rows := sql%rowcount;
352: IF l_debug_on THEN
353: WSH_DEBUG_SV.log(l_module_name, 'Number of records inserted into WSH_NEW_DEL_INTERFACE',l_ins_rows);
354: WSH_DEBUG_SV.log(l_module_name, 'Number of Delivery Freight records',p_delivery_rec.delivery_freight_tab.count);
355: END IF;
356:
357:
358: IF p_delivery_rec.delivery_freight_tab.count>0 THEN --Delivery's Freight costs

Line 361: wsh_debug_sv.logmsg(l_module_name, 'Inserting WSH_FREIGHT_COSTS_INTERFACE for the delivery');

357:
358: IF p_delivery_rec.delivery_freight_tab.count>0 THEN --Delivery's Freight costs
359: --{
360: IF l_debug_on THEN
361: wsh_debug_sv.logmsg(l_module_name, 'Inserting WSH_FREIGHT_COSTS_INTERFACE for the delivery');
362: END IF;
363: FOR k in 1..p_delivery_rec.delivery_freight_tab.count LOOP --Looping through Delivery's Freight costs
364:
365: INSERT INTO WSH_FREIGHT_COSTS_INTERFACE(

Line 426: WSH_DEBUG_SV.log(l_module_name, 'Number of delivery details details',p_delivery_rec.delivery_details_tab.count);

422: END LOOP;--End of looping through Delivery's Freight Costs..
423: --}
424: END IF;--Delivery's Freight costs
425: IF l_debug_on THEN
426: WSH_DEBUG_SV.log(l_module_name, 'Number of delivery details details',p_delivery_rec.delivery_details_tab.count);
427: END IF;
428:
429: IF p_delivery_rec.delivery_details_tab.count > 0 THEN --Delivery details count
430: --{

Line 432: wsh_debug_sv.logmsg(l_module_name, 'Inserting into WDDI and WFCI(delivery details freight info))');

428:
429: IF p_delivery_rec.delivery_details_tab.count > 0 THEN --Delivery details count
430: --{
431: IF l_debug_on THEN
432: wsh_debug_sv.logmsg(l_module_name, 'Inserting into WDDI and WFCI(delivery details freight info))');
433: END IF;
434: FOR I in 1..p_delivery_rec.delivery_details_tab.count LOOP
435: --{
436: IF l_debug_on THEN

Line 437: wsh_debug_sv.logmsg(l_module_name, 'Inserting Rec'||i||' into WSH_DEL_DETAILS_INTERFACE (validating source_line_id)');

433: END IF;
434: FOR I in 1..p_delivery_rec.delivery_details_tab.count LOOP
435: --{
436: IF l_debug_on THEN
437: wsh_debug_sv.logmsg(l_module_name, 'Inserting Rec'||i||' into WSH_DEL_DETAILS_INTERFACE (validating source_line_id)');
438: END IF;
439: IF p_delivery_rec.delivery_details_tab(i).source_line_id IS NULL THEN
440:
441: x_return_status := WSH_UTIL_CORE.G_RET_STS_ERROR;

Line 446: wsh_debug_sv.logmsg(l_module_name, 'Line number is a mandatory parameter for delivery_detail_interface records');

442: fnd_message.set_name('WSH', 'WSH_SA_ATTR_MANDATORY');
443: fnd_message.set_token('ATTRIBUTE','LINE_NUMBER');
444: wsh_util_core.add_message(x_return_status);
445: IF l_debug_on THEN
446: wsh_debug_sv.logmsg(l_module_name, 'Line number is a mandatory parameter for delivery_detail_interface records');
447: END IF;
448: RAISE FND_API.G_EXC_ERROR;
449: END IF;
450: INSERT INTO WSH_DEL_DETAILS_INTERFACE(

Line 570: WSH_DEBUG_SV.log(l_module_name, 'Number of delivery details Freight Records',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab.count);

566: l_WDAI_DEL_DETAIL_ID(l_del_assgn_cnt) := p_delivery_rec.delivery_details_tab(i).delivery_detail_number;
567: l_WDAI_PARENT_DEL_DETAIL_ID(l_del_assgn_cnt) := p_delivery_rec.delivery_details_tab(i).PARENT_DELIVERY_DETAIL_NUMBER;
568:
569: IF l_debug_on THEN
570: WSH_DEBUG_SV.log(l_module_name, 'Number of delivery details Freight Records',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab.count);
571: END IF;
572:
573: IF p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab.count > 0 THEN --Delivery details Freight costs count
574: --{

Line 576: wsh_debug_sv.logmsg(l_module_name, 'Inserting into WFCI for delivery detail rec ' || i);

572:
573: IF p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab.count > 0 THEN --Delivery details Freight costs count
574: --{
575: IF l_debug_on THEN
576: wsh_debug_sv.logmsg(l_module_name, 'Inserting into WFCI for delivery detail rec ' || i);
577: END IF;
578: FOR k in 1..p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab.count LOOP
579: --{
580: INSERT INTO WSH_FREIGHT_COSTS_INTERFACE(

Line 648: wsh_debug_sv.log(l_module_name, 'Number of Master Container Records',p_delivery_rec.container_tab.count);

644: --}
645: END IF;--Delivery details count
646:
647: IF l_debug_on THEN
648: wsh_debug_sv.log(l_module_name, 'Number of Master Container Records',p_delivery_rec.container_tab.count);
649: END IF;
650: IF p_delivery_rec.container_tab.count > 0 THEN --Master Containers
651: --{
652: IF l_debug_on THEN

Line 653: wsh_debug_sv.logmsg(l_module_name, 'Inserting Master Container records into WDDI');

649: END IF;
650: IF p_delivery_rec.container_tab.count > 0 THEN --Master Containers
651: --{
652: IF l_debug_on THEN
653: wsh_debug_sv.logmsg(l_module_name, 'Inserting Master Container records into WDDI');
654: END IF;
655: FOR i in 1..p_delivery_rec.container_tab.count LOOP --Master Containers
656: --{
657: INSERT INTO WSH_DEL_DETAILS_INTERFACE(

Line 754: wsh_debug_sv.log(l_module_name, 'Number of Master Container Freight records',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab.count);

750: l_WDAI_DEL_DETAIL_ID(l_del_assgn_cnt) := p_delivery_rec.container_tab(i).delivery_detail_number ;
751: l_WDAI_PARENT_DEL_DETAIL_ID(l_del_assgn_cnt) := NULL ;
752:
753: IF l_debug_on THEN
754: wsh_debug_sv.log(l_module_name, 'Number of Master Container Freight records',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab.count);
755: END IF;
756: IF p_delivery_rec.container_tab(i).Master_Container_Freight_Tab.count > 0 THEN --Master Containers Freight
757: --{
758: IF l_debug_on THEN

Line 759: wsh_debug_sv.logmsg(l_module_name, 'Inserting Master Container Freight records into WFCI');

755: END IF;
756: IF p_delivery_rec.container_tab(i).Master_Container_Freight_Tab.count > 0 THEN --Master Containers Freight
757: --{
758: IF l_debug_on THEN
759: wsh_debug_sv.logmsg(l_module_name, 'Inserting Master Container Freight records into WFCI');
760: END IF;
761: FOR k in 1..p_delivery_rec.container_tab(i).Master_Container_Freight_Tab.count LOOP --Master Containers Freight
762: --{
763: INSERT INTO WSH_FREIGHT_COSTS_INTERFACE(

Line 826: wsh_debug_sv.log(l_module_name, 'Number of Inner Containers with in the Master Container',p_delivery_rec.container_tab(i).Container_Tab.count);

822: --}
823: END IF; --Master Containers Freight
824:
825: IF l_debug_on THEN
826: wsh_debug_sv.log(l_module_name, 'Number of Inner Containers with in the Master Container',p_delivery_rec.container_tab(i).Container_Tab.count);
827: END IF;
828: IF p_delivery_rec.container_tab(i).Container_Tab.count > 0 THEN --Inner Containers
829: --{
830:

Line 832: wsh_debug_sv.logmsg(l_module_name, 'Number of Inner containers : '||p_delivery_rec.container_tab(i).Container_Tab.count);

828: IF p_delivery_rec.container_tab(i).Container_Tab.count > 0 THEN --Inner Containers
829: --{
830:
831: IF l_debug_on THEN
832: wsh_debug_sv.logmsg(l_module_name, 'Number of Inner containers : '||p_delivery_rec.container_tab(i).Container_Tab.count);
833: END IF;
834: FOR k in 1..p_delivery_rec.container_tab(i).Container_Tab.count LOOP --Inner Containers
835: --{
836: IF l_debug_on THEN

Line 837: wsh_debug_sv.logmsg(l_module_name, 'Inserting Inner Container records into WDDI');

833: END IF;
834: FOR k in 1..p_delivery_rec.container_tab(i).Container_Tab.count LOOP --Inner Containers
835: --{
836: IF l_debug_on THEN
837: wsh_debug_sv.logmsg(l_module_name, 'Inserting Inner Container records into WDDI');
838: END IF;
839: INSERT INTO WSH_DEL_DETAILS_INTERFACE(
840: DELIVERY_DETAIL_INTERFACE_ID,
841: CONTAINER_NAME,

Line 938: wsh_debug_sv.log(l_module_name, 'Number of Inner Container Freight records', p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab.count);

934: l_WDAI_DEL_DETAIL_ID(l_del_assgn_cnt) := p_delivery_rec.container_tab(i).container_tab(k).delivery_detail_number ;
935: l_WDAI_PARENT_DEL_DETAIL_ID(l_del_assgn_cnt) := p_delivery_rec.container_tab(i).delivery_detail_number ;
936:
937: IF l_debug_on THEN
938: wsh_debug_sv.log(l_module_name, 'Number of Inner Container Freight records', p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab.count);
939: END IF;
940: IF p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab.count > 0 THEN --Inner Containers Freight Costs
941: --{
942: IF l_debug_on THEN

Line 943: wsh_debug_sv.logmsg(l_module_name, 'Inserting Inner Container Freight records into WFCI');

939: END IF;
940: IF p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab.count > 0 THEN --Inner Containers Freight Costs
941: --{
942: IF l_debug_on THEN
943: wsh_debug_sv.logmsg(l_module_name, 'Inserting Inner Container Freight records into WFCI');
944: END IF;
945: FOR l in 1..p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab.count LOOP --Inner Containers Freight Costs
946: --{
947: INSERT INTO WSH_FREIGHT_COSTS_INTERFACE(

Line 1020: wsh_debug_sv.logmsg(l_module_name, 'Storing Trips and Trip Stops infp ');

1016: --}
1017: END IF;--Master Containers
1018:
1019: IF l_debug_on THEN
1020: wsh_debug_sv.logmsg(l_module_name, 'Storing Trips and Trip Stops infp ');
1021: END IF;
1022:
1023: IF l_del_assgn_cnt > 0 THEN
1024:

Line 1027: wsh_debug_sv.log(l_module_name, 'Inserting Records into WSH_DEL_ASSGN_INTERFACE.Number of Records',l_del_assgn_cnt);

1023: IF l_del_assgn_cnt > 0 THEN
1024:
1025:
1026: IF l_debug_on THEN
1027: wsh_debug_sv.log(l_module_name, 'Inserting Records into WSH_DEL_ASSGN_INTERFACE.Number of Records',l_del_assgn_cnt);
1028: END IF;
1029: IF l_del_assgn_cnt <4 THEN
1030:
1031: FOR I in 1..l_del_assgn_cnt LOOP

Line 1089: WSH_DEBUG_SV.logmsg(l_module_name,'Calling program unit WSH_INTERFACE_COMMON_ACTIONS.Int_Trip_Stop_Info', WSH_DEBUG_SV.C_PROC_LEVEL);

1085:
1086: END IF;
1087:
1088: IF l_debug_on THEN
1089: WSH_DEBUG_SV.logmsg(l_module_name,'Calling program unit WSH_INTERFACE_COMMON_ACTIONS.Int_Trip_Stop_Info', WSH_DEBUG_SV.C_PROC_LEVEL);
1090: END IF;
1091:
1092: WSH_INTERFACE_COMMON_ACTIONS.Int_Trip_Stop_Info(
1093: p_delivery_interface_id =>l_delivery_interface_id,

Line 1148: WSH_DEBUG_SV.log(l_module_name, 'Return Status', x_return_status);

1144: sysdate);
1145:
1146: --
1147: IF l_debug_on THEN
1148: WSH_DEBUG_SV.log(l_module_name, 'Return Status', x_return_status);
1149: WSH_DEBUG_SV.pop(l_module_name);
1150: END IF;
1151: --
1152:

Line 1149: WSH_DEBUG_SV.pop(l_module_name);

1145:
1146: --
1147: IF l_debug_on THEN
1148: WSH_DEBUG_SV.log(l_module_name, 'Return Status', x_return_status);
1149: WSH_DEBUG_SV.pop(l_module_name);
1150: END IF;
1151: --
1152:
1153:

Line 1159: WSH_DEBUG_SV.log(l_module_name, 'Error Creating Shipment advance with Document_Number',p_delivery_rec.Document_Number);

1155:
1156: WHEN FND_API.G_EXC_ERROR THEN
1157: x_return_status := WSH_UTIL_CORE.G_RET_STS_ERROR;
1158: IF l_debug_on THEN
1159: WSH_DEBUG_SV.log(l_module_name, 'Error Creating Shipment advance with Document_Number',p_delivery_rec.Document_Number);
1160: WSH_DEBUG_SV.pop(l_module_name,'EXCEPTION:FND_API.G_EXC_ERROR');
1161: END IF;
1162: WHEN OTHERS THEN
1163: x_return_status := WSH_UTIL_CORE.G_RET_STS_UNEXP_ERROR;

Line 1160: WSH_DEBUG_SV.pop(l_module_name,'EXCEPTION:FND_API.G_EXC_ERROR');

1156: WHEN FND_API.G_EXC_ERROR THEN
1157: x_return_status := WSH_UTIL_CORE.G_RET_STS_ERROR;
1158: IF l_debug_on THEN
1159: WSH_DEBUG_SV.log(l_module_name, 'Error Creating Shipment advance with Document_Number',p_delivery_rec.Document_Number);
1160: WSH_DEBUG_SV.pop(l_module_name,'EXCEPTION:FND_API.G_EXC_ERROR');
1161: END IF;
1162: WHEN OTHERS THEN
1163: x_return_status := WSH_UTIL_CORE.G_RET_STS_UNEXP_ERROR;
1164: IF l_debug_on THEN

Line 1165: WSH_DEBUG_SV.logmsg(l_module_name,'Unexpected error has occured. Oracle error message is '|| SQLERRM,WSH_DEBUG_SV.C_UNEXPEC_ERR_LEVEL);

1161: END IF;
1162: WHEN OTHERS THEN
1163: x_return_status := WSH_UTIL_CORE.G_RET_STS_UNEXP_ERROR;
1164: IF l_debug_on THEN
1165: WSH_DEBUG_SV.logmsg(l_module_name,'Unexpected error has occured. Oracle error message is '|| SQLERRM,WSH_DEBUG_SV.C_UNEXPEC_ERR_LEVEL);
1166: WSH_DEBUG_SV.pop(l_module_name,'EXCEPTION:OTHERS');
1167: END IF;
1168: END Create_Shipment_Advice;
1169:

Line 1166: WSH_DEBUG_SV.pop(l_module_name,'EXCEPTION:OTHERS');

1162: WHEN OTHERS THEN
1163: x_return_status := WSH_UTIL_CORE.G_RET_STS_UNEXP_ERROR;
1164: IF l_debug_on THEN
1165: WSH_DEBUG_SV.logmsg(l_module_name,'Unexpected error has occured. Oracle error message is '|| SQLERRM,WSH_DEBUG_SV.C_UNEXPEC_ERR_LEVEL);
1166: WSH_DEBUG_SV.pop(l_module_name,'EXCEPTION:OTHERS');
1167: END IF;
1168: END Create_Shipment_Advice;
1169:
1170: --========================================================================

Line 1213: l_debug_on CONSTANT BOOLEAN := WSH_DEBUG_SV.is_debug_enabled;

1209:
1210: l_api_version_number CONSTANT NUMBER := 1.0;
1211: l_api_name CONSTANT VARCHAR2(30):= 'Process_Shipment_Advice';
1212: --
1213: l_debug_on CONSTANT BOOLEAN := WSH_DEBUG_SV.is_debug_enabled;
1214: l_module_name CONSTANT VARCHAR2(100) := 'wsh.plsql.' || G_PKG_NAME || '.' || 'Process_Shipmemt_Advice';
1215: --
1216:
1217: BEGIN

Line 1220: wsh_debug_sv.push(l_module_name);

1216:
1217: BEGIN
1218: x_return_status := WSH_UTIL_CORE.G_RET_STS_SUCCESS;
1219: IF l_debug_on then
1220: wsh_debug_sv.push(l_module_name);
1221: --
1222: WSH_DEBUG_SV.log(l_module_name,'p_process_mode',p_process_mode);
1223: WSH_DEBUG_SV.log(l_module_name,'p_log_level',p_log_level);
1224: WSH_DEBUG_SV.log(l_module_name,'p_commit',p_commit);

Line 1222: WSH_DEBUG_SV.log(l_module_name,'p_process_mode',p_process_mode);

1218: x_return_status := WSH_UTIL_CORE.G_RET_STS_SUCCESS;
1219: IF l_debug_on then
1220: wsh_debug_sv.push(l_module_name);
1221: --
1222: WSH_DEBUG_SV.log(l_module_name,'p_process_mode',p_process_mode);
1223: WSH_DEBUG_SV.log(l_module_name,'p_log_level',p_log_level);
1224: WSH_DEBUG_SV.log(l_module_name,'p_commit',p_commit);
1225: WSH_DEBUG_SV.log(l_module_name,'p_init_msg_list',p_init_msg_list);
1226: --

Line 1223: WSH_DEBUG_SV.log(l_module_name,'p_log_level',p_log_level);

1219: IF l_debug_on then
1220: wsh_debug_sv.push(l_module_name);
1221: --
1222: WSH_DEBUG_SV.log(l_module_name,'p_process_mode',p_process_mode);
1223: WSH_DEBUG_SV.log(l_module_name,'p_log_level',p_log_level);
1224: WSH_DEBUG_SV.log(l_module_name,'p_commit',p_commit);
1225: WSH_DEBUG_SV.log(l_module_name,'p_init_msg_list',p_init_msg_list);
1226: --
1227:

Line 1224: WSH_DEBUG_SV.log(l_module_name,'p_commit',p_commit);

1220: wsh_debug_sv.push(l_module_name);
1221: --
1222: WSH_DEBUG_SV.log(l_module_name,'p_process_mode',p_process_mode);
1223: WSH_DEBUG_SV.log(l_module_name,'p_log_level',p_log_level);
1224: WSH_DEBUG_SV.log(l_module_name,'p_commit',p_commit);
1225: WSH_DEBUG_SV.log(l_module_name,'p_init_msg_list',p_init_msg_list);
1226: --
1227:
1228: WSH_DEBUG_SV.log(l_module_name,'p_transaction_status',p_transaction_status);

Line 1225: WSH_DEBUG_SV.log(l_module_name,'p_init_msg_list',p_init_msg_list);

1221: --
1222: WSH_DEBUG_SV.log(l_module_name,'p_process_mode',p_process_mode);
1223: WSH_DEBUG_SV.log(l_module_name,'p_log_level',p_log_level);
1224: WSH_DEBUG_SV.log(l_module_name,'p_commit',p_commit);
1225: WSH_DEBUG_SV.log(l_module_name,'p_init_msg_list',p_init_msg_list);
1226: --
1227:
1228: WSH_DEBUG_SV.log(l_module_name,'p_transaction_status',p_transaction_status);
1229: WSH_DEBUG_SV.log(l_module_name,'p_from_document_number',p_from_document_number);

Line 1228: WSH_DEBUG_SV.log(l_module_name,'p_transaction_status',p_transaction_status);

1224: WSH_DEBUG_SV.log(l_module_name,'p_commit',p_commit);
1225: WSH_DEBUG_SV.log(l_module_name,'p_init_msg_list',p_init_msg_list);
1226: --
1227:
1228: WSH_DEBUG_SV.log(l_module_name,'p_transaction_status',p_transaction_status);
1229: WSH_DEBUG_SV.log(l_module_name,'p_from_document_number',p_from_document_number);
1230: WSH_DEBUG_SV.log(l_module_name,'p_to_document_number',p_to_document_number);
1231: WSH_DEBUG_SV.log(l_module_name,'p_from_creation_date',p_from_creation_date);
1232: WSH_DEBUG_SV.log(l_module_name,'p_to_creation_date',p_to_creation_date);

Line 1229: WSH_DEBUG_SV.log(l_module_name,'p_from_document_number',p_from_document_number);

1225: WSH_DEBUG_SV.log(l_module_name,'p_init_msg_list',p_init_msg_list);
1226: --
1227:
1228: WSH_DEBUG_SV.log(l_module_name,'p_transaction_status',p_transaction_status);
1229: WSH_DEBUG_SV.log(l_module_name,'p_from_document_number',p_from_document_number);
1230: WSH_DEBUG_SV.log(l_module_name,'p_to_document_number',p_to_document_number);
1231: WSH_DEBUG_SV.log(l_module_name,'p_from_creation_date',p_from_creation_date);
1232: WSH_DEBUG_SV.log(l_module_name,'p_to_creation_date',p_to_creation_date);
1233: WSH_DEBUG_SV.log(l_module_name,'p_transaction_id',p_transaction_id);

Line 1230: WSH_DEBUG_SV.log(l_module_name,'p_to_document_number',p_to_document_number);

1226: --
1227:
1228: WSH_DEBUG_SV.log(l_module_name,'p_transaction_status',p_transaction_status);
1229: WSH_DEBUG_SV.log(l_module_name,'p_from_document_number',p_from_document_number);
1230: WSH_DEBUG_SV.log(l_module_name,'p_to_document_number',p_to_document_number);
1231: WSH_DEBUG_SV.log(l_module_name,'p_from_creation_date',p_from_creation_date);
1232: WSH_DEBUG_SV.log(l_module_name,'p_to_creation_date',p_to_creation_date);
1233: WSH_DEBUG_SV.log(l_module_name,'p_transaction_id',p_transaction_id);
1234:

Line 1231: WSH_DEBUG_SV.log(l_module_name,'p_from_creation_date',p_from_creation_date);

1227:
1228: WSH_DEBUG_SV.log(l_module_name,'p_transaction_status',p_transaction_status);
1229: WSH_DEBUG_SV.log(l_module_name,'p_from_document_number',p_from_document_number);
1230: WSH_DEBUG_SV.log(l_module_name,'p_to_document_number',p_to_document_number);
1231: WSH_DEBUG_SV.log(l_module_name,'p_from_creation_date',p_from_creation_date);
1232: WSH_DEBUG_SV.log(l_module_name,'p_to_creation_date',p_to_creation_date);
1233: WSH_DEBUG_SV.log(l_module_name,'p_transaction_id',p_transaction_id);
1234:
1235: END IF;

Line 1232: WSH_DEBUG_SV.log(l_module_name,'p_to_creation_date',p_to_creation_date);

1228: WSH_DEBUG_SV.log(l_module_name,'p_transaction_status',p_transaction_status);
1229: WSH_DEBUG_SV.log(l_module_name,'p_from_document_number',p_from_document_number);
1230: WSH_DEBUG_SV.log(l_module_name,'p_to_document_number',p_to_document_number);
1231: WSH_DEBUG_SV.log(l_module_name,'p_from_creation_date',p_from_creation_date);
1232: WSH_DEBUG_SV.log(l_module_name,'p_to_creation_date',p_to_creation_date);
1233: WSH_DEBUG_SV.log(l_module_name,'p_transaction_id',p_transaction_id);
1234:
1235: END IF;
1236: IF FND_API.to_Boolean(p_init_msg_list) THEN

Line 1233: WSH_DEBUG_SV.log(l_module_name,'p_transaction_id',p_transaction_id);

1229: WSH_DEBUG_SV.log(l_module_name,'p_from_document_number',p_from_document_number);
1230: WSH_DEBUG_SV.log(l_module_name,'p_to_document_number',p_to_document_number);
1231: WSH_DEBUG_SV.log(l_module_name,'p_from_creation_date',p_from_creation_date);
1232: WSH_DEBUG_SV.log(l_module_name,'p_to_creation_date',p_to_creation_date);
1233: WSH_DEBUG_SV.log(l_module_name,'p_transaction_id',p_transaction_id);
1234:
1235: END IF;
1236: IF FND_API.to_Boolean(p_init_msg_list) THEN
1237: FND_MSG_PUB.initialize;

Line 1252: WSH_DEBUG_SV.logmsg(l_module_name,'Calling program unit WSH_SHIPMENT_ADVICE_PKG.Process_Shipment_Advice', WSH_DEBUG_SV.C_PROC_LEVEL);

1248: END IF;
1249: IF p_process_mode = 'ONLINE' THEN
1250:
1251: IF l_debug_on THEN
1252: WSH_DEBUG_SV.logmsg(l_module_name,'Calling program unit WSH_SHIPMENT_ADVICE_PKG.Process_Shipment_Advice', WSH_DEBUG_SV.C_PROC_LEVEL);
1253: END IF;
1254: WSH_SHIPMENT_ADVICE_PKG.Process_Shipment_Advice(
1255: p_commit_flag => p_commit,
1256: p_transaction_status => p_transaction_status,

Line 1267: WSH_DEBUG_SV.logmsg(l_module_name, 'Process_Shipment_Advice completed with error');

1263:
1264: IF (l_return_status <> WSH_UTIL_CORE.G_RET_STS_SUCCESS) THEN
1265: --
1266: IF l_debug_on THEN
1267: WSH_DEBUG_SV.logmsg(l_module_name, 'Process_Shipment_Advice completed with error');
1268: END IF;
1269: --
1270: x_return_status := l_return_status;
1271: FND_MESSAGE.Set_Name('WSH', 'WSH_SA_PROCESS_ERROR');

Line 1279: WSH_DEBUG_SV.logmsg(l_module_name, 'Calling FND_REQUEST.SUBMIT_REQUEST', WSH_DEBUG_SV.C_PROC_LEVEL);

1275:
1276: ELSIF p_process_mode = 'CONCURRENT' THEN
1277: --
1278: IF l_debug_on THEN
1279: WSH_DEBUG_SV.logmsg(l_module_name, 'Calling FND_REQUEST.SUBMIT_REQUEST', WSH_DEBUG_SV.C_PROC_LEVEL);
1280: END IF;
1281: --
1282: x_request_id := FND_REQUEST.SUBMIT_REQUEST(
1283: application => 'WSH',

Line 1298: WSH_DEBUG_SV.log(l_module_name, 'Request Id returned from FND_REQUEST.SUBMIT_REQUEST', x_request_id);

1294: argument7 => p_log_level);
1295:
1296: --
1297: IF l_debug_on THEN
1298: WSH_DEBUG_SV.log(l_module_name, 'Request Id returned from FND_REQUEST.SUBMIT_REQUEST', x_request_id);
1299: END IF;
1300: --
1301: IF (nvl(x_request_id,0) <= 0) THEN
1302: raise FND_API.G_EXC_ERROR;

Line 1310: WSH_DEBUG_SV.logmsg(l_module_name, 'p_process_mode should be ONLINE/CONCURRENT');

1306: fnd_message.set_name('WSH', 'WSH_OI_INVALID_ATTRIBUTE');
1307: fnd_message.set_token('ATTRIBUTE', 'PROCESS_MODE');
1308: wsh_util_core.add_message(x_return_status);
1309: IF l_debug_on THEN
1310: WSH_DEBUG_SV.logmsg(l_module_name, 'p_process_mode should be ONLINE/CONCURRENT');
1311: END IF;
1312: raise FND_API.G_EXC_ERROR;
1313: END IF;
1314:

Line 1321: wsh_debug_sv.pop(l_module_name);

1317: END IF;
1318:
1319:
1320: IF l_debug_on THEN
1321: wsh_debug_sv.pop(l_module_name);
1322: END IF;
1323: EXCEPTION
1324: WHEN FND_API.G_EXC_ERROR THEN
1325: x_return_status := WSH_UTIL_CORE.G_RET_STS_ERROR;

Line 1330: WSH_DEBUG_SV.log(l_module_name, 'Error Processing Shipment Advice ');

1326: fnd_msg_pub.count_and_get(p_count => x_msg_count,
1327: p_data => x_msg_data,
1328: p_encoded => fnd_api.g_false);
1329: IF l_debug_on THEN
1330: WSH_DEBUG_SV.log(l_module_name, 'Error Processing Shipment Advice ');
1331: WSH_DEBUG_SV.pop(l_module_name,'EXCEPTION:FND_API.G_EXC_ERROR');
1332: END IF;
1333: WHEN OTHERS THEN
1334: x_return_status := WSH_UTIL_CORE.G_RET_STS_UNEXP_ERROR;

Line 1331: WSH_DEBUG_SV.pop(l_module_name,'EXCEPTION:FND_API.G_EXC_ERROR');

1327: p_data => x_msg_data,
1328: p_encoded => fnd_api.g_false);
1329: IF l_debug_on THEN
1330: WSH_DEBUG_SV.log(l_module_name, 'Error Processing Shipment Advice ');
1331: WSH_DEBUG_SV.pop(l_module_name,'EXCEPTION:FND_API.G_EXC_ERROR');
1332: END IF;
1333: WHEN OTHERS THEN
1334: x_return_status := WSH_UTIL_CORE.G_RET_STS_UNEXP_ERROR;
1335: fnd_msg_pub.count_and_get(p_count => x_msg_count,

Line 1339: WSH_DEBUG_SV.logmsg(l_module_name,'Unexpected error has occured. Oracle error message is '|| SQLERRM,WSH_DEBUG_SV.C_UNEXPEC_ERR_LEVEL);

1335: fnd_msg_pub.count_and_get(p_count => x_msg_count,
1336: p_data => x_msg_data,
1337: p_encoded => fnd_api.g_false);
1338: IF l_debug_on THEN
1339: WSH_DEBUG_SV.logmsg(l_module_name,'Unexpected error has occured. Oracle error message is '|| SQLERRM,WSH_DEBUG_SV.C_UNEXPEC_ERR_LEVEL);
1340: WSH_DEBUG_SV.pop(l_module_name,'EXCEPTION:OTHERS');
1341: END IF;
1342:
1343: END Process_Shipment_Advice;

Line 1340: WSH_DEBUG_SV.pop(l_module_name,'EXCEPTION:OTHERS');

1336: p_data => x_msg_data,
1337: p_encoded => fnd_api.g_false);
1338: IF l_debug_on THEN
1339: WSH_DEBUG_SV.logmsg(l_module_name,'Unexpected error has occured. Oracle error message is '|| SQLERRM,WSH_DEBUG_SV.C_UNEXPEC_ERR_LEVEL);
1340: WSH_DEBUG_SV.pop(l_module_name,'EXCEPTION:OTHERS');
1341: END IF;
1342:
1343: END Process_Shipment_Advice;
1344:

Line 1362: WSH_DEBUG_SV.push(l_module_name);

1358:
1359: l_module_name CONSTANT VARCHAR2(100) := 'wsh.plsql.' || G_PKG_NAME || '.' || 'Debug_Shipment_Advice';
1360: BEGIN
1361:
1362: WSH_DEBUG_SV.push(l_module_name);
1363: WSH_DEBUG_SV.logmsg(l_module_name,'Delivery Rec Information for document '||p_delivery_rec.document_number);
1364: WSH_DEBUG_SV.logmsg(l_module_name,'-------------------------------------------------------------------');
1365: WSH_DEBUG_SV.logmsg(l_module_name,'-------------------------------------------------------------------');
1366: WSH_DEBUG_SV.log(l_module_name,'document_number',p_delivery_rec.document_number);

Line 1363: WSH_DEBUG_SV.logmsg(l_module_name,'Delivery Rec Information for document '||p_delivery_rec.document_number);

1359: l_module_name CONSTANT VARCHAR2(100) := 'wsh.plsql.' || G_PKG_NAME || '.' || 'Debug_Shipment_Advice';
1360: BEGIN
1361:
1362: WSH_DEBUG_SV.push(l_module_name);
1363: WSH_DEBUG_SV.logmsg(l_module_name,'Delivery Rec Information for document '||p_delivery_rec.document_number);
1364: WSH_DEBUG_SV.logmsg(l_module_name,'-------------------------------------------------------------------');
1365: WSH_DEBUG_SV.logmsg(l_module_name,'-------------------------------------------------------------------');
1366: WSH_DEBUG_SV.log(l_module_name,'document_number',p_delivery_rec.document_number);
1367: WSH_DEBUG_SV.log(l_module_name,'name',p_delivery_rec.name);

Line 1364: WSH_DEBUG_SV.logmsg(l_module_name,'-------------------------------------------------------------------');

1360: BEGIN
1361:
1362: WSH_DEBUG_SV.push(l_module_name);
1363: WSH_DEBUG_SV.logmsg(l_module_name,'Delivery Rec Information for document '||p_delivery_rec.document_number);
1364: WSH_DEBUG_SV.logmsg(l_module_name,'-------------------------------------------------------------------');
1365: WSH_DEBUG_SV.logmsg(l_module_name,'-------------------------------------------------------------------');
1366: WSH_DEBUG_SV.log(l_module_name,'document_number',p_delivery_rec.document_number);
1367: WSH_DEBUG_SV.log(l_module_name,'name',p_delivery_rec.name);
1368: WSH_DEBUG_SV.log(l_module_name,'organization_code',p_delivery_rec.organization_code);

Line 1365: WSH_DEBUG_SV.logmsg(l_module_name,'-------------------------------------------------------------------');

1361:
1362: WSH_DEBUG_SV.push(l_module_name);
1363: WSH_DEBUG_SV.logmsg(l_module_name,'Delivery Rec Information for document '||p_delivery_rec.document_number);
1364: WSH_DEBUG_SV.logmsg(l_module_name,'-------------------------------------------------------------------');
1365: WSH_DEBUG_SV.logmsg(l_module_name,'-------------------------------------------------------------------');
1366: WSH_DEBUG_SV.log(l_module_name,'document_number',p_delivery_rec.document_number);
1367: WSH_DEBUG_SV.log(l_module_name,'name',p_delivery_rec.name);
1368: WSH_DEBUG_SV.log(l_module_name,'organization_code',p_delivery_rec.organization_code);
1369: WSH_DEBUG_SV.log(l_module_name,'customer_name',p_delivery_rec.customer_name);

Line 1366: WSH_DEBUG_SV.log(l_module_name,'document_number',p_delivery_rec.document_number);

1362: WSH_DEBUG_SV.push(l_module_name);
1363: WSH_DEBUG_SV.logmsg(l_module_name,'Delivery Rec Information for document '||p_delivery_rec.document_number);
1364: WSH_DEBUG_SV.logmsg(l_module_name,'-------------------------------------------------------------------');
1365: WSH_DEBUG_SV.logmsg(l_module_name,'-------------------------------------------------------------------');
1366: WSH_DEBUG_SV.log(l_module_name,'document_number',p_delivery_rec.document_number);
1367: WSH_DEBUG_SV.log(l_module_name,'name',p_delivery_rec.name);
1368: WSH_DEBUG_SV.log(l_module_name,'organization_code',p_delivery_rec.organization_code);
1369: WSH_DEBUG_SV.log(l_module_name,'customer_name',p_delivery_rec.customer_name);
1370: WSH_DEBUG_SV.log(l_module_name,'delivered_date',p_delivery_rec.delivered_date);

Line 1367: WSH_DEBUG_SV.log(l_module_name,'name',p_delivery_rec.name);

1363: WSH_DEBUG_SV.logmsg(l_module_name,'Delivery Rec Information for document '||p_delivery_rec.document_number);
1364: WSH_DEBUG_SV.logmsg(l_module_name,'-------------------------------------------------------------------');
1365: WSH_DEBUG_SV.logmsg(l_module_name,'-------------------------------------------------------------------');
1366: WSH_DEBUG_SV.log(l_module_name,'document_number',p_delivery_rec.document_number);
1367: WSH_DEBUG_SV.log(l_module_name,'name',p_delivery_rec.name);
1368: WSH_DEBUG_SV.log(l_module_name,'organization_code',p_delivery_rec.organization_code);
1369: WSH_DEBUG_SV.log(l_module_name,'customer_name',p_delivery_rec.customer_name);
1370: WSH_DEBUG_SV.log(l_module_name,'delivered_date',p_delivery_rec.delivered_date);
1371: WSH_DEBUG_SV.log(l_module_name,'description',p_delivery_rec.description);

Line 1368: WSH_DEBUG_SV.log(l_module_name,'organization_code',p_delivery_rec.organization_code);

1364: WSH_DEBUG_SV.logmsg(l_module_name,'-------------------------------------------------------------------');
1365: WSH_DEBUG_SV.logmsg(l_module_name,'-------------------------------------------------------------------');
1366: WSH_DEBUG_SV.log(l_module_name,'document_number',p_delivery_rec.document_number);
1367: WSH_DEBUG_SV.log(l_module_name,'name',p_delivery_rec.name);
1368: WSH_DEBUG_SV.log(l_module_name,'organization_code',p_delivery_rec.organization_code);
1369: WSH_DEBUG_SV.log(l_module_name,'customer_name',p_delivery_rec.customer_name);
1370: WSH_DEBUG_SV.log(l_module_name,'delivered_date',p_delivery_rec.delivered_date);
1371: WSH_DEBUG_SV.log(l_module_name,'description',p_delivery_rec.description);
1372: WSH_DEBUG_SV.log(l_module_name,'shipment_direction',p_delivery_rec.shipment_direction);

Line 1369: WSH_DEBUG_SV.log(l_module_name,'customer_name',p_delivery_rec.customer_name);

1365: WSH_DEBUG_SV.logmsg(l_module_name,'-------------------------------------------------------------------');
1366: WSH_DEBUG_SV.log(l_module_name,'document_number',p_delivery_rec.document_number);
1367: WSH_DEBUG_SV.log(l_module_name,'name',p_delivery_rec.name);
1368: WSH_DEBUG_SV.log(l_module_name,'organization_code',p_delivery_rec.organization_code);
1369: WSH_DEBUG_SV.log(l_module_name,'customer_name',p_delivery_rec.customer_name);
1370: WSH_DEBUG_SV.log(l_module_name,'delivered_date',p_delivery_rec.delivered_date);
1371: WSH_DEBUG_SV.log(l_module_name,'description',p_delivery_rec.description);
1372: WSH_DEBUG_SV.log(l_module_name,'shipment_direction',p_delivery_rec.shipment_direction);
1373: WSH_DEBUG_SV.log(l_module_name,'carrier_code',p_delivery_rec.carrier_code);

Line 1370: WSH_DEBUG_SV.log(l_module_name,'delivered_date',p_delivery_rec.delivered_date);

1366: WSH_DEBUG_SV.log(l_module_name,'document_number',p_delivery_rec.document_number);
1367: WSH_DEBUG_SV.log(l_module_name,'name',p_delivery_rec.name);
1368: WSH_DEBUG_SV.log(l_module_name,'organization_code',p_delivery_rec.organization_code);
1369: WSH_DEBUG_SV.log(l_module_name,'customer_name',p_delivery_rec.customer_name);
1370: WSH_DEBUG_SV.log(l_module_name,'delivered_date',p_delivery_rec.delivered_date);
1371: WSH_DEBUG_SV.log(l_module_name,'description',p_delivery_rec.description);
1372: WSH_DEBUG_SV.log(l_module_name,'shipment_direction',p_delivery_rec.shipment_direction);
1373: WSH_DEBUG_SV.log(l_module_name,'carrier_code',p_delivery_rec.carrier_code);
1374: WSH_DEBUG_SV.log(l_module_name,'fob_code',p_delivery_rec.fob_code);

Line 1371: WSH_DEBUG_SV.log(l_module_name,'description',p_delivery_rec.description);

1367: WSH_DEBUG_SV.log(l_module_name,'name',p_delivery_rec.name);
1368: WSH_DEBUG_SV.log(l_module_name,'organization_code',p_delivery_rec.organization_code);
1369: WSH_DEBUG_SV.log(l_module_name,'customer_name',p_delivery_rec.customer_name);
1370: WSH_DEBUG_SV.log(l_module_name,'delivered_date',p_delivery_rec.delivered_date);
1371: WSH_DEBUG_SV.log(l_module_name,'description',p_delivery_rec.description);
1372: WSH_DEBUG_SV.log(l_module_name,'shipment_direction',p_delivery_rec.shipment_direction);
1373: WSH_DEBUG_SV.log(l_module_name,'carrier_code',p_delivery_rec.carrier_code);
1374: WSH_DEBUG_SV.log(l_module_name,'fob_code',p_delivery_rec.fob_code);
1375: WSH_DEBUG_SV.log(l_module_name,'freight_terms_code',p_delivery_rec.freight_terms_code);

Line 1372: WSH_DEBUG_SV.log(l_module_name,'shipment_direction',p_delivery_rec.shipment_direction);

1368: WSH_DEBUG_SV.log(l_module_name,'organization_code',p_delivery_rec.organization_code);
1369: WSH_DEBUG_SV.log(l_module_name,'customer_name',p_delivery_rec.customer_name);
1370: WSH_DEBUG_SV.log(l_module_name,'delivered_date',p_delivery_rec.delivered_date);
1371: WSH_DEBUG_SV.log(l_module_name,'description',p_delivery_rec.description);
1372: WSH_DEBUG_SV.log(l_module_name,'shipment_direction',p_delivery_rec.shipment_direction);
1373: WSH_DEBUG_SV.log(l_module_name,'carrier_code',p_delivery_rec.carrier_code);
1374: WSH_DEBUG_SV.log(l_module_name,'fob_code',p_delivery_rec.fob_code);
1375: WSH_DEBUG_SV.log(l_module_name,'freight_terms_code',p_delivery_rec.freight_terms_code);
1376: WSH_DEBUG_SV.log(l_module_name,'gross_weight',p_delivery_rec.gross_weight);

Line 1373: WSH_DEBUG_SV.log(l_module_name,'carrier_code',p_delivery_rec.carrier_code);

1369: WSH_DEBUG_SV.log(l_module_name,'customer_name',p_delivery_rec.customer_name);
1370: WSH_DEBUG_SV.log(l_module_name,'delivered_date',p_delivery_rec.delivered_date);
1371: WSH_DEBUG_SV.log(l_module_name,'description',p_delivery_rec.description);
1372: WSH_DEBUG_SV.log(l_module_name,'shipment_direction',p_delivery_rec.shipment_direction);
1373: WSH_DEBUG_SV.log(l_module_name,'carrier_code',p_delivery_rec.carrier_code);
1374: WSH_DEBUG_SV.log(l_module_name,'fob_code',p_delivery_rec.fob_code);
1375: WSH_DEBUG_SV.log(l_module_name,'freight_terms_code',p_delivery_rec.freight_terms_code);
1376: WSH_DEBUG_SV.log(l_module_name,'gross_weight',p_delivery_rec.gross_weight);
1377: WSH_DEBUG_SV.log(l_module_name,'net_weight',p_delivery_rec.net_weight);

Line 1374: WSH_DEBUG_SV.log(l_module_name,'fob_code',p_delivery_rec.fob_code);

1370: WSH_DEBUG_SV.log(l_module_name,'delivered_date',p_delivery_rec.delivered_date);
1371: WSH_DEBUG_SV.log(l_module_name,'description',p_delivery_rec.description);
1372: WSH_DEBUG_SV.log(l_module_name,'shipment_direction',p_delivery_rec.shipment_direction);
1373: WSH_DEBUG_SV.log(l_module_name,'carrier_code',p_delivery_rec.carrier_code);
1374: WSH_DEBUG_SV.log(l_module_name,'fob_code',p_delivery_rec.fob_code);
1375: WSH_DEBUG_SV.log(l_module_name,'freight_terms_code',p_delivery_rec.freight_terms_code);
1376: WSH_DEBUG_SV.log(l_module_name,'gross_weight',p_delivery_rec.gross_weight);
1377: WSH_DEBUG_SV.log(l_module_name,'net_weight',p_delivery_rec.net_weight);
1378: WSH_DEBUG_SV.log(l_module_name,'weight_uom_code',p_delivery_rec.weight_uom_code);

Line 1375: WSH_DEBUG_SV.log(l_module_name,'freight_terms_code',p_delivery_rec.freight_terms_code);

1371: WSH_DEBUG_SV.log(l_module_name,'description',p_delivery_rec.description);
1372: WSH_DEBUG_SV.log(l_module_name,'shipment_direction',p_delivery_rec.shipment_direction);
1373: WSH_DEBUG_SV.log(l_module_name,'carrier_code',p_delivery_rec.carrier_code);
1374: WSH_DEBUG_SV.log(l_module_name,'fob_code',p_delivery_rec.fob_code);
1375: WSH_DEBUG_SV.log(l_module_name,'freight_terms_code',p_delivery_rec.freight_terms_code);
1376: WSH_DEBUG_SV.log(l_module_name,'gross_weight',p_delivery_rec.gross_weight);
1377: WSH_DEBUG_SV.log(l_module_name,'net_weight',p_delivery_rec.net_weight);
1378: WSH_DEBUG_SV.log(l_module_name,'weight_uom_code',p_delivery_rec.weight_uom_code);
1379: WSH_DEBUG_SV.log(l_module_name,'volume',p_delivery_rec.volume);

Line 1376: WSH_DEBUG_SV.log(l_module_name,'gross_weight',p_delivery_rec.gross_weight);

1372: WSH_DEBUG_SV.log(l_module_name,'shipment_direction',p_delivery_rec.shipment_direction);
1373: WSH_DEBUG_SV.log(l_module_name,'carrier_code',p_delivery_rec.carrier_code);
1374: WSH_DEBUG_SV.log(l_module_name,'fob_code',p_delivery_rec.fob_code);
1375: WSH_DEBUG_SV.log(l_module_name,'freight_terms_code',p_delivery_rec.freight_terms_code);
1376: WSH_DEBUG_SV.log(l_module_name,'gross_weight',p_delivery_rec.gross_weight);
1377: WSH_DEBUG_SV.log(l_module_name,'net_weight',p_delivery_rec.net_weight);
1378: WSH_DEBUG_SV.log(l_module_name,'weight_uom_code',p_delivery_rec.weight_uom_code);
1379: WSH_DEBUG_SV.log(l_module_name,'volume',p_delivery_rec.volume);
1380: WSH_DEBUG_SV.log(l_module_name,'volume_uom_code',p_delivery_rec.volume_uom_code);

Line 1377: WSH_DEBUG_SV.log(l_module_name,'net_weight',p_delivery_rec.net_weight);

1373: WSH_DEBUG_SV.log(l_module_name,'carrier_code',p_delivery_rec.carrier_code);
1374: WSH_DEBUG_SV.log(l_module_name,'fob_code',p_delivery_rec.fob_code);
1375: WSH_DEBUG_SV.log(l_module_name,'freight_terms_code',p_delivery_rec.freight_terms_code);
1376: WSH_DEBUG_SV.log(l_module_name,'gross_weight',p_delivery_rec.gross_weight);
1377: WSH_DEBUG_SV.log(l_module_name,'net_weight',p_delivery_rec.net_weight);
1378: WSH_DEBUG_SV.log(l_module_name,'weight_uom_code',p_delivery_rec.weight_uom_code);
1379: WSH_DEBUG_SV.log(l_module_name,'volume',p_delivery_rec.volume);
1380: WSH_DEBUG_SV.log(l_module_name,'volume_uom_code',p_delivery_rec.volume_uom_code);
1381: WSH_DEBUG_SV.log(l_module_name,'initial_pickup_date',p_delivery_rec.initial_pickup_date);

Line 1378: WSH_DEBUG_SV.log(l_module_name,'weight_uom_code',p_delivery_rec.weight_uom_code);

1374: WSH_DEBUG_SV.log(l_module_name,'fob_code',p_delivery_rec.fob_code);
1375: WSH_DEBUG_SV.log(l_module_name,'freight_terms_code',p_delivery_rec.freight_terms_code);
1376: WSH_DEBUG_SV.log(l_module_name,'gross_weight',p_delivery_rec.gross_weight);
1377: WSH_DEBUG_SV.log(l_module_name,'net_weight',p_delivery_rec.net_weight);
1378: WSH_DEBUG_SV.log(l_module_name,'weight_uom_code',p_delivery_rec.weight_uom_code);
1379: WSH_DEBUG_SV.log(l_module_name,'volume',p_delivery_rec.volume);
1380: WSH_DEBUG_SV.log(l_module_name,'volume_uom_code',p_delivery_rec.volume_uom_code);
1381: WSH_DEBUG_SV.log(l_module_name,'initial_pickup_date',p_delivery_rec.initial_pickup_date);
1382: WSH_DEBUG_SV.log(l_module_name,'loading_sequence',p_delivery_rec.loading_sequence);

Line 1379: WSH_DEBUG_SV.log(l_module_name,'volume',p_delivery_rec.volume);

1375: WSH_DEBUG_SV.log(l_module_name,'freight_terms_code',p_delivery_rec.freight_terms_code);
1376: WSH_DEBUG_SV.log(l_module_name,'gross_weight',p_delivery_rec.gross_weight);
1377: WSH_DEBUG_SV.log(l_module_name,'net_weight',p_delivery_rec.net_weight);
1378: WSH_DEBUG_SV.log(l_module_name,'weight_uom_code',p_delivery_rec.weight_uom_code);
1379: WSH_DEBUG_SV.log(l_module_name,'volume',p_delivery_rec.volume);
1380: WSH_DEBUG_SV.log(l_module_name,'volume_uom_code',p_delivery_rec.volume_uom_code);
1381: WSH_DEBUG_SV.log(l_module_name,'initial_pickup_date',p_delivery_rec.initial_pickup_date);
1382: WSH_DEBUG_SV.log(l_module_name,'loading_sequence',p_delivery_rec.loading_sequence);
1383: WSH_DEBUG_SV.log(l_module_name,'number_of_lpn',p_delivery_rec.number_of_lpn);

Line 1380: WSH_DEBUG_SV.log(l_module_name,'volume_uom_code',p_delivery_rec.volume_uom_code);

1376: WSH_DEBUG_SV.log(l_module_name,'gross_weight',p_delivery_rec.gross_weight);
1377: WSH_DEBUG_SV.log(l_module_name,'net_weight',p_delivery_rec.net_weight);
1378: WSH_DEBUG_SV.log(l_module_name,'weight_uom_code',p_delivery_rec.weight_uom_code);
1379: WSH_DEBUG_SV.log(l_module_name,'volume',p_delivery_rec.volume);
1380: WSH_DEBUG_SV.log(l_module_name,'volume_uom_code',p_delivery_rec.volume_uom_code);
1381: WSH_DEBUG_SV.log(l_module_name,'initial_pickup_date',p_delivery_rec.initial_pickup_date);
1382: WSH_DEBUG_SV.log(l_module_name,'loading_sequence',p_delivery_rec.loading_sequence);
1383: WSH_DEBUG_SV.log(l_module_name,'number_of_lpn',p_delivery_rec.number_of_lpn);
1384: WSH_DEBUG_SV.log(l_module_name,'shipping_marks',p_delivery_rec.shipping_marks);

Line 1381: WSH_DEBUG_SV.log(l_module_name,'initial_pickup_date',p_delivery_rec.initial_pickup_date);

1377: WSH_DEBUG_SV.log(l_module_name,'net_weight',p_delivery_rec.net_weight);
1378: WSH_DEBUG_SV.log(l_module_name,'weight_uom_code',p_delivery_rec.weight_uom_code);
1379: WSH_DEBUG_SV.log(l_module_name,'volume',p_delivery_rec.volume);
1380: WSH_DEBUG_SV.log(l_module_name,'volume_uom_code',p_delivery_rec.volume_uom_code);
1381: WSH_DEBUG_SV.log(l_module_name,'initial_pickup_date',p_delivery_rec.initial_pickup_date);
1382: WSH_DEBUG_SV.log(l_module_name,'loading_sequence',p_delivery_rec.loading_sequence);
1383: WSH_DEBUG_SV.log(l_module_name,'number_of_lpn',p_delivery_rec.number_of_lpn);
1384: WSH_DEBUG_SV.log(l_module_name,'shipping_marks',p_delivery_rec.shipping_marks);
1385: WSH_DEBUG_SV.log(l_module_name,'ultimate_dropoff_date',p_delivery_rec.ultimate_dropoff_date);

Line 1382: WSH_DEBUG_SV.log(l_module_name,'loading_sequence',p_delivery_rec.loading_sequence);

1378: WSH_DEBUG_SV.log(l_module_name,'weight_uom_code',p_delivery_rec.weight_uom_code);
1379: WSH_DEBUG_SV.log(l_module_name,'volume',p_delivery_rec.volume);
1380: WSH_DEBUG_SV.log(l_module_name,'volume_uom_code',p_delivery_rec.volume_uom_code);
1381: WSH_DEBUG_SV.log(l_module_name,'initial_pickup_date',p_delivery_rec.initial_pickup_date);
1382: WSH_DEBUG_SV.log(l_module_name,'loading_sequence',p_delivery_rec.loading_sequence);
1383: WSH_DEBUG_SV.log(l_module_name,'number_of_lpn',p_delivery_rec.number_of_lpn);
1384: WSH_DEBUG_SV.log(l_module_name,'shipping_marks',p_delivery_rec.shipping_marks);
1385: WSH_DEBUG_SV.log(l_module_name,'ultimate_dropoff_date',p_delivery_rec.ultimate_dropoff_date);
1386: WSH_DEBUG_SV.log(l_module_name,'waybill',p_delivery_rec.waybill);

Line 1383: WSH_DEBUG_SV.log(l_module_name,'number_of_lpn',p_delivery_rec.number_of_lpn);

1379: WSH_DEBUG_SV.log(l_module_name,'volume',p_delivery_rec.volume);
1380: WSH_DEBUG_SV.log(l_module_name,'volume_uom_code',p_delivery_rec.volume_uom_code);
1381: WSH_DEBUG_SV.log(l_module_name,'initial_pickup_date',p_delivery_rec.initial_pickup_date);
1382: WSH_DEBUG_SV.log(l_module_name,'loading_sequence',p_delivery_rec.loading_sequence);
1383: WSH_DEBUG_SV.log(l_module_name,'number_of_lpn',p_delivery_rec.number_of_lpn);
1384: WSH_DEBUG_SV.log(l_module_name,'shipping_marks',p_delivery_rec.shipping_marks);
1385: WSH_DEBUG_SV.log(l_module_name,'ultimate_dropoff_date',p_delivery_rec.ultimate_dropoff_date);
1386: WSH_DEBUG_SV.log(l_module_name,'waybill',p_delivery_rec.waybill);
1387: WSH_DEBUG_SV.log(l_module_name,'service_level',p_delivery_rec.service_level);

Line 1384: WSH_DEBUG_SV.log(l_module_name,'shipping_marks',p_delivery_rec.shipping_marks);

1380: WSH_DEBUG_SV.log(l_module_name,'volume_uom_code',p_delivery_rec.volume_uom_code);
1381: WSH_DEBUG_SV.log(l_module_name,'initial_pickup_date',p_delivery_rec.initial_pickup_date);
1382: WSH_DEBUG_SV.log(l_module_name,'loading_sequence',p_delivery_rec.loading_sequence);
1383: WSH_DEBUG_SV.log(l_module_name,'number_of_lpn',p_delivery_rec.number_of_lpn);
1384: WSH_DEBUG_SV.log(l_module_name,'shipping_marks',p_delivery_rec.shipping_marks);
1385: WSH_DEBUG_SV.log(l_module_name,'ultimate_dropoff_date',p_delivery_rec.ultimate_dropoff_date);
1386: WSH_DEBUG_SV.log(l_module_name,'waybill',p_delivery_rec.waybill);
1387: WSH_DEBUG_SV.log(l_module_name,'service_level',p_delivery_rec.service_level);
1388: WSH_DEBUG_SV.log(l_module_name,'mode_of_transport',p_delivery_rec.mode_of_transport);

Line 1385: WSH_DEBUG_SV.log(l_module_name,'ultimate_dropoff_date',p_delivery_rec.ultimate_dropoff_date);

1381: WSH_DEBUG_SV.log(l_module_name,'initial_pickup_date',p_delivery_rec.initial_pickup_date);
1382: WSH_DEBUG_SV.log(l_module_name,'loading_sequence',p_delivery_rec.loading_sequence);
1383: WSH_DEBUG_SV.log(l_module_name,'number_of_lpn',p_delivery_rec.number_of_lpn);
1384: WSH_DEBUG_SV.log(l_module_name,'shipping_marks',p_delivery_rec.shipping_marks);
1385: WSH_DEBUG_SV.log(l_module_name,'ultimate_dropoff_date',p_delivery_rec.ultimate_dropoff_date);
1386: WSH_DEBUG_SV.log(l_module_name,'waybill',p_delivery_rec.waybill);
1387: WSH_DEBUG_SV.log(l_module_name,'service_level',p_delivery_rec.service_level);
1388: WSH_DEBUG_SV.log(l_module_name,'mode_of_transport',p_delivery_rec.mode_of_transport);
1389: WSH_DEBUG_SV.log(l_module_name,'wv_frozen_flag',p_delivery_rec.wv_frozen_flag);

Line 1386: WSH_DEBUG_SV.log(l_module_name,'waybill',p_delivery_rec.waybill);

1382: WSH_DEBUG_SV.log(l_module_name,'loading_sequence',p_delivery_rec.loading_sequence);
1383: WSH_DEBUG_SV.log(l_module_name,'number_of_lpn',p_delivery_rec.number_of_lpn);
1384: WSH_DEBUG_SV.log(l_module_name,'shipping_marks',p_delivery_rec.shipping_marks);
1385: WSH_DEBUG_SV.log(l_module_name,'ultimate_dropoff_date',p_delivery_rec.ultimate_dropoff_date);
1386: WSH_DEBUG_SV.log(l_module_name,'waybill',p_delivery_rec.waybill);
1387: WSH_DEBUG_SV.log(l_module_name,'service_level',p_delivery_rec.service_level);
1388: WSH_DEBUG_SV.log(l_module_name,'mode_of_transport',p_delivery_rec.mode_of_transport);
1389: WSH_DEBUG_SV.log(l_module_name,'wv_frozen_flag',p_delivery_rec.wv_frozen_flag);
1390: WSH_DEBUG_SV.log(l_module_name,'attribute_category',p_delivery_rec.attribute_category);

Line 1387: WSH_DEBUG_SV.log(l_module_name,'service_level',p_delivery_rec.service_level);

1383: WSH_DEBUG_SV.log(l_module_name,'number_of_lpn',p_delivery_rec.number_of_lpn);
1384: WSH_DEBUG_SV.log(l_module_name,'shipping_marks',p_delivery_rec.shipping_marks);
1385: WSH_DEBUG_SV.log(l_module_name,'ultimate_dropoff_date',p_delivery_rec.ultimate_dropoff_date);
1386: WSH_DEBUG_SV.log(l_module_name,'waybill',p_delivery_rec.waybill);
1387: WSH_DEBUG_SV.log(l_module_name,'service_level',p_delivery_rec.service_level);
1388: WSH_DEBUG_SV.log(l_module_name,'mode_of_transport',p_delivery_rec.mode_of_transport);
1389: WSH_DEBUG_SV.log(l_module_name,'wv_frozen_flag',p_delivery_rec.wv_frozen_flag);
1390: WSH_DEBUG_SV.log(l_module_name,'attribute_category',p_delivery_rec.attribute_category);
1391: WSH_DEBUG_SV.log(l_module_name,'attribute1',p_delivery_rec.attribute1);

Line 1388: WSH_DEBUG_SV.log(l_module_name,'mode_of_transport',p_delivery_rec.mode_of_transport);

1384: WSH_DEBUG_SV.log(l_module_name,'shipping_marks',p_delivery_rec.shipping_marks);
1385: WSH_DEBUG_SV.log(l_module_name,'ultimate_dropoff_date',p_delivery_rec.ultimate_dropoff_date);
1386: WSH_DEBUG_SV.log(l_module_name,'waybill',p_delivery_rec.waybill);
1387: WSH_DEBUG_SV.log(l_module_name,'service_level',p_delivery_rec.service_level);
1388: WSH_DEBUG_SV.log(l_module_name,'mode_of_transport',p_delivery_rec.mode_of_transport);
1389: WSH_DEBUG_SV.log(l_module_name,'wv_frozen_flag',p_delivery_rec.wv_frozen_flag);
1390: WSH_DEBUG_SV.log(l_module_name,'attribute_category',p_delivery_rec.attribute_category);
1391: WSH_DEBUG_SV.log(l_module_name,'attribute1',p_delivery_rec.attribute1);
1392: WSH_DEBUG_SV.log(l_module_name,'attribute2',p_delivery_rec.attribute2);

Line 1389: WSH_DEBUG_SV.log(l_module_name,'wv_frozen_flag',p_delivery_rec.wv_frozen_flag);

1385: WSH_DEBUG_SV.log(l_module_name,'ultimate_dropoff_date',p_delivery_rec.ultimate_dropoff_date);
1386: WSH_DEBUG_SV.log(l_module_name,'waybill',p_delivery_rec.waybill);
1387: WSH_DEBUG_SV.log(l_module_name,'service_level',p_delivery_rec.service_level);
1388: WSH_DEBUG_SV.log(l_module_name,'mode_of_transport',p_delivery_rec.mode_of_transport);
1389: WSH_DEBUG_SV.log(l_module_name,'wv_frozen_flag',p_delivery_rec.wv_frozen_flag);
1390: WSH_DEBUG_SV.log(l_module_name,'attribute_category',p_delivery_rec.attribute_category);
1391: WSH_DEBUG_SV.log(l_module_name,'attribute1',p_delivery_rec.attribute1);
1392: WSH_DEBUG_SV.log(l_module_name,'attribute2',p_delivery_rec.attribute2);
1393: WSH_DEBUG_SV.log(l_module_name,'attribute3',p_delivery_rec.attribute3);

Line 1390: WSH_DEBUG_SV.log(l_module_name,'attribute_category',p_delivery_rec.attribute_category);

1386: WSH_DEBUG_SV.log(l_module_name,'waybill',p_delivery_rec.waybill);
1387: WSH_DEBUG_SV.log(l_module_name,'service_level',p_delivery_rec.service_level);
1388: WSH_DEBUG_SV.log(l_module_name,'mode_of_transport',p_delivery_rec.mode_of_transport);
1389: WSH_DEBUG_SV.log(l_module_name,'wv_frozen_flag',p_delivery_rec.wv_frozen_flag);
1390: WSH_DEBUG_SV.log(l_module_name,'attribute_category',p_delivery_rec.attribute_category);
1391: WSH_DEBUG_SV.log(l_module_name,'attribute1',p_delivery_rec.attribute1);
1392: WSH_DEBUG_SV.log(l_module_name,'attribute2',p_delivery_rec.attribute2);
1393: WSH_DEBUG_SV.log(l_module_name,'attribute3',p_delivery_rec.attribute3);
1394: WSH_DEBUG_SV.log(l_module_name,'attribute4',p_delivery_rec.attribute4);

Line 1391: WSH_DEBUG_SV.log(l_module_name,'attribute1',p_delivery_rec.attribute1);

1387: WSH_DEBUG_SV.log(l_module_name,'service_level',p_delivery_rec.service_level);
1388: WSH_DEBUG_SV.log(l_module_name,'mode_of_transport',p_delivery_rec.mode_of_transport);
1389: WSH_DEBUG_SV.log(l_module_name,'wv_frozen_flag',p_delivery_rec.wv_frozen_flag);
1390: WSH_DEBUG_SV.log(l_module_name,'attribute_category',p_delivery_rec.attribute_category);
1391: WSH_DEBUG_SV.log(l_module_name,'attribute1',p_delivery_rec.attribute1);
1392: WSH_DEBUG_SV.log(l_module_name,'attribute2',p_delivery_rec.attribute2);
1393: WSH_DEBUG_SV.log(l_module_name,'attribute3',p_delivery_rec.attribute3);
1394: WSH_DEBUG_SV.log(l_module_name,'attribute4',p_delivery_rec.attribute4);
1395: WSH_DEBUG_SV.log(l_module_name,'attribute5',p_delivery_rec.attribute5);

Line 1392: WSH_DEBUG_SV.log(l_module_name,'attribute2',p_delivery_rec.attribute2);

1388: WSH_DEBUG_SV.log(l_module_name,'mode_of_transport',p_delivery_rec.mode_of_transport);
1389: WSH_DEBUG_SV.log(l_module_name,'wv_frozen_flag',p_delivery_rec.wv_frozen_flag);
1390: WSH_DEBUG_SV.log(l_module_name,'attribute_category',p_delivery_rec.attribute_category);
1391: WSH_DEBUG_SV.log(l_module_name,'attribute1',p_delivery_rec.attribute1);
1392: WSH_DEBUG_SV.log(l_module_name,'attribute2',p_delivery_rec.attribute2);
1393: WSH_DEBUG_SV.log(l_module_name,'attribute3',p_delivery_rec.attribute3);
1394: WSH_DEBUG_SV.log(l_module_name,'attribute4',p_delivery_rec.attribute4);
1395: WSH_DEBUG_SV.log(l_module_name,'attribute5',p_delivery_rec.attribute5);
1396: WSH_DEBUG_SV.log(l_module_name,'attribute6',p_delivery_rec.attribute6);

Line 1393: WSH_DEBUG_SV.log(l_module_name,'attribute3',p_delivery_rec.attribute3);

1389: WSH_DEBUG_SV.log(l_module_name,'wv_frozen_flag',p_delivery_rec.wv_frozen_flag);
1390: WSH_DEBUG_SV.log(l_module_name,'attribute_category',p_delivery_rec.attribute_category);
1391: WSH_DEBUG_SV.log(l_module_name,'attribute1',p_delivery_rec.attribute1);
1392: WSH_DEBUG_SV.log(l_module_name,'attribute2',p_delivery_rec.attribute2);
1393: WSH_DEBUG_SV.log(l_module_name,'attribute3',p_delivery_rec.attribute3);
1394: WSH_DEBUG_SV.log(l_module_name,'attribute4',p_delivery_rec.attribute4);
1395: WSH_DEBUG_SV.log(l_module_name,'attribute5',p_delivery_rec.attribute5);
1396: WSH_DEBUG_SV.log(l_module_name,'attribute6',p_delivery_rec.attribute6);
1397: WSH_DEBUG_SV.log(l_module_name,'attribute7',p_delivery_rec.attribute7);

Line 1394: WSH_DEBUG_SV.log(l_module_name,'attribute4',p_delivery_rec.attribute4);

1390: WSH_DEBUG_SV.log(l_module_name,'attribute_category',p_delivery_rec.attribute_category);
1391: WSH_DEBUG_SV.log(l_module_name,'attribute1',p_delivery_rec.attribute1);
1392: WSH_DEBUG_SV.log(l_module_name,'attribute2',p_delivery_rec.attribute2);
1393: WSH_DEBUG_SV.log(l_module_name,'attribute3',p_delivery_rec.attribute3);
1394: WSH_DEBUG_SV.log(l_module_name,'attribute4',p_delivery_rec.attribute4);
1395: WSH_DEBUG_SV.log(l_module_name,'attribute5',p_delivery_rec.attribute5);
1396: WSH_DEBUG_SV.log(l_module_name,'attribute6',p_delivery_rec.attribute6);
1397: WSH_DEBUG_SV.log(l_module_name,'attribute7',p_delivery_rec.attribute7);
1398: WSH_DEBUG_SV.log(l_module_name,'attribute8',p_delivery_rec.attribute8);

Line 1395: WSH_DEBUG_SV.log(l_module_name,'attribute5',p_delivery_rec.attribute5);

1391: WSH_DEBUG_SV.log(l_module_name,'attribute1',p_delivery_rec.attribute1);
1392: WSH_DEBUG_SV.log(l_module_name,'attribute2',p_delivery_rec.attribute2);
1393: WSH_DEBUG_SV.log(l_module_name,'attribute3',p_delivery_rec.attribute3);
1394: WSH_DEBUG_SV.log(l_module_name,'attribute4',p_delivery_rec.attribute4);
1395: WSH_DEBUG_SV.log(l_module_name,'attribute5',p_delivery_rec.attribute5);
1396: WSH_DEBUG_SV.log(l_module_name,'attribute6',p_delivery_rec.attribute6);
1397: WSH_DEBUG_SV.log(l_module_name,'attribute7',p_delivery_rec.attribute7);
1398: WSH_DEBUG_SV.log(l_module_name,'attribute8',p_delivery_rec.attribute8);
1399: WSH_DEBUG_SV.log(l_module_name,'attribute9',p_delivery_rec.attribute9);

Line 1396: WSH_DEBUG_SV.log(l_module_name,'attribute6',p_delivery_rec.attribute6);

1392: WSH_DEBUG_SV.log(l_module_name,'attribute2',p_delivery_rec.attribute2);
1393: WSH_DEBUG_SV.log(l_module_name,'attribute3',p_delivery_rec.attribute3);
1394: WSH_DEBUG_SV.log(l_module_name,'attribute4',p_delivery_rec.attribute4);
1395: WSH_DEBUG_SV.log(l_module_name,'attribute5',p_delivery_rec.attribute5);
1396: WSH_DEBUG_SV.log(l_module_name,'attribute6',p_delivery_rec.attribute6);
1397: WSH_DEBUG_SV.log(l_module_name,'attribute7',p_delivery_rec.attribute7);
1398: WSH_DEBUG_SV.log(l_module_name,'attribute8',p_delivery_rec.attribute8);
1399: WSH_DEBUG_SV.log(l_module_name,'attribute9',p_delivery_rec.attribute9);
1400: WSH_DEBUG_SV.log(l_module_name,'attribute10',p_delivery_rec.attribute10);

Line 1397: WSH_DEBUG_SV.log(l_module_name,'attribute7',p_delivery_rec.attribute7);

1393: WSH_DEBUG_SV.log(l_module_name,'attribute3',p_delivery_rec.attribute3);
1394: WSH_DEBUG_SV.log(l_module_name,'attribute4',p_delivery_rec.attribute4);
1395: WSH_DEBUG_SV.log(l_module_name,'attribute5',p_delivery_rec.attribute5);
1396: WSH_DEBUG_SV.log(l_module_name,'attribute6',p_delivery_rec.attribute6);
1397: WSH_DEBUG_SV.log(l_module_name,'attribute7',p_delivery_rec.attribute7);
1398: WSH_DEBUG_SV.log(l_module_name,'attribute8',p_delivery_rec.attribute8);
1399: WSH_DEBUG_SV.log(l_module_name,'attribute9',p_delivery_rec.attribute9);
1400: WSH_DEBUG_SV.log(l_module_name,'attribute10',p_delivery_rec.attribute10);
1401: WSH_DEBUG_SV.log(l_module_name,'attribute11',p_delivery_rec.attribute11);

Line 1398: WSH_DEBUG_SV.log(l_module_name,'attribute8',p_delivery_rec.attribute8);

1394: WSH_DEBUG_SV.log(l_module_name,'attribute4',p_delivery_rec.attribute4);
1395: WSH_DEBUG_SV.log(l_module_name,'attribute5',p_delivery_rec.attribute5);
1396: WSH_DEBUG_SV.log(l_module_name,'attribute6',p_delivery_rec.attribute6);
1397: WSH_DEBUG_SV.log(l_module_name,'attribute7',p_delivery_rec.attribute7);
1398: WSH_DEBUG_SV.log(l_module_name,'attribute8',p_delivery_rec.attribute8);
1399: WSH_DEBUG_SV.log(l_module_name,'attribute9',p_delivery_rec.attribute9);
1400: WSH_DEBUG_SV.log(l_module_name,'attribute10',p_delivery_rec.attribute10);
1401: WSH_DEBUG_SV.log(l_module_name,'attribute11',p_delivery_rec.attribute11);
1402: WSH_DEBUG_SV.log(l_module_name,'attribute12',p_delivery_rec.attribute12);

Line 1399: WSH_DEBUG_SV.log(l_module_name,'attribute9',p_delivery_rec.attribute9);

1395: WSH_DEBUG_SV.log(l_module_name,'attribute5',p_delivery_rec.attribute5);
1396: WSH_DEBUG_SV.log(l_module_name,'attribute6',p_delivery_rec.attribute6);
1397: WSH_DEBUG_SV.log(l_module_name,'attribute7',p_delivery_rec.attribute7);
1398: WSH_DEBUG_SV.log(l_module_name,'attribute8',p_delivery_rec.attribute8);
1399: WSH_DEBUG_SV.log(l_module_name,'attribute9',p_delivery_rec.attribute9);
1400: WSH_DEBUG_SV.log(l_module_name,'attribute10',p_delivery_rec.attribute10);
1401: WSH_DEBUG_SV.log(l_module_name,'attribute11',p_delivery_rec.attribute11);
1402: WSH_DEBUG_SV.log(l_module_name,'attribute12',p_delivery_rec.attribute12);
1403: WSH_DEBUG_SV.log(l_module_name,'attribute13',p_delivery_rec.attribute13);

Line 1400: WSH_DEBUG_SV.log(l_module_name,'attribute10',p_delivery_rec.attribute10);

1396: WSH_DEBUG_SV.log(l_module_name,'attribute6',p_delivery_rec.attribute6);
1397: WSH_DEBUG_SV.log(l_module_name,'attribute7',p_delivery_rec.attribute7);
1398: WSH_DEBUG_SV.log(l_module_name,'attribute8',p_delivery_rec.attribute8);
1399: WSH_DEBUG_SV.log(l_module_name,'attribute9',p_delivery_rec.attribute9);
1400: WSH_DEBUG_SV.log(l_module_name,'attribute10',p_delivery_rec.attribute10);
1401: WSH_DEBUG_SV.log(l_module_name,'attribute11',p_delivery_rec.attribute11);
1402: WSH_DEBUG_SV.log(l_module_name,'attribute12',p_delivery_rec.attribute12);
1403: WSH_DEBUG_SV.log(l_module_name,'attribute13',p_delivery_rec.attribute13);
1404: WSH_DEBUG_SV.log(l_module_name,'attribute14',p_delivery_rec.attribute14);

Line 1401: WSH_DEBUG_SV.log(l_module_name,'attribute11',p_delivery_rec.attribute11);

1397: WSH_DEBUG_SV.log(l_module_name,'attribute7',p_delivery_rec.attribute7);
1398: WSH_DEBUG_SV.log(l_module_name,'attribute8',p_delivery_rec.attribute8);
1399: WSH_DEBUG_SV.log(l_module_name,'attribute9',p_delivery_rec.attribute9);
1400: WSH_DEBUG_SV.log(l_module_name,'attribute10',p_delivery_rec.attribute10);
1401: WSH_DEBUG_SV.log(l_module_name,'attribute11',p_delivery_rec.attribute11);
1402: WSH_DEBUG_SV.log(l_module_name,'attribute12',p_delivery_rec.attribute12);
1403: WSH_DEBUG_SV.log(l_module_name,'attribute13',p_delivery_rec.attribute13);
1404: WSH_DEBUG_SV.log(l_module_name,'attribute14',p_delivery_rec.attribute14);
1405: WSH_DEBUG_SV.log(l_module_name,'attribute15',p_delivery_rec.attribute15);

Line 1402: WSH_DEBUG_SV.log(l_module_name,'attribute12',p_delivery_rec.attribute12);

1398: WSH_DEBUG_SV.log(l_module_name,'attribute8',p_delivery_rec.attribute8);
1399: WSH_DEBUG_SV.log(l_module_name,'attribute9',p_delivery_rec.attribute9);
1400: WSH_DEBUG_SV.log(l_module_name,'attribute10',p_delivery_rec.attribute10);
1401: WSH_DEBUG_SV.log(l_module_name,'attribute11',p_delivery_rec.attribute11);
1402: WSH_DEBUG_SV.log(l_module_name,'attribute12',p_delivery_rec.attribute12);
1403: WSH_DEBUG_SV.log(l_module_name,'attribute13',p_delivery_rec.attribute13);
1404: WSH_DEBUG_SV.log(l_module_name,'attribute14',p_delivery_rec.attribute14);
1405: WSH_DEBUG_SV.log(l_module_name,'attribute15',p_delivery_rec.attribute15);
1406: WSH_DEBUG_SV.log(l_module_name,'SHIP_TO_CUSTOMER_NAME',p_delivery_rec.SHIP_TO_CUSTOMER_NAME);

Line 1403: WSH_DEBUG_SV.log(l_module_name,'attribute13',p_delivery_rec.attribute13);

1399: WSH_DEBUG_SV.log(l_module_name,'attribute9',p_delivery_rec.attribute9);
1400: WSH_DEBUG_SV.log(l_module_name,'attribute10',p_delivery_rec.attribute10);
1401: WSH_DEBUG_SV.log(l_module_name,'attribute11',p_delivery_rec.attribute11);
1402: WSH_DEBUG_SV.log(l_module_name,'attribute12',p_delivery_rec.attribute12);
1403: WSH_DEBUG_SV.log(l_module_name,'attribute13',p_delivery_rec.attribute13);
1404: WSH_DEBUG_SV.log(l_module_name,'attribute14',p_delivery_rec.attribute14);
1405: WSH_DEBUG_SV.log(l_module_name,'attribute15',p_delivery_rec.attribute15);
1406: WSH_DEBUG_SV.log(l_module_name,'SHIP_TO_CUSTOMER_NAME',p_delivery_rec.SHIP_TO_CUSTOMER_NAME);
1407: WSH_DEBUG_SV.log(l_module_name,'SHIP_TO_ADDRESS1',p_delivery_rec.SHIP_TO_ADDRESS1);

Line 1404: WSH_DEBUG_SV.log(l_module_name,'attribute14',p_delivery_rec.attribute14);

1400: WSH_DEBUG_SV.log(l_module_name,'attribute10',p_delivery_rec.attribute10);
1401: WSH_DEBUG_SV.log(l_module_name,'attribute11',p_delivery_rec.attribute11);
1402: WSH_DEBUG_SV.log(l_module_name,'attribute12',p_delivery_rec.attribute12);
1403: WSH_DEBUG_SV.log(l_module_name,'attribute13',p_delivery_rec.attribute13);
1404: WSH_DEBUG_SV.log(l_module_name,'attribute14',p_delivery_rec.attribute14);
1405: WSH_DEBUG_SV.log(l_module_name,'attribute15',p_delivery_rec.attribute15);
1406: WSH_DEBUG_SV.log(l_module_name,'SHIP_TO_CUSTOMER_NAME',p_delivery_rec.SHIP_TO_CUSTOMER_NAME);
1407: WSH_DEBUG_SV.log(l_module_name,'SHIP_TO_ADDRESS1',p_delivery_rec.SHIP_TO_ADDRESS1);
1408: WSH_DEBUG_SV.log(l_module_name,'SHIP_TO_ADDRESS2',p_delivery_rec.SHIP_TO_ADDRESS2);

Line 1405: WSH_DEBUG_SV.log(l_module_name,'attribute15',p_delivery_rec.attribute15);

1401: WSH_DEBUG_SV.log(l_module_name,'attribute11',p_delivery_rec.attribute11);
1402: WSH_DEBUG_SV.log(l_module_name,'attribute12',p_delivery_rec.attribute12);
1403: WSH_DEBUG_SV.log(l_module_name,'attribute13',p_delivery_rec.attribute13);
1404: WSH_DEBUG_SV.log(l_module_name,'attribute14',p_delivery_rec.attribute14);
1405: WSH_DEBUG_SV.log(l_module_name,'attribute15',p_delivery_rec.attribute15);
1406: WSH_DEBUG_SV.log(l_module_name,'SHIP_TO_CUSTOMER_NAME',p_delivery_rec.SHIP_TO_CUSTOMER_NAME);
1407: WSH_DEBUG_SV.log(l_module_name,'SHIP_TO_ADDRESS1',p_delivery_rec.SHIP_TO_ADDRESS1);
1408: WSH_DEBUG_SV.log(l_module_name,'SHIP_TO_ADDRESS2',p_delivery_rec.SHIP_TO_ADDRESS2);
1409: WSH_DEBUG_SV.log(l_module_name,'SHIP_TO_ADDRESS3',p_delivery_rec.SHIP_TO_ADDRESS3);

Line 1406: WSH_DEBUG_SV.log(l_module_name,'SHIP_TO_CUSTOMER_NAME',p_delivery_rec.SHIP_TO_CUSTOMER_NAME);

1402: WSH_DEBUG_SV.log(l_module_name,'attribute12',p_delivery_rec.attribute12);
1403: WSH_DEBUG_SV.log(l_module_name,'attribute13',p_delivery_rec.attribute13);
1404: WSH_DEBUG_SV.log(l_module_name,'attribute14',p_delivery_rec.attribute14);
1405: WSH_DEBUG_SV.log(l_module_name,'attribute15',p_delivery_rec.attribute15);
1406: WSH_DEBUG_SV.log(l_module_name,'SHIP_TO_CUSTOMER_NAME',p_delivery_rec.SHIP_TO_CUSTOMER_NAME);
1407: WSH_DEBUG_SV.log(l_module_name,'SHIP_TO_ADDRESS1',p_delivery_rec.SHIP_TO_ADDRESS1);
1408: WSH_DEBUG_SV.log(l_module_name,'SHIP_TO_ADDRESS2',p_delivery_rec.SHIP_TO_ADDRESS2);
1409: WSH_DEBUG_SV.log(l_module_name,'SHIP_TO_ADDRESS3',p_delivery_rec.SHIP_TO_ADDRESS3);
1410: WSH_DEBUG_SV.log(l_module_name,'SHIP_TO_ADDRESS4',p_delivery_rec.SHIP_TO_ADDRESS4);

Line 1407: WSH_DEBUG_SV.log(l_module_name,'SHIP_TO_ADDRESS1',p_delivery_rec.SHIP_TO_ADDRESS1);

1403: WSH_DEBUG_SV.log(l_module_name,'attribute13',p_delivery_rec.attribute13);
1404: WSH_DEBUG_SV.log(l_module_name,'attribute14',p_delivery_rec.attribute14);
1405: WSH_DEBUG_SV.log(l_module_name,'attribute15',p_delivery_rec.attribute15);
1406: WSH_DEBUG_SV.log(l_module_name,'SHIP_TO_CUSTOMER_NAME',p_delivery_rec.SHIP_TO_CUSTOMER_NAME);
1407: WSH_DEBUG_SV.log(l_module_name,'SHIP_TO_ADDRESS1',p_delivery_rec.SHIP_TO_ADDRESS1);
1408: WSH_DEBUG_SV.log(l_module_name,'SHIP_TO_ADDRESS2',p_delivery_rec.SHIP_TO_ADDRESS2);
1409: WSH_DEBUG_SV.log(l_module_name,'SHIP_TO_ADDRESS3',p_delivery_rec.SHIP_TO_ADDRESS3);
1410: WSH_DEBUG_SV.log(l_module_name,'SHIP_TO_ADDRESS4',p_delivery_rec.SHIP_TO_ADDRESS4);
1411: WSH_DEBUG_SV.log(l_module_name,'SHIP_TO_CITY',p_delivery_rec.SHIP_TO_CITY);

Line 1408: WSH_DEBUG_SV.log(l_module_name,'SHIP_TO_ADDRESS2',p_delivery_rec.SHIP_TO_ADDRESS2);

1404: WSH_DEBUG_SV.log(l_module_name,'attribute14',p_delivery_rec.attribute14);
1405: WSH_DEBUG_SV.log(l_module_name,'attribute15',p_delivery_rec.attribute15);
1406: WSH_DEBUG_SV.log(l_module_name,'SHIP_TO_CUSTOMER_NAME',p_delivery_rec.SHIP_TO_CUSTOMER_NAME);
1407: WSH_DEBUG_SV.log(l_module_name,'SHIP_TO_ADDRESS1',p_delivery_rec.SHIP_TO_ADDRESS1);
1408: WSH_DEBUG_SV.log(l_module_name,'SHIP_TO_ADDRESS2',p_delivery_rec.SHIP_TO_ADDRESS2);
1409: WSH_DEBUG_SV.log(l_module_name,'SHIP_TO_ADDRESS3',p_delivery_rec.SHIP_TO_ADDRESS3);
1410: WSH_DEBUG_SV.log(l_module_name,'SHIP_TO_ADDRESS4',p_delivery_rec.SHIP_TO_ADDRESS4);
1411: WSH_DEBUG_SV.log(l_module_name,'SHIP_TO_CITY',p_delivery_rec.SHIP_TO_CITY);
1412: WSH_DEBUG_SV.log(l_module_name,'SHIP_TO_STATE',p_delivery_rec.SHIP_TO_STATE);

Line 1409: WSH_DEBUG_SV.log(l_module_name,'SHIP_TO_ADDRESS3',p_delivery_rec.SHIP_TO_ADDRESS3);

1405: WSH_DEBUG_SV.log(l_module_name,'attribute15',p_delivery_rec.attribute15);
1406: WSH_DEBUG_SV.log(l_module_name,'SHIP_TO_CUSTOMER_NAME',p_delivery_rec.SHIP_TO_CUSTOMER_NAME);
1407: WSH_DEBUG_SV.log(l_module_name,'SHIP_TO_ADDRESS1',p_delivery_rec.SHIP_TO_ADDRESS1);
1408: WSH_DEBUG_SV.log(l_module_name,'SHIP_TO_ADDRESS2',p_delivery_rec.SHIP_TO_ADDRESS2);
1409: WSH_DEBUG_SV.log(l_module_name,'SHIP_TO_ADDRESS3',p_delivery_rec.SHIP_TO_ADDRESS3);
1410: WSH_DEBUG_SV.log(l_module_name,'SHIP_TO_ADDRESS4',p_delivery_rec.SHIP_TO_ADDRESS4);
1411: WSH_DEBUG_SV.log(l_module_name,'SHIP_TO_CITY',p_delivery_rec.SHIP_TO_CITY);
1412: WSH_DEBUG_SV.log(l_module_name,'SHIP_TO_STATE',p_delivery_rec.SHIP_TO_STATE);
1413: WSH_DEBUG_SV.log(l_module_name,'SHIP_TO_COUNTRY',p_delivery_rec.SHIP_TO_COUNTRY);

Line 1410: WSH_DEBUG_SV.log(l_module_name,'SHIP_TO_ADDRESS4',p_delivery_rec.SHIP_TO_ADDRESS4);

1406: WSH_DEBUG_SV.log(l_module_name,'SHIP_TO_CUSTOMER_NAME',p_delivery_rec.SHIP_TO_CUSTOMER_NAME);
1407: WSH_DEBUG_SV.log(l_module_name,'SHIP_TO_ADDRESS1',p_delivery_rec.SHIP_TO_ADDRESS1);
1408: WSH_DEBUG_SV.log(l_module_name,'SHIP_TO_ADDRESS2',p_delivery_rec.SHIP_TO_ADDRESS2);
1409: WSH_DEBUG_SV.log(l_module_name,'SHIP_TO_ADDRESS3',p_delivery_rec.SHIP_TO_ADDRESS3);
1410: WSH_DEBUG_SV.log(l_module_name,'SHIP_TO_ADDRESS4',p_delivery_rec.SHIP_TO_ADDRESS4);
1411: WSH_DEBUG_SV.log(l_module_name,'SHIP_TO_CITY',p_delivery_rec.SHIP_TO_CITY);
1412: WSH_DEBUG_SV.log(l_module_name,'SHIP_TO_STATE',p_delivery_rec.SHIP_TO_STATE);
1413: WSH_DEBUG_SV.log(l_module_name,'SHIP_TO_COUNTRY',p_delivery_rec.SHIP_TO_COUNTRY);
1414: WSH_DEBUG_SV.log(l_module_name,'SHIP_TO_POSTAL_CODE',p_delivery_rec.SHIP_TO_POSTAL_CODE);

Line 1411: WSH_DEBUG_SV.log(l_module_name,'SHIP_TO_CITY',p_delivery_rec.SHIP_TO_CITY);

1407: WSH_DEBUG_SV.log(l_module_name,'SHIP_TO_ADDRESS1',p_delivery_rec.SHIP_TO_ADDRESS1);
1408: WSH_DEBUG_SV.log(l_module_name,'SHIP_TO_ADDRESS2',p_delivery_rec.SHIP_TO_ADDRESS2);
1409: WSH_DEBUG_SV.log(l_module_name,'SHIP_TO_ADDRESS3',p_delivery_rec.SHIP_TO_ADDRESS3);
1410: WSH_DEBUG_SV.log(l_module_name,'SHIP_TO_ADDRESS4',p_delivery_rec.SHIP_TO_ADDRESS4);
1411: WSH_DEBUG_SV.log(l_module_name,'SHIP_TO_CITY',p_delivery_rec.SHIP_TO_CITY);
1412: WSH_DEBUG_SV.log(l_module_name,'SHIP_TO_STATE',p_delivery_rec.SHIP_TO_STATE);
1413: WSH_DEBUG_SV.log(l_module_name,'SHIP_TO_COUNTRY',p_delivery_rec.SHIP_TO_COUNTRY);
1414: WSH_DEBUG_SV.log(l_module_name,'SHIP_TO_POSTAL_CODE',p_delivery_rec.SHIP_TO_POSTAL_CODE);
1415: WSH_DEBUG_SV.logmsg(l_module_name,'-------------------------------------------------------------------');

Line 1412: WSH_DEBUG_SV.log(l_module_name,'SHIP_TO_STATE',p_delivery_rec.SHIP_TO_STATE);

1408: WSH_DEBUG_SV.log(l_module_name,'SHIP_TO_ADDRESS2',p_delivery_rec.SHIP_TO_ADDRESS2);
1409: WSH_DEBUG_SV.log(l_module_name,'SHIP_TO_ADDRESS3',p_delivery_rec.SHIP_TO_ADDRESS3);
1410: WSH_DEBUG_SV.log(l_module_name,'SHIP_TO_ADDRESS4',p_delivery_rec.SHIP_TO_ADDRESS4);
1411: WSH_DEBUG_SV.log(l_module_name,'SHIP_TO_CITY',p_delivery_rec.SHIP_TO_CITY);
1412: WSH_DEBUG_SV.log(l_module_name,'SHIP_TO_STATE',p_delivery_rec.SHIP_TO_STATE);
1413: WSH_DEBUG_SV.log(l_module_name,'SHIP_TO_COUNTRY',p_delivery_rec.SHIP_TO_COUNTRY);
1414: WSH_DEBUG_SV.log(l_module_name,'SHIP_TO_POSTAL_CODE',p_delivery_rec.SHIP_TO_POSTAL_CODE);
1415: WSH_DEBUG_SV.logmsg(l_module_name,'-------------------------------------------------------------------');
1416:

Line 1413: WSH_DEBUG_SV.log(l_module_name,'SHIP_TO_COUNTRY',p_delivery_rec.SHIP_TO_COUNTRY);

1409: WSH_DEBUG_SV.log(l_module_name,'SHIP_TO_ADDRESS3',p_delivery_rec.SHIP_TO_ADDRESS3);
1410: WSH_DEBUG_SV.log(l_module_name,'SHIP_TO_ADDRESS4',p_delivery_rec.SHIP_TO_ADDRESS4);
1411: WSH_DEBUG_SV.log(l_module_name,'SHIP_TO_CITY',p_delivery_rec.SHIP_TO_CITY);
1412: WSH_DEBUG_SV.log(l_module_name,'SHIP_TO_STATE',p_delivery_rec.SHIP_TO_STATE);
1413: WSH_DEBUG_SV.log(l_module_name,'SHIP_TO_COUNTRY',p_delivery_rec.SHIP_TO_COUNTRY);
1414: WSH_DEBUG_SV.log(l_module_name,'SHIP_TO_POSTAL_CODE',p_delivery_rec.SHIP_TO_POSTAL_CODE);
1415: WSH_DEBUG_SV.logmsg(l_module_name,'-------------------------------------------------------------------');
1416:
1417: WSH_DEBUG_SV.logmsg(l_module_name,' -------------------------------------------------------------------');

Line 1414: WSH_DEBUG_SV.log(l_module_name,'SHIP_TO_POSTAL_CODE',p_delivery_rec.SHIP_TO_POSTAL_CODE);

1410: WSH_DEBUG_SV.log(l_module_name,'SHIP_TO_ADDRESS4',p_delivery_rec.SHIP_TO_ADDRESS4);
1411: WSH_DEBUG_SV.log(l_module_name,'SHIP_TO_CITY',p_delivery_rec.SHIP_TO_CITY);
1412: WSH_DEBUG_SV.log(l_module_name,'SHIP_TO_STATE',p_delivery_rec.SHIP_TO_STATE);
1413: WSH_DEBUG_SV.log(l_module_name,'SHIP_TO_COUNTRY',p_delivery_rec.SHIP_TO_COUNTRY);
1414: WSH_DEBUG_SV.log(l_module_name,'SHIP_TO_POSTAL_CODE',p_delivery_rec.SHIP_TO_POSTAL_CODE);
1415: WSH_DEBUG_SV.logmsg(l_module_name,'-------------------------------------------------------------------');
1416:
1417: WSH_DEBUG_SV.logmsg(l_module_name,' -------------------------------------------------------------------');
1418: WSH_DEBUG_SV.logmsg(l_module_name,' WSH_TRIP_STOPS_INTERFACE info');

Line 1415: WSH_DEBUG_SV.logmsg(l_module_name,'-------------------------------------------------------------------');

1411: WSH_DEBUG_SV.log(l_module_name,'SHIP_TO_CITY',p_delivery_rec.SHIP_TO_CITY);
1412: WSH_DEBUG_SV.log(l_module_name,'SHIP_TO_STATE',p_delivery_rec.SHIP_TO_STATE);
1413: WSH_DEBUG_SV.log(l_module_name,'SHIP_TO_COUNTRY',p_delivery_rec.SHIP_TO_COUNTRY);
1414: WSH_DEBUG_SV.log(l_module_name,'SHIP_TO_POSTAL_CODE',p_delivery_rec.SHIP_TO_POSTAL_CODE);
1415: WSH_DEBUG_SV.logmsg(l_module_name,'-------------------------------------------------------------------');
1416:
1417: WSH_DEBUG_SV.logmsg(l_module_name,' -------------------------------------------------------------------');
1418: WSH_DEBUG_SV.logmsg(l_module_name,' WSH_TRIP_STOPS_INTERFACE info');
1419: WSH_DEBUG_SV.log(l_module_name,' actual_departure_date',p_delivery_rec.actual_departure_date);

Line 1417: WSH_DEBUG_SV.logmsg(l_module_name,' -------------------------------------------------------------------');

1413: WSH_DEBUG_SV.log(l_module_name,'SHIP_TO_COUNTRY',p_delivery_rec.SHIP_TO_COUNTRY);
1414: WSH_DEBUG_SV.log(l_module_name,'SHIP_TO_POSTAL_CODE',p_delivery_rec.SHIP_TO_POSTAL_CODE);
1415: WSH_DEBUG_SV.logmsg(l_module_name,'-------------------------------------------------------------------');
1416:
1417: WSH_DEBUG_SV.logmsg(l_module_name,' -------------------------------------------------------------------');
1418: WSH_DEBUG_SV.logmsg(l_module_name,' WSH_TRIP_STOPS_INTERFACE info');
1419: WSH_DEBUG_SV.log(l_module_name,' actual_departure_date',p_delivery_rec.actual_departure_date);
1420: WSH_DEBUG_SV.log(l_module_name,' actual_arrival_date',p_delivery_rec.actual_arrival_date);
1421: WSH_DEBUG_SV.log(l_module_name,' departure_seal_code',p_delivery_rec.departure_seal_code);

Line 1418: WSH_DEBUG_SV.logmsg(l_module_name,' WSH_TRIP_STOPS_INTERFACE info');

1414: WSH_DEBUG_SV.log(l_module_name,'SHIP_TO_POSTAL_CODE',p_delivery_rec.SHIP_TO_POSTAL_CODE);
1415: WSH_DEBUG_SV.logmsg(l_module_name,'-------------------------------------------------------------------');
1416:
1417: WSH_DEBUG_SV.logmsg(l_module_name,' -------------------------------------------------------------------');
1418: WSH_DEBUG_SV.logmsg(l_module_name,' WSH_TRIP_STOPS_INTERFACE info');
1419: WSH_DEBUG_SV.log(l_module_name,' actual_departure_date',p_delivery_rec.actual_departure_date);
1420: WSH_DEBUG_SV.log(l_module_name,' actual_arrival_date',p_delivery_rec.actual_arrival_date);
1421: WSH_DEBUG_SV.log(l_module_name,' departure_seal_code',p_delivery_rec.departure_seal_code);
1422: WSH_DEBUG_SV.logmsg(l_module_name,' -------------------------------------------------------------------');

Line 1419: WSH_DEBUG_SV.log(l_module_name,' actual_departure_date',p_delivery_rec.actual_departure_date);

1415: WSH_DEBUG_SV.logmsg(l_module_name,'-------------------------------------------------------------------');
1416:
1417: WSH_DEBUG_SV.logmsg(l_module_name,' -------------------------------------------------------------------');
1418: WSH_DEBUG_SV.logmsg(l_module_name,' WSH_TRIP_STOPS_INTERFACE info');
1419: WSH_DEBUG_SV.log(l_module_name,' actual_departure_date',p_delivery_rec.actual_departure_date);
1420: WSH_DEBUG_SV.log(l_module_name,' actual_arrival_date',p_delivery_rec.actual_arrival_date);
1421: WSH_DEBUG_SV.log(l_module_name,' departure_seal_code',p_delivery_rec.departure_seal_code);
1422: WSH_DEBUG_SV.logmsg(l_module_name,' -------------------------------------------------------------------');
1423:

Line 1420: WSH_DEBUG_SV.log(l_module_name,' actual_arrival_date',p_delivery_rec.actual_arrival_date);

1416:
1417: WSH_DEBUG_SV.logmsg(l_module_name,' -------------------------------------------------------------------');
1418: WSH_DEBUG_SV.logmsg(l_module_name,' WSH_TRIP_STOPS_INTERFACE info');
1419: WSH_DEBUG_SV.log(l_module_name,' actual_departure_date',p_delivery_rec.actual_departure_date);
1420: WSH_DEBUG_SV.log(l_module_name,' actual_arrival_date',p_delivery_rec.actual_arrival_date);
1421: WSH_DEBUG_SV.log(l_module_name,' departure_seal_code',p_delivery_rec.departure_seal_code);
1422: WSH_DEBUG_SV.logmsg(l_module_name,' -------------------------------------------------------------------');
1423:
1424: WSH_DEBUG_SV.logmsg(l_module_name,' -------------------------------------------------------------------');

Line 1421: WSH_DEBUG_SV.log(l_module_name,' departure_seal_code',p_delivery_rec.departure_seal_code);

1417: WSH_DEBUG_SV.logmsg(l_module_name,' -------------------------------------------------------------------');
1418: WSH_DEBUG_SV.logmsg(l_module_name,' WSH_TRIP_STOPS_INTERFACE info');
1419: WSH_DEBUG_SV.log(l_module_name,' actual_departure_date',p_delivery_rec.actual_departure_date);
1420: WSH_DEBUG_SV.log(l_module_name,' actual_arrival_date',p_delivery_rec.actual_arrival_date);
1421: WSH_DEBUG_SV.log(l_module_name,' departure_seal_code',p_delivery_rec.departure_seal_code);
1422: WSH_DEBUG_SV.logmsg(l_module_name,' -------------------------------------------------------------------');
1423:
1424: WSH_DEBUG_SV.logmsg(l_module_name,' -------------------------------------------------------------------');
1425: WSH_DEBUG_SV.logmsg(l_module_name,' WSH_TRIPS_INTERFACE info');

Line 1422: WSH_DEBUG_SV.logmsg(l_module_name,' -------------------------------------------------------------------');

1418: WSH_DEBUG_SV.logmsg(l_module_name,' WSH_TRIP_STOPS_INTERFACE info');
1419: WSH_DEBUG_SV.log(l_module_name,' actual_departure_date',p_delivery_rec.actual_departure_date);
1420: WSH_DEBUG_SV.log(l_module_name,' actual_arrival_date',p_delivery_rec.actual_arrival_date);
1421: WSH_DEBUG_SV.log(l_module_name,' departure_seal_code',p_delivery_rec.departure_seal_code);
1422: WSH_DEBUG_SV.logmsg(l_module_name,' -------------------------------------------------------------------');
1423:
1424: WSH_DEBUG_SV.logmsg(l_module_name,' -------------------------------------------------------------------');
1425: WSH_DEBUG_SV.logmsg(l_module_name,' WSH_TRIPS_INTERFACE info');
1426: WSH_DEBUG_SV.log(l_module_name,' vehicle_number',p_delivery_rec.vehicle_number);

Line 1424: WSH_DEBUG_SV.logmsg(l_module_name,' -------------------------------------------------------------------');

1420: WSH_DEBUG_SV.log(l_module_name,' actual_arrival_date',p_delivery_rec.actual_arrival_date);
1421: WSH_DEBUG_SV.log(l_module_name,' departure_seal_code',p_delivery_rec.departure_seal_code);
1422: WSH_DEBUG_SV.logmsg(l_module_name,' -------------------------------------------------------------------');
1423:
1424: WSH_DEBUG_SV.logmsg(l_module_name,' -------------------------------------------------------------------');
1425: WSH_DEBUG_SV.logmsg(l_module_name,' WSH_TRIPS_INTERFACE info');
1426: WSH_DEBUG_SV.log(l_module_name,' vehicle_number',p_delivery_rec.vehicle_number);
1427: WSH_DEBUG_SV.log(l_module_name,' vehicle_num_prefix',p_delivery_rec.vehicle_num_prefix);
1428: WSH_DEBUG_SV.log(l_module_name,' route_id',p_delivery_rec.route_id);

Line 1425: WSH_DEBUG_SV.logmsg(l_module_name,' WSH_TRIPS_INTERFACE info');

1421: WSH_DEBUG_SV.log(l_module_name,' departure_seal_code',p_delivery_rec.departure_seal_code);
1422: WSH_DEBUG_SV.logmsg(l_module_name,' -------------------------------------------------------------------');
1423:
1424: WSH_DEBUG_SV.logmsg(l_module_name,' -------------------------------------------------------------------');
1425: WSH_DEBUG_SV.logmsg(l_module_name,' WSH_TRIPS_INTERFACE info');
1426: WSH_DEBUG_SV.log(l_module_name,' vehicle_number',p_delivery_rec.vehicle_number);
1427: WSH_DEBUG_SV.log(l_module_name,' vehicle_num_prefix',p_delivery_rec.vehicle_num_prefix);
1428: WSH_DEBUG_SV.log(l_module_name,' route_id',p_delivery_rec.route_id);
1429: WSH_DEBUG_SV.log(l_module_name,' routing_instructions',p_delivery_rec.routing_instructions);

Line 1426: WSH_DEBUG_SV.log(l_module_name,' vehicle_number',p_delivery_rec.vehicle_number);

1422: WSH_DEBUG_SV.logmsg(l_module_name,' -------------------------------------------------------------------');
1423:
1424: WSH_DEBUG_SV.logmsg(l_module_name,' -------------------------------------------------------------------');
1425: WSH_DEBUG_SV.logmsg(l_module_name,' WSH_TRIPS_INTERFACE info');
1426: WSH_DEBUG_SV.log(l_module_name,' vehicle_number',p_delivery_rec.vehicle_number);
1427: WSH_DEBUG_SV.log(l_module_name,' vehicle_num_prefix',p_delivery_rec.vehicle_num_prefix);
1428: WSH_DEBUG_SV.log(l_module_name,' route_id',p_delivery_rec.route_id);
1429: WSH_DEBUG_SV.log(l_module_name,' routing_instructions',p_delivery_rec.routing_instructions);
1430: WSH_DEBUG_SV.log(l_module_name,' operator',p_delivery_rec.operator);

Line 1427: WSH_DEBUG_SV.log(l_module_name,' vehicle_num_prefix',p_delivery_rec.vehicle_num_prefix);

1423:
1424: WSH_DEBUG_SV.logmsg(l_module_name,' -------------------------------------------------------------------');
1425: WSH_DEBUG_SV.logmsg(l_module_name,' WSH_TRIPS_INTERFACE info');
1426: WSH_DEBUG_SV.log(l_module_name,' vehicle_number',p_delivery_rec.vehicle_number);
1427: WSH_DEBUG_SV.log(l_module_name,' vehicle_num_prefix',p_delivery_rec.vehicle_num_prefix);
1428: WSH_DEBUG_SV.log(l_module_name,' route_id',p_delivery_rec.route_id);
1429: WSH_DEBUG_SV.log(l_module_name,' routing_instructions',p_delivery_rec.routing_instructions);
1430: WSH_DEBUG_SV.log(l_module_name,' operator',p_delivery_rec.operator);
1431: WSH_DEBUG_SV.logmsg(l_module_name,' -------------------------------------------------------------------');

Line 1428: WSH_DEBUG_SV.log(l_module_name,' route_id',p_delivery_rec.route_id);

1424: WSH_DEBUG_SV.logmsg(l_module_name,' -------------------------------------------------------------------');
1425: WSH_DEBUG_SV.logmsg(l_module_name,' WSH_TRIPS_INTERFACE info');
1426: WSH_DEBUG_SV.log(l_module_name,' vehicle_number',p_delivery_rec.vehicle_number);
1427: WSH_DEBUG_SV.log(l_module_name,' vehicle_num_prefix',p_delivery_rec.vehicle_num_prefix);
1428: WSH_DEBUG_SV.log(l_module_name,' route_id',p_delivery_rec.route_id);
1429: WSH_DEBUG_SV.log(l_module_name,' routing_instructions',p_delivery_rec.routing_instructions);
1430: WSH_DEBUG_SV.log(l_module_name,' operator',p_delivery_rec.operator);
1431: WSH_DEBUG_SV.logmsg(l_module_name,' -------------------------------------------------------------------');
1432:

Line 1429: WSH_DEBUG_SV.log(l_module_name,' routing_instructions',p_delivery_rec.routing_instructions);

1425: WSH_DEBUG_SV.logmsg(l_module_name,' WSH_TRIPS_INTERFACE info');
1426: WSH_DEBUG_SV.log(l_module_name,' vehicle_number',p_delivery_rec.vehicle_number);
1427: WSH_DEBUG_SV.log(l_module_name,' vehicle_num_prefix',p_delivery_rec.vehicle_num_prefix);
1428: WSH_DEBUG_SV.log(l_module_name,' route_id',p_delivery_rec.route_id);
1429: WSH_DEBUG_SV.log(l_module_name,' routing_instructions',p_delivery_rec.routing_instructions);
1430: WSH_DEBUG_SV.log(l_module_name,' operator',p_delivery_rec.operator);
1431: WSH_DEBUG_SV.logmsg(l_module_name,' -------------------------------------------------------------------');
1432:
1433: WSH_DEBUG_SV.log(l_module_name,'p_delivery_rec.delivery_freight_tab.count',p_delivery_rec.delivery_freight_tab.count);

Line 1430: WSH_DEBUG_SV.log(l_module_name,' operator',p_delivery_rec.operator);

1426: WSH_DEBUG_SV.log(l_module_name,' vehicle_number',p_delivery_rec.vehicle_number);
1427: WSH_DEBUG_SV.log(l_module_name,' vehicle_num_prefix',p_delivery_rec.vehicle_num_prefix);
1428: WSH_DEBUG_SV.log(l_module_name,' route_id',p_delivery_rec.route_id);
1429: WSH_DEBUG_SV.log(l_module_name,' routing_instructions',p_delivery_rec.routing_instructions);
1430: WSH_DEBUG_SV.log(l_module_name,' operator',p_delivery_rec.operator);
1431: WSH_DEBUG_SV.logmsg(l_module_name,' -------------------------------------------------------------------');
1432:
1433: WSH_DEBUG_SV.log(l_module_name,'p_delivery_rec.delivery_freight_tab.count',p_delivery_rec.delivery_freight_tab.count);
1434: --WSH_FREIGHT_COSTS_INTERFACE info

Line 1431: WSH_DEBUG_SV.logmsg(l_module_name,' -------------------------------------------------------------------');

1427: WSH_DEBUG_SV.log(l_module_name,' vehicle_num_prefix',p_delivery_rec.vehicle_num_prefix);
1428: WSH_DEBUG_SV.log(l_module_name,' route_id',p_delivery_rec.route_id);
1429: WSH_DEBUG_SV.log(l_module_name,' routing_instructions',p_delivery_rec.routing_instructions);
1430: WSH_DEBUG_SV.log(l_module_name,' operator',p_delivery_rec.operator);
1431: WSH_DEBUG_SV.logmsg(l_module_name,' -------------------------------------------------------------------');
1432:
1433: WSH_DEBUG_SV.log(l_module_name,'p_delivery_rec.delivery_freight_tab.count',p_delivery_rec.delivery_freight_tab.count);
1434: --WSH_FREIGHT_COSTS_INTERFACE info
1435: IF p_delivery_rec.delivery_freight_tab.count > 0 THEN

Line 1433: WSH_DEBUG_SV.log(l_module_name,'p_delivery_rec.delivery_freight_tab.count',p_delivery_rec.delivery_freight_tab.count);

1429: WSH_DEBUG_SV.log(l_module_name,' routing_instructions',p_delivery_rec.routing_instructions);
1430: WSH_DEBUG_SV.log(l_module_name,' operator',p_delivery_rec.operator);
1431: WSH_DEBUG_SV.logmsg(l_module_name,' -------------------------------------------------------------------');
1432:
1433: WSH_DEBUG_SV.log(l_module_name,'p_delivery_rec.delivery_freight_tab.count',p_delivery_rec.delivery_freight_tab.count);
1434: --WSH_FREIGHT_COSTS_INTERFACE info
1435: IF p_delivery_rec.delivery_freight_tab.count > 0 THEN
1436: WSH_DEBUG_SV.logmsg(l_module_name,' WSH_FREIGHT_COSTS_INTERFACE info for the delivery');
1437: WSH_DEBUG_SV.logmsg(l_module_name,' -------------------------------------------------------------------');

Line 1436: WSH_DEBUG_SV.logmsg(l_module_name,' WSH_FREIGHT_COSTS_INTERFACE info for the delivery');

1432:
1433: WSH_DEBUG_SV.log(l_module_name,'p_delivery_rec.delivery_freight_tab.count',p_delivery_rec.delivery_freight_tab.count);
1434: --WSH_FREIGHT_COSTS_INTERFACE info
1435: IF p_delivery_rec.delivery_freight_tab.count > 0 THEN
1436: WSH_DEBUG_SV.logmsg(l_module_name,' WSH_FREIGHT_COSTS_INTERFACE info for the delivery');
1437: WSH_DEBUG_SV.logmsg(l_module_name,' -------------------------------------------------------------------');
1438: FOR k in 1..p_delivery_rec.delivery_freight_tab.count LOOP
1439: WSH_DEBUG_SV.log(l_module_name,' freight_cost_type_code',p_delivery_rec.delivery_freight_tab(k).freight_cost_type_code);
1440: WSH_DEBUG_SV.log(l_module_name,' unit_amount',p_delivery_rec.delivery_freight_tab(k).unit_amount);

Line 1437: WSH_DEBUG_SV.logmsg(l_module_name,' -------------------------------------------------------------------');

1433: WSH_DEBUG_SV.log(l_module_name,'p_delivery_rec.delivery_freight_tab.count',p_delivery_rec.delivery_freight_tab.count);
1434: --WSH_FREIGHT_COSTS_INTERFACE info
1435: IF p_delivery_rec.delivery_freight_tab.count > 0 THEN
1436: WSH_DEBUG_SV.logmsg(l_module_name,' WSH_FREIGHT_COSTS_INTERFACE info for the delivery');
1437: WSH_DEBUG_SV.logmsg(l_module_name,' -------------------------------------------------------------------');
1438: FOR k in 1..p_delivery_rec.delivery_freight_tab.count LOOP
1439: WSH_DEBUG_SV.log(l_module_name,' freight_cost_type_code',p_delivery_rec.delivery_freight_tab(k).freight_cost_type_code);
1440: WSH_DEBUG_SV.log(l_module_name,' unit_amount',p_delivery_rec.delivery_freight_tab(k).unit_amount);
1441: WSH_DEBUG_SV.log(l_module_name,' currency_code',p_delivery_rec.delivery_freight_tab(k).currency_code);

Line 1439: WSH_DEBUG_SV.log(l_module_name,' freight_cost_type_code',p_delivery_rec.delivery_freight_tab(k).freight_cost_type_code);

1435: IF p_delivery_rec.delivery_freight_tab.count > 0 THEN
1436: WSH_DEBUG_SV.logmsg(l_module_name,' WSH_FREIGHT_COSTS_INTERFACE info for the delivery');
1437: WSH_DEBUG_SV.logmsg(l_module_name,' -------------------------------------------------------------------');
1438: FOR k in 1..p_delivery_rec.delivery_freight_tab.count LOOP
1439: WSH_DEBUG_SV.log(l_module_name,' freight_cost_type_code',p_delivery_rec.delivery_freight_tab(k).freight_cost_type_code);
1440: WSH_DEBUG_SV.log(l_module_name,' unit_amount',p_delivery_rec.delivery_freight_tab(k).unit_amount);
1441: WSH_DEBUG_SV.log(l_module_name,' currency_code',p_delivery_rec.delivery_freight_tab(k).currency_code);
1442: WSH_DEBUG_SV.log(l_module_name,' attribute_category',p_delivery_rec.delivery_freight_tab(k).attribute_category);
1443: WSH_DEBUG_SV.log(l_module_name,' attribute1',p_delivery_rec.delivery_freight_tab(k).attribute1);

Line 1440: WSH_DEBUG_SV.log(l_module_name,' unit_amount',p_delivery_rec.delivery_freight_tab(k).unit_amount);

1436: WSH_DEBUG_SV.logmsg(l_module_name,' WSH_FREIGHT_COSTS_INTERFACE info for the delivery');
1437: WSH_DEBUG_SV.logmsg(l_module_name,' -------------------------------------------------------------------');
1438: FOR k in 1..p_delivery_rec.delivery_freight_tab.count LOOP
1439: WSH_DEBUG_SV.log(l_module_name,' freight_cost_type_code',p_delivery_rec.delivery_freight_tab(k).freight_cost_type_code);
1440: WSH_DEBUG_SV.log(l_module_name,' unit_amount',p_delivery_rec.delivery_freight_tab(k).unit_amount);
1441: WSH_DEBUG_SV.log(l_module_name,' currency_code',p_delivery_rec.delivery_freight_tab(k).currency_code);
1442: WSH_DEBUG_SV.log(l_module_name,' attribute_category',p_delivery_rec.delivery_freight_tab(k).attribute_category);
1443: WSH_DEBUG_SV.log(l_module_name,' attribute1',p_delivery_rec.delivery_freight_tab(k).attribute1);
1444: WSH_DEBUG_SV.log(l_module_name,' attribute2',p_delivery_rec.delivery_freight_tab(k).attribute2);

Line 1441: WSH_DEBUG_SV.log(l_module_name,' currency_code',p_delivery_rec.delivery_freight_tab(k).currency_code);

1437: WSH_DEBUG_SV.logmsg(l_module_name,' -------------------------------------------------------------------');
1438: FOR k in 1..p_delivery_rec.delivery_freight_tab.count LOOP
1439: WSH_DEBUG_SV.log(l_module_name,' freight_cost_type_code',p_delivery_rec.delivery_freight_tab(k).freight_cost_type_code);
1440: WSH_DEBUG_SV.log(l_module_name,' unit_amount',p_delivery_rec.delivery_freight_tab(k).unit_amount);
1441: WSH_DEBUG_SV.log(l_module_name,' currency_code',p_delivery_rec.delivery_freight_tab(k).currency_code);
1442: WSH_DEBUG_SV.log(l_module_name,' attribute_category',p_delivery_rec.delivery_freight_tab(k).attribute_category);
1443: WSH_DEBUG_SV.log(l_module_name,' attribute1',p_delivery_rec.delivery_freight_tab(k).attribute1);
1444: WSH_DEBUG_SV.log(l_module_name,' attribute2',p_delivery_rec.delivery_freight_tab(k).attribute2);
1445: WSH_DEBUG_SV.log(l_module_name,' attribute3',p_delivery_rec.delivery_freight_tab(k).attribute3);

Line 1442: WSH_DEBUG_SV.log(l_module_name,' attribute_category',p_delivery_rec.delivery_freight_tab(k).attribute_category);

1438: FOR k in 1..p_delivery_rec.delivery_freight_tab.count LOOP
1439: WSH_DEBUG_SV.log(l_module_name,' freight_cost_type_code',p_delivery_rec.delivery_freight_tab(k).freight_cost_type_code);
1440: WSH_DEBUG_SV.log(l_module_name,' unit_amount',p_delivery_rec.delivery_freight_tab(k).unit_amount);
1441: WSH_DEBUG_SV.log(l_module_name,' currency_code',p_delivery_rec.delivery_freight_tab(k).currency_code);
1442: WSH_DEBUG_SV.log(l_module_name,' attribute_category',p_delivery_rec.delivery_freight_tab(k).attribute_category);
1443: WSH_DEBUG_SV.log(l_module_name,' attribute1',p_delivery_rec.delivery_freight_tab(k).attribute1);
1444: WSH_DEBUG_SV.log(l_module_name,' attribute2',p_delivery_rec.delivery_freight_tab(k).attribute2);
1445: WSH_DEBUG_SV.log(l_module_name,' attribute3',p_delivery_rec.delivery_freight_tab(k).attribute3);
1446: WSH_DEBUG_SV.log(l_module_name,' attribute4',p_delivery_rec.delivery_freight_tab(k).attribute4);

Line 1443: WSH_DEBUG_SV.log(l_module_name,' attribute1',p_delivery_rec.delivery_freight_tab(k).attribute1);

1439: WSH_DEBUG_SV.log(l_module_name,' freight_cost_type_code',p_delivery_rec.delivery_freight_tab(k).freight_cost_type_code);
1440: WSH_DEBUG_SV.log(l_module_name,' unit_amount',p_delivery_rec.delivery_freight_tab(k).unit_amount);
1441: WSH_DEBUG_SV.log(l_module_name,' currency_code',p_delivery_rec.delivery_freight_tab(k).currency_code);
1442: WSH_DEBUG_SV.log(l_module_name,' attribute_category',p_delivery_rec.delivery_freight_tab(k).attribute_category);
1443: WSH_DEBUG_SV.log(l_module_name,' attribute1',p_delivery_rec.delivery_freight_tab(k).attribute1);
1444: WSH_DEBUG_SV.log(l_module_name,' attribute2',p_delivery_rec.delivery_freight_tab(k).attribute2);
1445: WSH_DEBUG_SV.log(l_module_name,' attribute3',p_delivery_rec.delivery_freight_tab(k).attribute3);
1446: WSH_DEBUG_SV.log(l_module_name,' attribute4',p_delivery_rec.delivery_freight_tab(k).attribute4);
1447: WSH_DEBUG_SV.log(l_module_name,' attribute5',p_delivery_rec.delivery_freight_tab(k).attribute5);

Line 1444: WSH_DEBUG_SV.log(l_module_name,' attribute2',p_delivery_rec.delivery_freight_tab(k).attribute2);

1440: WSH_DEBUG_SV.log(l_module_name,' unit_amount',p_delivery_rec.delivery_freight_tab(k).unit_amount);
1441: WSH_DEBUG_SV.log(l_module_name,' currency_code',p_delivery_rec.delivery_freight_tab(k).currency_code);
1442: WSH_DEBUG_SV.log(l_module_name,' attribute_category',p_delivery_rec.delivery_freight_tab(k).attribute_category);
1443: WSH_DEBUG_SV.log(l_module_name,' attribute1',p_delivery_rec.delivery_freight_tab(k).attribute1);
1444: WSH_DEBUG_SV.log(l_module_name,' attribute2',p_delivery_rec.delivery_freight_tab(k).attribute2);
1445: WSH_DEBUG_SV.log(l_module_name,' attribute3',p_delivery_rec.delivery_freight_tab(k).attribute3);
1446: WSH_DEBUG_SV.log(l_module_name,' attribute4',p_delivery_rec.delivery_freight_tab(k).attribute4);
1447: WSH_DEBUG_SV.log(l_module_name,' attribute5',p_delivery_rec.delivery_freight_tab(k).attribute5);
1448: WSH_DEBUG_SV.log(l_module_name,' attribute6',p_delivery_rec.delivery_freight_tab(k).attribute6);

Line 1445: WSH_DEBUG_SV.log(l_module_name,' attribute3',p_delivery_rec.delivery_freight_tab(k).attribute3);

1441: WSH_DEBUG_SV.log(l_module_name,' currency_code',p_delivery_rec.delivery_freight_tab(k).currency_code);
1442: WSH_DEBUG_SV.log(l_module_name,' attribute_category',p_delivery_rec.delivery_freight_tab(k).attribute_category);
1443: WSH_DEBUG_SV.log(l_module_name,' attribute1',p_delivery_rec.delivery_freight_tab(k).attribute1);
1444: WSH_DEBUG_SV.log(l_module_name,' attribute2',p_delivery_rec.delivery_freight_tab(k).attribute2);
1445: WSH_DEBUG_SV.log(l_module_name,' attribute3',p_delivery_rec.delivery_freight_tab(k).attribute3);
1446: WSH_DEBUG_SV.log(l_module_name,' attribute4',p_delivery_rec.delivery_freight_tab(k).attribute4);
1447: WSH_DEBUG_SV.log(l_module_name,' attribute5',p_delivery_rec.delivery_freight_tab(k).attribute5);
1448: WSH_DEBUG_SV.log(l_module_name,' attribute6',p_delivery_rec.delivery_freight_tab(k).attribute6);
1449: WSH_DEBUG_SV.log(l_module_name,' attribute7',p_delivery_rec.delivery_freight_tab(k).attribute7);

Line 1446: WSH_DEBUG_SV.log(l_module_name,' attribute4',p_delivery_rec.delivery_freight_tab(k).attribute4);

1442: WSH_DEBUG_SV.log(l_module_name,' attribute_category',p_delivery_rec.delivery_freight_tab(k).attribute_category);
1443: WSH_DEBUG_SV.log(l_module_name,' attribute1',p_delivery_rec.delivery_freight_tab(k).attribute1);
1444: WSH_DEBUG_SV.log(l_module_name,' attribute2',p_delivery_rec.delivery_freight_tab(k).attribute2);
1445: WSH_DEBUG_SV.log(l_module_name,' attribute3',p_delivery_rec.delivery_freight_tab(k).attribute3);
1446: WSH_DEBUG_SV.log(l_module_name,' attribute4',p_delivery_rec.delivery_freight_tab(k).attribute4);
1447: WSH_DEBUG_SV.log(l_module_name,' attribute5',p_delivery_rec.delivery_freight_tab(k).attribute5);
1448: WSH_DEBUG_SV.log(l_module_name,' attribute6',p_delivery_rec.delivery_freight_tab(k).attribute6);
1449: WSH_DEBUG_SV.log(l_module_name,' attribute7',p_delivery_rec.delivery_freight_tab(k).attribute7);
1450: WSH_DEBUG_SV.log(l_module_name,' attribute8',p_delivery_rec.delivery_freight_tab(k).attribute8);

Line 1447: WSH_DEBUG_SV.log(l_module_name,' attribute5',p_delivery_rec.delivery_freight_tab(k).attribute5);

1443: WSH_DEBUG_SV.log(l_module_name,' attribute1',p_delivery_rec.delivery_freight_tab(k).attribute1);
1444: WSH_DEBUG_SV.log(l_module_name,' attribute2',p_delivery_rec.delivery_freight_tab(k).attribute2);
1445: WSH_DEBUG_SV.log(l_module_name,' attribute3',p_delivery_rec.delivery_freight_tab(k).attribute3);
1446: WSH_DEBUG_SV.log(l_module_name,' attribute4',p_delivery_rec.delivery_freight_tab(k).attribute4);
1447: WSH_DEBUG_SV.log(l_module_name,' attribute5',p_delivery_rec.delivery_freight_tab(k).attribute5);
1448: WSH_DEBUG_SV.log(l_module_name,' attribute6',p_delivery_rec.delivery_freight_tab(k).attribute6);
1449: WSH_DEBUG_SV.log(l_module_name,' attribute7',p_delivery_rec.delivery_freight_tab(k).attribute7);
1450: WSH_DEBUG_SV.log(l_module_name,' attribute8',p_delivery_rec.delivery_freight_tab(k).attribute8);
1451: WSH_DEBUG_SV.log(l_module_name,' attribute9',p_delivery_rec.delivery_freight_tab(k).attribute9);

Line 1448: WSH_DEBUG_SV.log(l_module_name,' attribute6',p_delivery_rec.delivery_freight_tab(k).attribute6);

1444: WSH_DEBUG_SV.log(l_module_name,' attribute2',p_delivery_rec.delivery_freight_tab(k).attribute2);
1445: WSH_DEBUG_SV.log(l_module_name,' attribute3',p_delivery_rec.delivery_freight_tab(k).attribute3);
1446: WSH_DEBUG_SV.log(l_module_name,' attribute4',p_delivery_rec.delivery_freight_tab(k).attribute4);
1447: WSH_DEBUG_SV.log(l_module_name,' attribute5',p_delivery_rec.delivery_freight_tab(k).attribute5);
1448: WSH_DEBUG_SV.log(l_module_name,' attribute6',p_delivery_rec.delivery_freight_tab(k).attribute6);
1449: WSH_DEBUG_SV.log(l_module_name,' attribute7',p_delivery_rec.delivery_freight_tab(k).attribute7);
1450: WSH_DEBUG_SV.log(l_module_name,' attribute8',p_delivery_rec.delivery_freight_tab(k).attribute8);
1451: WSH_DEBUG_SV.log(l_module_name,' attribute9',p_delivery_rec.delivery_freight_tab(k).attribute9);
1452: WSH_DEBUG_SV.log(l_module_name,' attribute10',p_delivery_rec.delivery_freight_tab(k).attribute10);

Line 1449: WSH_DEBUG_SV.log(l_module_name,' attribute7',p_delivery_rec.delivery_freight_tab(k).attribute7);

1445: WSH_DEBUG_SV.log(l_module_name,' attribute3',p_delivery_rec.delivery_freight_tab(k).attribute3);
1446: WSH_DEBUG_SV.log(l_module_name,' attribute4',p_delivery_rec.delivery_freight_tab(k).attribute4);
1447: WSH_DEBUG_SV.log(l_module_name,' attribute5',p_delivery_rec.delivery_freight_tab(k).attribute5);
1448: WSH_DEBUG_SV.log(l_module_name,' attribute6',p_delivery_rec.delivery_freight_tab(k).attribute6);
1449: WSH_DEBUG_SV.log(l_module_name,' attribute7',p_delivery_rec.delivery_freight_tab(k).attribute7);
1450: WSH_DEBUG_SV.log(l_module_name,' attribute8',p_delivery_rec.delivery_freight_tab(k).attribute8);
1451: WSH_DEBUG_SV.log(l_module_name,' attribute9',p_delivery_rec.delivery_freight_tab(k).attribute9);
1452: WSH_DEBUG_SV.log(l_module_name,' attribute10',p_delivery_rec.delivery_freight_tab(k).attribute10);
1453: WSH_DEBUG_SV.log(l_module_name,' attribute11',p_delivery_rec.delivery_freight_tab(k).attribute11);

Line 1450: WSH_DEBUG_SV.log(l_module_name,' attribute8',p_delivery_rec.delivery_freight_tab(k).attribute8);

1446: WSH_DEBUG_SV.log(l_module_name,' attribute4',p_delivery_rec.delivery_freight_tab(k).attribute4);
1447: WSH_DEBUG_SV.log(l_module_name,' attribute5',p_delivery_rec.delivery_freight_tab(k).attribute5);
1448: WSH_DEBUG_SV.log(l_module_name,' attribute6',p_delivery_rec.delivery_freight_tab(k).attribute6);
1449: WSH_DEBUG_SV.log(l_module_name,' attribute7',p_delivery_rec.delivery_freight_tab(k).attribute7);
1450: WSH_DEBUG_SV.log(l_module_name,' attribute8',p_delivery_rec.delivery_freight_tab(k).attribute8);
1451: WSH_DEBUG_SV.log(l_module_name,' attribute9',p_delivery_rec.delivery_freight_tab(k).attribute9);
1452: WSH_DEBUG_SV.log(l_module_name,' attribute10',p_delivery_rec.delivery_freight_tab(k).attribute10);
1453: WSH_DEBUG_SV.log(l_module_name,' attribute11',p_delivery_rec.delivery_freight_tab(k).attribute11);
1454: WSH_DEBUG_SV.log(l_module_name,' attribute12',p_delivery_rec.delivery_freight_tab(k).attribute12);

Line 1451: WSH_DEBUG_SV.log(l_module_name,' attribute9',p_delivery_rec.delivery_freight_tab(k).attribute9);

1447: WSH_DEBUG_SV.log(l_module_name,' attribute5',p_delivery_rec.delivery_freight_tab(k).attribute5);
1448: WSH_DEBUG_SV.log(l_module_name,' attribute6',p_delivery_rec.delivery_freight_tab(k).attribute6);
1449: WSH_DEBUG_SV.log(l_module_name,' attribute7',p_delivery_rec.delivery_freight_tab(k).attribute7);
1450: WSH_DEBUG_SV.log(l_module_name,' attribute8',p_delivery_rec.delivery_freight_tab(k).attribute8);
1451: WSH_DEBUG_SV.log(l_module_name,' attribute9',p_delivery_rec.delivery_freight_tab(k).attribute9);
1452: WSH_DEBUG_SV.log(l_module_name,' attribute10',p_delivery_rec.delivery_freight_tab(k).attribute10);
1453: WSH_DEBUG_SV.log(l_module_name,' attribute11',p_delivery_rec.delivery_freight_tab(k).attribute11);
1454: WSH_DEBUG_SV.log(l_module_name,' attribute12',p_delivery_rec.delivery_freight_tab(k).attribute12);
1455: WSH_DEBUG_SV.log(l_module_name,' attribute13',p_delivery_rec.delivery_freight_tab(k).attribute13);

Line 1452: WSH_DEBUG_SV.log(l_module_name,' attribute10',p_delivery_rec.delivery_freight_tab(k).attribute10);

1448: WSH_DEBUG_SV.log(l_module_name,' attribute6',p_delivery_rec.delivery_freight_tab(k).attribute6);
1449: WSH_DEBUG_SV.log(l_module_name,' attribute7',p_delivery_rec.delivery_freight_tab(k).attribute7);
1450: WSH_DEBUG_SV.log(l_module_name,' attribute8',p_delivery_rec.delivery_freight_tab(k).attribute8);
1451: WSH_DEBUG_SV.log(l_module_name,' attribute9',p_delivery_rec.delivery_freight_tab(k).attribute9);
1452: WSH_DEBUG_SV.log(l_module_name,' attribute10',p_delivery_rec.delivery_freight_tab(k).attribute10);
1453: WSH_DEBUG_SV.log(l_module_name,' attribute11',p_delivery_rec.delivery_freight_tab(k).attribute11);
1454: WSH_DEBUG_SV.log(l_module_name,' attribute12',p_delivery_rec.delivery_freight_tab(k).attribute12);
1455: WSH_DEBUG_SV.log(l_module_name,' attribute13',p_delivery_rec.delivery_freight_tab(k).attribute13);
1456: WSH_DEBUG_SV.log(l_module_name,' attribute14',p_delivery_rec.delivery_freight_tab(k).attribute14);

Line 1453: WSH_DEBUG_SV.log(l_module_name,' attribute11',p_delivery_rec.delivery_freight_tab(k).attribute11);

1449: WSH_DEBUG_SV.log(l_module_name,' attribute7',p_delivery_rec.delivery_freight_tab(k).attribute7);
1450: WSH_DEBUG_SV.log(l_module_name,' attribute8',p_delivery_rec.delivery_freight_tab(k).attribute8);
1451: WSH_DEBUG_SV.log(l_module_name,' attribute9',p_delivery_rec.delivery_freight_tab(k).attribute9);
1452: WSH_DEBUG_SV.log(l_module_name,' attribute10',p_delivery_rec.delivery_freight_tab(k).attribute10);
1453: WSH_DEBUG_SV.log(l_module_name,' attribute11',p_delivery_rec.delivery_freight_tab(k).attribute11);
1454: WSH_DEBUG_SV.log(l_module_name,' attribute12',p_delivery_rec.delivery_freight_tab(k).attribute12);
1455: WSH_DEBUG_SV.log(l_module_name,' attribute13',p_delivery_rec.delivery_freight_tab(k).attribute13);
1456: WSH_DEBUG_SV.log(l_module_name,' attribute14',p_delivery_rec.delivery_freight_tab(k).attribute14);
1457: WSH_DEBUG_SV.log(l_module_name,' attribute15',p_delivery_rec.delivery_freight_tab(k).attribute15);

Line 1454: WSH_DEBUG_SV.log(l_module_name,' attribute12',p_delivery_rec.delivery_freight_tab(k).attribute12);

1450: WSH_DEBUG_SV.log(l_module_name,' attribute8',p_delivery_rec.delivery_freight_tab(k).attribute8);
1451: WSH_DEBUG_SV.log(l_module_name,' attribute9',p_delivery_rec.delivery_freight_tab(k).attribute9);
1452: WSH_DEBUG_SV.log(l_module_name,' attribute10',p_delivery_rec.delivery_freight_tab(k).attribute10);
1453: WSH_DEBUG_SV.log(l_module_name,' attribute11',p_delivery_rec.delivery_freight_tab(k).attribute11);
1454: WSH_DEBUG_SV.log(l_module_name,' attribute12',p_delivery_rec.delivery_freight_tab(k).attribute12);
1455: WSH_DEBUG_SV.log(l_module_name,' attribute13',p_delivery_rec.delivery_freight_tab(k).attribute13);
1456: WSH_DEBUG_SV.log(l_module_name,' attribute14',p_delivery_rec.delivery_freight_tab(k).attribute14);
1457: WSH_DEBUG_SV.log(l_module_name,' attribute15',p_delivery_rec.delivery_freight_tab(k).attribute15);
1458: END LOOP;

Line 1455: WSH_DEBUG_SV.log(l_module_name,' attribute13',p_delivery_rec.delivery_freight_tab(k).attribute13);

1451: WSH_DEBUG_SV.log(l_module_name,' attribute9',p_delivery_rec.delivery_freight_tab(k).attribute9);
1452: WSH_DEBUG_SV.log(l_module_name,' attribute10',p_delivery_rec.delivery_freight_tab(k).attribute10);
1453: WSH_DEBUG_SV.log(l_module_name,' attribute11',p_delivery_rec.delivery_freight_tab(k).attribute11);
1454: WSH_DEBUG_SV.log(l_module_name,' attribute12',p_delivery_rec.delivery_freight_tab(k).attribute12);
1455: WSH_DEBUG_SV.log(l_module_name,' attribute13',p_delivery_rec.delivery_freight_tab(k).attribute13);
1456: WSH_DEBUG_SV.log(l_module_name,' attribute14',p_delivery_rec.delivery_freight_tab(k).attribute14);
1457: WSH_DEBUG_SV.log(l_module_name,' attribute15',p_delivery_rec.delivery_freight_tab(k).attribute15);
1458: END LOOP;
1459: END IF;

Line 1456: WSH_DEBUG_SV.log(l_module_name,' attribute14',p_delivery_rec.delivery_freight_tab(k).attribute14);

1452: WSH_DEBUG_SV.log(l_module_name,' attribute10',p_delivery_rec.delivery_freight_tab(k).attribute10);
1453: WSH_DEBUG_SV.log(l_module_name,' attribute11',p_delivery_rec.delivery_freight_tab(k).attribute11);
1454: WSH_DEBUG_SV.log(l_module_name,' attribute12',p_delivery_rec.delivery_freight_tab(k).attribute12);
1455: WSH_DEBUG_SV.log(l_module_name,' attribute13',p_delivery_rec.delivery_freight_tab(k).attribute13);
1456: WSH_DEBUG_SV.log(l_module_name,' attribute14',p_delivery_rec.delivery_freight_tab(k).attribute14);
1457: WSH_DEBUG_SV.log(l_module_name,' attribute15',p_delivery_rec.delivery_freight_tab(k).attribute15);
1458: END LOOP;
1459: END IF;
1460: WSH_DEBUG_SV.log(l_module_name,'delivery_details_tab.count',p_delivery_rec.delivery_details_tab.count);

Line 1457: WSH_DEBUG_SV.log(l_module_name,' attribute15',p_delivery_rec.delivery_freight_tab(k).attribute15);

1453: WSH_DEBUG_SV.log(l_module_name,' attribute11',p_delivery_rec.delivery_freight_tab(k).attribute11);
1454: WSH_DEBUG_SV.log(l_module_name,' attribute12',p_delivery_rec.delivery_freight_tab(k).attribute12);
1455: WSH_DEBUG_SV.log(l_module_name,' attribute13',p_delivery_rec.delivery_freight_tab(k).attribute13);
1456: WSH_DEBUG_SV.log(l_module_name,' attribute14',p_delivery_rec.delivery_freight_tab(k).attribute14);
1457: WSH_DEBUG_SV.log(l_module_name,' attribute15',p_delivery_rec.delivery_freight_tab(k).attribute15);
1458: END LOOP;
1459: END IF;
1460: WSH_DEBUG_SV.log(l_module_name,'delivery_details_tab.count',p_delivery_rec.delivery_details_tab.count);
1461: IF p_delivery_rec.delivery_details_tab.count > 0 THEN --Delivery details count

Line 1460: WSH_DEBUG_SV.log(l_module_name,'delivery_details_tab.count',p_delivery_rec.delivery_details_tab.count);

1456: WSH_DEBUG_SV.log(l_module_name,' attribute14',p_delivery_rec.delivery_freight_tab(k).attribute14);
1457: WSH_DEBUG_SV.log(l_module_name,' attribute15',p_delivery_rec.delivery_freight_tab(k).attribute15);
1458: END LOOP;
1459: END IF;
1460: WSH_DEBUG_SV.log(l_module_name,'delivery_details_tab.count',p_delivery_rec.delivery_details_tab.count);
1461: IF p_delivery_rec.delivery_details_tab.count > 0 THEN --Delivery details count
1462: --{
1463: WSH_DEBUG_SV.logmsg(l_module_name,' WSH_DEL_DETAILS_INTERFACE info for the delivery');
1464: WSH_DEBUG_SV.logmsg(l_module_name,' -------------------------------------------------------------------');

Line 1463: WSH_DEBUG_SV.logmsg(l_module_name,' WSH_DEL_DETAILS_INTERFACE info for the delivery');

1459: END IF;
1460: WSH_DEBUG_SV.log(l_module_name,'delivery_details_tab.count',p_delivery_rec.delivery_details_tab.count);
1461: IF p_delivery_rec.delivery_details_tab.count > 0 THEN --Delivery details count
1462: --{
1463: WSH_DEBUG_SV.logmsg(l_module_name,' WSH_DEL_DETAILS_INTERFACE info for the delivery');
1464: WSH_DEBUG_SV.logmsg(l_module_name,' -------------------------------------------------------------------');
1465:
1466: FOR I in 1..p_delivery_rec.delivery_details_tab.count LOOP
1467: --{

Line 1464: WSH_DEBUG_SV.logmsg(l_module_name,' -------------------------------------------------------------------');

1460: WSH_DEBUG_SV.log(l_module_name,'delivery_details_tab.count',p_delivery_rec.delivery_details_tab.count);
1461: IF p_delivery_rec.delivery_details_tab.count > 0 THEN --Delivery details count
1462: --{
1463: WSH_DEBUG_SV.logmsg(l_module_name,' WSH_DEL_DETAILS_INTERFACE info for the delivery');
1464: WSH_DEBUG_SV.logmsg(l_module_name,' -------------------------------------------------------------------');
1465:
1466: FOR I in 1..p_delivery_rec.delivery_details_tab.count LOOP
1467: --{
1468: WSH_DEBUG_SV.log(l_module_name,' delivery_detail_number',p_delivery_rec.delivery_details_tab(I).delivery_detail_number);

Line 1468: WSH_DEBUG_SV.log(l_module_name,' delivery_detail_number',p_delivery_rec.delivery_details_tab(I).delivery_detail_number);

1464: WSH_DEBUG_SV.logmsg(l_module_name,' -------------------------------------------------------------------');
1465:
1466: FOR I in 1..p_delivery_rec.delivery_details_tab.count LOOP
1467: --{
1468: WSH_DEBUG_SV.log(l_module_name,' delivery_detail_number',p_delivery_rec.delivery_details_tab(I).delivery_detail_number);
1469: WSH_DEBUG_SV.log(l_module_name,' source_line_id',p_delivery_rec.delivery_details_tab(I).source_line_id);
1470: WSH_DEBUG_SV.log(l_module_name,' source_header_number',p_delivery_rec.delivery_details_tab(I).source_header_number);
1471: WSH_DEBUG_SV.log(l_module_name,' item_number',p_delivery_rec.delivery_details_tab(I).item_number);
1472: WSH_DEBUG_SV.log(l_module_name,' item_description',p_delivery_rec.delivery_details_tab(I).item_description);

Line 1469: WSH_DEBUG_SV.log(l_module_name,' source_line_id',p_delivery_rec.delivery_details_tab(I).source_line_id);

1465:
1466: FOR I in 1..p_delivery_rec.delivery_details_tab.count LOOP
1467: --{
1468: WSH_DEBUG_SV.log(l_module_name,' delivery_detail_number',p_delivery_rec.delivery_details_tab(I).delivery_detail_number);
1469: WSH_DEBUG_SV.log(l_module_name,' source_line_id',p_delivery_rec.delivery_details_tab(I).source_line_id);
1470: WSH_DEBUG_SV.log(l_module_name,' source_header_number',p_delivery_rec.delivery_details_tab(I).source_header_number);
1471: WSH_DEBUG_SV.log(l_module_name,' item_number',p_delivery_rec.delivery_details_tab(I).item_number);
1472: WSH_DEBUG_SV.log(l_module_name,' item_description',p_delivery_rec.delivery_details_tab(I).item_description);
1473: WSH_DEBUG_SV.log(l_module_name,' line_direction',p_delivery_rec.delivery_details_tab(I).line_direction);

Line 1470: WSH_DEBUG_SV.log(l_module_name,' source_header_number',p_delivery_rec.delivery_details_tab(I).source_header_number);

1466: FOR I in 1..p_delivery_rec.delivery_details_tab.count LOOP
1467: --{
1468: WSH_DEBUG_SV.log(l_module_name,' delivery_detail_number',p_delivery_rec.delivery_details_tab(I).delivery_detail_number);
1469: WSH_DEBUG_SV.log(l_module_name,' source_line_id',p_delivery_rec.delivery_details_tab(I).source_line_id);
1470: WSH_DEBUG_SV.log(l_module_name,' source_header_number',p_delivery_rec.delivery_details_tab(I).source_header_number);
1471: WSH_DEBUG_SV.log(l_module_name,' item_number',p_delivery_rec.delivery_details_tab(I).item_number);
1472: WSH_DEBUG_SV.log(l_module_name,' item_description',p_delivery_rec.delivery_details_tab(I).item_description);
1473: WSH_DEBUG_SV.log(l_module_name,' line_direction',p_delivery_rec.delivery_details_tab(I).line_direction);
1474: WSH_DEBUG_SV.log(l_module_name,' gross_weight',p_delivery_rec.delivery_details_tab(I).gross_weight);

Line 1471: WSH_DEBUG_SV.log(l_module_name,' item_number',p_delivery_rec.delivery_details_tab(I).item_number);

1467: --{
1468: WSH_DEBUG_SV.log(l_module_name,' delivery_detail_number',p_delivery_rec.delivery_details_tab(I).delivery_detail_number);
1469: WSH_DEBUG_SV.log(l_module_name,' source_line_id',p_delivery_rec.delivery_details_tab(I).source_line_id);
1470: WSH_DEBUG_SV.log(l_module_name,' source_header_number',p_delivery_rec.delivery_details_tab(I).source_header_number);
1471: WSH_DEBUG_SV.log(l_module_name,' item_number',p_delivery_rec.delivery_details_tab(I).item_number);
1472: WSH_DEBUG_SV.log(l_module_name,' item_description',p_delivery_rec.delivery_details_tab(I).item_description);
1473: WSH_DEBUG_SV.log(l_module_name,' line_direction',p_delivery_rec.delivery_details_tab(I).line_direction);
1474: WSH_DEBUG_SV.log(l_module_name,' gross_weight',p_delivery_rec.delivery_details_tab(I).gross_weight);
1475: WSH_DEBUG_SV.log(l_module_name,' net_weight',p_delivery_rec.delivery_details_tab(I).net_weight);

Line 1472: WSH_DEBUG_SV.log(l_module_name,' item_description',p_delivery_rec.delivery_details_tab(I).item_description);

1468: WSH_DEBUG_SV.log(l_module_name,' delivery_detail_number',p_delivery_rec.delivery_details_tab(I).delivery_detail_number);
1469: WSH_DEBUG_SV.log(l_module_name,' source_line_id',p_delivery_rec.delivery_details_tab(I).source_line_id);
1470: WSH_DEBUG_SV.log(l_module_name,' source_header_number',p_delivery_rec.delivery_details_tab(I).source_header_number);
1471: WSH_DEBUG_SV.log(l_module_name,' item_number',p_delivery_rec.delivery_details_tab(I).item_number);
1472: WSH_DEBUG_SV.log(l_module_name,' item_description',p_delivery_rec.delivery_details_tab(I).item_description);
1473: WSH_DEBUG_SV.log(l_module_name,' line_direction',p_delivery_rec.delivery_details_tab(I).line_direction);
1474: WSH_DEBUG_SV.log(l_module_name,' gross_weight',p_delivery_rec.delivery_details_tab(I).gross_weight);
1475: WSH_DEBUG_SV.log(l_module_name,' net_weight',p_delivery_rec.delivery_details_tab(I).net_weight);
1476: WSH_DEBUG_SV.log(l_module_name,' weight_uom_code',p_delivery_rec.delivery_details_tab(I).weight_uom_code);

Line 1473: WSH_DEBUG_SV.log(l_module_name,' line_direction',p_delivery_rec.delivery_details_tab(I).line_direction);

1469: WSH_DEBUG_SV.log(l_module_name,' source_line_id',p_delivery_rec.delivery_details_tab(I).source_line_id);
1470: WSH_DEBUG_SV.log(l_module_name,' source_header_number',p_delivery_rec.delivery_details_tab(I).source_header_number);
1471: WSH_DEBUG_SV.log(l_module_name,' item_number',p_delivery_rec.delivery_details_tab(I).item_number);
1472: WSH_DEBUG_SV.log(l_module_name,' item_description',p_delivery_rec.delivery_details_tab(I).item_description);
1473: WSH_DEBUG_SV.log(l_module_name,' line_direction',p_delivery_rec.delivery_details_tab(I).line_direction);
1474: WSH_DEBUG_SV.log(l_module_name,' gross_weight',p_delivery_rec.delivery_details_tab(I).gross_weight);
1475: WSH_DEBUG_SV.log(l_module_name,' net_weight',p_delivery_rec.delivery_details_tab(I).net_weight);
1476: WSH_DEBUG_SV.log(l_module_name,' weight_uom_code',p_delivery_rec.delivery_details_tab(I).weight_uom_code);
1477: WSH_DEBUG_SV.log(l_module_name,' volume',p_delivery_rec.delivery_details_tab(I).volume);

Line 1474: WSH_DEBUG_SV.log(l_module_name,' gross_weight',p_delivery_rec.delivery_details_tab(I).gross_weight);

1470: WSH_DEBUG_SV.log(l_module_name,' source_header_number',p_delivery_rec.delivery_details_tab(I).source_header_number);
1471: WSH_DEBUG_SV.log(l_module_name,' item_number',p_delivery_rec.delivery_details_tab(I).item_number);
1472: WSH_DEBUG_SV.log(l_module_name,' item_description',p_delivery_rec.delivery_details_tab(I).item_description);
1473: WSH_DEBUG_SV.log(l_module_name,' line_direction',p_delivery_rec.delivery_details_tab(I).line_direction);
1474: WSH_DEBUG_SV.log(l_module_name,' gross_weight',p_delivery_rec.delivery_details_tab(I).gross_weight);
1475: WSH_DEBUG_SV.log(l_module_name,' net_weight',p_delivery_rec.delivery_details_tab(I).net_weight);
1476: WSH_DEBUG_SV.log(l_module_name,' weight_uom_code',p_delivery_rec.delivery_details_tab(I).weight_uom_code);
1477: WSH_DEBUG_SV.log(l_module_name,' volume',p_delivery_rec.delivery_details_tab(I).volume);
1478: WSH_DEBUG_SV.log(l_module_name,' volume_uom_code',p_delivery_rec.delivery_details_tab(I).volume_uom_code);

Line 1475: WSH_DEBUG_SV.log(l_module_name,' net_weight',p_delivery_rec.delivery_details_tab(I).net_weight);

1471: WSH_DEBUG_SV.log(l_module_name,' item_number',p_delivery_rec.delivery_details_tab(I).item_number);
1472: WSH_DEBUG_SV.log(l_module_name,' item_description',p_delivery_rec.delivery_details_tab(I).item_description);
1473: WSH_DEBUG_SV.log(l_module_name,' line_direction',p_delivery_rec.delivery_details_tab(I).line_direction);
1474: WSH_DEBUG_SV.log(l_module_name,' gross_weight',p_delivery_rec.delivery_details_tab(I).gross_weight);
1475: WSH_DEBUG_SV.log(l_module_name,' net_weight',p_delivery_rec.delivery_details_tab(I).net_weight);
1476: WSH_DEBUG_SV.log(l_module_name,' weight_uom_code',p_delivery_rec.delivery_details_tab(I).weight_uom_code);
1477: WSH_DEBUG_SV.log(l_module_name,' volume',p_delivery_rec.delivery_details_tab(I).volume);
1478: WSH_DEBUG_SV.log(l_module_name,' volume_uom_code',p_delivery_rec.delivery_details_tab(I).volume_uom_code);
1479: WSH_DEBUG_SV.log(l_module_name,' wv_frozen_flag',p_delivery_rec.delivery_details_tab(I).wv_frozen_flag);

Line 1476: WSH_DEBUG_SV.log(l_module_name,' weight_uom_code',p_delivery_rec.delivery_details_tab(I).weight_uom_code);

1472: WSH_DEBUG_SV.log(l_module_name,' item_description',p_delivery_rec.delivery_details_tab(I).item_description);
1473: WSH_DEBUG_SV.log(l_module_name,' line_direction',p_delivery_rec.delivery_details_tab(I).line_direction);
1474: WSH_DEBUG_SV.log(l_module_name,' gross_weight',p_delivery_rec.delivery_details_tab(I).gross_weight);
1475: WSH_DEBUG_SV.log(l_module_name,' net_weight',p_delivery_rec.delivery_details_tab(I).net_weight);
1476: WSH_DEBUG_SV.log(l_module_name,' weight_uom_code',p_delivery_rec.delivery_details_tab(I).weight_uom_code);
1477: WSH_DEBUG_SV.log(l_module_name,' volume',p_delivery_rec.delivery_details_tab(I).volume);
1478: WSH_DEBUG_SV.log(l_module_name,' volume_uom_code',p_delivery_rec.delivery_details_tab(I).volume_uom_code);
1479: WSH_DEBUG_SV.log(l_module_name,' wv_frozen_flag',p_delivery_rec.delivery_details_tab(I).wv_frozen_flag);
1480: WSH_DEBUG_SV.log(l_module_name,' requested_quantity',p_delivery_rec.delivery_details_tab(I).requested_quantity);

Line 1477: WSH_DEBUG_SV.log(l_module_name,' volume',p_delivery_rec.delivery_details_tab(I).volume);

1473: WSH_DEBUG_SV.log(l_module_name,' line_direction',p_delivery_rec.delivery_details_tab(I).line_direction);
1474: WSH_DEBUG_SV.log(l_module_name,' gross_weight',p_delivery_rec.delivery_details_tab(I).gross_weight);
1475: WSH_DEBUG_SV.log(l_module_name,' net_weight',p_delivery_rec.delivery_details_tab(I).net_weight);
1476: WSH_DEBUG_SV.log(l_module_name,' weight_uom_code',p_delivery_rec.delivery_details_tab(I).weight_uom_code);
1477: WSH_DEBUG_SV.log(l_module_name,' volume',p_delivery_rec.delivery_details_tab(I).volume);
1478: WSH_DEBUG_SV.log(l_module_name,' volume_uom_code',p_delivery_rec.delivery_details_tab(I).volume_uom_code);
1479: WSH_DEBUG_SV.log(l_module_name,' wv_frozen_flag',p_delivery_rec.delivery_details_tab(I).wv_frozen_flag);
1480: WSH_DEBUG_SV.log(l_module_name,' requested_quantity',p_delivery_rec.delivery_details_tab(I).requested_quantity);
1481: WSH_DEBUG_SV.log(l_module_name,' requested_quantity_uom',p_delivery_rec.delivery_details_tab(I).requested_quantity_uom);

Line 1478: WSH_DEBUG_SV.log(l_module_name,' volume_uom_code',p_delivery_rec.delivery_details_tab(I).volume_uom_code);

1474: WSH_DEBUG_SV.log(l_module_name,' gross_weight',p_delivery_rec.delivery_details_tab(I).gross_weight);
1475: WSH_DEBUG_SV.log(l_module_name,' net_weight',p_delivery_rec.delivery_details_tab(I).net_weight);
1476: WSH_DEBUG_SV.log(l_module_name,' weight_uom_code',p_delivery_rec.delivery_details_tab(I).weight_uom_code);
1477: WSH_DEBUG_SV.log(l_module_name,' volume',p_delivery_rec.delivery_details_tab(I).volume);
1478: WSH_DEBUG_SV.log(l_module_name,' volume_uom_code',p_delivery_rec.delivery_details_tab(I).volume_uom_code);
1479: WSH_DEBUG_SV.log(l_module_name,' wv_frozen_flag',p_delivery_rec.delivery_details_tab(I).wv_frozen_flag);
1480: WSH_DEBUG_SV.log(l_module_name,' requested_quantity',p_delivery_rec.delivery_details_tab(I).requested_quantity);
1481: WSH_DEBUG_SV.log(l_module_name,' requested_quantity_uom',p_delivery_rec.delivery_details_tab(I).requested_quantity_uom);
1482: WSH_DEBUG_SV.log(l_module_name,' shipped_quantity',p_delivery_rec.delivery_details_tab(I).shipped_quantity);

Line 1479: WSH_DEBUG_SV.log(l_module_name,' wv_frozen_flag',p_delivery_rec.delivery_details_tab(I).wv_frozen_flag);

1475: WSH_DEBUG_SV.log(l_module_name,' net_weight',p_delivery_rec.delivery_details_tab(I).net_weight);
1476: WSH_DEBUG_SV.log(l_module_name,' weight_uom_code',p_delivery_rec.delivery_details_tab(I).weight_uom_code);
1477: WSH_DEBUG_SV.log(l_module_name,' volume',p_delivery_rec.delivery_details_tab(I).volume);
1478: WSH_DEBUG_SV.log(l_module_name,' volume_uom_code',p_delivery_rec.delivery_details_tab(I).volume_uom_code);
1479: WSH_DEBUG_SV.log(l_module_name,' wv_frozen_flag',p_delivery_rec.delivery_details_tab(I).wv_frozen_flag);
1480: WSH_DEBUG_SV.log(l_module_name,' requested_quantity',p_delivery_rec.delivery_details_tab(I).requested_quantity);
1481: WSH_DEBUG_SV.log(l_module_name,' requested_quantity_uom',p_delivery_rec.delivery_details_tab(I).requested_quantity_uom);
1482: WSH_DEBUG_SV.log(l_module_name,' shipped_quantity',p_delivery_rec.delivery_details_tab(I).shipped_quantity);
1483: WSH_DEBUG_SV.log(l_module_name,' cycle_count_quantity',p_delivery_rec.delivery_details_tab(I).cycle_count_quantity);

Line 1480: WSH_DEBUG_SV.log(l_module_name,' requested_quantity',p_delivery_rec.delivery_details_tab(I).requested_quantity);

1476: WSH_DEBUG_SV.log(l_module_name,' weight_uom_code',p_delivery_rec.delivery_details_tab(I).weight_uom_code);
1477: WSH_DEBUG_SV.log(l_module_name,' volume',p_delivery_rec.delivery_details_tab(I).volume);
1478: WSH_DEBUG_SV.log(l_module_name,' volume_uom_code',p_delivery_rec.delivery_details_tab(I).volume_uom_code);
1479: WSH_DEBUG_SV.log(l_module_name,' wv_frozen_flag',p_delivery_rec.delivery_details_tab(I).wv_frozen_flag);
1480: WSH_DEBUG_SV.log(l_module_name,' requested_quantity',p_delivery_rec.delivery_details_tab(I).requested_quantity);
1481: WSH_DEBUG_SV.log(l_module_name,' requested_quantity_uom',p_delivery_rec.delivery_details_tab(I).requested_quantity_uom);
1482: WSH_DEBUG_SV.log(l_module_name,' shipped_quantity',p_delivery_rec.delivery_details_tab(I).shipped_quantity);
1483: WSH_DEBUG_SV.log(l_module_name,' cycle_count_quantity',p_delivery_rec.delivery_details_tab(I).cycle_count_quantity);
1484: WSH_DEBUG_SV.log(l_module_name,' subinventory',p_delivery_rec.delivery_details_tab(I).subinventory);

Line 1481: WSH_DEBUG_SV.log(l_module_name,' requested_quantity_uom',p_delivery_rec.delivery_details_tab(I).requested_quantity_uom);

1477: WSH_DEBUG_SV.log(l_module_name,' volume',p_delivery_rec.delivery_details_tab(I).volume);
1478: WSH_DEBUG_SV.log(l_module_name,' volume_uom_code',p_delivery_rec.delivery_details_tab(I).volume_uom_code);
1479: WSH_DEBUG_SV.log(l_module_name,' wv_frozen_flag',p_delivery_rec.delivery_details_tab(I).wv_frozen_flag);
1480: WSH_DEBUG_SV.log(l_module_name,' requested_quantity',p_delivery_rec.delivery_details_tab(I).requested_quantity);
1481: WSH_DEBUG_SV.log(l_module_name,' requested_quantity_uom',p_delivery_rec.delivery_details_tab(I).requested_quantity_uom);
1482: WSH_DEBUG_SV.log(l_module_name,' shipped_quantity',p_delivery_rec.delivery_details_tab(I).shipped_quantity);
1483: WSH_DEBUG_SV.log(l_module_name,' cycle_count_quantity',p_delivery_rec.delivery_details_tab(I).cycle_count_quantity);
1484: WSH_DEBUG_SV.log(l_module_name,' subinventory',p_delivery_rec.delivery_details_tab(I).subinventory);
1485: WSH_DEBUG_SV.log(l_module_name,' locator_code',p_delivery_rec.delivery_details_tab(I).locator_code);

Line 1482: WSH_DEBUG_SV.log(l_module_name,' shipped_quantity',p_delivery_rec.delivery_details_tab(I).shipped_quantity);

1478: WSH_DEBUG_SV.log(l_module_name,' volume_uom_code',p_delivery_rec.delivery_details_tab(I).volume_uom_code);
1479: WSH_DEBUG_SV.log(l_module_name,' wv_frozen_flag',p_delivery_rec.delivery_details_tab(I).wv_frozen_flag);
1480: WSH_DEBUG_SV.log(l_module_name,' requested_quantity',p_delivery_rec.delivery_details_tab(I).requested_quantity);
1481: WSH_DEBUG_SV.log(l_module_name,' requested_quantity_uom',p_delivery_rec.delivery_details_tab(I).requested_quantity_uom);
1482: WSH_DEBUG_SV.log(l_module_name,' shipped_quantity',p_delivery_rec.delivery_details_tab(I).shipped_quantity);
1483: WSH_DEBUG_SV.log(l_module_name,' cycle_count_quantity',p_delivery_rec.delivery_details_tab(I).cycle_count_quantity);
1484: WSH_DEBUG_SV.log(l_module_name,' subinventory',p_delivery_rec.delivery_details_tab(I).subinventory);
1485: WSH_DEBUG_SV.log(l_module_name,' locator_code',p_delivery_rec.delivery_details_tab(I).locator_code);
1486: WSH_DEBUG_SV.log(l_module_name,' lot_number',p_delivery_rec.delivery_details_tab(I).lot_number);

Line 1483: WSH_DEBUG_SV.log(l_module_name,' cycle_count_quantity',p_delivery_rec.delivery_details_tab(I).cycle_count_quantity);

1479: WSH_DEBUG_SV.log(l_module_name,' wv_frozen_flag',p_delivery_rec.delivery_details_tab(I).wv_frozen_flag);
1480: WSH_DEBUG_SV.log(l_module_name,' requested_quantity',p_delivery_rec.delivery_details_tab(I).requested_quantity);
1481: WSH_DEBUG_SV.log(l_module_name,' requested_quantity_uom',p_delivery_rec.delivery_details_tab(I).requested_quantity_uom);
1482: WSH_DEBUG_SV.log(l_module_name,' shipped_quantity',p_delivery_rec.delivery_details_tab(I).shipped_quantity);
1483: WSH_DEBUG_SV.log(l_module_name,' cycle_count_quantity',p_delivery_rec.delivery_details_tab(I).cycle_count_quantity);
1484: WSH_DEBUG_SV.log(l_module_name,' subinventory',p_delivery_rec.delivery_details_tab(I).subinventory);
1485: WSH_DEBUG_SV.log(l_module_name,' locator_code',p_delivery_rec.delivery_details_tab(I).locator_code);
1486: WSH_DEBUG_SV.log(l_module_name,' lot_number',p_delivery_rec.delivery_details_tab(I).lot_number);
1487: WSH_DEBUG_SV.log(l_module_name,' revision',p_delivery_rec.delivery_details_tab(I).revision);

Line 1484: WSH_DEBUG_SV.log(l_module_name,' subinventory',p_delivery_rec.delivery_details_tab(I).subinventory);

1480: WSH_DEBUG_SV.log(l_module_name,' requested_quantity',p_delivery_rec.delivery_details_tab(I).requested_quantity);
1481: WSH_DEBUG_SV.log(l_module_name,' requested_quantity_uom',p_delivery_rec.delivery_details_tab(I).requested_quantity_uom);
1482: WSH_DEBUG_SV.log(l_module_name,' shipped_quantity',p_delivery_rec.delivery_details_tab(I).shipped_quantity);
1483: WSH_DEBUG_SV.log(l_module_name,' cycle_count_quantity',p_delivery_rec.delivery_details_tab(I).cycle_count_quantity);
1484: WSH_DEBUG_SV.log(l_module_name,' subinventory',p_delivery_rec.delivery_details_tab(I).subinventory);
1485: WSH_DEBUG_SV.log(l_module_name,' locator_code',p_delivery_rec.delivery_details_tab(I).locator_code);
1486: WSH_DEBUG_SV.log(l_module_name,' lot_number',p_delivery_rec.delivery_details_tab(I).lot_number);
1487: WSH_DEBUG_SV.log(l_module_name,' revision',p_delivery_rec.delivery_details_tab(I).revision);
1488: WSH_DEBUG_SV.log(l_module_name,' serial_number',p_delivery_rec.delivery_details_tab(I).serial_number);

Line 1485: WSH_DEBUG_SV.log(l_module_name,' locator_code',p_delivery_rec.delivery_details_tab(I).locator_code);

1481: WSH_DEBUG_SV.log(l_module_name,' requested_quantity_uom',p_delivery_rec.delivery_details_tab(I).requested_quantity_uom);
1482: WSH_DEBUG_SV.log(l_module_name,' shipped_quantity',p_delivery_rec.delivery_details_tab(I).shipped_quantity);
1483: WSH_DEBUG_SV.log(l_module_name,' cycle_count_quantity',p_delivery_rec.delivery_details_tab(I).cycle_count_quantity);
1484: WSH_DEBUG_SV.log(l_module_name,' subinventory',p_delivery_rec.delivery_details_tab(I).subinventory);
1485: WSH_DEBUG_SV.log(l_module_name,' locator_code',p_delivery_rec.delivery_details_tab(I).locator_code);
1486: WSH_DEBUG_SV.log(l_module_name,' lot_number',p_delivery_rec.delivery_details_tab(I).lot_number);
1487: WSH_DEBUG_SV.log(l_module_name,' revision',p_delivery_rec.delivery_details_tab(I).revision);
1488: WSH_DEBUG_SV.log(l_module_name,' serial_number',p_delivery_rec.delivery_details_tab(I).serial_number);
1489: WSH_DEBUG_SV.log(l_module_name,' to_serial_number',p_delivery_rec.delivery_details_tab(I).to_serial_number);

Line 1486: WSH_DEBUG_SV.log(l_module_name,' lot_number',p_delivery_rec.delivery_details_tab(I).lot_number);

1482: WSH_DEBUG_SV.log(l_module_name,' shipped_quantity',p_delivery_rec.delivery_details_tab(I).shipped_quantity);
1483: WSH_DEBUG_SV.log(l_module_name,' cycle_count_quantity',p_delivery_rec.delivery_details_tab(I).cycle_count_quantity);
1484: WSH_DEBUG_SV.log(l_module_name,' subinventory',p_delivery_rec.delivery_details_tab(I).subinventory);
1485: WSH_DEBUG_SV.log(l_module_name,' locator_code',p_delivery_rec.delivery_details_tab(I).locator_code);
1486: WSH_DEBUG_SV.log(l_module_name,' lot_number',p_delivery_rec.delivery_details_tab(I).lot_number);
1487: WSH_DEBUG_SV.log(l_module_name,' revision',p_delivery_rec.delivery_details_tab(I).revision);
1488: WSH_DEBUG_SV.log(l_module_name,' serial_number',p_delivery_rec.delivery_details_tab(I).serial_number);
1489: WSH_DEBUG_SV.log(l_module_name,' to_serial_number',p_delivery_rec.delivery_details_tab(I).to_serial_number);
1490: WSH_DEBUG_SV.log(l_module_name,' load_seq_number',p_delivery_rec.delivery_details_tab(I).load_seq_number);

Line 1487: WSH_DEBUG_SV.log(l_module_name,' revision',p_delivery_rec.delivery_details_tab(I).revision);

1483: WSH_DEBUG_SV.log(l_module_name,' cycle_count_quantity',p_delivery_rec.delivery_details_tab(I).cycle_count_quantity);
1484: WSH_DEBUG_SV.log(l_module_name,' subinventory',p_delivery_rec.delivery_details_tab(I).subinventory);
1485: WSH_DEBUG_SV.log(l_module_name,' locator_code',p_delivery_rec.delivery_details_tab(I).locator_code);
1486: WSH_DEBUG_SV.log(l_module_name,' lot_number',p_delivery_rec.delivery_details_tab(I).lot_number);
1487: WSH_DEBUG_SV.log(l_module_name,' revision',p_delivery_rec.delivery_details_tab(I).revision);
1488: WSH_DEBUG_SV.log(l_module_name,' serial_number',p_delivery_rec.delivery_details_tab(I).serial_number);
1489: WSH_DEBUG_SV.log(l_module_name,' to_serial_number',p_delivery_rec.delivery_details_tab(I).to_serial_number);
1490: WSH_DEBUG_SV.log(l_module_name,' load_seq_number',p_delivery_rec.delivery_details_tab(I).load_seq_number);
1491: WSH_DEBUG_SV.log(l_module_name,' preferred_grade',p_delivery_rec.delivery_details_tab(I).preferred_grade);

Line 1488: WSH_DEBUG_SV.log(l_module_name,' serial_number',p_delivery_rec.delivery_details_tab(I).serial_number);

1484: WSH_DEBUG_SV.log(l_module_name,' subinventory',p_delivery_rec.delivery_details_tab(I).subinventory);
1485: WSH_DEBUG_SV.log(l_module_name,' locator_code',p_delivery_rec.delivery_details_tab(I).locator_code);
1486: WSH_DEBUG_SV.log(l_module_name,' lot_number',p_delivery_rec.delivery_details_tab(I).lot_number);
1487: WSH_DEBUG_SV.log(l_module_name,' revision',p_delivery_rec.delivery_details_tab(I).revision);
1488: WSH_DEBUG_SV.log(l_module_name,' serial_number',p_delivery_rec.delivery_details_tab(I).serial_number);
1489: WSH_DEBUG_SV.log(l_module_name,' to_serial_number',p_delivery_rec.delivery_details_tab(I).to_serial_number);
1490: WSH_DEBUG_SV.log(l_module_name,' load_seq_number',p_delivery_rec.delivery_details_tab(I).load_seq_number);
1491: WSH_DEBUG_SV.log(l_module_name,' preferred_grade',p_delivery_rec.delivery_details_tab(I).preferred_grade);
1492: WSH_DEBUG_SV.log(l_module_name,' attribute_category',p_delivery_rec.delivery_details_tab(I).attribute_category);

Line 1489: WSH_DEBUG_SV.log(l_module_name,' to_serial_number',p_delivery_rec.delivery_details_tab(I).to_serial_number);

1485: WSH_DEBUG_SV.log(l_module_name,' locator_code',p_delivery_rec.delivery_details_tab(I).locator_code);
1486: WSH_DEBUG_SV.log(l_module_name,' lot_number',p_delivery_rec.delivery_details_tab(I).lot_number);
1487: WSH_DEBUG_SV.log(l_module_name,' revision',p_delivery_rec.delivery_details_tab(I).revision);
1488: WSH_DEBUG_SV.log(l_module_name,' serial_number',p_delivery_rec.delivery_details_tab(I).serial_number);
1489: WSH_DEBUG_SV.log(l_module_name,' to_serial_number',p_delivery_rec.delivery_details_tab(I).to_serial_number);
1490: WSH_DEBUG_SV.log(l_module_name,' load_seq_number',p_delivery_rec.delivery_details_tab(I).load_seq_number);
1491: WSH_DEBUG_SV.log(l_module_name,' preferred_grade',p_delivery_rec.delivery_details_tab(I).preferred_grade);
1492: WSH_DEBUG_SV.log(l_module_name,' attribute_category',p_delivery_rec.delivery_details_tab(I).attribute_category);
1493: WSH_DEBUG_SV.log(l_module_name,' attribute1',p_delivery_rec.delivery_details_tab(I).attribute1);

Line 1490: WSH_DEBUG_SV.log(l_module_name,' load_seq_number',p_delivery_rec.delivery_details_tab(I).load_seq_number);

1486: WSH_DEBUG_SV.log(l_module_name,' lot_number',p_delivery_rec.delivery_details_tab(I).lot_number);
1487: WSH_DEBUG_SV.log(l_module_name,' revision',p_delivery_rec.delivery_details_tab(I).revision);
1488: WSH_DEBUG_SV.log(l_module_name,' serial_number',p_delivery_rec.delivery_details_tab(I).serial_number);
1489: WSH_DEBUG_SV.log(l_module_name,' to_serial_number',p_delivery_rec.delivery_details_tab(I).to_serial_number);
1490: WSH_DEBUG_SV.log(l_module_name,' load_seq_number',p_delivery_rec.delivery_details_tab(I).load_seq_number);
1491: WSH_DEBUG_SV.log(l_module_name,' preferred_grade',p_delivery_rec.delivery_details_tab(I).preferred_grade);
1492: WSH_DEBUG_SV.log(l_module_name,' attribute_category',p_delivery_rec.delivery_details_tab(I).attribute_category);
1493: WSH_DEBUG_SV.log(l_module_name,' attribute1',p_delivery_rec.delivery_details_tab(I).attribute1);
1494: WSH_DEBUG_SV.log(l_module_name,' attribute2',p_delivery_rec.delivery_details_tab(I).attribute2);

Line 1491: WSH_DEBUG_SV.log(l_module_name,' preferred_grade',p_delivery_rec.delivery_details_tab(I).preferred_grade);

1487: WSH_DEBUG_SV.log(l_module_name,' revision',p_delivery_rec.delivery_details_tab(I).revision);
1488: WSH_DEBUG_SV.log(l_module_name,' serial_number',p_delivery_rec.delivery_details_tab(I).serial_number);
1489: WSH_DEBUG_SV.log(l_module_name,' to_serial_number',p_delivery_rec.delivery_details_tab(I).to_serial_number);
1490: WSH_DEBUG_SV.log(l_module_name,' load_seq_number',p_delivery_rec.delivery_details_tab(I).load_seq_number);
1491: WSH_DEBUG_SV.log(l_module_name,' preferred_grade',p_delivery_rec.delivery_details_tab(I).preferred_grade);
1492: WSH_DEBUG_SV.log(l_module_name,' attribute_category',p_delivery_rec.delivery_details_tab(I).attribute_category);
1493: WSH_DEBUG_SV.log(l_module_name,' attribute1',p_delivery_rec.delivery_details_tab(I).attribute1);
1494: WSH_DEBUG_SV.log(l_module_name,' attribute2',p_delivery_rec.delivery_details_tab(I).attribute2);
1495: WSH_DEBUG_SV.log(l_module_name,' attribute3',p_delivery_rec.delivery_details_tab(I).attribute3);

Line 1492: WSH_DEBUG_SV.log(l_module_name,' attribute_category',p_delivery_rec.delivery_details_tab(I).attribute_category);

1488: WSH_DEBUG_SV.log(l_module_name,' serial_number',p_delivery_rec.delivery_details_tab(I).serial_number);
1489: WSH_DEBUG_SV.log(l_module_name,' to_serial_number',p_delivery_rec.delivery_details_tab(I).to_serial_number);
1490: WSH_DEBUG_SV.log(l_module_name,' load_seq_number',p_delivery_rec.delivery_details_tab(I).load_seq_number);
1491: WSH_DEBUG_SV.log(l_module_name,' preferred_grade',p_delivery_rec.delivery_details_tab(I).preferred_grade);
1492: WSH_DEBUG_SV.log(l_module_name,' attribute_category',p_delivery_rec.delivery_details_tab(I).attribute_category);
1493: WSH_DEBUG_SV.log(l_module_name,' attribute1',p_delivery_rec.delivery_details_tab(I).attribute1);
1494: WSH_DEBUG_SV.log(l_module_name,' attribute2',p_delivery_rec.delivery_details_tab(I).attribute2);
1495: WSH_DEBUG_SV.log(l_module_name,' attribute3',p_delivery_rec.delivery_details_tab(I).attribute3);
1496: WSH_DEBUG_SV.log(l_module_name,' attribute4',p_delivery_rec.delivery_details_tab(I).attribute4);

Line 1493: WSH_DEBUG_SV.log(l_module_name,' attribute1',p_delivery_rec.delivery_details_tab(I).attribute1);

1489: WSH_DEBUG_SV.log(l_module_name,' to_serial_number',p_delivery_rec.delivery_details_tab(I).to_serial_number);
1490: WSH_DEBUG_SV.log(l_module_name,' load_seq_number',p_delivery_rec.delivery_details_tab(I).load_seq_number);
1491: WSH_DEBUG_SV.log(l_module_name,' preferred_grade',p_delivery_rec.delivery_details_tab(I).preferred_grade);
1492: WSH_DEBUG_SV.log(l_module_name,' attribute_category',p_delivery_rec.delivery_details_tab(I).attribute_category);
1493: WSH_DEBUG_SV.log(l_module_name,' attribute1',p_delivery_rec.delivery_details_tab(I).attribute1);
1494: WSH_DEBUG_SV.log(l_module_name,' attribute2',p_delivery_rec.delivery_details_tab(I).attribute2);
1495: WSH_DEBUG_SV.log(l_module_name,' attribute3',p_delivery_rec.delivery_details_tab(I).attribute3);
1496: WSH_DEBUG_SV.log(l_module_name,' attribute4',p_delivery_rec.delivery_details_tab(I).attribute4);
1497: WSH_DEBUG_SV.log(l_module_name,' attribute5',p_delivery_rec.delivery_details_tab(I).attribute5);

Line 1494: WSH_DEBUG_SV.log(l_module_name,' attribute2',p_delivery_rec.delivery_details_tab(I).attribute2);

1490: WSH_DEBUG_SV.log(l_module_name,' load_seq_number',p_delivery_rec.delivery_details_tab(I).load_seq_number);
1491: WSH_DEBUG_SV.log(l_module_name,' preferred_grade',p_delivery_rec.delivery_details_tab(I).preferred_grade);
1492: WSH_DEBUG_SV.log(l_module_name,' attribute_category',p_delivery_rec.delivery_details_tab(I).attribute_category);
1493: WSH_DEBUG_SV.log(l_module_name,' attribute1',p_delivery_rec.delivery_details_tab(I).attribute1);
1494: WSH_DEBUG_SV.log(l_module_name,' attribute2',p_delivery_rec.delivery_details_tab(I).attribute2);
1495: WSH_DEBUG_SV.log(l_module_name,' attribute3',p_delivery_rec.delivery_details_tab(I).attribute3);
1496: WSH_DEBUG_SV.log(l_module_name,' attribute4',p_delivery_rec.delivery_details_tab(I).attribute4);
1497: WSH_DEBUG_SV.log(l_module_name,' attribute5',p_delivery_rec.delivery_details_tab(I).attribute5);
1498: WSH_DEBUG_SV.log(l_module_name,' attribute6',p_delivery_rec.delivery_details_tab(I).attribute6);

Line 1495: WSH_DEBUG_SV.log(l_module_name,' attribute3',p_delivery_rec.delivery_details_tab(I).attribute3);

1491: WSH_DEBUG_SV.log(l_module_name,' preferred_grade',p_delivery_rec.delivery_details_tab(I).preferred_grade);
1492: WSH_DEBUG_SV.log(l_module_name,' attribute_category',p_delivery_rec.delivery_details_tab(I).attribute_category);
1493: WSH_DEBUG_SV.log(l_module_name,' attribute1',p_delivery_rec.delivery_details_tab(I).attribute1);
1494: WSH_DEBUG_SV.log(l_module_name,' attribute2',p_delivery_rec.delivery_details_tab(I).attribute2);
1495: WSH_DEBUG_SV.log(l_module_name,' attribute3',p_delivery_rec.delivery_details_tab(I).attribute3);
1496: WSH_DEBUG_SV.log(l_module_name,' attribute4',p_delivery_rec.delivery_details_tab(I).attribute4);
1497: WSH_DEBUG_SV.log(l_module_name,' attribute5',p_delivery_rec.delivery_details_tab(I).attribute5);
1498: WSH_DEBUG_SV.log(l_module_name,' attribute6',p_delivery_rec.delivery_details_tab(I).attribute6);
1499: WSH_DEBUG_SV.log(l_module_name,' attribute7',p_delivery_rec.delivery_details_tab(I).attribute7);

Line 1496: WSH_DEBUG_SV.log(l_module_name,' attribute4',p_delivery_rec.delivery_details_tab(I).attribute4);

1492: WSH_DEBUG_SV.log(l_module_name,' attribute_category',p_delivery_rec.delivery_details_tab(I).attribute_category);
1493: WSH_DEBUG_SV.log(l_module_name,' attribute1',p_delivery_rec.delivery_details_tab(I).attribute1);
1494: WSH_DEBUG_SV.log(l_module_name,' attribute2',p_delivery_rec.delivery_details_tab(I).attribute2);
1495: WSH_DEBUG_SV.log(l_module_name,' attribute3',p_delivery_rec.delivery_details_tab(I).attribute3);
1496: WSH_DEBUG_SV.log(l_module_name,' attribute4',p_delivery_rec.delivery_details_tab(I).attribute4);
1497: WSH_DEBUG_SV.log(l_module_name,' attribute5',p_delivery_rec.delivery_details_tab(I).attribute5);
1498: WSH_DEBUG_SV.log(l_module_name,' attribute6',p_delivery_rec.delivery_details_tab(I).attribute6);
1499: WSH_DEBUG_SV.log(l_module_name,' attribute7',p_delivery_rec.delivery_details_tab(I).attribute7);
1500: WSH_DEBUG_SV.log(l_module_name,' attribute8',p_delivery_rec.delivery_details_tab(I).attribute8);

Line 1497: WSH_DEBUG_SV.log(l_module_name,' attribute5',p_delivery_rec.delivery_details_tab(I).attribute5);

1493: WSH_DEBUG_SV.log(l_module_name,' attribute1',p_delivery_rec.delivery_details_tab(I).attribute1);
1494: WSH_DEBUG_SV.log(l_module_name,' attribute2',p_delivery_rec.delivery_details_tab(I).attribute2);
1495: WSH_DEBUG_SV.log(l_module_name,' attribute3',p_delivery_rec.delivery_details_tab(I).attribute3);
1496: WSH_DEBUG_SV.log(l_module_name,' attribute4',p_delivery_rec.delivery_details_tab(I).attribute4);
1497: WSH_DEBUG_SV.log(l_module_name,' attribute5',p_delivery_rec.delivery_details_tab(I).attribute5);
1498: WSH_DEBUG_SV.log(l_module_name,' attribute6',p_delivery_rec.delivery_details_tab(I).attribute6);
1499: WSH_DEBUG_SV.log(l_module_name,' attribute7',p_delivery_rec.delivery_details_tab(I).attribute7);
1500: WSH_DEBUG_SV.log(l_module_name,' attribute8',p_delivery_rec.delivery_details_tab(I).attribute8);
1501: WSH_DEBUG_SV.log(l_module_name,' attribute9',p_delivery_rec.delivery_details_tab(I).attribute9);

Line 1498: WSH_DEBUG_SV.log(l_module_name,' attribute6',p_delivery_rec.delivery_details_tab(I).attribute6);

1494: WSH_DEBUG_SV.log(l_module_name,' attribute2',p_delivery_rec.delivery_details_tab(I).attribute2);
1495: WSH_DEBUG_SV.log(l_module_name,' attribute3',p_delivery_rec.delivery_details_tab(I).attribute3);
1496: WSH_DEBUG_SV.log(l_module_name,' attribute4',p_delivery_rec.delivery_details_tab(I).attribute4);
1497: WSH_DEBUG_SV.log(l_module_name,' attribute5',p_delivery_rec.delivery_details_tab(I).attribute5);
1498: WSH_DEBUG_SV.log(l_module_name,' attribute6',p_delivery_rec.delivery_details_tab(I).attribute6);
1499: WSH_DEBUG_SV.log(l_module_name,' attribute7',p_delivery_rec.delivery_details_tab(I).attribute7);
1500: WSH_DEBUG_SV.log(l_module_name,' attribute8',p_delivery_rec.delivery_details_tab(I).attribute8);
1501: WSH_DEBUG_SV.log(l_module_name,' attribute9',p_delivery_rec.delivery_details_tab(I).attribute9);
1502: WSH_DEBUG_SV.log(l_module_name,' attribute10',p_delivery_rec.delivery_details_tab(I).attribute10);

Line 1499: WSH_DEBUG_SV.log(l_module_name,' attribute7',p_delivery_rec.delivery_details_tab(I).attribute7);

1495: WSH_DEBUG_SV.log(l_module_name,' attribute3',p_delivery_rec.delivery_details_tab(I).attribute3);
1496: WSH_DEBUG_SV.log(l_module_name,' attribute4',p_delivery_rec.delivery_details_tab(I).attribute4);
1497: WSH_DEBUG_SV.log(l_module_name,' attribute5',p_delivery_rec.delivery_details_tab(I).attribute5);
1498: WSH_DEBUG_SV.log(l_module_name,' attribute6',p_delivery_rec.delivery_details_tab(I).attribute6);
1499: WSH_DEBUG_SV.log(l_module_name,' attribute7',p_delivery_rec.delivery_details_tab(I).attribute7);
1500: WSH_DEBUG_SV.log(l_module_name,' attribute8',p_delivery_rec.delivery_details_tab(I).attribute8);
1501: WSH_DEBUG_SV.log(l_module_name,' attribute9',p_delivery_rec.delivery_details_tab(I).attribute9);
1502: WSH_DEBUG_SV.log(l_module_name,' attribute10',p_delivery_rec.delivery_details_tab(I).attribute10);
1503: WSH_DEBUG_SV.log(l_module_name,' attribute11',p_delivery_rec.delivery_details_tab(I).attribute11);

Line 1500: WSH_DEBUG_SV.log(l_module_name,' attribute8',p_delivery_rec.delivery_details_tab(I).attribute8);

1496: WSH_DEBUG_SV.log(l_module_name,' attribute4',p_delivery_rec.delivery_details_tab(I).attribute4);
1497: WSH_DEBUG_SV.log(l_module_name,' attribute5',p_delivery_rec.delivery_details_tab(I).attribute5);
1498: WSH_DEBUG_SV.log(l_module_name,' attribute6',p_delivery_rec.delivery_details_tab(I).attribute6);
1499: WSH_DEBUG_SV.log(l_module_name,' attribute7',p_delivery_rec.delivery_details_tab(I).attribute7);
1500: WSH_DEBUG_SV.log(l_module_name,' attribute8',p_delivery_rec.delivery_details_tab(I).attribute8);
1501: WSH_DEBUG_SV.log(l_module_name,' attribute9',p_delivery_rec.delivery_details_tab(I).attribute9);
1502: WSH_DEBUG_SV.log(l_module_name,' attribute10',p_delivery_rec.delivery_details_tab(I).attribute10);
1503: WSH_DEBUG_SV.log(l_module_name,' attribute11',p_delivery_rec.delivery_details_tab(I).attribute11);
1504: WSH_DEBUG_SV.log(l_module_name,' attribute12',p_delivery_rec.delivery_details_tab(I).attribute12);

Line 1501: WSH_DEBUG_SV.log(l_module_name,' attribute9',p_delivery_rec.delivery_details_tab(I).attribute9);

1497: WSH_DEBUG_SV.log(l_module_name,' attribute5',p_delivery_rec.delivery_details_tab(I).attribute5);
1498: WSH_DEBUG_SV.log(l_module_name,' attribute6',p_delivery_rec.delivery_details_tab(I).attribute6);
1499: WSH_DEBUG_SV.log(l_module_name,' attribute7',p_delivery_rec.delivery_details_tab(I).attribute7);
1500: WSH_DEBUG_SV.log(l_module_name,' attribute8',p_delivery_rec.delivery_details_tab(I).attribute8);
1501: WSH_DEBUG_SV.log(l_module_name,' attribute9',p_delivery_rec.delivery_details_tab(I).attribute9);
1502: WSH_DEBUG_SV.log(l_module_name,' attribute10',p_delivery_rec.delivery_details_tab(I).attribute10);
1503: WSH_DEBUG_SV.log(l_module_name,' attribute11',p_delivery_rec.delivery_details_tab(I).attribute11);
1504: WSH_DEBUG_SV.log(l_module_name,' attribute12',p_delivery_rec.delivery_details_tab(I).attribute12);
1505: WSH_DEBUG_SV.log(l_module_name,' attribute13',p_delivery_rec.delivery_details_tab(I).attribute13);

Line 1502: WSH_DEBUG_SV.log(l_module_name,' attribute10',p_delivery_rec.delivery_details_tab(I).attribute10);

1498: WSH_DEBUG_SV.log(l_module_name,' attribute6',p_delivery_rec.delivery_details_tab(I).attribute6);
1499: WSH_DEBUG_SV.log(l_module_name,' attribute7',p_delivery_rec.delivery_details_tab(I).attribute7);
1500: WSH_DEBUG_SV.log(l_module_name,' attribute8',p_delivery_rec.delivery_details_tab(I).attribute8);
1501: WSH_DEBUG_SV.log(l_module_name,' attribute9',p_delivery_rec.delivery_details_tab(I).attribute9);
1502: WSH_DEBUG_SV.log(l_module_name,' attribute10',p_delivery_rec.delivery_details_tab(I).attribute10);
1503: WSH_DEBUG_SV.log(l_module_name,' attribute11',p_delivery_rec.delivery_details_tab(I).attribute11);
1504: WSH_DEBUG_SV.log(l_module_name,' attribute12',p_delivery_rec.delivery_details_tab(I).attribute12);
1505: WSH_DEBUG_SV.log(l_module_name,' attribute13',p_delivery_rec.delivery_details_tab(I).attribute13);
1506: WSH_DEBUG_SV.log(l_module_name,' attribute14',p_delivery_rec.delivery_details_tab(I).attribute14);

Line 1503: WSH_DEBUG_SV.log(l_module_name,' attribute11',p_delivery_rec.delivery_details_tab(I).attribute11);

1499: WSH_DEBUG_SV.log(l_module_name,' attribute7',p_delivery_rec.delivery_details_tab(I).attribute7);
1500: WSH_DEBUG_SV.log(l_module_name,' attribute8',p_delivery_rec.delivery_details_tab(I).attribute8);
1501: WSH_DEBUG_SV.log(l_module_name,' attribute9',p_delivery_rec.delivery_details_tab(I).attribute9);
1502: WSH_DEBUG_SV.log(l_module_name,' attribute10',p_delivery_rec.delivery_details_tab(I).attribute10);
1503: WSH_DEBUG_SV.log(l_module_name,' attribute11',p_delivery_rec.delivery_details_tab(I).attribute11);
1504: WSH_DEBUG_SV.log(l_module_name,' attribute12',p_delivery_rec.delivery_details_tab(I).attribute12);
1505: WSH_DEBUG_SV.log(l_module_name,' attribute13',p_delivery_rec.delivery_details_tab(I).attribute13);
1506: WSH_DEBUG_SV.log(l_module_name,' attribute14',p_delivery_rec.delivery_details_tab(I).attribute14);
1507: WSH_DEBUG_SV.log(l_module_name,' attribute15',p_delivery_rec.delivery_details_tab(I).attribute15);

Line 1504: WSH_DEBUG_SV.log(l_module_name,' attribute12',p_delivery_rec.delivery_details_tab(I).attribute12);

1500: WSH_DEBUG_SV.log(l_module_name,' attribute8',p_delivery_rec.delivery_details_tab(I).attribute8);
1501: WSH_DEBUG_SV.log(l_module_name,' attribute9',p_delivery_rec.delivery_details_tab(I).attribute9);
1502: WSH_DEBUG_SV.log(l_module_name,' attribute10',p_delivery_rec.delivery_details_tab(I).attribute10);
1503: WSH_DEBUG_SV.log(l_module_name,' attribute11',p_delivery_rec.delivery_details_tab(I).attribute11);
1504: WSH_DEBUG_SV.log(l_module_name,' attribute12',p_delivery_rec.delivery_details_tab(I).attribute12);
1505: WSH_DEBUG_SV.log(l_module_name,' attribute13',p_delivery_rec.delivery_details_tab(I).attribute13);
1506: WSH_DEBUG_SV.log(l_module_name,' attribute14',p_delivery_rec.delivery_details_tab(I).attribute14);
1507: WSH_DEBUG_SV.log(l_module_name,' attribute15',p_delivery_rec.delivery_details_tab(I).attribute15);
1508: WSH_DEBUG_SV.log(l_module_name,' parent_delivery_detail_number',p_delivery_rec.delivery_details_tab(I).parent_delivery_detail_number);

Line 1505: WSH_DEBUG_SV.log(l_module_name,' attribute13',p_delivery_rec.delivery_details_tab(I).attribute13);

1501: WSH_DEBUG_SV.log(l_module_name,' attribute9',p_delivery_rec.delivery_details_tab(I).attribute9);
1502: WSH_DEBUG_SV.log(l_module_name,' attribute10',p_delivery_rec.delivery_details_tab(I).attribute10);
1503: WSH_DEBUG_SV.log(l_module_name,' attribute11',p_delivery_rec.delivery_details_tab(I).attribute11);
1504: WSH_DEBUG_SV.log(l_module_name,' attribute12',p_delivery_rec.delivery_details_tab(I).attribute12);
1505: WSH_DEBUG_SV.log(l_module_name,' attribute13',p_delivery_rec.delivery_details_tab(I).attribute13);
1506: WSH_DEBUG_SV.log(l_module_name,' attribute14',p_delivery_rec.delivery_details_tab(I).attribute14);
1507: WSH_DEBUG_SV.log(l_module_name,' attribute15',p_delivery_rec.delivery_details_tab(I).attribute15);
1508: WSH_DEBUG_SV.log(l_module_name,' parent_delivery_detail_number',p_delivery_rec.delivery_details_tab(I).parent_delivery_detail_number);
1509:

Line 1506: WSH_DEBUG_SV.log(l_module_name,' attribute14',p_delivery_rec.delivery_details_tab(I).attribute14);

1502: WSH_DEBUG_SV.log(l_module_name,' attribute10',p_delivery_rec.delivery_details_tab(I).attribute10);
1503: WSH_DEBUG_SV.log(l_module_name,' attribute11',p_delivery_rec.delivery_details_tab(I).attribute11);
1504: WSH_DEBUG_SV.log(l_module_name,' attribute12',p_delivery_rec.delivery_details_tab(I).attribute12);
1505: WSH_DEBUG_SV.log(l_module_name,' attribute13',p_delivery_rec.delivery_details_tab(I).attribute13);
1506: WSH_DEBUG_SV.log(l_module_name,' attribute14',p_delivery_rec.delivery_details_tab(I).attribute14);
1507: WSH_DEBUG_SV.log(l_module_name,' attribute15',p_delivery_rec.delivery_details_tab(I).attribute15);
1508: WSH_DEBUG_SV.log(l_module_name,' parent_delivery_detail_number',p_delivery_rec.delivery_details_tab(I).parent_delivery_detail_number);
1509:
1510: WSH_DEBUG_SV.log(l_module_name,' Detail_Freight_tab_count',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab.count);

Line 1507: WSH_DEBUG_SV.log(l_module_name,' attribute15',p_delivery_rec.delivery_details_tab(I).attribute15);

1503: WSH_DEBUG_SV.log(l_module_name,' attribute11',p_delivery_rec.delivery_details_tab(I).attribute11);
1504: WSH_DEBUG_SV.log(l_module_name,' attribute12',p_delivery_rec.delivery_details_tab(I).attribute12);
1505: WSH_DEBUG_SV.log(l_module_name,' attribute13',p_delivery_rec.delivery_details_tab(I).attribute13);
1506: WSH_DEBUG_SV.log(l_module_name,' attribute14',p_delivery_rec.delivery_details_tab(I).attribute14);
1507: WSH_DEBUG_SV.log(l_module_name,' attribute15',p_delivery_rec.delivery_details_tab(I).attribute15);
1508: WSH_DEBUG_SV.log(l_module_name,' parent_delivery_detail_number',p_delivery_rec.delivery_details_tab(I).parent_delivery_detail_number);
1509:
1510: WSH_DEBUG_SV.log(l_module_name,' Detail_Freight_tab_count',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab.count);
1511: IF p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab.count > 0 THEN

Line 1508: WSH_DEBUG_SV.log(l_module_name,' parent_delivery_detail_number',p_delivery_rec.delivery_details_tab(I).parent_delivery_detail_number);

1504: WSH_DEBUG_SV.log(l_module_name,' attribute12',p_delivery_rec.delivery_details_tab(I).attribute12);
1505: WSH_DEBUG_SV.log(l_module_name,' attribute13',p_delivery_rec.delivery_details_tab(I).attribute13);
1506: WSH_DEBUG_SV.log(l_module_name,' attribute14',p_delivery_rec.delivery_details_tab(I).attribute14);
1507: WSH_DEBUG_SV.log(l_module_name,' attribute15',p_delivery_rec.delivery_details_tab(I).attribute15);
1508: WSH_DEBUG_SV.log(l_module_name,' parent_delivery_detail_number',p_delivery_rec.delivery_details_tab(I).parent_delivery_detail_number);
1509:
1510: WSH_DEBUG_SV.log(l_module_name,' Detail_Freight_tab_count',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab.count);
1511: IF p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab.count > 0 THEN
1512: WSH_DEBUG_SV.logmsg(l_module_name,' -----------------------------------------------------------');

Line 1510: WSH_DEBUG_SV.log(l_module_name,' Detail_Freight_tab_count',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab.count);

1506: WSH_DEBUG_SV.log(l_module_name,' attribute14',p_delivery_rec.delivery_details_tab(I).attribute14);
1507: WSH_DEBUG_SV.log(l_module_name,' attribute15',p_delivery_rec.delivery_details_tab(I).attribute15);
1508: WSH_DEBUG_SV.log(l_module_name,' parent_delivery_detail_number',p_delivery_rec.delivery_details_tab(I).parent_delivery_detail_number);
1509:
1510: WSH_DEBUG_SV.log(l_module_name,' Detail_Freight_tab_count',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab.count);
1511: IF p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab.count > 0 THEN
1512: WSH_DEBUG_SV.logmsg(l_module_name,' -----------------------------------------------------------');
1513: WSH_DEBUG_SV.logmsg(l_module_name,' ---------------Details Freight Cost Details----------------');
1514: FOR k in 1..p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab.count LOOP

Line 1512: WSH_DEBUG_SV.logmsg(l_module_name,' -----------------------------------------------------------');

1508: WSH_DEBUG_SV.log(l_module_name,' parent_delivery_detail_number',p_delivery_rec.delivery_details_tab(I).parent_delivery_detail_number);
1509:
1510: WSH_DEBUG_SV.log(l_module_name,' Detail_Freight_tab_count',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab.count);
1511: IF p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab.count > 0 THEN
1512: WSH_DEBUG_SV.logmsg(l_module_name,' -----------------------------------------------------------');
1513: WSH_DEBUG_SV.logmsg(l_module_name,' ---------------Details Freight Cost Details----------------');
1514: FOR k in 1..p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab.count LOOP
1515:
1516: WSH_DEBUG_SV.log(l_module_name,' freight_cost_type_code',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).freight_cost_type_code);

Line 1513: WSH_DEBUG_SV.logmsg(l_module_name,' ---------------Details Freight Cost Details----------------');

1509:
1510: WSH_DEBUG_SV.log(l_module_name,' Detail_Freight_tab_count',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab.count);
1511: IF p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab.count > 0 THEN
1512: WSH_DEBUG_SV.logmsg(l_module_name,' -----------------------------------------------------------');
1513: WSH_DEBUG_SV.logmsg(l_module_name,' ---------------Details Freight Cost Details----------------');
1514: FOR k in 1..p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab.count LOOP
1515:
1516: WSH_DEBUG_SV.log(l_module_name,' freight_cost_type_code',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).freight_cost_type_code);
1517: WSH_DEBUG_SV.log(l_module_name,' unit_amount',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).unit_amount);

Line 1516: WSH_DEBUG_SV.log(l_module_name,' freight_cost_type_code',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).freight_cost_type_code);

1512: WSH_DEBUG_SV.logmsg(l_module_name,' -----------------------------------------------------------');
1513: WSH_DEBUG_SV.logmsg(l_module_name,' ---------------Details Freight Cost Details----------------');
1514: FOR k in 1..p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab.count LOOP
1515:
1516: WSH_DEBUG_SV.log(l_module_name,' freight_cost_type_code',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).freight_cost_type_code);
1517: WSH_DEBUG_SV.log(l_module_name,' unit_amount',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).unit_amount);
1518: WSH_DEBUG_SV.log(l_module_name,' currency_code',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).currency_code);
1519: WSH_DEBUG_SV.log(l_module_name,' attribute_category',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute_category);
1520: WSH_DEBUG_SV.log(l_module_name,' attribute1',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute1);

Line 1517: WSH_DEBUG_SV.log(l_module_name,' unit_amount',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).unit_amount);

1513: WSH_DEBUG_SV.logmsg(l_module_name,' ---------------Details Freight Cost Details----------------');
1514: FOR k in 1..p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab.count LOOP
1515:
1516: WSH_DEBUG_SV.log(l_module_name,' freight_cost_type_code',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).freight_cost_type_code);
1517: WSH_DEBUG_SV.log(l_module_name,' unit_amount',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).unit_amount);
1518: WSH_DEBUG_SV.log(l_module_name,' currency_code',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).currency_code);
1519: WSH_DEBUG_SV.log(l_module_name,' attribute_category',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute_category);
1520: WSH_DEBUG_SV.log(l_module_name,' attribute1',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute1);
1521: WSH_DEBUG_SV.log(l_module_name,' attribute2',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute2);

Line 1518: WSH_DEBUG_SV.log(l_module_name,' currency_code',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).currency_code);

1514: FOR k in 1..p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab.count LOOP
1515:
1516: WSH_DEBUG_SV.log(l_module_name,' freight_cost_type_code',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).freight_cost_type_code);
1517: WSH_DEBUG_SV.log(l_module_name,' unit_amount',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).unit_amount);
1518: WSH_DEBUG_SV.log(l_module_name,' currency_code',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).currency_code);
1519: WSH_DEBUG_SV.log(l_module_name,' attribute_category',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute_category);
1520: WSH_DEBUG_SV.log(l_module_name,' attribute1',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute1);
1521: WSH_DEBUG_SV.log(l_module_name,' attribute2',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute2);
1522: WSH_DEBUG_SV.log(l_module_name,' attribute3',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute3);

Line 1519: WSH_DEBUG_SV.log(l_module_name,' attribute_category',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute_category);

1515:
1516: WSH_DEBUG_SV.log(l_module_name,' freight_cost_type_code',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).freight_cost_type_code);
1517: WSH_DEBUG_SV.log(l_module_name,' unit_amount',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).unit_amount);
1518: WSH_DEBUG_SV.log(l_module_name,' currency_code',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).currency_code);
1519: WSH_DEBUG_SV.log(l_module_name,' attribute_category',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute_category);
1520: WSH_DEBUG_SV.log(l_module_name,' attribute1',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute1);
1521: WSH_DEBUG_SV.log(l_module_name,' attribute2',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute2);
1522: WSH_DEBUG_SV.log(l_module_name,' attribute3',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute3);
1523: WSH_DEBUG_SV.log(l_module_name,' attribute4',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute4);

Line 1520: WSH_DEBUG_SV.log(l_module_name,' attribute1',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute1);

1516: WSH_DEBUG_SV.log(l_module_name,' freight_cost_type_code',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).freight_cost_type_code);
1517: WSH_DEBUG_SV.log(l_module_name,' unit_amount',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).unit_amount);
1518: WSH_DEBUG_SV.log(l_module_name,' currency_code',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).currency_code);
1519: WSH_DEBUG_SV.log(l_module_name,' attribute_category',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute_category);
1520: WSH_DEBUG_SV.log(l_module_name,' attribute1',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute1);
1521: WSH_DEBUG_SV.log(l_module_name,' attribute2',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute2);
1522: WSH_DEBUG_SV.log(l_module_name,' attribute3',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute3);
1523: WSH_DEBUG_SV.log(l_module_name,' attribute4',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute4);
1524: WSH_DEBUG_SV.log(l_module_name,' attribute5',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute5);

Line 1521: WSH_DEBUG_SV.log(l_module_name,' attribute2',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute2);

1517: WSH_DEBUG_SV.log(l_module_name,' unit_amount',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).unit_amount);
1518: WSH_DEBUG_SV.log(l_module_name,' currency_code',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).currency_code);
1519: WSH_DEBUG_SV.log(l_module_name,' attribute_category',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute_category);
1520: WSH_DEBUG_SV.log(l_module_name,' attribute1',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute1);
1521: WSH_DEBUG_SV.log(l_module_name,' attribute2',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute2);
1522: WSH_DEBUG_SV.log(l_module_name,' attribute3',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute3);
1523: WSH_DEBUG_SV.log(l_module_name,' attribute4',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute4);
1524: WSH_DEBUG_SV.log(l_module_name,' attribute5',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute5);
1525: WSH_DEBUG_SV.log(l_module_name,' attribute6',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute6);

Line 1522: WSH_DEBUG_SV.log(l_module_name,' attribute3',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute3);

1518: WSH_DEBUG_SV.log(l_module_name,' currency_code',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).currency_code);
1519: WSH_DEBUG_SV.log(l_module_name,' attribute_category',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute_category);
1520: WSH_DEBUG_SV.log(l_module_name,' attribute1',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute1);
1521: WSH_DEBUG_SV.log(l_module_name,' attribute2',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute2);
1522: WSH_DEBUG_SV.log(l_module_name,' attribute3',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute3);
1523: WSH_DEBUG_SV.log(l_module_name,' attribute4',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute4);
1524: WSH_DEBUG_SV.log(l_module_name,' attribute5',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute5);
1525: WSH_DEBUG_SV.log(l_module_name,' attribute6',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute6);
1526: WSH_DEBUG_SV.log(l_module_name,' attribute7',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute7);

Line 1523: WSH_DEBUG_SV.log(l_module_name,' attribute4',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute4);

1519: WSH_DEBUG_SV.log(l_module_name,' attribute_category',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute_category);
1520: WSH_DEBUG_SV.log(l_module_name,' attribute1',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute1);
1521: WSH_DEBUG_SV.log(l_module_name,' attribute2',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute2);
1522: WSH_DEBUG_SV.log(l_module_name,' attribute3',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute3);
1523: WSH_DEBUG_SV.log(l_module_name,' attribute4',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute4);
1524: WSH_DEBUG_SV.log(l_module_name,' attribute5',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute5);
1525: WSH_DEBUG_SV.log(l_module_name,' attribute6',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute6);
1526: WSH_DEBUG_SV.log(l_module_name,' attribute7',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute7);
1527: WSH_DEBUG_SV.log(l_module_name,' attribute8',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute8);

Line 1524: WSH_DEBUG_SV.log(l_module_name,' attribute5',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute5);

1520: WSH_DEBUG_SV.log(l_module_name,' attribute1',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute1);
1521: WSH_DEBUG_SV.log(l_module_name,' attribute2',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute2);
1522: WSH_DEBUG_SV.log(l_module_name,' attribute3',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute3);
1523: WSH_DEBUG_SV.log(l_module_name,' attribute4',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute4);
1524: WSH_DEBUG_SV.log(l_module_name,' attribute5',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute5);
1525: WSH_DEBUG_SV.log(l_module_name,' attribute6',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute6);
1526: WSH_DEBUG_SV.log(l_module_name,' attribute7',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute7);
1527: WSH_DEBUG_SV.log(l_module_name,' attribute8',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute8);
1528: WSH_DEBUG_SV.log(l_module_name,' attribute9',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute9);

Line 1525: WSH_DEBUG_SV.log(l_module_name,' attribute6',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute6);

1521: WSH_DEBUG_SV.log(l_module_name,' attribute2',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute2);
1522: WSH_DEBUG_SV.log(l_module_name,' attribute3',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute3);
1523: WSH_DEBUG_SV.log(l_module_name,' attribute4',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute4);
1524: WSH_DEBUG_SV.log(l_module_name,' attribute5',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute5);
1525: WSH_DEBUG_SV.log(l_module_name,' attribute6',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute6);
1526: WSH_DEBUG_SV.log(l_module_name,' attribute7',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute7);
1527: WSH_DEBUG_SV.log(l_module_name,' attribute8',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute8);
1528: WSH_DEBUG_SV.log(l_module_name,' attribute9',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute9);
1529: WSH_DEBUG_SV.log(l_module_name,' attribute10',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute10);

Line 1526: WSH_DEBUG_SV.log(l_module_name,' attribute7',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute7);

1522: WSH_DEBUG_SV.log(l_module_name,' attribute3',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute3);
1523: WSH_DEBUG_SV.log(l_module_name,' attribute4',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute4);
1524: WSH_DEBUG_SV.log(l_module_name,' attribute5',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute5);
1525: WSH_DEBUG_SV.log(l_module_name,' attribute6',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute6);
1526: WSH_DEBUG_SV.log(l_module_name,' attribute7',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute7);
1527: WSH_DEBUG_SV.log(l_module_name,' attribute8',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute8);
1528: WSH_DEBUG_SV.log(l_module_name,' attribute9',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute9);
1529: WSH_DEBUG_SV.log(l_module_name,' attribute10',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute10);
1530: WSH_DEBUG_SV.log(l_module_name,' attribute11',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute11);

Line 1527: WSH_DEBUG_SV.log(l_module_name,' attribute8',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute8);

1523: WSH_DEBUG_SV.log(l_module_name,' attribute4',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute4);
1524: WSH_DEBUG_SV.log(l_module_name,' attribute5',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute5);
1525: WSH_DEBUG_SV.log(l_module_name,' attribute6',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute6);
1526: WSH_DEBUG_SV.log(l_module_name,' attribute7',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute7);
1527: WSH_DEBUG_SV.log(l_module_name,' attribute8',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute8);
1528: WSH_DEBUG_SV.log(l_module_name,' attribute9',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute9);
1529: WSH_DEBUG_SV.log(l_module_name,' attribute10',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute10);
1530: WSH_DEBUG_SV.log(l_module_name,' attribute11',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute11);
1531: WSH_DEBUG_SV.log(l_module_name,' attribute12',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute12);

Line 1528: WSH_DEBUG_SV.log(l_module_name,' attribute9',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute9);

1524: WSH_DEBUG_SV.log(l_module_name,' attribute5',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute5);
1525: WSH_DEBUG_SV.log(l_module_name,' attribute6',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute6);
1526: WSH_DEBUG_SV.log(l_module_name,' attribute7',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute7);
1527: WSH_DEBUG_SV.log(l_module_name,' attribute8',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute8);
1528: WSH_DEBUG_SV.log(l_module_name,' attribute9',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute9);
1529: WSH_DEBUG_SV.log(l_module_name,' attribute10',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute10);
1530: WSH_DEBUG_SV.log(l_module_name,' attribute11',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute11);
1531: WSH_DEBUG_SV.log(l_module_name,' attribute12',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute12);
1532: WSH_DEBUG_SV.log(l_module_name,' attribute13',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute13);

Line 1529: WSH_DEBUG_SV.log(l_module_name,' attribute10',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute10);

1525: WSH_DEBUG_SV.log(l_module_name,' attribute6',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute6);
1526: WSH_DEBUG_SV.log(l_module_name,' attribute7',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute7);
1527: WSH_DEBUG_SV.log(l_module_name,' attribute8',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute8);
1528: WSH_DEBUG_SV.log(l_module_name,' attribute9',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute9);
1529: WSH_DEBUG_SV.log(l_module_name,' attribute10',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute10);
1530: WSH_DEBUG_SV.log(l_module_name,' attribute11',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute11);
1531: WSH_DEBUG_SV.log(l_module_name,' attribute12',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute12);
1532: WSH_DEBUG_SV.log(l_module_name,' attribute13',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute13);
1533: WSH_DEBUG_SV.log(l_module_name,' attribute14',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute14);

Line 1530: WSH_DEBUG_SV.log(l_module_name,' attribute11',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute11);

1526: WSH_DEBUG_SV.log(l_module_name,' attribute7',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute7);
1527: WSH_DEBUG_SV.log(l_module_name,' attribute8',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute8);
1528: WSH_DEBUG_SV.log(l_module_name,' attribute9',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute9);
1529: WSH_DEBUG_SV.log(l_module_name,' attribute10',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute10);
1530: WSH_DEBUG_SV.log(l_module_name,' attribute11',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute11);
1531: WSH_DEBUG_SV.log(l_module_name,' attribute12',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute12);
1532: WSH_DEBUG_SV.log(l_module_name,' attribute13',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute13);
1533: WSH_DEBUG_SV.log(l_module_name,' attribute14',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute14);
1534: WSH_DEBUG_SV.log(l_module_name,' attribute15',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute15);

Line 1531: WSH_DEBUG_SV.log(l_module_name,' attribute12',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute12);

1527: WSH_DEBUG_SV.log(l_module_name,' attribute8',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute8);
1528: WSH_DEBUG_SV.log(l_module_name,' attribute9',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute9);
1529: WSH_DEBUG_SV.log(l_module_name,' attribute10',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute10);
1530: WSH_DEBUG_SV.log(l_module_name,' attribute11',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute11);
1531: WSH_DEBUG_SV.log(l_module_name,' attribute12',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute12);
1532: WSH_DEBUG_SV.log(l_module_name,' attribute13',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute13);
1533: WSH_DEBUG_SV.log(l_module_name,' attribute14',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute14);
1534: WSH_DEBUG_SV.log(l_module_name,' attribute15',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute15);
1535: WSH_DEBUG_SV.logmsg(l_module_name,' -----------------------------------------------------------');

Line 1532: WSH_DEBUG_SV.log(l_module_name,' attribute13',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute13);

1528: WSH_DEBUG_SV.log(l_module_name,' attribute9',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute9);
1529: WSH_DEBUG_SV.log(l_module_name,' attribute10',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute10);
1530: WSH_DEBUG_SV.log(l_module_name,' attribute11',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute11);
1531: WSH_DEBUG_SV.log(l_module_name,' attribute12',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute12);
1532: WSH_DEBUG_SV.log(l_module_name,' attribute13',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute13);
1533: WSH_DEBUG_SV.log(l_module_name,' attribute14',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute14);
1534: WSH_DEBUG_SV.log(l_module_name,' attribute15',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute15);
1535: WSH_DEBUG_SV.logmsg(l_module_name,' -----------------------------------------------------------');
1536: END LOOP;

Line 1533: WSH_DEBUG_SV.log(l_module_name,' attribute14',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute14);

1529: WSH_DEBUG_SV.log(l_module_name,' attribute10',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute10);
1530: WSH_DEBUG_SV.log(l_module_name,' attribute11',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute11);
1531: WSH_DEBUG_SV.log(l_module_name,' attribute12',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute12);
1532: WSH_DEBUG_SV.log(l_module_name,' attribute13',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute13);
1533: WSH_DEBUG_SV.log(l_module_name,' attribute14',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute14);
1534: WSH_DEBUG_SV.log(l_module_name,' attribute15',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute15);
1535: WSH_DEBUG_SV.logmsg(l_module_name,' -----------------------------------------------------------');
1536: END LOOP;
1537: END IF;

Line 1534: WSH_DEBUG_SV.log(l_module_name,' attribute15',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute15);

1530: WSH_DEBUG_SV.log(l_module_name,' attribute11',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute11);
1531: WSH_DEBUG_SV.log(l_module_name,' attribute12',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute12);
1532: WSH_DEBUG_SV.log(l_module_name,' attribute13',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute13);
1533: WSH_DEBUG_SV.log(l_module_name,' attribute14',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute14);
1534: WSH_DEBUG_SV.log(l_module_name,' attribute15',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute15);
1535: WSH_DEBUG_SV.logmsg(l_module_name,' -----------------------------------------------------------');
1536: END LOOP;
1537: END IF;
1538: --}

Line 1535: WSH_DEBUG_SV.logmsg(l_module_name,' -----------------------------------------------------------');

1531: WSH_DEBUG_SV.log(l_module_name,' attribute12',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute12);
1532: WSH_DEBUG_SV.log(l_module_name,' attribute13',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute13);
1533: WSH_DEBUG_SV.log(l_module_name,' attribute14',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute14);
1534: WSH_DEBUG_SV.log(l_module_name,' attribute15',p_delivery_rec.delivery_details_tab(I).Detail_Freight_Tab(k).attribute15);
1535: WSH_DEBUG_SV.logmsg(l_module_name,' -----------------------------------------------------------');
1536: END LOOP;
1537: END IF;
1538: --}
1539: END LOOP;

Line 1542: WSH_DEBUG_SV.log(l_module_name,'Master_container_tab.count',p_delivery_rec.container_tab.count);

1538: --}
1539: END LOOP;
1540: END IF;
1541:
1542: WSH_DEBUG_SV.log(l_module_name,'Master_container_tab.count',p_delivery_rec.container_tab.count);
1543: IF p_delivery_rec.container_tab.count > 0 THEN --Delivery details count
1544: --{
1545: WSH_DEBUG_SV.logmsg(l_module_name,' -------------------------------------------------------------------');
1546: WSH_DEBUG_SV.logmsg(l_module_name,' WSH_DEL_DETAILS_INTERFACE(Master Containers) info for the delivery');

Line 1545: WSH_DEBUG_SV.logmsg(l_module_name,' -------------------------------------------------------------------');

1541:
1542: WSH_DEBUG_SV.log(l_module_name,'Master_container_tab.count',p_delivery_rec.container_tab.count);
1543: IF p_delivery_rec.container_tab.count > 0 THEN --Delivery details count
1544: --{
1545: WSH_DEBUG_SV.logmsg(l_module_name,' -------------------------------------------------------------------');
1546: WSH_DEBUG_SV.logmsg(l_module_name,' WSH_DEL_DETAILS_INTERFACE(Master Containers) info for the delivery');
1547:
1548: FOR I in 1..p_delivery_rec.container_tab.count LOOP
1549: --{

Line 1546: WSH_DEBUG_SV.logmsg(l_module_name,' WSH_DEL_DETAILS_INTERFACE(Master Containers) info for the delivery');

1542: WSH_DEBUG_SV.log(l_module_name,'Master_container_tab.count',p_delivery_rec.container_tab.count);
1543: IF p_delivery_rec.container_tab.count > 0 THEN --Delivery details count
1544: --{
1545: WSH_DEBUG_SV.logmsg(l_module_name,' -------------------------------------------------------------------');
1546: WSH_DEBUG_SV.logmsg(l_module_name,' WSH_DEL_DETAILS_INTERFACE(Master Containers) info for the delivery');
1547:
1548: FOR I in 1..p_delivery_rec.container_tab.count LOOP
1549: --{
1550: WSH_DEBUG_SV.log(l_module_name,' delivery_detail_number',p_delivery_rec.container_tab(i).delivery_detail_number);

Line 1550: WSH_DEBUG_SV.log(l_module_name,' delivery_detail_number',p_delivery_rec.container_tab(i).delivery_detail_number);

1546: WSH_DEBUG_SV.logmsg(l_module_name,' WSH_DEL_DETAILS_INTERFACE(Master Containers) info for the delivery');
1547:
1548: FOR I in 1..p_delivery_rec.container_tab.count LOOP
1549: --{
1550: WSH_DEBUG_SV.log(l_module_name,' delivery_detail_number',p_delivery_rec.container_tab(i).delivery_detail_number);
1551: WSH_DEBUG_SV.log(l_module_name,' attribute_category',p_delivery_rec.container_tab(i).attribute_category);
1552: WSH_DEBUG_SV.log(l_module_name,' attribute1',p_delivery_rec.container_tab(i).attribute1);
1553: WSH_DEBUG_SV.log(l_module_name,' attribute2',p_delivery_rec.container_tab(i).attribute2);
1554: WSH_DEBUG_SV.log(l_module_name,' attribute3',p_delivery_rec.container_tab(i).attribute3);

Line 1551: WSH_DEBUG_SV.log(l_module_name,' attribute_category',p_delivery_rec.container_tab(i).attribute_category);

1547:
1548: FOR I in 1..p_delivery_rec.container_tab.count LOOP
1549: --{
1550: WSH_DEBUG_SV.log(l_module_name,' delivery_detail_number',p_delivery_rec.container_tab(i).delivery_detail_number);
1551: WSH_DEBUG_SV.log(l_module_name,' attribute_category',p_delivery_rec.container_tab(i).attribute_category);
1552: WSH_DEBUG_SV.log(l_module_name,' attribute1',p_delivery_rec.container_tab(i).attribute1);
1553: WSH_DEBUG_SV.log(l_module_name,' attribute2',p_delivery_rec.container_tab(i).attribute2);
1554: WSH_DEBUG_SV.log(l_module_name,' attribute3',p_delivery_rec.container_tab(i).attribute3);
1555: WSH_DEBUG_SV.log(l_module_name,' attribute4',p_delivery_rec.container_tab(i).attribute4);

Line 1552: WSH_DEBUG_SV.log(l_module_name,' attribute1',p_delivery_rec.container_tab(i).attribute1);

1548: FOR I in 1..p_delivery_rec.container_tab.count LOOP
1549: --{
1550: WSH_DEBUG_SV.log(l_module_name,' delivery_detail_number',p_delivery_rec.container_tab(i).delivery_detail_number);
1551: WSH_DEBUG_SV.log(l_module_name,' attribute_category',p_delivery_rec.container_tab(i).attribute_category);
1552: WSH_DEBUG_SV.log(l_module_name,' attribute1',p_delivery_rec.container_tab(i).attribute1);
1553: WSH_DEBUG_SV.log(l_module_name,' attribute2',p_delivery_rec.container_tab(i).attribute2);
1554: WSH_DEBUG_SV.log(l_module_name,' attribute3',p_delivery_rec.container_tab(i).attribute3);
1555: WSH_DEBUG_SV.log(l_module_name,' attribute4',p_delivery_rec.container_tab(i).attribute4);
1556: WSH_DEBUG_SV.log(l_module_name,' attribute5',p_delivery_rec.container_tab(i).attribute5);

Line 1553: WSH_DEBUG_SV.log(l_module_name,' attribute2',p_delivery_rec.container_tab(i).attribute2);

1549: --{
1550: WSH_DEBUG_SV.log(l_module_name,' delivery_detail_number',p_delivery_rec.container_tab(i).delivery_detail_number);
1551: WSH_DEBUG_SV.log(l_module_name,' attribute_category',p_delivery_rec.container_tab(i).attribute_category);
1552: WSH_DEBUG_SV.log(l_module_name,' attribute1',p_delivery_rec.container_tab(i).attribute1);
1553: WSH_DEBUG_SV.log(l_module_name,' attribute2',p_delivery_rec.container_tab(i).attribute2);
1554: WSH_DEBUG_SV.log(l_module_name,' attribute3',p_delivery_rec.container_tab(i).attribute3);
1555: WSH_DEBUG_SV.log(l_module_name,' attribute4',p_delivery_rec.container_tab(i).attribute4);
1556: WSH_DEBUG_SV.log(l_module_name,' attribute5',p_delivery_rec.container_tab(i).attribute5);
1557: WSH_DEBUG_SV.log(l_module_name,' attribute6',p_delivery_rec.container_tab(i).attribute6);

Line 1554: WSH_DEBUG_SV.log(l_module_name,' attribute3',p_delivery_rec.container_tab(i).attribute3);

1550: WSH_DEBUG_SV.log(l_module_name,' delivery_detail_number',p_delivery_rec.container_tab(i).delivery_detail_number);
1551: WSH_DEBUG_SV.log(l_module_name,' attribute_category',p_delivery_rec.container_tab(i).attribute_category);
1552: WSH_DEBUG_SV.log(l_module_name,' attribute1',p_delivery_rec.container_tab(i).attribute1);
1553: WSH_DEBUG_SV.log(l_module_name,' attribute2',p_delivery_rec.container_tab(i).attribute2);
1554: WSH_DEBUG_SV.log(l_module_name,' attribute3',p_delivery_rec.container_tab(i).attribute3);
1555: WSH_DEBUG_SV.log(l_module_name,' attribute4',p_delivery_rec.container_tab(i).attribute4);
1556: WSH_DEBUG_SV.log(l_module_name,' attribute5',p_delivery_rec.container_tab(i).attribute5);
1557: WSH_DEBUG_SV.log(l_module_name,' attribute6',p_delivery_rec.container_tab(i).attribute6);
1558: WSH_DEBUG_SV.log(l_module_name,' attribute7',p_delivery_rec.container_tab(i).attribute7);

Line 1555: WSH_DEBUG_SV.log(l_module_name,' attribute4',p_delivery_rec.container_tab(i).attribute4);

1551: WSH_DEBUG_SV.log(l_module_name,' attribute_category',p_delivery_rec.container_tab(i).attribute_category);
1552: WSH_DEBUG_SV.log(l_module_name,' attribute1',p_delivery_rec.container_tab(i).attribute1);
1553: WSH_DEBUG_SV.log(l_module_name,' attribute2',p_delivery_rec.container_tab(i).attribute2);
1554: WSH_DEBUG_SV.log(l_module_name,' attribute3',p_delivery_rec.container_tab(i).attribute3);
1555: WSH_DEBUG_SV.log(l_module_name,' attribute4',p_delivery_rec.container_tab(i).attribute4);
1556: WSH_DEBUG_SV.log(l_module_name,' attribute5',p_delivery_rec.container_tab(i).attribute5);
1557: WSH_DEBUG_SV.log(l_module_name,' attribute6',p_delivery_rec.container_tab(i).attribute6);
1558: WSH_DEBUG_SV.log(l_module_name,' attribute7',p_delivery_rec.container_tab(i).attribute7);
1559: WSH_DEBUG_SV.log(l_module_name,' attribute8',p_delivery_rec.container_tab(i).attribute8);

Line 1556: WSH_DEBUG_SV.log(l_module_name,' attribute5',p_delivery_rec.container_tab(i).attribute5);

1552: WSH_DEBUG_SV.log(l_module_name,' attribute1',p_delivery_rec.container_tab(i).attribute1);
1553: WSH_DEBUG_SV.log(l_module_name,' attribute2',p_delivery_rec.container_tab(i).attribute2);
1554: WSH_DEBUG_SV.log(l_module_name,' attribute3',p_delivery_rec.container_tab(i).attribute3);
1555: WSH_DEBUG_SV.log(l_module_name,' attribute4',p_delivery_rec.container_tab(i).attribute4);
1556: WSH_DEBUG_SV.log(l_module_name,' attribute5',p_delivery_rec.container_tab(i).attribute5);
1557: WSH_DEBUG_SV.log(l_module_name,' attribute6',p_delivery_rec.container_tab(i).attribute6);
1558: WSH_DEBUG_SV.log(l_module_name,' attribute7',p_delivery_rec.container_tab(i).attribute7);
1559: WSH_DEBUG_SV.log(l_module_name,' attribute8',p_delivery_rec.container_tab(i).attribute8);
1560: WSH_DEBUG_SV.log(l_module_name,' attribute9',p_delivery_rec.container_tab(i).attribute9);

Line 1557: WSH_DEBUG_SV.log(l_module_name,' attribute6',p_delivery_rec.container_tab(i).attribute6);

1553: WSH_DEBUG_SV.log(l_module_name,' attribute2',p_delivery_rec.container_tab(i).attribute2);
1554: WSH_DEBUG_SV.log(l_module_name,' attribute3',p_delivery_rec.container_tab(i).attribute3);
1555: WSH_DEBUG_SV.log(l_module_name,' attribute4',p_delivery_rec.container_tab(i).attribute4);
1556: WSH_DEBUG_SV.log(l_module_name,' attribute5',p_delivery_rec.container_tab(i).attribute5);
1557: WSH_DEBUG_SV.log(l_module_name,' attribute6',p_delivery_rec.container_tab(i).attribute6);
1558: WSH_DEBUG_SV.log(l_module_name,' attribute7',p_delivery_rec.container_tab(i).attribute7);
1559: WSH_DEBUG_SV.log(l_module_name,' attribute8',p_delivery_rec.container_tab(i).attribute8);
1560: WSH_DEBUG_SV.log(l_module_name,' attribute9',p_delivery_rec.container_tab(i).attribute9);
1561: WSH_DEBUG_SV.log(l_module_name,' attribute10',p_delivery_rec.container_tab(i).attribute10);

Line 1558: WSH_DEBUG_SV.log(l_module_name,' attribute7',p_delivery_rec.container_tab(i).attribute7);

1554: WSH_DEBUG_SV.log(l_module_name,' attribute3',p_delivery_rec.container_tab(i).attribute3);
1555: WSH_DEBUG_SV.log(l_module_name,' attribute4',p_delivery_rec.container_tab(i).attribute4);
1556: WSH_DEBUG_SV.log(l_module_name,' attribute5',p_delivery_rec.container_tab(i).attribute5);
1557: WSH_DEBUG_SV.log(l_module_name,' attribute6',p_delivery_rec.container_tab(i).attribute6);
1558: WSH_DEBUG_SV.log(l_module_name,' attribute7',p_delivery_rec.container_tab(i).attribute7);
1559: WSH_DEBUG_SV.log(l_module_name,' attribute8',p_delivery_rec.container_tab(i).attribute8);
1560: WSH_DEBUG_SV.log(l_module_name,' attribute9',p_delivery_rec.container_tab(i).attribute9);
1561: WSH_DEBUG_SV.log(l_module_name,' attribute10',p_delivery_rec.container_tab(i).attribute10);
1562: WSH_DEBUG_SV.log(l_module_name,' attribute11',p_delivery_rec.container_tab(i).attribute11);

Line 1559: WSH_DEBUG_SV.log(l_module_name,' attribute8',p_delivery_rec.container_tab(i).attribute8);

1555: WSH_DEBUG_SV.log(l_module_name,' attribute4',p_delivery_rec.container_tab(i).attribute4);
1556: WSH_DEBUG_SV.log(l_module_name,' attribute5',p_delivery_rec.container_tab(i).attribute5);
1557: WSH_DEBUG_SV.log(l_module_name,' attribute6',p_delivery_rec.container_tab(i).attribute6);
1558: WSH_DEBUG_SV.log(l_module_name,' attribute7',p_delivery_rec.container_tab(i).attribute7);
1559: WSH_DEBUG_SV.log(l_module_name,' attribute8',p_delivery_rec.container_tab(i).attribute8);
1560: WSH_DEBUG_SV.log(l_module_name,' attribute9',p_delivery_rec.container_tab(i).attribute9);
1561: WSH_DEBUG_SV.log(l_module_name,' attribute10',p_delivery_rec.container_tab(i).attribute10);
1562: WSH_DEBUG_SV.log(l_module_name,' attribute11',p_delivery_rec.container_tab(i).attribute11);
1563: WSH_DEBUG_SV.log(l_module_name,' attribute12',p_delivery_rec.container_tab(i).attribute12);

Line 1560: WSH_DEBUG_SV.log(l_module_name,' attribute9',p_delivery_rec.container_tab(i).attribute9);

1556: WSH_DEBUG_SV.log(l_module_name,' attribute5',p_delivery_rec.container_tab(i).attribute5);
1557: WSH_DEBUG_SV.log(l_module_name,' attribute6',p_delivery_rec.container_tab(i).attribute6);
1558: WSH_DEBUG_SV.log(l_module_name,' attribute7',p_delivery_rec.container_tab(i).attribute7);
1559: WSH_DEBUG_SV.log(l_module_name,' attribute8',p_delivery_rec.container_tab(i).attribute8);
1560: WSH_DEBUG_SV.log(l_module_name,' attribute9',p_delivery_rec.container_tab(i).attribute9);
1561: WSH_DEBUG_SV.log(l_module_name,' attribute10',p_delivery_rec.container_tab(i).attribute10);
1562: WSH_DEBUG_SV.log(l_module_name,' attribute11',p_delivery_rec.container_tab(i).attribute11);
1563: WSH_DEBUG_SV.log(l_module_name,' attribute12',p_delivery_rec.container_tab(i).attribute12);
1564: WSH_DEBUG_SV.log(l_module_name,' attribute13',p_delivery_rec.container_tab(i).attribute13);

Line 1561: WSH_DEBUG_SV.log(l_module_name,' attribute10',p_delivery_rec.container_tab(i).attribute10);

1557: WSH_DEBUG_SV.log(l_module_name,' attribute6',p_delivery_rec.container_tab(i).attribute6);
1558: WSH_DEBUG_SV.log(l_module_name,' attribute7',p_delivery_rec.container_tab(i).attribute7);
1559: WSH_DEBUG_SV.log(l_module_name,' attribute8',p_delivery_rec.container_tab(i).attribute8);
1560: WSH_DEBUG_SV.log(l_module_name,' attribute9',p_delivery_rec.container_tab(i).attribute9);
1561: WSH_DEBUG_SV.log(l_module_name,' attribute10',p_delivery_rec.container_tab(i).attribute10);
1562: WSH_DEBUG_SV.log(l_module_name,' attribute11',p_delivery_rec.container_tab(i).attribute11);
1563: WSH_DEBUG_SV.log(l_module_name,' attribute12',p_delivery_rec.container_tab(i).attribute12);
1564: WSH_DEBUG_SV.log(l_module_name,' attribute13',p_delivery_rec.container_tab(i).attribute13);
1565: WSH_DEBUG_SV.log(l_module_name,' attribute14',p_delivery_rec.container_tab(i).attribute14);

Line 1562: WSH_DEBUG_SV.log(l_module_name,' attribute11',p_delivery_rec.container_tab(i).attribute11);

1558: WSH_DEBUG_SV.log(l_module_name,' attribute7',p_delivery_rec.container_tab(i).attribute7);
1559: WSH_DEBUG_SV.log(l_module_name,' attribute8',p_delivery_rec.container_tab(i).attribute8);
1560: WSH_DEBUG_SV.log(l_module_name,' attribute9',p_delivery_rec.container_tab(i).attribute9);
1561: WSH_DEBUG_SV.log(l_module_name,' attribute10',p_delivery_rec.container_tab(i).attribute10);
1562: WSH_DEBUG_SV.log(l_module_name,' attribute11',p_delivery_rec.container_tab(i).attribute11);
1563: WSH_DEBUG_SV.log(l_module_name,' attribute12',p_delivery_rec.container_tab(i).attribute12);
1564: WSH_DEBUG_SV.log(l_module_name,' attribute13',p_delivery_rec.container_tab(i).attribute13);
1565: WSH_DEBUG_SV.log(l_module_name,' attribute14',p_delivery_rec.container_tab(i).attribute14);
1566: WSH_DEBUG_SV.log(l_module_name,' attribute15',p_delivery_rec.container_tab(i).attribute15);

Line 1563: WSH_DEBUG_SV.log(l_module_name,' attribute12',p_delivery_rec.container_tab(i).attribute12);

1559: WSH_DEBUG_SV.log(l_module_name,' attribute8',p_delivery_rec.container_tab(i).attribute8);
1560: WSH_DEBUG_SV.log(l_module_name,' attribute9',p_delivery_rec.container_tab(i).attribute9);
1561: WSH_DEBUG_SV.log(l_module_name,' attribute10',p_delivery_rec.container_tab(i).attribute10);
1562: WSH_DEBUG_SV.log(l_module_name,' attribute11',p_delivery_rec.container_tab(i).attribute11);
1563: WSH_DEBUG_SV.log(l_module_name,' attribute12',p_delivery_rec.container_tab(i).attribute12);
1564: WSH_DEBUG_SV.log(l_module_name,' attribute13',p_delivery_rec.container_tab(i).attribute13);
1565: WSH_DEBUG_SV.log(l_module_name,' attribute14',p_delivery_rec.container_tab(i).attribute14);
1566: WSH_DEBUG_SV.log(l_module_name,' attribute15',p_delivery_rec.container_tab(i).attribute15);
1567: WSH_DEBUG_SV.log(l_module_name,' container_name ',p_delivery_rec.container_tab(i).container_name );

Line 1564: WSH_DEBUG_SV.log(l_module_name,' attribute13',p_delivery_rec.container_tab(i).attribute13);

1560: WSH_DEBUG_SV.log(l_module_name,' attribute9',p_delivery_rec.container_tab(i).attribute9);
1561: WSH_DEBUG_SV.log(l_module_name,' attribute10',p_delivery_rec.container_tab(i).attribute10);
1562: WSH_DEBUG_SV.log(l_module_name,' attribute11',p_delivery_rec.container_tab(i).attribute11);
1563: WSH_DEBUG_SV.log(l_module_name,' attribute12',p_delivery_rec.container_tab(i).attribute12);
1564: WSH_DEBUG_SV.log(l_module_name,' attribute13',p_delivery_rec.container_tab(i).attribute13);
1565: WSH_DEBUG_SV.log(l_module_name,' attribute14',p_delivery_rec.container_tab(i).attribute14);
1566: WSH_DEBUG_SV.log(l_module_name,' attribute15',p_delivery_rec.container_tab(i).attribute15);
1567: WSH_DEBUG_SV.log(l_module_name,' container_name ',p_delivery_rec.container_tab(i).container_name );
1568: WSH_DEBUG_SV.log(l_module_name,' item_number',p_delivery_rec.container_tab(i).item_number);

Line 1565: WSH_DEBUG_SV.log(l_module_name,' attribute14',p_delivery_rec.container_tab(i).attribute14);

1561: WSH_DEBUG_SV.log(l_module_name,' attribute10',p_delivery_rec.container_tab(i).attribute10);
1562: WSH_DEBUG_SV.log(l_module_name,' attribute11',p_delivery_rec.container_tab(i).attribute11);
1563: WSH_DEBUG_SV.log(l_module_name,' attribute12',p_delivery_rec.container_tab(i).attribute12);
1564: WSH_DEBUG_SV.log(l_module_name,' attribute13',p_delivery_rec.container_tab(i).attribute13);
1565: WSH_DEBUG_SV.log(l_module_name,' attribute14',p_delivery_rec.container_tab(i).attribute14);
1566: WSH_DEBUG_SV.log(l_module_name,' attribute15',p_delivery_rec.container_tab(i).attribute15);
1567: WSH_DEBUG_SV.log(l_module_name,' container_name ',p_delivery_rec.container_tab(i).container_name );
1568: WSH_DEBUG_SV.log(l_module_name,' item_number',p_delivery_rec.container_tab(i).item_number);
1569: WSH_DEBUG_SV.log(l_module_name,' item_description',p_delivery_rec.container_tab(i).item_description);

Line 1566: WSH_DEBUG_SV.log(l_module_name,' attribute15',p_delivery_rec.container_tab(i).attribute15);

1562: WSH_DEBUG_SV.log(l_module_name,' attribute11',p_delivery_rec.container_tab(i).attribute11);
1563: WSH_DEBUG_SV.log(l_module_name,' attribute12',p_delivery_rec.container_tab(i).attribute12);
1564: WSH_DEBUG_SV.log(l_module_name,' attribute13',p_delivery_rec.container_tab(i).attribute13);
1565: WSH_DEBUG_SV.log(l_module_name,' attribute14',p_delivery_rec.container_tab(i).attribute14);
1566: WSH_DEBUG_SV.log(l_module_name,' attribute15',p_delivery_rec.container_tab(i).attribute15);
1567: WSH_DEBUG_SV.log(l_module_name,' container_name ',p_delivery_rec.container_tab(i).container_name );
1568: WSH_DEBUG_SV.log(l_module_name,' item_number',p_delivery_rec.container_tab(i).item_number);
1569: WSH_DEBUG_SV.log(l_module_name,' item_description',p_delivery_rec.container_tab(i).item_description);
1570: WSH_DEBUG_SV.log(l_module_name,' gross_weight',p_delivery_rec.container_tab(i).gross_weight);

Line 1567: WSH_DEBUG_SV.log(l_module_name,' container_name ',p_delivery_rec.container_tab(i).container_name );

1563: WSH_DEBUG_SV.log(l_module_name,' attribute12',p_delivery_rec.container_tab(i).attribute12);
1564: WSH_DEBUG_SV.log(l_module_name,' attribute13',p_delivery_rec.container_tab(i).attribute13);
1565: WSH_DEBUG_SV.log(l_module_name,' attribute14',p_delivery_rec.container_tab(i).attribute14);
1566: WSH_DEBUG_SV.log(l_module_name,' attribute15',p_delivery_rec.container_tab(i).attribute15);
1567: WSH_DEBUG_SV.log(l_module_name,' container_name ',p_delivery_rec.container_tab(i).container_name );
1568: WSH_DEBUG_SV.log(l_module_name,' item_number',p_delivery_rec.container_tab(i).item_number);
1569: WSH_DEBUG_SV.log(l_module_name,' item_description',p_delivery_rec.container_tab(i).item_description);
1570: WSH_DEBUG_SV.log(l_module_name,' gross_weight',p_delivery_rec.container_tab(i).gross_weight);
1571: WSH_DEBUG_SV.log(l_module_name,' net_weight',p_delivery_rec.container_tab(i).net_weight);

Line 1568: WSH_DEBUG_SV.log(l_module_name,' item_number',p_delivery_rec.container_tab(i).item_number);

1564: WSH_DEBUG_SV.log(l_module_name,' attribute13',p_delivery_rec.container_tab(i).attribute13);
1565: WSH_DEBUG_SV.log(l_module_name,' attribute14',p_delivery_rec.container_tab(i).attribute14);
1566: WSH_DEBUG_SV.log(l_module_name,' attribute15',p_delivery_rec.container_tab(i).attribute15);
1567: WSH_DEBUG_SV.log(l_module_name,' container_name ',p_delivery_rec.container_tab(i).container_name );
1568: WSH_DEBUG_SV.log(l_module_name,' item_number',p_delivery_rec.container_tab(i).item_number);
1569: WSH_DEBUG_SV.log(l_module_name,' item_description',p_delivery_rec.container_tab(i).item_description);
1570: WSH_DEBUG_SV.log(l_module_name,' gross_weight',p_delivery_rec.container_tab(i).gross_weight);
1571: WSH_DEBUG_SV.log(l_module_name,' net_weight',p_delivery_rec.container_tab(i).net_weight);
1572: WSH_DEBUG_SV.log(l_module_name,' weight_uom_code',p_delivery_rec.container_tab(i).weight_uom_code);

Line 1569: WSH_DEBUG_SV.log(l_module_name,' item_description',p_delivery_rec.container_tab(i).item_description);

1565: WSH_DEBUG_SV.log(l_module_name,' attribute14',p_delivery_rec.container_tab(i).attribute14);
1566: WSH_DEBUG_SV.log(l_module_name,' attribute15',p_delivery_rec.container_tab(i).attribute15);
1567: WSH_DEBUG_SV.log(l_module_name,' container_name ',p_delivery_rec.container_tab(i).container_name );
1568: WSH_DEBUG_SV.log(l_module_name,' item_number',p_delivery_rec.container_tab(i).item_number);
1569: WSH_DEBUG_SV.log(l_module_name,' item_description',p_delivery_rec.container_tab(i).item_description);
1570: WSH_DEBUG_SV.log(l_module_name,' gross_weight',p_delivery_rec.container_tab(i).gross_weight);
1571: WSH_DEBUG_SV.log(l_module_name,' net_weight',p_delivery_rec.container_tab(i).net_weight);
1572: WSH_DEBUG_SV.log(l_module_name,' weight_uom_code',p_delivery_rec.container_tab(i).weight_uom_code);
1573: WSH_DEBUG_SV.log(l_module_name,' volume',p_delivery_rec.container_tab(i).volume);

Line 1570: WSH_DEBUG_SV.log(l_module_name,' gross_weight',p_delivery_rec.container_tab(i).gross_weight);

1566: WSH_DEBUG_SV.log(l_module_name,' attribute15',p_delivery_rec.container_tab(i).attribute15);
1567: WSH_DEBUG_SV.log(l_module_name,' container_name ',p_delivery_rec.container_tab(i).container_name );
1568: WSH_DEBUG_SV.log(l_module_name,' item_number',p_delivery_rec.container_tab(i).item_number);
1569: WSH_DEBUG_SV.log(l_module_name,' item_description',p_delivery_rec.container_tab(i).item_description);
1570: WSH_DEBUG_SV.log(l_module_name,' gross_weight',p_delivery_rec.container_tab(i).gross_weight);
1571: WSH_DEBUG_SV.log(l_module_name,' net_weight',p_delivery_rec.container_tab(i).net_weight);
1572: WSH_DEBUG_SV.log(l_module_name,' weight_uom_code',p_delivery_rec.container_tab(i).weight_uom_code);
1573: WSH_DEBUG_SV.log(l_module_name,' volume',p_delivery_rec.container_tab(i).volume);
1574: WSH_DEBUG_SV.log(l_module_name,' volume_uom_code',p_delivery_rec.container_tab(i).volume_uom_code);

Line 1571: WSH_DEBUG_SV.log(l_module_name,' net_weight',p_delivery_rec.container_tab(i).net_weight);

1567: WSH_DEBUG_SV.log(l_module_name,' container_name ',p_delivery_rec.container_tab(i).container_name );
1568: WSH_DEBUG_SV.log(l_module_name,' item_number',p_delivery_rec.container_tab(i).item_number);
1569: WSH_DEBUG_SV.log(l_module_name,' item_description',p_delivery_rec.container_tab(i).item_description);
1570: WSH_DEBUG_SV.log(l_module_name,' gross_weight',p_delivery_rec.container_tab(i).gross_weight);
1571: WSH_DEBUG_SV.log(l_module_name,' net_weight',p_delivery_rec.container_tab(i).net_weight);
1572: WSH_DEBUG_SV.log(l_module_name,' weight_uom_code',p_delivery_rec.container_tab(i).weight_uom_code);
1573: WSH_DEBUG_SV.log(l_module_name,' volume',p_delivery_rec.container_tab(i).volume);
1574: WSH_DEBUG_SV.log(l_module_name,' volume_uom_code',p_delivery_rec.container_tab(i).volume_uom_code);
1575: WSH_DEBUG_SV.log(l_module_name,' wv_frozen_flag',p_delivery_rec.container_tab(i).wv_frozen_flag);

Line 1572: WSH_DEBUG_SV.log(l_module_name,' weight_uom_code',p_delivery_rec.container_tab(i).weight_uom_code);

1568: WSH_DEBUG_SV.log(l_module_name,' item_number',p_delivery_rec.container_tab(i).item_number);
1569: WSH_DEBUG_SV.log(l_module_name,' item_description',p_delivery_rec.container_tab(i).item_description);
1570: WSH_DEBUG_SV.log(l_module_name,' gross_weight',p_delivery_rec.container_tab(i).gross_weight);
1571: WSH_DEBUG_SV.log(l_module_name,' net_weight',p_delivery_rec.container_tab(i).net_weight);
1572: WSH_DEBUG_SV.log(l_module_name,' weight_uom_code',p_delivery_rec.container_tab(i).weight_uom_code);
1573: WSH_DEBUG_SV.log(l_module_name,' volume',p_delivery_rec.container_tab(i).volume);
1574: WSH_DEBUG_SV.log(l_module_name,' volume_uom_code',p_delivery_rec.container_tab(i).volume_uom_code);
1575: WSH_DEBUG_SV.log(l_module_name,' wv_frozen_flag',p_delivery_rec.container_tab(i).wv_frozen_flag);
1576: WSH_DEBUG_SV.log(l_module_name,' filled_volume',p_delivery_rec.container_tab(i).filled_volume);

Line 1573: WSH_DEBUG_SV.log(l_module_name,' volume',p_delivery_rec.container_tab(i).volume);

1569: WSH_DEBUG_SV.log(l_module_name,' item_description',p_delivery_rec.container_tab(i).item_description);
1570: WSH_DEBUG_SV.log(l_module_name,' gross_weight',p_delivery_rec.container_tab(i).gross_weight);
1571: WSH_DEBUG_SV.log(l_module_name,' net_weight',p_delivery_rec.container_tab(i).net_weight);
1572: WSH_DEBUG_SV.log(l_module_name,' weight_uom_code',p_delivery_rec.container_tab(i).weight_uom_code);
1573: WSH_DEBUG_SV.log(l_module_name,' volume',p_delivery_rec.container_tab(i).volume);
1574: WSH_DEBUG_SV.log(l_module_name,' volume_uom_code',p_delivery_rec.container_tab(i).volume_uom_code);
1575: WSH_DEBUG_SV.log(l_module_name,' wv_frozen_flag',p_delivery_rec.container_tab(i).wv_frozen_flag);
1576: WSH_DEBUG_SV.log(l_module_name,' filled_volume',p_delivery_rec.container_tab(i).filled_volume);
1577: WSH_DEBUG_SV.log(l_module_name,' fill_percent',p_delivery_rec.container_tab(i).fill_percent);

Line 1574: WSH_DEBUG_SV.log(l_module_name,' volume_uom_code',p_delivery_rec.container_tab(i).volume_uom_code);

1570: WSH_DEBUG_SV.log(l_module_name,' gross_weight',p_delivery_rec.container_tab(i).gross_weight);
1571: WSH_DEBUG_SV.log(l_module_name,' net_weight',p_delivery_rec.container_tab(i).net_weight);
1572: WSH_DEBUG_SV.log(l_module_name,' weight_uom_code',p_delivery_rec.container_tab(i).weight_uom_code);
1573: WSH_DEBUG_SV.log(l_module_name,' volume',p_delivery_rec.container_tab(i).volume);
1574: WSH_DEBUG_SV.log(l_module_name,' volume_uom_code',p_delivery_rec.container_tab(i).volume_uom_code);
1575: WSH_DEBUG_SV.log(l_module_name,' wv_frozen_flag',p_delivery_rec.container_tab(i).wv_frozen_flag);
1576: WSH_DEBUG_SV.log(l_module_name,' filled_volume',p_delivery_rec.container_tab(i).filled_volume);
1577: WSH_DEBUG_SV.log(l_module_name,' fill_percent',p_delivery_rec.container_tab(i).fill_percent);
1578: WSH_DEBUG_SV.log(l_module_name,' seal_code',p_delivery_rec.container_tab(i).seal_code);

Line 1575: WSH_DEBUG_SV.log(l_module_name,' wv_frozen_flag',p_delivery_rec.container_tab(i).wv_frozen_flag);

1571: WSH_DEBUG_SV.log(l_module_name,' net_weight',p_delivery_rec.container_tab(i).net_weight);
1572: WSH_DEBUG_SV.log(l_module_name,' weight_uom_code',p_delivery_rec.container_tab(i).weight_uom_code);
1573: WSH_DEBUG_SV.log(l_module_name,' volume',p_delivery_rec.container_tab(i).volume);
1574: WSH_DEBUG_SV.log(l_module_name,' volume_uom_code',p_delivery_rec.container_tab(i).volume_uom_code);
1575: WSH_DEBUG_SV.log(l_module_name,' wv_frozen_flag',p_delivery_rec.container_tab(i).wv_frozen_flag);
1576: WSH_DEBUG_SV.log(l_module_name,' filled_volume',p_delivery_rec.container_tab(i).filled_volume);
1577: WSH_DEBUG_SV.log(l_module_name,' fill_percent',p_delivery_rec.container_tab(i).fill_percent);
1578: WSH_DEBUG_SV.log(l_module_name,' seal_code',p_delivery_rec.container_tab(i).seal_code);
1579: WSH_DEBUG_SV.log(l_module_name,' packing_instructions',p_delivery_rec.container_tab(i).packing_instructions);

Line 1576: WSH_DEBUG_SV.log(l_module_name,' filled_volume',p_delivery_rec.container_tab(i).filled_volume);

1572: WSH_DEBUG_SV.log(l_module_name,' weight_uom_code',p_delivery_rec.container_tab(i).weight_uom_code);
1573: WSH_DEBUG_SV.log(l_module_name,' volume',p_delivery_rec.container_tab(i).volume);
1574: WSH_DEBUG_SV.log(l_module_name,' volume_uom_code',p_delivery_rec.container_tab(i).volume_uom_code);
1575: WSH_DEBUG_SV.log(l_module_name,' wv_frozen_flag',p_delivery_rec.container_tab(i).wv_frozen_flag);
1576: WSH_DEBUG_SV.log(l_module_name,' filled_volume',p_delivery_rec.container_tab(i).filled_volume);
1577: WSH_DEBUG_SV.log(l_module_name,' fill_percent',p_delivery_rec.container_tab(i).fill_percent);
1578: WSH_DEBUG_SV.log(l_module_name,' seal_code',p_delivery_rec.container_tab(i).seal_code);
1579: WSH_DEBUG_SV.log(l_module_name,' packing_instructions',p_delivery_rec.container_tab(i).packing_instructions);
1580: WSH_DEBUG_SV.log(l_module_name,' shipping_instructions',p_delivery_rec.container_tab(i).shipping_instructions);

Line 1577: WSH_DEBUG_SV.log(l_module_name,' fill_percent',p_delivery_rec.container_tab(i).fill_percent);

1573: WSH_DEBUG_SV.log(l_module_name,' volume',p_delivery_rec.container_tab(i).volume);
1574: WSH_DEBUG_SV.log(l_module_name,' volume_uom_code',p_delivery_rec.container_tab(i).volume_uom_code);
1575: WSH_DEBUG_SV.log(l_module_name,' wv_frozen_flag',p_delivery_rec.container_tab(i).wv_frozen_flag);
1576: WSH_DEBUG_SV.log(l_module_name,' filled_volume',p_delivery_rec.container_tab(i).filled_volume);
1577: WSH_DEBUG_SV.log(l_module_name,' fill_percent',p_delivery_rec.container_tab(i).fill_percent);
1578: WSH_DEBUG_SV.log(l_module_name,' seal_code',p_delivery_rec.container_tab(i).seal_code);
1579: WSH_DEBUG_SV.log(l_module_name,' packing_instructions',p_delivery_rec.container_tab(i).packing_instructions);
1580: WSH_DEBUG_SV.log(l_module_name,' shipping_instructions',p_delivery_rec.container_tab(i).shipping_instructions);
1581: WSH_DEBUG_SV.log(l_module_name,' tracking_number',p_delivery_rec.container_tab(i).tracking_number);

Line 1578: WSH_DEBUG_SV.log(l_module_name,' seal_code',p_delivery_rec.container_tab(i).seal_code);

1574: WSH_DEBUG_SV.log(l_module_name,' volume_uom_code',p_delivery_rec.container_tab(i).volume_uom_code);
1575: WSH_DEBUG_SV.log(l_module_name,' wv_frozen_flag',p_delivery_rec.container_tab(i).wv_frozen_flag);
1576: WSH_DEBUG_SV.log(l_module_name,' filled_volume',p_delivery_rec.container_tab(i).filled_volume);
1577: WSH_DEBUG_SV.log(l_module_name,' fill_percent',p_delivery_rec.container_tab(i).fill_percent);
1578: WSH_DEBUG_SV.log(l_module_name,' seal_code',p_delivery_rec.container_tab(i).seal_code);
1579: WSH_DEBUG_SV.log(l_module_name,' packing_instructions',p_delivery_rec.container_tab(i).packing_instructions);
1580: WSH_DEBUG_SV.log(l_module_name,' shipping_instructions',p_delivery_rec.container_tab(i).shipping_instructions);
1581: WSH_DEBUG_SV.log(l_module_name,' tracking_number',p_delivery_rec.container_tab(i).tracking_number);
1582: WSH_DEBUG_SV.logmsg(l_module_name,' -------------------------------------------------------------------');

Line 1579: WSH_DEBUG_SV.log(l_module_name,' packing_instructions',p_delivery_rec.container_tab(i).packing_instructions);

1575: WSH_DEBUG_SV.log(l_module_name,' wv_frozen_flag',p_delivery_rec.container_tab(i).wv_frozen_flag);
1576: WSH_DEBUG_SV.log(l_module_name,' filled_volume',p_delivery_rec.container_tab(i).filled_volume);
1577: WSH_DEBUG_SV.log(l_module_name,' fill_percent',p_delivery_rec.container_tab(i).fill_percent);
1578: WSH_DEBUG_SV.log(l_module_name,' seal_code',p_delivery_rec.container_tab(i).seal_code);
1579: WSH_DEBUG_SV.log(l_module_name,' packing_instructions',p_delivery_rec.container_tab(i).packing_instructions);
1580: WSH_DEBUG_SV.log(l_module_name,' shipping_instructions',p_delivery_rec.container_tab(i).shipping_instructions);
1581: WSH_DEBUG_SV.log(l_module_name,' tracking_number',p_delivery_rec.container_tab(i).tracking_number);
1582: WSH_DEBUG_SV.logmsg(l_module_name,' -------------------------------------------------------------------');
1583: WSH_DEBUG_SV.log(l_module_name,' Master_Container_Freight_Tab.count',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab.count);

Line 1580: WSH_DEBUG_SV.log(l_module_name,' shipping_instructions',p_delivery_rec.container_tab(i).shipping_instructions);

1576: WSH_DEBUG_SV.log(l_module_name,' filled_volume',p_delivery_rec.container_tab(i).filled_volume);
1577: WSH_DEBUG_SV.log(l_module_name,' fill_percent',p_delivery_rec.container_tab(i).fill_percent);
1578: WSH_DEBUG_SV.log(l_module_name,' seal_code',p_delivery_rec.container_tab(i).seal_code);
1579: WSH_DEBUG_SV.log(l_module_name,' packing_instructions',p_delivery_rec.container_tab(i).packing_instructions);
1580: WSH_DEBUG_SV.log(l_module_name,' shipping_instructions',p_delivery_rec.container_tab(i).shipping_instructions);
1581: WSH_DEBUG_SV.log(l_module_name,' tracking_number',p_delivery_rec.container_tab(i).tracking_number);
1582: WSH_DEBUG_SV.logmsg(l_module_name,' -------------------------------------------------------------------');
1583: WSH_DEBUG_SV.log(l_module_name,' Master_Container_Freight_Tab.count',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab.count);
1584: IF p_delivery_rec.container_tab(i).Master_Container_Freight_Tab.count >0 THEN

Line 1581: WSH_DEBUG_SV.log(l_module_name,' tracking_number',p_delivery_rec.container_tab(i).tracking_number);

1577: WSH_DEBUG_SV.log(l_module_name,' fill_percent',p_delivery_rec.container_tab(i).fill_percent);
1578: WSH_DEBUG_SV.log(l_module_name,' seal_code',p_delivery_rec.container_tab(i).seal_code);
1579: WSH_DEBUG_SV.log(l_module_name,' packing_instructions',p_delivery_rec.container_tab(i).packing_instructions);
1580: WSH_DEBUG_SV.log(l_module_name,' shipping_instructions',p_delivery_rec.container_tab(i).shipping_instructions);
1581: WSH_DEBUG_SV.log(l_module_name,' tracking_number',p_delivery_rec.container_tab(i).tracking_number);
1582: WSH_DEBUG_SV.logmsg(l_module_name,' -------------------------------------------------------------------');
1583: WSH_DEBUG_SV.log(l_module_name,' Master_Container_Freight_Tab.count',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab.count);
1584: IF p_delivery_rec.container_tab(i).Master_Container_Freight_Tab.count >0 THEN
1585: WSH_DEBUG_SV.logmsg(l_module_name,' -------------------------------------------------------------------');

Line 1582: WSH_DEBUG_SV.logmsg(l_module_name,' -------------------------------------------------------------------');

1578: WSH_DEBUG_SV.log(l_module_name,' seal_code',p_delivery_rec.container_tab(i).seal_code);
1579: WSH_DEBUG_SV.log(l_module_name,' packing_instructions',p_delivery_rec.container_tab(i).packing_instructions);
1580: WSH_DEBUG_SV.log(l_module_name,' shipping_instructions',p_delivery_rec.container_tab(i).shipping_instructions);
1581: WSH_DEBUG_SV.log(l_module_name,' tracking_number',p_delivery_rec.container_tab(i).tracking_number);
1582: WSH_DEBUG_SV.logmsg(l_module_name,' -------------------------------------------------------------------');
1583: WSH_DEBUG_SV.log(l_module_name,' Master_Container_Freight_Tab.count',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab.count);
1584: IF p_delivery_rec.container_tab(i).Master_Container_Freight_Tab.count >0 THEN
1585: WSH_DEBUG_SV.logmsg(l_module_name,' -------------------------------------------------------------------');
1586: WSH_DEBUG_SV.logmsg(l_module_name,' Master_Container_Freight_Tab Details');

Line 1583: WSH_DEBUG_SV.log(l_module_name,' Master_Container_Freight_Tab.count',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab.count);

1579: WSH_DEBUG_SV.log(l_module_name,' packing_instructions',p_delivery_rec.container_tab(i).packing_instructions);
1580: WSH_DEBUG_SV.log(l_module_name,' shipping_instructions',p_delivery_rec.container_tab(i).shipping_instructions);
1581: WSH_DEBUG_SV.log(l_module_name,' tracking_number',p_delivery_rec.container_tab(i).tracking_number);
1582: WSH_DEBUG_SV.logmsg(l_module_name,' -------------------------------------------------------------------');
1583: WSH_DEBUG_SV.log(l_module_name,' Master_Container_Freight_Tab.count',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab.count);
1584: IF p_delivery_rec.container_tab(i).Master_Container_Freight_Tab.count >0 THEN
1585: WSH_DEBUG_SV.logmsg(l_module_name,' -------------------------------------------------------------------');
1586: WSH_DEBUG_SV.logmsg(l_module_name,' Master_Container_Freight_Tab Details');
1587: WSH_DEBUG_SV.logmsg(l_module_name,' -------------------------------------------------------------------');

Line 1585: WSH_DEBUG_SV.logmsg(l_module_name,' -------------------------------------------------------------------');

1581: WSH_DEBUG_SV.log(l_module_name,' tracking_number',p_delivery_rec.container_tab(i).tracking_number);
1582: WSH_DEBUG_SV.logmsg(l_module_name,' -------------------------------------------------------------------');
1583: WSH_DEBUG_SV.log(l_module_name,' Master_Container_Freight_Tab.count',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab.count);
1584: IF p_delivery_rec.container_tab(i).Master_Container_Freight_Tab.count >0 THEN
1585: WSH_DEBUG_SV.logmsg(l_module_name,' -------------------------------------------------------------------');
1586: WSH_DEBUG_SV.logmsg(l_module_name,' Master_Container_Freight_Tab Details');
1587: WSH_DEBUG_SV.logmsg(l_module_name,' -------------------------------------------------------------------');
1588:
1589: FOR K in 1..p_delivery_rec.container_tab(i).Master_Container_Freight_Tab.count LOOP

Line 1586: WSH_DEBUG_SV.logmsg(l_module_name,' Master_Container_Freight_Tab Details');

1582: WSH_DEBUG_SV.logmsg(l_module_name,' -------------------------------------------------------------------');
1583: WSH_DEBUG_SV.log(l_module_name,' Master_Container_Freight_Tab.count',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab.count);
1584: IF p_delivery_rec.container_tab(i).Master_Container_Freight_Tab.count >0 THEN
1585: WSH_DEBUG_SV.logmsg(l_module_name,' -------------------------------------------------------------------');
1586: WSH_DEBUG_SV.logmsg(l_module_name,' Master_Container_Freight_Tab Details');
1587: WSH_DEBUG_SV.logmsg(l_module_name,' -------------------------------------------------------------------');
1588:
1589: FOR K in 1..p_delivery_rec.container_tab(i).Master_Container_Freight_Tab.count LOOP
1590: WSH_DEBUG_SV.log(l_module_name,' freight_cost_type_code',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).freight_cost_type_code);

Line 1587: WSH_DEBUG_SV.logmsg(l_module_name,' -------------------------------------------------------------------');

1583: WSH_DEBUG_SV.log(l_module_name,' Master_Container_Freight_Tab.count',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab.count);
1584: IF p_delivery_rec.container_tab(i).Master_Container_Freight_Tab.count >0 THEN
1585: WSH_DEBUG_SV.logmsg(l_module_name,' -------------------------------------------------------------------');
1586: WSH_DEBUG_SV.logmsg(l_module_name,' Master_Container_Freight_Tab Details');
1587: WSH_DEBUG_SV.logmsg(l_module_name,' -------------------------------------------------------------------');
1588:
1589: FOR K in 1..p_delivery_rec.container_tab(i).Master_Container_Freight_Tab.count LOOP
1590: WSH_DEBUG_SV.log(l_module_name,' freight_cost_type_code',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).freight_cost_type_code);
1591: WSH_DEBUG_SV.log(l_module_name,' unit_amount ',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).unit_amount );

Line 1590: WSH_DEBUG_SV.log(l_module_name,' freight_cost_type_code',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).freight_cost_type_code);

1586: WSH_DEBUG_SV.logmsg(l_module_name,' Master_Container_Freight_Tab Details');
1587: WSH_DEBUG_SV.logmsg(l_module_name,' -------------------------------------------------------------------');
1588:
1589: FOR K in 1..p_delivery_rec.container_tab(i).Master_Container_Freight_Tab.count LOOP
1590: WSH_DEBUG_SV.log(l_module_name,' freight_cost_type_code',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).freight_cost_type_code);
1591: WSH_DEBUG_SV.log(l_module_name,' unit_amount ',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).unit_amount );
1592: WSH_DEBUG_SV.log(l_module_name,' currency_code',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).currency_code);
1593: WSH_DEBUG_SV.log(l_module_name,' attribute_category',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute_category);
1594: WSH_DEBUG_SV.log(l_module_name,' attribute1',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute1);

Line 1591: WSH_DEBUG_SV.log(l_module_name,' unit_amount ',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).unit_amount );

1587: WSH_DEBUG_SV.logmsg(l_module_name,' -------------------------------------------------------------------');
1588:
1589: FOR K in 1..p_delivery_rec.container_tab(i).Master_Container_Freight_Tab.count LOOP
1590: WSH_DEBUG_SV.log(l_module_name,' freight_cost_type_code',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).freight_cost_type_code);
1591: WSH_DEBUG_SV.log(l_module_name,' unit_amount ',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).unit_amount );
1592: WSH_DEBUG_SV.log(l_module_name,' currency_code',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).currency_code);
1593: WSH_DEBUG_SV.log(l_module_name,' attribute_category',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute_category);
1594: WSH_DEBUG_SV.log(l_module_name,' attribute1',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute1);
1595: WSH_DEBUG_SV.log(l_module_name,' attribute2',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute2);

Line 1592: WSH_DEBUG_SV.log(l_module_name,' currency_code',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).currency_code);

1588:
1589: FOR K in 1..p_delivery_rec.container_tab(i).Master_Container_Freight_Tab.count LOOP
1590: WSH_DEBUG_SV.log(l_module_name,' freight_cost_type_code',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).freight_cost_type_code);
1591: WSH_DEBUG_SV.log(l_module_name,' unit_amount ',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).unit_amount );
1592: WSH_DEBUG_SV.log(l_module_name,' currency_code',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).currency_code);
1593: WSH_DEBUG_SV.log(l_module_name,' attribute_category',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute_category);
1594: WSH_DEBUG_SV.log(l_module_name,' attribute1',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute1);
1595: WSH_DEBUG_SV.log(l_module_name,' attribute2',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute2);
1596: WSH_DEBUG_SV.log(l_module_name,' attribute3',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute3);

Line 1593: WSH_DEBUG_SV.log(l_module_name,' attribute_category',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute_category);

1589: FOR K in 1..p_delivery_rec.container_tab(i).Master_Container_Freight_Tab.count LOOP
1590: WSH_DEBUG_SV.log(l_module_name,' freight_cost_type_code',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).freight_cost_type_code);
1591: WSH_DEBUG_SV.log(l_module_name,' unit_amount ',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).unit_amount );
1592: WSH_DEBUG_SV.log(l_module_name,' currency_code',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).currency_code);
1593: WSH_DEBUG_SV.log(l_module_name,' attribute_category',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute_category);
1594: WSH_DEBUG_SV.log(l_module_name,' attribute1',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute1);
1595: WSH_DEBUG_SV.log(l_module_name,' attribute2',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute2);
1596: WSH_DEBUG_SV.log(l_module_name,' attribute3',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute3);
1597: WSH_DEBUG_SV.log(l_module_name,' attribute4',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute4);

Line 1594: WSH_DEBUG_SV.log(l_module_name,' attribute1',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute1);

1590: WSH_DEBUG_SV.log(l_module_name,' freight_cost_type_code',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).freight_cost_type_code);
1591: WSH_DEBUG_SV.log(l_module_name,' unit_amount ',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).unit_amount );
1592: WSH_DEBUG_SV.log(l_module_name,' currency_code',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).currency_code);
1593: WSH_DEBUG_SV.log(l_module_name,' attribute_category',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute_category);
1594: WSH_DEBUG_SV.log(l_module_name,' attribute1',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute1);
1595: WSH_DEBUG_SV.log(l_module_name,' attribute2',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute2);
1596: WSH_DEBUG_SV.log(l_module_name,' attribute3',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute3);
1597: WSH_DEBUG_SV.log(l_module_name,' attribute4',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute4);
1598: WSH_DEBUG_SV.log(l_module_name,' attribute5',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute5);

Line 1595: WSH_DEBUG_SV.log(l_module_name,' attribute2',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute2);

1591: WSH_DEBUG_SV.log(l_module_name,' unit_amount ',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).unit_amount );
1592: WSH_DEBUG_SV.log(l_module_name,' currency_code',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).currency_code);
1593: WSH_DEBUG_SV.log(l_module_name,' attribute_category',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute_category);
1594: WSH_DEBUG_SV.log(l_module_name,' attribute1',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute1);
1595: WSH_DEBUG_SV.log(l_module_name,' attribute2',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute2);
1596: WSH_DEBUG_SV.log(l_module_name,' attribute3',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute3);
1597: WSH_DEBUG_SV.log(l_module_name,' attribute4',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute4);
1598: WSH_DEBUG_SV.log(l_module_name,' attribute5',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute5);
1599: WSH_DEBUG_SV.log(l_module_name,' attribute6',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute6);

Line 1596: WSH_DEBUG_SV.log(l_module_name,' attribute3',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute3);

1592: WSH_DEBUG_SV.log(l_module_name,' currency_code',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).currency_code);
1593: WSH_DEBUG_SV.log(l_module_name,' attribute_category',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute_category);
1594: WSH_DEBUG_SV.log(l_module_name,' attribute1',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute1);
1595: WSH_DEBUG_SV.log(l_module_name,' attribute2',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute2);
1596: WSH_DEBUG_SV.log(l_module_name,' attribute3',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute3);
1597: WSH_DEBUG_SV.log(l_module_name,' attribute4',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute4);
1598: WSH_DEBUG_SV.log(l_module_name,' attribute5',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute5);
1599: WSH_DEBUG_SV.log(l_module_name,' attribute6',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute6);
1600: WSH_DEBUG_SV.log(l_module_name,' attribute7',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute7);

Line 1597: WSH_DEBUG_SV.log(l_module_name,' attribute4',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute4);

1593: WSH_DEBUG_SV.log(l_module_name,' attribute_category',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute_category);
1594: WSH_DEBUG_SV.log(l_module_name,' attribute1',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute1);
1595: WSH_DEBUG_SV.log(l_module_name,' attribute2',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute2);
1596: WSH_DEBUG_SV.log(l_module_name,' attribute3',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute3);
1597: WSH_DEBUG_SV.log(l_module_name,' attribute4',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute4);
1598: WSH_DEBUG_SV.log(l_module_name,' attribute5',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute5);
1599: WSH_DEBUG_SV.log(l_module_name,' attribute6',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute6);
1600: WSH_DEBUG_SV.log(l_module_name,' attribute7',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute7);
1601: WSH_DEBUG_SV.log(l_module_name,' attribute8',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute8);

Line 1598: WSH_DEBUG_SV.log(l_module_name,' attribute5',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute5);

1594: WSH_DEBUG_SV.log(l_module_name,' attribute1',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute1);
1595: WSH_DEBUG_SV.log(l_module_name,' attribute2',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute2);
1596: WSH_DEBUG_SV.log(l_module_name,' attribute3',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute3);
1597: WSH_DEBUG_SV.log(l_module_name,' attribute4',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute4);
1598: WSH_DEBUG_SV.log(l_module_name,' attribute5',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute5);
1599: WSH_DEBUG_SV.log(l_module_name,' attribute6',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute6);
1600: WSH_DEBUG_SV.log(l_module_name,' attribute7',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute7);
1601: WSH_DEBUG_SV.log(l_module_name,' attribute8',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute8);
1602: WSH_DEBUG_SV.log(l_module_name,' attribute9',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute9);

Line 1599: WSH_DEBUG_SV.log(l_module_name,' attribute6',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute6);

1595: WSH_DEBUG_SV.log(l_module_name,' attribute2',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute2);
1596: WSH_DEBUG_SV.log(l_module_name,' attribute3',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute3);
1597: WSH_DEBUG_SV.log(l_module_name,' attribute4',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute4);
1598: WSH_DEBUG_SV.log(l_module_name,' attribute5',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute5);
1599: WSH_DEBUG_SV.log(l_module_name,' attribute6',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute6);
1600: WSH_DEBUG_SV.log(l_module_name,' attribute7',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute7);
1601: WSH_DEBUG_SV.log(l_module_name,' attribute8',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute8);
1602: WSH_DEBUG_SV.log(l_module_name,' attribute9',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute9);
1603: WSH_DEBUG_SV.log(l_module_name,' attribute10',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute10);

Line 1600: WSH_DEBUG_SV.log(l_module_name,' attribute7',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute7);

1596: WSH_DEBUG_SV.log(l_module_name,' attribute3',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute3);
1597: WSH_DEBUG_SV.log(l_module_name,' attribute4',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute4);
1598: WSH_DEBUG_SV.log(l_module_name,' attribute5',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute5);
1599: WSH_DEBUG_SV.log(l_module_name,' attribute6',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute6);
1600: WSH_DEBUG_SV.log(l_module_name,' attribute7',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute7);
1601: WSH_DEBUG_SV.log(l_module_name,' attribute8',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute8);
1602: WSH_DEBUG_SV.log(l_module_name,' attribute9',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute9);
1603: WSH_DEBUG_SV.log(l_module_name,' attribute10',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute10);
1604: WSH_DEBUG_SV.log(l_module_name,' attribute11',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute11);

Line 1601: WSH_DEBUG_SV.log(l_module_name,' attribute8',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute8);

1597: WSH_DEBUG_SV.log(l_module_name,' attribute4',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute4);
1598: WSH_DEBUG_SV.log(l_module_name,' attribute5',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute5);
1599: WSH_DEBUG_SV.log(l_module_name,' attribute6',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute6);
1600: WSH_DEBUG_SV.log(l_module_name,' attribute7',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute7);
1601: WSH_DEBUG_SV.log(l_module_name,' attribute8',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute8);
1602: WSH_DEBUG_SV.log(l_module_name,' attribute9',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute9);
1603: WSH_DEBUG_SV.log(l_module_name,' attribute10',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute10);
1604: WSH_DEBUG_SV.log(l_module_name,' attribute11',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute11);
1605: WSH_DEBUG_SV.log(l_module_name,' attribute12',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute12);

Line 1602: WSH_DEBUG_SV.log(l_module_name,' attribute9',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute9);

1598: WSH_DEBUG_SV.log(l_module_name,' attribute5',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute5);
1599: WSH_DEBUG_SV.log(l_module_name,' attribute6',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute6);
1600: WSH_DEBUG_SV.log(l_module_name,' attribute7',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute7);
1601: WSH_DEBUG_SV.log(l_module_name,' attribute8',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute8);
1602: WSH_DEBUG_SV.log(l_module_name,' attribute9',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute9);
1603: WSH_DEBUG_SV.log(l_module_name,' attribute10',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute10);
1604: WSH_DEBUG_SV.log(l_module_name,' attribute11',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute11);
1605: WSH_DEBUG_SV.log(l_module_name,' attribute12',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute12);
1606: WSH_DEBUG_SV.log(l_module_name,' attribute13',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute13);

Line 1603: WSH_DEBUG_SV.log(l_module_name,' attribute10',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute10);

1599: WSH_DEBUG_SV.log(l_module_name,' attribute6',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute6);
1600: WSH_DEBUG_SV.log(l_module_name,' attribute7',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute7);
1601: WSH_DEBUG_SV.log(l_module_name,' attribute8',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute8);
1602: WSH_DEBUG_SV.log(l_module_name,' attribute9',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute9);
1603: WSH_DEBUG_SV.log(l_module_name,' attribute10',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute10);
1604: WSH_DEBUG_SV.log(l_module_name,' attribute11',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute11);
1605: WSH_DEBUG_SV.log(l_module_name,' attribute12',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute12);
1606: WSH_DEBUG_SV.log(l_module_name,' attribute13',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute13);
1607: WSH_DEBUG_SV.log(l_module_name,' attribute14',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute14);

Line 1604: WSH_DEBUG_SV.log(l_module_name,' attribute11',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute11);

1600: WSH_DEBUG_SV.log(l_module_name,' attribute7',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute7);
1601: WSH_DEBUG_SV.log(l_module_name,' attribute8',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute8);
1602: WSH_DEBUG_SV.log(l_module_name,' attribute9',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute9);
1603: WSH_DEBUG_SV.log(l_module_name,' attribute10',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute10);
1604: WSH_DEBUG_SV.log(l_module_name,' attribute11',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute11);
1605: WSH_DEBUG_SV.log(l_module_name,' attribute12',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute12);
1606: WSH_DEBUG_SV.log(l_module_name,' attribute13',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute13);
1607: WSH_DEBUG_SV.log(l_module_name,' attribute14',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute14);
1608: WSH_DEBUG_SV.log(l_module_name,' attribute15',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute15);

Line 1605: WSH_DEBUG_SV.log(l_module_name,' attribute12',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute12);

1601: WSH_DEBUG_SV.log(l_module_name,' attribute8',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute8);
1602: WSH_DEBUG_SV.log(l_module_name,' attribute9',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute9);
1603: WSH_DEBUG_SV.log(l_module_name,' attribute10',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute10);
1604: WSH_DEBUG_SV.log(l_module_name,' attribute11',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute11);
1605: WSH_DEBUG_SV.log(l_module_name,' attribute12',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute12);
1606: WSH_DEBUG_SV.log(l_module_name,' attribute13',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute13);
1607: WSH_DEBUG_SV.log(l_module_name,' attribute14',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute14);
1608: WSH_DEBUG_SV.log(l_module_name,' attribute15',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute15);
1609: WSH_DEBUG_SV.log(l_module_name,' unit_amount ',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).unit_amount );

Line 1606: WSH_DEBUG_SV.log(l_module_name,' attribute13',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute13);

1602: WSH_DEBUG_SV.log(l_module_name,' attribute9',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute9);
1603: WSH_DEBUG_SV.log(l_module_name,' attribute10',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute10);
1604: WSH_DEBUG_SV.log(l_module_name,' attribute11',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute11);
1605: WSH_DEBUG_SV.log(l_module_name,' attribute12',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute12);
1606: WSH_DEBUG_SV.log(l_module_name,' attribute13',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute13);
1607: WSH_DEBUG_SV.log(l_module_name,' attribute14',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute14);
1608: WSH_DEBUG_SV.log(l_module_name,' attribute15',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute15);
1609: WSH_DEBUG_SV.log(l_module_name,' unit_amount ',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).unit_amount );
1610: WSH_DEBUG_SV.log(l_module_name,' currency_code',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).currency_code);

Line 1607: WSH_DEBUG_SV.log(l_module_name,' attribute14',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute14);

1603: WSH_DEBUG_SV.log(l_module_name,' attribute10',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute10);
1604: WSH_DEBUG_SV.log(l_module_name,' attribute11',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute11);
1605: WSH_DEBUG_SV.log(l_module_name,' attribute12',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute12);
1606: WSH_DEBUG_SV.log(l_module_name,' attribute13',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute13);
1607: WSH_DEBUG_SV.log(l_module_name,' attribute14',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute14);
1608: WSH_DEBUG_SV.log(l_module_name,' attribute15',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute15);
1609: WSH_DEBUG_SV.log(l_module_name,' unit_amount ',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).unit_amount );
1610: WSH_DEBUG_SV.log(l_module_name,' currency_code',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).currency_code);
1611: WSH_DEBUG_SV.logmsg(l_module_name,' -------------------------------------------------------------------');

Line 1608: WSH_DEBUG_SV.log(l_module_name,' attribute15',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute15);

1604: WSH_DEBUG_SV.log(l_module_name,' attribute11',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute11);
1605: WSH_DEBUG_SV.log(l_module_name,' attribute12',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute12);
1606: WSH_DEBUG_SV.log(l_module_name,' attribute13',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute13);
1607: WSH_DEBUG_SV.log(l_module_name,' attribute14',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute14);
1608: WSH_DEBUG_SV.log(l_module_name,' attribute15',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute15);
1609: WSH_DEBUG_SV.log(l_module_name,' unit_amount ',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).unit_amount );
1610: WSH_DEBUG_SV.log(l_module_name,' currency_code',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).currency_code);
1611: WSH_DEBUG_SV.logmsg(l_module_name,' -------------------------------------------------------------------');
1612: END LOOP;

Line 1609: WSH_DEBUG_SV.log(l_module_name,' unit_amount ',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).unit_amount );

1605: WSH_DEBUG_SV.log(l_module_name,' attribute12',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute12);
1606: WSH_DEBUG_SV.log(l_module_name,' attribute13',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute13);
1607: WSH_DEBUG_SV.log(l_module_name,' attribute14',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute14);
1608: WSH_DEBUG_SV.log(l_module_name,' attribute15',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute15);
1609: WSH_DEBUG_SV.log(l_module_name,' unit_amount ',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).unit_amount );
1610: WSH_DEBUG_SV.log(l_module_name,' currency_code',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).currency_code);
1611: WSH_DEBUG_SV.logmsg(l_module_name,' -------------------------------------------------------------------');
1612: END LOOP;
1613: END IF;

Line 1610: WSH_DEBUG_SV.log(l_module_name,' currency_code',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).currency_code);

1606: WSH_DEBUG_SV.log(l_module_name,' attribute13',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute13);
1607: WSH_DEBUG_SV.log(l_module_name,' attribute14',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute14);
1608: WSH_DEBUG_SV.log(l_module_name,' attribute15',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute15);
1609: WSH_DEBUG_SV.log(l_module_name,' unit_amount ',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).unit_amount );
1610: WSH_DEBUG_SV.log(l_module_name,' currency_code',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).currency_code);
1611: WSH_DEBUG_SV.logmsg(l_module_name,' -------------------------------------------------------------------');
1612: END LOOP;
1613: END IF;
1614:

Line 1611: WSH_DEBUG_SV.logmsg(l_module_name,' -------------------------------------------------------------------');

1607: WSH_DEBUG_SV.log(l_module_name,' attribute14',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute14);
1608: WSH_DEBUG_SV.log(l_module_name,' attribute15',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).attribute15);
1609: WSH_DEBUG_SV.log(l_module_name,' unit_amount ',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).unit_amount );
1610: WSH_DEBUG_SV.log(l_module_name,' currency_code',p_delivery_rec.container_tab(i).Master_Container_Freight_Tab(K).currency_code);
1611: WSH_DEBUG_SV.logmsg(l_module_name,' -------------------------------------------------------------------');
1612: END LOOP;
1613: END IF;
1614:
1615: WSH_DEBUG_SV.log(l_module_name,' ',p_delivery_rec.container_tab(i).Container_Tab.count);

Line 1615: WSH_DEBUG_SV.log(l_module_name,' ',p_delivery_rec.container_tab(i).Container_Tab.count);

1611: WSH_DEBUG_SV.logmsg(l_module_name,' -------------------------------------------------------------------');
1612: END LOOP;
1613: END IF;
1614:
1615: WSH_DEBUG_SV.log(l_module_name,' ',p_delivery_rec.container_tab(i).Container_Tab.count);
1616:
1617: IF p_delivery_rec.container_tab(i).Container_Tab.count >0 THEN
1618: WSH_DEBUG_SV.logmsg(l_module_name,' -------------------------------------------------------------------');
1619: WSH_DEBUG_SV.logmsg(l_module_name,' Inner Containers Details');

Line 1618: WSH_DEBUG_SV.logmsg(l_module_name,' -------------------------------------------------------------------');

1614:
1615: WSH_DEBUG_SV.log(l_module_name,' ',p_delivery_rec.container_tab(i).Container_Tab.count);
1616:
1617: IF p_delivery_rec.container_tab(i).Container_Tab.count >0 THEN
1618: WSH_DEBUG_SV.logmsg(l_module_name,' -------------------------------------------------------------------');
1619: WSH_DEBUG_SV.logmsg(l_module_name,' Inner Containers Details');
1620: WSH_DEBUG_SV.logmsg(l_module_name,' -------------------------------------------------------------------');
1621:
1622: FOR K in 1..p_delivery_rec.container_tab(i).Container_Tab.count LOOP

Line 1619: WSH_DEBUG_SV.logmsg(l_module_name,' Inner Containers Details');

1615: WSH_DEBUG_SV.log(l_module_name,' ',p_delivery_rec.container_tab(i).Container_Tab.count);
1616:
1617: IF p_delivery_rec.container_tab(i).Container_Tab.count >0 THEN
1618: WSH_DEBUG_SV.logmsg(l_module_name,' -------------------------------------------------------------------');
1619: WSH_DEBUG_SV.logmsg(l_module_name,' Inner Containers Details');
1620: WSH_DEBUG_SV.logmsg(l_module_name,' -------------------------------------------------------------------');
1621:
1622: FOR K in 1..p_delivery_rec.container_tab(i).Container_Tab.count LOOP
1623: WSH_DEBUG_SV.log(l_module_name,' delivery_detail_number',p_delivery_rec.container_tab(i).container_tab(k).delivery_detail_number);

Line 1620: WSH_DEBUG_SV.logmsg(l_module_name,' -------------------------------------------------------------------');

1616:
1617: IF p_delivery_rec.container_tab(i).Container_Tab.count >0 THEN
1618: WSH_DEBUG_SV.logmsg(l_module_name,' -------------------------------------------------------------------');
1619: WSH_DEBUG_SV.logmsg(l_module_name,' Inner Containers Details');
1620: WSH_DEBUG_SV.logmsg(l_module_name,' -------------------------------------------------------------------');
1621:
1622: FOR K in 1..p_delivery_rec.container_tab(i).Container_Tab.count LOOP
1623: WSH_DEBUG_SV.log(l_module_name,' delivery_detail_number',p_delivery_rec.container_tab(i).container_tab(k).delivery_detail_number);
1624: WSH_DEBUG_SV.log(l_module_name,' attribute_category',p_delivery_rec.container_tab(i).container_tab(k).attribute_category);

Line 1623: WSH_DEBUG_SV.log(l_module_name,' delivery_detail_number',p_delivery_rec.container_tab(i).container_tab(k).delivery_detail_number);

1619: WSH_DEBUG_SV.logmsg(l_module_name,' Inner Containers Details');
1620: WSH_DEBUG_SV.logmsg(l_module_name,' -------------------------------------------------------------------');
1621:
1622: FOR K in 1..p_delivery_rec.container_tab(i).Container_Tab.count LOOP
1623: WSH_DEBUG_SV.log(l_module_name,' delivery_detail_number',p_delivery_rec.container_tab(i).container_tab(k).delivery_detail_number);
1624: WSH_DEBUG_SV.log(l_module_name,' attribute_category',p_delivery_rec.container_tab(i).container_tab(k).attribute_category);
1625: WSH_DEBUG_SV.log(l_module_name,' attribute1',p_delivery_rec.container_tab(i).container_tab(k).attribute1);
1626: WSH_DEBUG_SV.log(l_module_name,' attribute2',p_delivery_rec.container_tab(i).container_tab(k).attribute2);
1627: WSH_DEBUG_SV.log(l_module_name,' attribute3',p_delivery_rec.container_tab(i).container_tab(k).attribute3);

Line 1624: WSH_DEBUG_SV.log(l_module_name,' attribute_category',p_delivery_rec.container_tab(i).container_tab(k).attribute_category);

1620: WSH_DEBUG_SV.logmsg(l_module_name,' -------------------------------------------------------------------');
1621:
1622: FOR K in 1..p_delivery_rec.container_tab(i).Container_Tab.count LOOP
1623: WSH_DEBUG_SV.log(l_module_name,' delivery_detail_number',p_delivery_rec.container_tab(i).container_tab(k).delivery_detail_number);
1624: WSH_DEBUG_SV.log(l_module_name,' attribute_category',p_delivery_rec.container_tab(i).container_tab(k).attribute_category);
1625: WSH_DEBUG_SV.log(l_module_name,' attribute1',p_delivery_rec.container_tab(i).container_tab(k).attribute1);
1626: WSH_DEBUG_SV.log(l_module_name,' attribute2',p_delivery_rec.container_tab(i).container_tab(k).attribute2);
1627: WSH_DEBUG_SV.log(l_module_name,' attribute3',p_delivery_rec.container_tab(i).container_tab(k).attribute3);
1628: WSH_DEBUG_SV.log(l_module_name,' attribute4',p_delivery_rec.container_tab(i).container_tab(k).attribute4);

Line 1625: WSH_DEBUG_SV.log(l_module_name,' attribute1',p_delivery_rec.container_tab(i).container_tab(k).attribute1);

1621:
1622: FOR K in 1..p_delivery_rec.container_tab(i).Container_Tab.count LOOP
1623: WSH_DEBUG_SV.log(l_module_name,' delivery_detail_number',p_delivery_rec.container_tab(i).container_tab(k).delivery_detail_number);
1624: WSH_DEBUG_SV.log(l_module_name,' attribute_category',p_delivery_rec.container_tab(i).container_tab(k).attribute_category);
1625: WSH_DEBUG_SV.log(l_module_name,' attribute1',p_delivery_rec.container_tab(i).container_tab(k).attribute1);
1626: WSH_DEBUG_SV.log(l_module_name,' attribute2',p_delivery_rec.container_tab(i).container_tab(k).attribute2);
1627: WSH_DEBUG_SV.log(l_module_name,' attribute3',p_delivery_rec.container_tab(i).container_tab(k).attribute3);
1628: WSH_DEBUG_SV.log(l_module_name,' attribute4',p_delivery_rec.container_tab(i).container_tab(k).attribute4);
1629: WSH_DEBUG_SV.log(l_module_name,' attribute5',p_delivery_rec.container_tab(i).container_tab(k).attribute5);

Line 1626: WSH_DEBUG_SV.log(l_module_name,' attribute2',p_delivery_rec.container_tab(i).container_tab(k).attribute2);

1622: FOR K in 1..p_delivery_rec.container_tab(i).Container_Tab.count LOOP
1623: WSH_DEBUG_SV.log(l_module_name,' delivery_detail_number',p_delivery_rec.container_tab(i).container_tab(k).delivery_detail_number);
1624: WSH_DEBUG_SV.log(l_module_name,' attribute_category',p_delivery_rec.container_tab(i).container_tab(k).attribute_category);
1625: WSH_DEBUG_SV.log(l_module_name,' attribute1',p_delivery_rec.container_tab(i).container_tab(k).attribute1);
1626: WSH_DEBUG_SV.log(l_module_name,' attribute2',p_delivery_rec.container_tab(i).container_tab(k).attribute2);
1627: WSH_DEBUG_SV.log(l_module_name,' attribute3',p_delivery_rec.container_tab(i).container_tab(k).attribute3);
1628: WSH_DEBUG_SV.log(l_module_name,' attribute4',p_delivery_rec.container_tab(i).container_tab(k).attribute4);
1629: WSH_DEBUG_SV.log(l_module_name,' attribute5',p_delivery_rec.container_tab(i).container_tab(k).attribute5);
1630: WSH_DEBUG_SV.log(l_module_name,' attribute6',p_delivery_rec.container_tab(i).container_tab(k).attribute6);

Line 1627: WSH_DEBUG_SV.log(l_module_name,' attribute3',p_delivery_rec.container_tab(i).container_tab(k).attribute3);

1623: WSH_DEBUG_SV.log(l_module_name,' delivery_detail_number',p_delivery_rec.container_tab(i).container_tab(k).delivery_detail_number);
1624: WSH_DEBUG_SV.log(l_module_name,' attribute_category',p_delivery_rec.container_tab(i).container_tab(k).attribute_category);
1625: WSH_DEBUG_SV.log(l_module_name,' attribute1',p_delivery_rec.container_tab(i).container_tab(k).attribute1);
1626: WSH_DEBUG_SV.log(l_module_name,' attribute2',p_delivery_rec.container_tab(i).container_tab(k).attribute2);
1627: WSH_DEBUG_SV.log(l_module_name,' attribute3',p_delivery_rec.container_tab(i).container_tab(k).attribute3);
1628: WSH_DEBUG_SV.log(l_module_name,' attribute4',p_delivery_rec.container_tab(i).container_tab(k).attribute4);
1629: WSH_DEBUG_SV.log(l_module_name,' attribute5',p_delivery_rec.container_tab(i).container_tab(k).attribute5);
1630: WSH_DEBUG_SV.log(l_module_name,' attribute6',p_delivery_rec.container_tab(i).container_tab(k).attribute6);
1631: WSH_DEBUG_SV.log(l_module_name,' attribute7',p_delivery_rec.container_tab(i).container_tab(k).attribute7);

Line 1628: WSH_DEBUG_SV.log(l_module_name,' attribute4',p_delivery_rec.container_tab(i).container_tab(k).attribute4);

1624: WSH_DEBUG_SV.log(l_module_name,' attribute_category',p_delivery_rec.container_tab(i).container_tab(k).attribute_category);
1625: WSH_DEBUG_SV.log(l_module_name,' attribute1',p_delivery_rec.container_tab(i).container_tab(k).attribute1);
1626: WSH_DEBUG_SV.log(l_module_name,' attribute2',p_delivery_rec.container_tab(i).container_tab(k).attribute2);
1627: WSH_DEBUG_SV.log(l_module_name,' attribute3',p_delivery_rec.container_tab(i).container_tab(k).attribute3);
1628: WSH_DEBUG_SV.log(l_module_name,' attribute4',p_delivery_rec.container_tab(i).container_tab(k).attribute4);
1629: WSH_DEBUG_SV.log(l_module_name,' attribute5',p_delivery_rec.container_tab(i).container_tab(k).attribute5);
1630: WSH_DEBUG_SV.log(l_module_name,' attribute6',p_delivery_rec.container_tab(i).container_tab(k).attribute6);
1631: WSH_DEBUG_SV.log(l_module_name,' attribute7',p_delivery_rec.container_tab(i).container_tab(k).attribute7);
1632: WSH_DEBUG_SV.log(l_module_name,' attribute8',p_delivery_rec.container_tab(i).container_tab(k).attribute8);

Line 1629: WSH_DEBUG_SV.log(l_module_name,' attribute5',p_delivery_rec.container_tab(i).container_tab(k).attribute5);

1625: WSH_DEBUG_SV.log(l_module_name,' attribute1',p_delivery_rec.container_tab(i).container_tab(k).attribute1);
1626: WSH_DEBUG_SV.log(l_module_name,' attribute2',p_delivery_rec.container_tab(i).container_tab(k).attribute2);
1627: WSH_DEBUG_SV.log(l_module_name,' attribute3',p_delivery_rec.container_tab(i).container_tab(k).attribute3);
1628: WSH_DEBUG_SV.log(l_module_name,' attribute4',p_delivery_rec.container_tab(i).container_tab(k).attribute4);
1629: WSH_DEBUG_SV.log(l_module_name,' attribute5',p_delivery_rec.container_tab(i).container_tab(k).attribute5);
1630: WSH_DEBUG_SV.log(l_module_name,' attribute6',p_delivery_rec.container_tab(i).container_tab(k).attribute6);
1631: WSH_DEBUG_SV.log(l_module_name,' attribute7',p_delivery_rec.container_tab(i).container_tab(k).attribute7);
1632: WSH_DEBUG_SV.log(l_module_name,' attribute8',p_delivery_rec.container_tab(i).container_tab(k).attribute8);
1633: WSH_DEBUG_SV.log(l_module_name,' attribute9',p_delivery_rec.container_tab(i).container_tab(k).attribute9);

Line 1630: WSH_DEBUG_SV.log(l_module_name,' attribute6',p_delivery_rec.container_tab(i).container_tab(k).attribute6);

1626: WSH_DEBUG_SV.log(l_module_name,' attribute2',p_delivery_rec.container_tab(i).container_tab(k).attribute2);
1627: WSH_DEBUG_SV.log(l_module_name,' attribute3',p_delivery_rec.container_tab(i).container_tab(k).attribute3);
1628: WSH_DEBUG_SV.log(l_module_name,' attribute4',p_delivery_rec.container_tab(i).container_tab(k).attribute4);
1629: WSH_DEBUG_SV.log(l_module_name,' attribute5',p_delivery_rec.container_tab(i).container_tab(k).attribute5);
1630: WSH_DEBUG_SV.log(l_module_name,' attribute6',p_delivery_rec.container_tab(i).container_tab(k).attribute6);
1631: WSH_DEBUG_SV.log(l_module_name,' attribute7',p_delivery_rec.container_tab(i).container_tab(k).attribute7);
1632: WSH_DEBUG_SV.log(l_module_name,' attribute8',p_delivery_rec.container_tab(i).container_tab(k).attribute8);
1633: WSH_DEBUG_SV.log(l_module_name,' attribute9',p_delivery_rec.container_tab(i).container_tab(k).attribute9);
1634: WSH_DEBUG_SV.log(l_module_name,' attribute10',p_delivery_rec.container_tab(i).container_tab(k).attribute10);

Line 1631: WSH_DEBUG_SV.log(l_module_name,' attribute7',p_delivery_rec.container_tab(i).container_tab(k).attribute7);

1627: WSH_DEBUG_SV.log(l_module_name,' attribute3',p_delivery_rec.container_tab(i).container_tab(k).attribute3);
1628: WSH_DEBUG_SV.log(l_module_name,' attribute4',p_delivery_rec.container_tab(i).container_tab(k).attribute4);
1629: WSH_DEBUG_SV.log(l_module_name,' attribute5',p_delivery_rec.container_tab(i).container_tab(k).attribute5);
1630: WSH_DEBUG_SV.log(l_module_name,' attribute6',p_delivery_rec.container_tab(i).container_tab(k).attribute6);
1631: WSH_DEBUG_SV.log(l_module_name,' attribute7',p_delivery_rec.container_tab(i).container_tab(k).attribute7);
1632: WSH_DEBUG_SV.log(l_module_name,' attribute8',p_delivery_rec.container_tab(i).container_tab(k).attribute8);
1633: WSH_DEBUG_SV.log(l_module_name,' attribute9',p_delivery_rec.container_tab(i).container_tab(k).attribute9);
1634: WSH_DEBUG_SV.log(l_module_name,' attribute10',p_delivery_rec.container_tab(i).container_tab(k).attribute10);
1635: WSH_DEBUG_SV.log(l_module_name,' attribute11',p_delivery_rec.container_tab(i).container_tab(k).attribute11);

Line 1632: WSH_DEBUG_SV.log(l_module_name,' attribute8',p_delivery_rec.container_tab(i).container_tab(k).attribute8);

1628: WSH_DEBUG_SV.log(l_module_name,' attribute4',p_delivery_rec.container_tab(i).container_tab(k).attribute4);
1629: WSH_DEBUG_SV.log(l_module_name,' attribute5',p_delivery_rec.container_tab(i).container_tab(k).attribute5);
1630: WSH_DEBUG_SV.log(l_module_name,' attribute6',p_delivery_rec.container_tab(i).container_tab(k).attribute6);
1631: WSH_DEBUG_SV.log(l_module_name,' attribute7',p_delivery_rec.container_tab(i).container_tab(k).attribute7);
1632: WSH_DEBUG_SV.log(l_module_name,' attribute8',p_delivery_rec.container_tab(i).container_tab(k).attribute8);
1633: WSH_DEBUG_SV.log(l_module_name,' attribute9',p_delivery_rec.container_tab(i).container_tab(k).attribute9);
1634: WSH_DEBUG_SV.log(l_module_name,' attribute10',p_delivery_rec.container_tab(i).container_tab(k).attribute10);
1635: WSH_DEBUG_SV.log(l_module_name,' attribute11',p_delivery_rec.container_tab(i).container_tab(k).attribute11);
1636: WSH_DEBUG_SV.log(l_module_name,' attribute12',p_delivery_rec.container_tab(i).container_tab(k).attribute12);

Line 1633: WSH_DEBUG_SV.log(l_module_name,' attribute9',p_delivery_rec.container_tab(i).container_tab(k).attribute9);

1629: WSH_DEBUG_SV.log(l_module_name,' attribute5',p_delivery_rec.container_tab(i).container_tab(k).attribute5);
1630: WSH_DEBUG_SV.log(l_module_name,' attribute6',p_delivery_rec.container_tab(i).container_tab(k).attribute6);
1631: WSH_DEBUG_SV.log(l_module_name,' attribute7',p_delivery_rec.container_tab(i).container_tab(k).attribute7);
1632: WSH_DEBUG_SV.log(l_module_name,' attribute8',p_delivery_rec.container_tab(i).container_tab(k).attribute8);
1633: WSH_DEBUG_SV.log(l_module_name,' attribute9',p_delivery_rec.container_tab(i).container_tab(k).attribute9);
1634: WSH_DEBUG_SV.log(l_module_name,' attribute10',p_delivery_rec.container_tab(i).container_tab(k).attribute10);
1635: WSH_DEBUG_SV.log(l_module_name,' attribute11',p_delivery_rec.container_tab(i).container_tab(k).attribute11);
1636: WSH_DEBUG_SV.log(l_module_name,' attribute12',p_delivery_rec.container_tab(i).container_tab(k).attribute12);
1637: WSH_DEBUG_SV.log(l_module_name,' attribute13',p_delivery_rec.container_tab(i).container_tab(k).attribute13);

Line 1634: WSH_DEBUG_SV.log(l_module_name,' attribute10',p_delivery_rec.container_tab(i).container_tab(k).attribute10);

1630: WSH_DEBUG_SV.log(l_module_name,' attribute6',p_delivery_rec.container_tab(i).container_tab(k).attribute6);
1631: WSH_DEBUG_SV.log(l_module_name,' attribute7',p_delivery_rec.container_tab(i).container_tab(k).attribute7);
1632: WSH_DEBUG_SV.log(l_module_name,' attribute8',p_delivery_rec.container_tab(i).container_tab(k).attribute8);
1633: WSH_DEBUG_SV.log(l_module_name,' attribute9',p_delivery_rec.container_tab(i).container_tab(k).attribute9);
1634: WSH_DEBUG_SV.log(l_module_name,' attribute10',p_delivery_rec.container_tab(i).container_tab(k).attribute10);
1635: WSH_DEBUG_SV.log(l_module_name,' attribute11',p_delivery_rec.container_tab(i).container_tab(k).attribute11);
1636: WSH_DEBUG_SV.log(l_module_name,' attribute12',p_delivery_rec.container_tab(i).container_tab(k).attribute12);
1637: WSH_DEBUG_SV.log(l_module_name,' attribute13',p_delivery_rec.container_tab(i).container_tab(k).attribute13);
1638: WSH_DEBUG_SV.log(l_module_name,' attribute14',p_delivery_rec.container_tab(i).container_tab(k).attribute14);

Line 1635: WSH_DEBUG_SV.log(l_module_name,' attribute11',p_delivery_rec.container_tab(i).container_tab(k).attribute11);

1631: WSH_DEBUG_SV.log(l_module_name,' attribute7',p_delivery_rec.container_tab(i).container_tab(k).attribute7);
1632: WSH_DEBUG_SV.log(l_module_name,' attribute8',p_delivery_rec.container_tab(i).container_tab(k).attribute8);
1633: WSH_DEBUG_SV.log(l_module_name,' attribute9',p_delivery_rec.container_tab(i).container_tab(k).attribute9);
1634: WSH_DEBUG_SV.log(l_module_name,' attribute10',p_delivery_rec.container_tab(i).container_tab(k).attribute10);
1635: WSH_DEBUG_SV.log(l_module_name,' attribute11',p_delivery_rec.container_tab(i).container_tab(k).attribute11);
1636: WSH_DEBUG_SV.log(l_module_name,' attribute12',p_delivery_rec.container_tab(i).container_tab(k).attribute12);
1637: WSH_DEBUG_SV.log(l_module_name,' attribute13',p_delivery_rec.container_tab(i).container_tab(k).attribute13);
1638: WSH_DEBUG_SV.log(l_module_name,' attribute14',p_delivery_rec.container_tab(i).container_tab(k).attribute14);
1639: WSH_DEBUG_SV.log(l_module_name,' attribute15',p_delivery_rec.container_tab(i).container_tab(k).attribute15);

Line 1636: WSH_DEBUG_SV.log(l_module_name,' attribute12',p_delivery_rec.container_tab(i).container_tab(k).attribute12);

1632: WSH_DEBUG_SV.log(l_module_name,' attribute8',p_delivery_rec.container_tab(i).container_tab(k).attribute8);
1633: WSH_DEBUG_SV.log(l_module_name,' attribute9',p_delivery_rec.container_tab(i).container_tab(k).attribute9);
1634: WSH_DEBUG_SV.log(l_module_name,' attribute10',p_delivery_rec.container_tab(i).container_tab(k).attribute10);
1635: WSH_DEBUG_SV.log(l_module_name,' attribute11',p_delivery_rec.container_tab(i).container_tab(k).attribute11);
1636: WSH_DEBUG_SV.log(l_module_name,' attribute12',p_delivery_rec.container_tab(i).container_tab(k).attribute12);
1637: WSH_DEBUG_SV.log(l_module_name,' attribute13',p_delivery_rec.container_tab(i).container_tab(k).attribute13);
1638: WSH_DEBUG_SV.log(l_module_name,' attribute14',p_delivery_rec.container_tab(i).container_tab(k).attribute14);
1639: WSH_DEBUG_SV.log(l_module_name,' attribute15',p_delivery_rec.container_tab(i).container_tab(k).attribute15);
1640: WSH_DEBUG_SV.log(l_module_name,' container_name ',p_delivery_rec.container_tab(i).container_tab(k).container_name );

Line 1637: WSH_DEBUG_SV.log(l_module_name,' attribute13',p_delivery_rec.container_tab(i).container_tab(k).attribute13);

1633: WSH_DEBUG_SV.log(l_module_name,' attribute9',p_delivery_rec.container_tab(i).container_tab(k).attribute9);
1634: WSH_DEBUG_SV.log(l_module_name,' attribute10',p_delivery_rec.container_tab(i).container_tab(k).attribute10);
1635: WSH_DEBUG_SV.log(l_module_name,' attribute11',p_delivery_rec.container_tab(i).container_tab(k).attribute11);
1636: WSH_DEBUG_SV.log(l_module_name,' attribute12',p_delivery_rec.container_tab(i).container_tab(k).attribute12);
1637: WSH_DEBUG_SV.log(l_module_name,' attribute13',p_delivery_rec.container_tab(i).container_tab(k).attribute13);
1638: WSH_DEBUG_SV.log(l_module_name,' attribute14',p_delivery_rec.container_tab(i).container_tab(k).attribute14);
1639: WSH_DEBUG_SV.log(l_module_name,' attribute15',p_delivery_rec.container_tab(i).container_tab(k).attribute15);
1640: WSH_DEBUG_SV.log(l_module_name,' container_name ',p_delivery_rec.container_tab(i).container_tab(k).container_name );
1641: WSH_DEBUG_SV.log(l_module_name,' item_number',p_delivery_rec.container_tab(i).container_tab(k).item_number);

Line 1638: WSH_DEBUG_SV.log(l_module_name,' attribute14',p_delivery_rec.container_tab(i).container_tab(k).attribute14);

1634: WSH_DEBUG_SV.log(l_module_name,' attribute10',p_delivery_rec.container_tab(i).container_tab(k).attribute10);
1635: WSH_DEBUG_SV.log(l_module_name,' attribute11',p_delivery_rec.container_tab(i).container_tab(k).attribute11);
1636: WSH_DEBUG_SV.log(l_module_name,' attribute12',p_delivery_rec.container_tab(i).container_tab(k).attribute12);
1637: WSH_DEBUG_SV.log(l_module_name,' attribute13',p_delivery_rec.container_tab(i).container_tab(k).attribute13);
1638: WSH_DEBUG_SV.log(l_module_name,' attribute14',p_delivery_rec.container_tab(i).container_tab(k).attribute14);
1639: WSH_DEBUG_SV.log(l_module_name,' attribute15',p_delivery_rec.container_tab(i).container_tab(k).attribute15);
1640: WSH_DEBUG_SV.log(l_module_name,' container_name ',p_delivery_rec.container_tab(i).container_tab(k).container_name );
1641: WSH_DEBUG_SV.log(l_module_name,' item_number',p_delivery_rec.container_tab(i).container_tab(k).item_number);
1642: WSH_DEBUG_SV.log(l_module_name,' item_description',p_delivery_rec.container_tab(i).container_tab(k).item_description);

Line 1639: WSH_DEBUG_SV.log(l_module_name,' attribute15',p_delivery_rec.container_tab(i).container_tab(k).attribute15);

1635: WSH_DEBUG_SV.log(l_module_name,' attribute11',p_delivery_rec.container_tab(i).container_tab(k).attribute11);
1636: WSH_DEBUG_SV.log(l_module_name,' attribute12',p_delivery_rec.container_tab(i).container_tab(k).attribute12);
1637: WSH_DEBUG_SV.log(l_module_name,' attribute13',p_delivery_rec.container_tab(i).container_tab(k).attribute13);
1638: WSH_DEBUG_SV.log(l_module_name,' attribute14',p_delivery_rec.container_tab(i).container_tab(k).attribute14);
1639: WSH_DEBUG_SV.log(l_module_name,' attribute15',p_delivery_rec.container_tab(i).container_tab(k).attribute15);
1640: WSH_DEBUG_SV.log(l_module_name,' container_name ',p_delivery_rec.container_tab(i).container_tab(k).container_name );
1641: WSH_DEBUG_SV.log(l_module_name,' item_number',p_delivery_rec.container_tab(i).container_tab(k).item_number);
1642: WSH_DEBUG_SV.log(l_module_name,' item_description',p_delivery_rec.container_tab(i).container_tab(k).item_description);
1643: WSH_DEBUG_SV.log(l_module_name,' gross_weight',p_delivery_rec.container_tab(i).container_tab(k).gross_weight);

Line 1640: WSH_DEBUG_SV.log(l_module_name,' container_name ',p_delivery_rec.container_tab(i).container_tab(k).container_name );

1636: WSH_DEBUG_SV.log(l_module_name,' attribute12',p_delivery_rec.container_tab(i).container_tab(k).attribute12);
1637: WSH_DEBUG_SV.log(l_module_name,' attribute13',p_delivery_rec.container_tab(i).container_tab(k).attribute13);
1638: WSH_DEBUG_SV.log(l_module_name,' attribute14',p_delivery_rec.container_tab(i).container_tab(k).attribute14);
1639: WSH_DEBUG_SV.log(l_module_name,' attribute15',p_delivery_rec.container_tab(i).container_tab(k).attribute15);
1640: WSH_DEBUG_SV.log(l_module_name,' container_name ',p_delivery_rec.container_tab(i).container_tab(k).container_name );
1641: WSH_DEBUG_SV.log(l_module_name,' item_number',p_delivery_rec.container_tab(i).container_tab(k).item_number);
1642: WSH_DEBUG_SV.log(l_module_name,' item_description',p_delivery_rec.container_tab(i).container_tab(k).item_description);
1643: WSH_DEBUG_SV.log(l_module_name,' gross_weight',p_delivery_rec.container_tab(i).container_tab(k).gross_weight);
1644: WSH_DEBUG_SV.log(l_module_name,' net_weight',p_delivery_rec.container_tab(i).container_tab(k).net_weight);

Line 1641: WSH_DEBUG_SV.log(l_module_name,' item_number',p_delivery_rec.container_tab(i).container_tab(k).item_number);

1637: WSH_DEBUG_SV.log(l_module_name,' attribute13',p_delivery_rec.container_tab(i).container_tab(k).attribute13);
1638: WSH_DEBUG_SV.log(l_module_name,' attribute14',p_delivery_rec.container_tab(i).container_tab(k).attribute14);
1639: WSH_DEBUG_SV.log(l_module_name,' attribute15',p_delivery_rec.container_tab(i).container_tab(k).attribute15);
1640: WSH_DEBUG_SV.log(l_module_name,' container_name ',p_delivery_rec.container_tab(i).container_tab(k).container_name );
1641: WSH_DEBUG_SV.log(l_module_name,' item_number',p_delivery_rec.container_tab(i).container_tab(k).item_number);
1642: WSH_DEBUG_SV.log(l_module_name,' item_description',p_delivery_rec.container_tab(i).container_tab(k).item_description);
1643: WSH_DEBUG_SV.log(l_module_name,' gross_weight',p_delivery_rec.container_tab(i).container_tab(k).gross_weight);
1644: WSH_DEBUG_SV.log(l_module_name,' net_weight',p_delivery_rec.container_tab(i).container_tab(k).net_weight);
1645: WSH_DEBUG_SV.log(l_module_name,' weight_uom_code',p_delivery_rec.container_tab(i).container_tab(k).weight_uom_code);

Line 1642: WSH_DEBUG_SV.log(l_module_name,' item_description',p_delivery_rec.container_tab(i).container_tab(k).item_description);

1638: WSH_DEBUG_SV.log(l_module_name,' attribute14',p_delivery_rec.container_tab(i).container_tab(k).attribute14);
1639: WSH_DEBUG_SV.log(l_module_name,' attribute15',p_delivery_rec.container_tab(i).container_tab(k).attribute15);
1640: WSH_DEBUG_SV.log(l_module_name,' container_name ',p_delivery_rec.container_tab(i).container_tab(k).container_name );
1641: WSH_DEBUG_SV.log(l_module_name,' item_number',p_delivery_rec.container_tab(i).container_tab(k).item_number);
1642: WSH_DEBUG_SV.log(l_module_name,' item_description',p_delivery_rec.container_tab(i).container_tab(k).item_description);
1643: WSH_DEBUG_SV.log(l_module_name,' gross_weight',p_delivery_rec.container_tab(i).container_tab(k).gross_weight);
1644: WSH_DEBUG_SV.log(l_module_name,' net_weight',p_delivery_rec.container_tab(i).container_tab(k).net_weight);
1645: WSH_DEBUG_SV.log(l_module_name,' weight_uom_code',p_delivery_rec.container_tab(i).container_tab(k).weight_uom_code);
1646: WSH_DEBUG_SV.log(l_module_name,' volume',p_delivery_rec.container_tab(i).container_tab(k).volume);

Line 1643: WSH_DEBUG_SV.log(l_module_name,' gross_weight',p_delivery_rec.container_tab(i).container_tab(k).gross_weight);

1639: WSH_DEBUG_SV.log(l_module_name,' attribute15',p_delivery_rec.container_tab(i).container_tab(k).attribute15);
1640: WSH_DEBUG_SV.log(l_module_name,' container_name ',p_delivery_rec.container_tab(i).container_tab(k).container_name );
1641: WSH_DEBUG_SV.log(l_module_name,' item_number',p_delivery_rec.container_tab(i).container_tab(k).item_number);
1642: WSH_DEBUG_SV.log(l_module_name,' item_description',p_delivery_rec.container_tab(i).container_tab(k).item_description);
1643: WSH_DEBUG_SV.log(l_module_name,' gross_weight',p_delivery_rec.container_tab(i).container_tab(k).gross_weight);
1644: WSH_DEBUG_SV.log(l_module_name,' net_weight',p_delivery_rec.container_tab(i).container_tab(k).net_weight);
1645: WSH_DEBUG_SV.log(l_module_name,' weight_uom_code',p_delivery_rec.container_tab(i).container_tab(k).weight_uom_code);
1646: WSH_DEBUG_SV.log(l_module_name,' volume',p_delivery_rec.container_tab(i).container_tab(k).volume);
1647: WSH_DEBUG_SV.log(l_module_name,' volume_uom_code',p_delivery_rec.container_tab(i).container_tab(k).volume_uom_code);

Line 1644: WSH_DEBUG_SV.log(l_module_name,' net_weight',p_delivery_rec.container_tab(i).container_tab(k).net_weight);

1640: WSH_DEBUG_SV.log(l_module_name,' container_name ',p_delivery_rec.container_tab(i).container_tab(k).container_name );
1641: WSH_DEBUG_SV.log(l_module_name,' item_number',p_delivery_rec.container_tab(i).container_tab(k).item_number);
1642: WSH_DEBUG_SV.log(l_module_name,' item_description',p_delivery_rec.container_tab(i).container_tab(k).item_description);
1643: WSH_DEBUG_SV.log(l_module_name,' gross_weight',p_delivery_rec.container_tab(i).container_tab(k).gross_weight);
1644: WSH_DEBUG_SV.log(l_module_name,' net_weight',p_delivery_rec.container_tab(i).container_tab(k).net_weight);
1645: WSH_DEBUG_SV.log(l_module_name,' weight_uom_code',p_delivery_rec.container_tab(i).container_tab(k).weight_uom_code);
1646: WSH_DEBUG_SV.log(l_module_name,' volume',p_delivery_rec.container_tab(i).container_tab(k).volume);
1647: WSH_DEBUG_SV.log(l_module_name,' volume_uom_code',p_delivery_rec.container_tab(i).container_tab(k).volume_uom_code);
1648: WSH_DEBUG_SV.log(l_module_name,' wv_frozen_flag',p_delivery_rec.container_tab(i).container_tab(k).wv_frozen_flag);

Line 1645: WSH_DEBUG_SV.log(l_module_name,' weight_uom_code',p_delivery_rec.container_tab(i).container_tab(k).weight_uom_code);

1641: WSH_DEBUG_SV.log(l_module_name,' item_number',p_delivery_rec.container_tab(i).container_tab(k).item_number);
1642: WSH_DEBUG_SV.log(l_module_name,' item_description',p_delivery_rec.container_tab(i).container_tab(k).item_description);
1643: WSH_DEBUG_SV.log(l_module_name,' gross_weight',p_delivery_rec.container_tab(i).container_tab(k).gross_weight);
1644: WSH_DEBUG_SV.log(l_module_name,' net_weight',p_delivery_rec.container_tab(i).container_tab(k).net_weight);
1645: WSH_DEBUG_SV.log(l_module_name,' weight_uom_code',p_delivery_rec.container_tab(i).container_tab(k).weight_uom_code);
1646: WSH_DEBUG_SV.log(l_module_name,' volume',p_delivery_rec.container_tab(i).container_tab(k).volume);
1647: WSH_DEBUG_SV.log(l_module_name,' volume_uom_code',p_delivery_rec.container_tab(i).container_tab(k).volume_uom_code);
1648: WSH_DEBUG_SV.log(l_module_name,' wv_frozen_flag',p_delivery_rec.container_tab(i).container_tab(k).wv_frozen_flag);
1649: WSH_DEBUG_SV.log(l_module_name,' filled_volume',p_delivery_rec.container_tab(i).container_tab(k).filled_volume);

Line 1646: WSH_DEBUG_SV.log(l_module_name,' volume',p_delivery_rec.container_tab(i).container_tab(k).volume);

1642: WSH_DEBUG_SV.log(l_module_name,' item_description',p_delivery_rec.container_tab(i).container_tab(k).item_description);
1643: WSH_DEBUG_SV.log(l_module_name,' gross_weight',p_delivery_rec.container_tab(i).container_tab(k).gross_weight);
1644: WSH_DEBUG_SV.log(l_module_name,' net_weight',p_delivery_rec.container_tab(i).container_tab(k).net_weight);
1645: WSH_DEBUG_SV.log(l_module_name,' weight_uom_code',p_delivery_rec.container_tab(i).container_tab(k).weight_uom_code);
1646: WSH_DEBUG_SV.log(l_module_name,' volume',p_delivery_rec.container_tab(i).container_tab(k).volume);
1647: WSH_DEBUG_SV.log(l_module_name,' volume_uom_code',p_delivery_rec.container_tab(i).container_tab(k).volume_uom_code);
1648: WSH_DEBUG_SV.log(l_module_name,' wv_frozen_flag',p_delivery_rec.container_tab(i).container_tab(k).wv_frozen_flag);
1649: WSH_DEBUG_SV.log(l_module_name,' filled_volume',p_delivery_rec.container_tab(i).container_tab(k).filled_volume);
1650: WSH_DEBUG_SV.log(l_module_name,' fill_percent',p_delivery_rec.container_tab(i).container_tab(k).fill_percent);

Line 1647: WSH_DEBUG_SV.log(l_module_name,' volume_uom_code',p_delivery_rec.container_tab(i).container_tab(k).volume_uom_code);

1643: WSH_DEBUG_SV.log(l_module_name,' gross_weight',p_delivery_rec.container_tab(i).container_tab(k).gross_weight);
1644: WSH_DEBUG_SV.log(l_module_name,' net_weight',p_delivery_rec.container_tab(i).container_tab(k).net_weight);
1645: WSH_DEBUG_SV.log(l_module_name,' weight_uom_code',p_delivery_rec.container_tab(i).container_tab(k).weight_uom_code);
1646: WSH_DEBUG_SV.log(l_module_name,' volume',p_delivery_rec.container_tab(i).container_tab(k).volume);
1647: WSH_DEBUG_SV.log(l_module_name,' volume_uom_code',p_delivery_rec.container_tab(i).container_tab(k).volume_uom_code);
1648: WSH_DEBUG_SV.log(l_module_name,' wv_frozen_flag',p_delivery_rec.container_tab(i).container_tab(k).wv_frozen_flag);
1649: WSH_DEBUG_SV.log(l_module_name,' filled_volume',p_delivery_rec.container_tab(i).container_tab(k).filled_volume);
1650: WSH_DEBUG_SV.log(l_module_name,' fill_percent',p_delivery_rec.container_tab(i).container_tab(k).fill_percent);
1651: WSH_DEBUG_SV.log(l_module_name,' seal_code',p_delivery_rec.container_tab(i).container_tab(k).seal_code);

Line 1648: WSH_DEBUG_SV.log(l_module_name,' wv_frozen_flag',p_delivery_rec.container_tab(i).container_tab(k).wv_frozen_flag);

1644: WSH_DEBUG_SV.log(l_module_name,' net_weight',p_delivery_rec.container_tab(i).container_tab(k).net_weight);
1645: WSH_DEBUG_SV.log(l_module_name,' weight_uom_code',p_delivery_rec.container_tab(i).container_tab(k).weight_uom_code);
1646: WSH_DEBUG_SV.log(l_module_name,' volume',p_delivery_rec.container_tab(i).container_tab(k).volume);
1647: WSH_DEBUG_SV.log(l_module_name,' volume_uom_code',p_delivery_rec.container_tab(i).container_tab(k).volume_uom_code);
1648: WSH_DEBUG_SV.log(l_module_name,' wv_frozen_flag',p_delivery_rec.container_tab(i).container_tab(k).wv_frozen_flag);
1649: WSH_DEBUG_SV.log(l_module_name,' filled_volume',p_delivery_rec.container_tab(i).container_tab(k).filled_volume);
1650: WSH_DEBUG_SV.log(l_module_name,' fill_percent',p_delivery_rec.container_tab(i).container_tab(k).fill_percent);
1651: WSH_DEBUG_SV.log(l_module_name,' seal_code',p_delivery_rec.container_tab(i).container_tab(k).seal_code);
1652: WSH_DEBUG_SV.log(l_module_name,' packing_instructions',p_delivery_rec.container_tab(i).container_tab(k).packing_instructions);

Line 1649: WSH_DEBUG_SV.log(l_module_name,' filled_volume',p_delivery_rec.container_tab(i).container_tab(k).filled_volume);

1645: WSH_DEBUG_SV.log(l_module_name,' weight_uom_code',p_delivery_rec.container_tab(i).container_tab(k).weight_uom_code);
1646: WSH_DEBUG_SV.log(l_module_name,' volume',p_delivery_rec.container_tab(i).container_tab(k).volume);
1647: WSH_DEBUG_SV.log(l_module_name,' volume_uom_code',p_delivery_rec.container_tab(i).container_tab(k).volume_uom_code);
1648: WSH_DEBUG_SV.log(l_module_name,' wv_frozen_flag',p_delivery_rec.container_tab(i).container_tab(k).wv_frozen_flag);
1649: WSH_DEBUG_SV.log(l_module_name,' filled_volume',p_delivery_rec.container_tab(i).container_tab(k).filled_volume);
1650: WSH_DEBUG_SV.log(l_module_name,' fill_percent',p_delivery_rec.container_tab(i).container_tab(k).fill_percent);
1651: WSH_DEBUG_SV.log(l_module_name,' seal_code',p_delivery_rec.container_tab(i).container_tab(k).seal_code);
1652: WSH_DEBUG_SV.log(l_module_name,' packing_instructions',p_delivery_rec.container_tab(i).container_tab(k).packing_instructions);
1653: WSH_DEBUG_SV.log(l_module_name,' shipping_instructions',p_delivery_rec.container_tab(i).container_tab(k).shipping_instructions);

Line 1650: WSH_DEBUG_SV.log(l_module_name,' fill_percent',p_delivery_rec.container_tab(i).container_tab(k).fill_percent);

1646: WSH_DEBUG_SV.log(l_module_name,' volume',p_delivery_rec.container_tab(i).container_tab(k).volume);
1647: WSH_DEBUG_SV.log(l_module_name,' volume_uom_code',p_delivery_rec.container_tab(i).container_tab(k).volume_uom_code);
1648: WSH_DEBUG_SV.log(l_module_name,' wv_frozen_flag',p_delivery_rec.container_tab(i).container_tab(k).wv_frozen_flag);
1649: WSH_DEBUG_SV.log(l_module_name,' filled_volume',p_delivery_rec.container_tab(i).container_tab(k).filled_volume);
1650: WSH_DEBUG_SV.log(l_module_name,' fill_percent',p_delivery_rec.container_tab(i).container_tab(k).fill_percent);
1651: WSH_DEBUG_SV.log(l_module_name,' seal_code',p_delivery_rec.container_tab(i).container_tab(k).seal_code);
1652: WSH_DEBUG_SV.log(l_module_name,' packing_instructions',p_delivery_rec.container_tab(i).container_tab(k).packing_instructions);
1653: WSH_DEBUG_SV.log(l_module_name,' shipping_instructions',p_delivery_rec.container_tab(i).container_tab(k).shipping_instructions);
1654: WSH_DEBUG_SV.log(l_module_name,' tracking_number',p_delivery_rec.container_tab(i).container_tab(k).tracking_number);

Line 1651: WSH_DEBUG_SV.log(l_module_name,' seal_code',p_delivery_rec.container_tab(i).container_tab(k).seal_code);

1647: WSH_DEBUG_SV.log(l_module_name,' volume_uom_code',p_delivery_rec.container_tab(i).container_tab(k).volume_uom_code);
1648: WSH_DEBUG_SV.log(l_module_name,' wv_frozen_flag',p_delivery_rec.container_tab(i).container_tab(k).wv_frozen_flag);
1649: WSH_DEBUG_SV.log(l_module_name,' filled_volume',p_delivery_rec.container_tab(i).container_tab(k).filled_volume);
1650: WSH_DEBUG_SV.log(l_module_name,' fill_percent',p_delivery_rec.container_tab(i).container_tab(k).fill_percent);
1651: WSH_DEBUG_SV.log(l_module_name,' seal_code',p_delivery_rec.container_tab(i).container_tab(k).seal_code);
1652: WSH_DEBUG_SV.log(l_module_name,' packing_instructions',p_delivery_rec.container_tab(i).container_tab(k).packing_instructions);
1653: WSH_DEBUG_SV.log(l_module_name,' shipping_instructions',p_delivery_rec.container_tab(i).container_tab(k).shipping_instructions);
1654: WSH_DEBUG_SV.log(l_module_name,' tracking_number',p_delivery_rec.container_tab(i).container_tab(k).tracking_number);
1655: WSH_DEBUG_SV.logmsg(l_module_name,' -------------------------------------------------------------------');

Line 1652: WSH_DEBUG_SV.log(l_module_name,' packing_instructions',p_delivery_rec.container_tab(i).container_tab(k).packing_instructions);

1648: WSH_DEBUG_SV.log(l_module_name,' wv_frozen_flag',p_delivery_rec.container_tab(i).container_tab(k).wv_frozen_flag);
1649: WSH_DEBUG_SV.log(l_module_name,' filled_volume',p_delivery_rec.container_tab(i).container_tab(k).filled_volume);
1650: WSH_DEBUG_SV.log(l_module_name,' fill_percent',p_delivery_rec.container_tab(i).container_tab(k).fill_percent);
1651: WSH_DEBUG_SV.log(l_module_name,' seal_code',p_delivery_rec.container_tab(i).container_tab(k).seal_code);
1652: WSH_DEBUG_SV.log(l_module_name,' packing_instructions',p_delivery_rec.container_tab(i).container_tab(k).packing_instructions);
1653: WSH_DEBUG_SV.log(l_module_name,' shipping_instructions',p_delivery_rec.container_tab(i).container_tab(k).shipping_instructions);
1654: WSH_DEBUG_SV.log(l_module_name,' tracking_number',p_delivery_rec.container_tab(i).container_tab(k).tracking_number);
1655: WSH_DEBUG_SV.logmsg(l_module_name,' -------------------------------------------------------------------');
1656:

Line 1653: WSH_DEBUG_SV.log(l_module_name,' shipping_instructions',p_delivery_rec.container_tab(i).container_tab(k).shipping_instructions);

1649: WSH_DEBUG_SV.log(l_module_name,' filled_volume',p_delivery_rec.container_tab(i).container_tab(k).filled_volume);
1650: WSH_DEBUG_SV.log(l_module_name,' fill_percent',p_delivery_rec.container_tab(i).container_tab(k).fill_percent);
1651: WSH_DEBUG_SV.log(l_module_name,' seal_code',p_delivery_rec.container_tab(i).container_tab(k).seal_code);
1652: WSH_DEBUG_SV.log(l_module_name,' packing_instructions',p_delivery_rec.container_tab(i).container_tab(k).packing_instructions);
1653: WSH_DEBUG_SV.log(l_module_name,' shipping_instructions',p_delivery_rec.container_tab(i).container_tab(k).shipping_instructions);
1654: WSH_DEBUG_SV.log(l_module_name,' tracking_number',p_delivery_rec.container_tab(i).container_tab(k).tracking_number);
1655: WSH_DEBUG_SV.logmsg(l_module_name,' -------------------------------------------------------------------');
1656:
1657: WSH_DEBUG_SV.log(l_module_name,' Inner Container Freight costs.count',p_delivery_rec.container_tab(i).container_tab(k).Container_Freight_Tab.count);

Line 1654: WSH_DEBUG_SV.log(l_module_name,' tracking_number',p_delivery_rec.container_tab(i).container_tab(k).tracking_number);

1650: WSH_DEBUG_SV.log(l_module_name,' fill_percent',p_delivery_rec.container_tab(i).container_tab(k).fill_percent);
1651: WSH_DEBUG_SV.log(l_module_name,' seal_code',p_delivery_rec.container_tab(i).container_tab(k).seal_code);
1652: WSH_DEBUG_SV.log(l_module_name,' packing_instructions',p_delivery_rec.container_tab(i).container_tab(k).packing_instructions);
1653: WSH_DEBUG_SV.log(l_module_name,' shipping_instructions',p_delivery_rec.container_tab(i).container_tab(k).shipping_instructions);
1654: WSH_DEBUG_SV.log(l_module_name,' tracking_number',p_delivery_rec.container_tab(i).container_tab(k).tracking_number);
1655: WSH_DEBUG_SV.logmsg(l_module_name,' -------------------------------------------------------------------');
1656:
1657: WSH_DEBUG_SV.log(l_module_name,' Inner Container Freight costs.count',p_delivery_rec.container_tab(i).container_tab(k).Container_Freight_Tab.count);
1658: IF p_delivery_rec.container_tab(i).container_tab(k).Container_Freight_Tab.count >0 THEN

Line 1655: WSH_DEBUG_SV.logmsg(l_module_name,' -------------------------------------------------------------------');

1651: WSH_DEBUG_SV.log(l_module_name,' seal_code',p_delivery_rec.container_tab(i).container_tab(k).seal_code);
1652: WSH_DEBUG_SV.log(l_module_name,' packing_instructions',p_delivery_rec.container_tab(i).container_tab(k).packing_instructions);
1653: WSH_DEBUG_SV.log(l_module_name,' shipping_instructions',p_delivery_rec.container_tab(i).container_tab(k).shipping_instructions);
1654: WSH_DEBUG_SV.log(l_module_name,' tracking_number',p_delivery_rec.container_tab(i).container_tab(k).tracking_number);
1655: WSH_DEBUG_SV.logmsg(l_module_name,' -------------------------------------------------------------------');
1656:
1657: WSH_DEBUG_SV.log(l_module_name,' Inner Container Freight costs.count',p_delivery_rec.container_tab(i).container_tab(k).Container_Freight_Tab.count);
1658: IF p_delivery_rec.container_tab(i).container_tab(k).Container_Freight_Tab.count >0 THEN
1659: WSH_DEBUG_SV.logmsg(l_module_name,' -------------------------------------------------------------------');

Line 1657: WSH_DEBUG_SV.log(l_module_name,' Inner Container Freight costs.count',p_delivery_rec.container_tab(i).container_tab(k).Container_Freight_Tab.count);

1653: WSH_DEBUG_SV.log(l_module_name,' shipping_instructions',p_delivery_rec.container_tab(i).container_tab(k).shipping_instructions);
1654: WSH_DEBUG_SV.log(l_module_name,' tracking_number',p_delivery_rec.container_tab(i).container_tab(k).tracking_number);
1655: WSH_DEBUG_SV.logmsg(l_module_name,' -------------------------------------------------------------------');
1656:
1657: WSH_DEBUG_SV.log(l_module_name,' Inner Container Freight costs.count',p_delivery_rec.container_tab(i).container_tab(k).Container_Freight_Tab.count);
1658: IF p_delivery_rec.container_tab(i).container_tab(k).Container_Freight_Tab.count >0 THEN
1659: WSH_DEBUG_SV.logmsg(l_module_name,' -------------------------------------------------------------------');
1660: WSH_DEBUG_SV.logmsg(l_module_name,' Inner Container Freight costs Details');
1661: WSH_DEBUG_SV.logmsg(l_module_name,' -------------------------------------------------------------------');

Line 1659: WSH_DEBUG_SV.logmsg(l_module_name,' -------------------------------------------------------------------');

1655: WSH_DEBUG_SV.logmsg(l_module_name,' -------------------------------------------------------------------');
1656:
1657: WSH_DEBUG_SV.log(l_module_name,' Inner Container Freight costs.count',p_delivery_rec.container_tab(i).container_tab(k).Container_Freight_Tab.count);
1658: IF p_delivery_rec.container_tab(i).container_tab(k).Container_Freight_Tab.count >0 THEN
1659: WSH_DEBUG_SV.logmsg(l_module_name,' -------------------------------------------------------------------');
1660: WSH_DEBUG_SV.logmsg(l_module_name,' Inner Container Freight costs Details');
1661: WSH_DEBUG_SV.logmsg(l_module_name,' -------------------------------------------------------------------');
1662:
1663: FOR l in 1..p_delivery_rec.container_tab(i).container_tab(k).Container_Freight_Tab.count LOOP

Line 1660: WSH_DEBUG_SV.logmsg(l_module_name,' Inner Container Freight costs Details');

1656:
1657: WSH_DEBUG_SV.log(l_module_name,' Inner Container Freight costs.count',p_delivery_rec.container_tab(i).container_tab(k).Container_Freight_Tab.count);
1658: IF p_delivery_rec.container_tab(i).container_tab(k).Container_Freight_Tab.count >0 THEN
1659: WSH_DEBUG_SV.logmsg(l_module_name,' -------------------------------------------------------------------');
1660: WSH_DEBUG_SV.logmsg(l_module_name,' Inner Container Freight costs Details');
1661: WSH_DEBUG_SV.logmsg(l_module_name,' -------------------------------------------------------------------');
1662:
1663: FOR l in 1..p_delivery_rec.container_tab(i).container_tab(k).Container_Freight_Tab.count LOOP
1664: WSH_DEBUG_SV.log(l_module_name,' freight_cost_type_code',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).freight_cost_type_code);

Line 1661: WSH_DEBUG_SV.logmsg(l_module_name,' -------------------------------------------------------------------');

1657: WSH_DEBUG_SV.log(l_module_name,' Inner Container Freight costs.count',p_delivery_rec.container_tab(i).container_tab(k).Container_Freight_Tab.count);
1658: IF p_delivery_rec.container_tab(i).container_tab(k).Container_Freight_Tab.count >0 THEN
1659: WSH_DEBUG_SV.logmsg(l_module_name,' -------------------------------------------------------------------');
1660: WSH_DEBUG_SV.logmsg(l_module_name,' Inner Container Freight costs Details');
1661: WSH_DEBUG_SV.logmsg(l_module_name,' -------------------------------------------------------------------');
1662:
1663: FOR l in 1..p_delivery_rec.container_tab(i).container_tab(k).Container_Freight_Tab.count LOOP
1664: WSH_DEBUG_SV.log(l_module_name,' freight_cost_type_code',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).freight_cost_type_code);
1665: WSH_DEBUG_SV.log(l_module_name,' unit_amount ',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).unit_amount );

Line 1664: WSH_DEBUG_SV.log(l_module_name,' freight_cost_type_code',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).freight_cost_type_code);

1660: WSH_DEBUG_SV.logmsg(l_module_name,' Inner Container Freight costs Details');
1661: WSH_DEBUG_SV.logmsg(l_module_name,' -------------------------------------------------------------------');
1662:
1663: FOR l in 1..p_delivery_rec.container_tab(i).container_tab(k).Container_Freight_Tab.count LOOP
1664: WSH_DEBUG_SV.log(l_module_name,' freight_cost_type_code',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).freight_cost_type_code);
1665: WSH_DEBUG_SV.log(l_module_name,' unit_amount ',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).unit_amount );
1666: WSH_DEBUG_SV.log(l_module_name,' currency_code',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).currency_code);
1667: WSH_DEBUG_SV.log(l_module_name,' attribute_category',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute_category);
1668: WSH_DEBUG_SV.log(l_module_name,' attribute1',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute1);

Line 1665: WSH_DEBUG_SV.log(l_module_name,' unit_amount ',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).unit_amount );

1661: WSH_DEBUG_SV.logmsg(l_module_name,' -------------------------------------------------------------------');
1662:
1663: FOR l in 1..p_delivery_rec.container_tab(i).container_tab(k).Container_Freight_Tab.count LOOP
1664: WSH_DEBUG_SV.log(l_module_name,' freight_cost_type_code',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).freight_cost_type_code);
1665: WSH_DEBUG_SV.log(l_module_name,' unit_amount ',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).unit_amount );
1666: WSH_DEBUG_SV.log(l_module_name,' currency_code',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).currency_code);
1667: WSH_DEBUG_SV.log(l_module_name,' attribute_category',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute_category);
1668: WSH_DEBUG_SV.log(l_module_name,' attribute1',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute1);
1669: WSH_DEBUG_SV.log(l_module_name,' attribute2',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute2);

Line 1666: WSH_DEBUG_SV.log(l_module_name,' currency_code',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).currency_code);

1662:
1663: FOR l in 1..p_delivery_rec.container_tab(i).container_tab(k).Container_Freight_Tab.count LOOP
1664: WSH_DEBUG_SV.log(l_module_name,' freight_cost_type_code',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).freight_cost_type_code);
1665: WSH_DEBUG_SV.log(l_module_name,' unit_amount ',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).unit_amount );
1666: WSH_DEBUG_SV.log(l_module_name,' currency_code',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).currency_code);
1667: WSH_DEBUG_SV.log(l_module_name,' attribute_category',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute_category);
1668: WSH_DEBUG_SV.log(l_module_name,' attribute1',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute1);
1669: WSH_DEBUG_SV.log(l_module_name,' attribute2',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute2);
1670: WSH_DEBUG_SV.log(l_module_name,' attribute3',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute3);

Line 1667: WSH_DEBUG_SV.log(l_module_name,' attribute_category',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute_category);

1663: FOR l in 1..p_delivery_rec.container_tab(i).container_tab(k).Container_Freight_Tab.count LOOP
1664: WSH_DEBUG_SV.log(l_module_name,' freight_cost_type_code',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).freight_cost_type_code);
1665: WSH_DEBUG_SV.log(l_module_name,' unit_amount ',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).unit_amount );
1666: WSH_DEBUG_SV.log(l_module_name,' currency_code',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).currency_code);
1667: WSH_DEBUG_SV.log(l_module_name,' attribute_category',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute_category);
1668: WSH_DEBUG_SV.log(l_module_name,' attribute1',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute1);
1669: WSH_DEBUG_SV.log(l_module_name,' attribute2',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute2);
1670: WSH_DEBUG_SV.log(l_module_name,' attribute3',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute3);
1671: WSH_DEBUG_SV.log(l_module_name,' attribute4',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute4);

Line 1668: WSH_DEBUG_SV.log(l_module_name,' attribute1',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute1);

1664: WSH_DEBUG_SV.log(l_module_name,' freight_cost_type_code',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).freight_cost_type_code);
1665: WSH_DEBUG_SV.log(l_module_name,' unit_amount ',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).unit_amount );
1666: WSH_DEBUG_SV.log(l_module_name,' currency_code',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).currency_code);
1667: WSH_DEBUG_SV.log(l_module_name,' attribute_category',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute_category);
1668: WSH_DEBUG_SV.log(l_module_name,' attribute1',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute1);
1669: WSH_DEBUG_SV.log(l_module_name,' attribute2',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute2);
1670: WSH_DEBUG_SV.log(l_module_name,' attribute3',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute3);
1671: WSH_DEBUG_SV.log(l_module_name,' attribute4',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute4);
1672: WSH_DEBUG_SV.log(l_module_name,' attribute5',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute5);

Line 1669: WSH_DEBUG_SV.log(l_module_name,' attribute2',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute2);

1665: WSH_DEBUG_SV.log(l_module_name,' unit_amount ',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).unit_amount );
1666: WSH_DEBUG_SV.log(l_module_name,' currency_code',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).currency_code);
1667: WSH_DEBUG_SV.log(l_module_name,' attribute_category',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute_category);
1668: WSH_DEBUG_SV.log(l_module_name,' attribute1',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute1);
1669: WSH_DEBUG_SV.log(l_module_name,' attribute2',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute2);
1670: WSH_DEBUG_SV.log(l_module_name,' attribute3',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute3);
1671: WSH_DEBUG_SV.log(l_module_name,' attribute4',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute4);
1672: WSH_DEBUG_SV.log(l_module_name,' attribute5',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute5);
1673: WSH_DEBUG_SV.log(l_module_name,' attribute6',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute6);

Line 1670: WSH_DEBUG_SV.log(l_module_name,' attribute3',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute3);

1666: WSH_DEBUG_SV.log(l_module_name,' currency_code',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).currency_code);
1667: WSH_DEBUG_SV.log(l_module_name,' attribute_category',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute_category);
1668: WSH_DEBUG_SV.log(l_module_name,' attribute1',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute1);
1669: WSH_DEBUG_SV.log(l_module_name,' attribute2',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute2);
1670: WSH_DEBUG_SV.log(l_module_name,' attribute3',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute3);
1671: WSH_DEBUG_SV.log(l_module_name,' attribute4',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute4);
1672: WSH_DEBUG_SV.log(l_module_name,' attribute5',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute5);
1673: WSH_DEBUG_SV.log(l_module_name,' attribute6',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute6);
1674: WSH_DEBUG_SV.log(l_module_name,' attribute7',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute7);

Line 1671: WSH_DEBUG_SV.log(l_module_name,' attribute4',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute4);

1667: WSH_DEBUG_SV.log(l_module_name,' attribute_category',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute_category);
1668: WSH_DEBUG_SV.log(l_module_name,' attribute1',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute1);
1669: WSH_DEBUG_SV.log(l_module_name,' attribute2',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute2);
1670: WSH_DEBUG_SV.log(l_module_name,' attribute3',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute3);
1671: WSH_DEBUG_SV.log(l_module_name,' attribute4',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute4);
1672: WSH_DEBUG_SV.log(l_module_name,' attribute5',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute5);
1673: WSH_DEBUG_SV.log(l_module_name,' attribute6',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute6);
1674: WSH_DEBUG_SV.log(l_module_name,' attribute7',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute7);
1675: WSH_DEBUG_SV.log(l_module_name,' attribute8',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute8);

Line 1672: WSH_DEBUG_SV.log(l_module_name,' attribute5',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute5);

1668: WSH_DEBUG_SV.log(l_module_name,' attribute1',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute1);
1669: WSH_DEBUG_SV.log(l_module_name,' attribute2',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute2);
1670: WSH_DEBUG_SV.log(l_module_name,' attribute3',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute3);
1671: WSH_DEBUG_SV.log(l_module_name,' attribute4',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute4);
1672: WSH_DEBUG_SV.log(l_module_name,' attribute5',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute5);
1673: WSH_DEBUG_SV.log(l_module_name,' attribute6',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute6);
1674: WSH_DEBUG_SV.log(l_module_name,' attribute7',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute7);
1675: WSH_DEBUG_SV.log(l_module_name,' attribute8',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute8);
1676: WSH_DEBUG_SV.log(l_module_name,' attribute9',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute9);

Line 1673: WSH_DEBUG_SV.log(l_module_name,' attribute6',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute6);

1669: WSH_DEBUG_SV.log(l_module_name,' attribute2',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute2);
1670: WSH_DEBUG_SV.log(l_module_name,' attribute3',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute3);
1671: WSH_DEBUG_SV.log(l_module_name,' attribute4',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute4);
1672: WSH_DEBUG_SV.log(l_module_name,' attribute5',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute5);
1673: WSH_DEBUG_SV.log(l_module_name,' attribute6',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute6);
1674: WSH_DEBUG_SV.log(l_module_name,' attribute7',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute7);
1675: WSH_DEBUG_SV.log(l_module_name,' attribute8',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute8);
1676: WSH_DEBUG_SV.log(l_module_name,' attribute9',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute9);
1677: WSH_DEBUG_SV.log(l_module_name,' attribute10',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute10);

Line 1674: WSH_DEBUG_SV.log(l_module_name,' attribute7',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute7);

1670: WSH_DEBUG_SV.log(l_module_name,' attribute3',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute3);
1671: WSH_DEBUG_SV.log(l_module_name,' attribute4',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute4);
1672: WSH_DEBUG_SV.log(l_module_name,' attribute5',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute5);
1673: WSH_DEBUG_SV.log(l_module_name,' attribute6',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute6);
1674: WSH_DEBUG_SV.log(l_module_name,' attribute7',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute7);
1675: WSH_DEBUG_SV.log(l_module_name,' attribute8',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute8);
1676: WSH_DEBUG_SV.log(l_module_name,' attribute9',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute9);
1677: WSH_DEBUG_SV.log(l_module_name,' attribute10',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute10);
1678: WSH_DEBUG_SV.log(l_module_name,' attribute11',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute11);

Line 1675: WSH_DEBUG_SV.log(l_module_name,' attribute8',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute8);

1671: WSH_DEBUG_SV.log(l_module_name,' attribute4',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute4);
1672: WSH_DEBUG_SV.log(l_module_name,' attribute5',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute5);
1673: WSH_DEBUG_SV.log(l_module_name,' attribute6',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute6);
1674: WSH_DEBUG_SV.log(l_module_name,' attribute7',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute7);
1675: WSH_DEBUG_SV.log(l_module_name,' attribute8',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute8);
1676: WSH_DEBUG_SV.log(l_module_name,' attribute9',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute9);
1677: WSH_DEBUG_SV.log(l_module_name,' attribute10',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute10);
1678: WSH_DEBUG_SV.log(l_module_name,' attribute11',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute11);
1679: WSH_DEBUG_SV.log(l_module_name,' attribute12',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute12);

Line 1676: WSH_DEBUG_SV.log(l_module_name,' attribute9',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute9);

1672: WSH_DEBUG_SV.log(l_module_name,' attribute5',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute5);
1673: WSH_DEBUG_SV.log(l_module_name,' attribute6',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute6);
1674: WSH_DEBUG_SV.log(l_module_name,' attribute7',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute7);
1675: WSH_DEBUG_SV.log(l_module_name,' attribute8',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute8);
1676: WSH_DEBUG_SV.log(l_module_name,' attribute9',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute9);
1677: WSH_DEBUG_SV.log(l_module_name,' attribute10',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute10);
1678: WSH_DEBUG_SV.log(l_module_name,' attribute11',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute11);
1679: WSH_DEBUG_SV.log(l_module_name,' attribute12',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute12);
1680: WSH_DEBUG_SV.log(l_module_name,' attribute13',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute13);

Line 1677: WSH_DEBUG_SV.log(l_module_name,' attribute10',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute10);

1673: WSH_DEBUG_SV.log(l_module_name,' attribute6',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute6);
1674: WSH_DEBUG_SV.log(l_module_name,' attribute7',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute7);
1675: WSH_DEBUG_SV.log(l_module_name,' attribute8',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute8);
1676: WSH_DEBUG_SV.log(l_module_name,' attribute9',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute9);
1677: WSH_DEBUG_SV.log(l_module_name,' attribute10',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute10);
1678: WSH_DEBUG_SV.log(l_module_name,' attribute11',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute11);
1679: WSH_DEBUG_SV.log(l_module_name,' attribute12',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute12);
1680: WSH_DEBUG_SV.log(l_module_name,' attribute13',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute13);
1681: WSH_DEBUG_SV.log(l_module_name,' attribute14',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute14);

Line 1678: WSH_DEBUG_SV.log(l_module_name,' attribute11',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute11);

1674: WSH_DEBUG_SV.log(l_module_name,' attribute7',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute7);
1675: WSH_DEBUG_SV.log(l_module_name,' attribute8',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute8);
1676: WSH_DEBUG_SV.log(l_module_name,' attribute9',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute9);
1677: WSH_DEBUG_SV.log(l_module_name,' attribute10',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute10);
1678: WSH_DEBUG_SV.log(l_module_name,' attribute11',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute11);
1679: WSH_DEBUG_SV.log(l_module_name,' attribute12',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute12);
1680: WSH_DEBUG_SV.log(l_module_name,' attribute13',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute13);
1681: WSH_DEBUG_SV.log(l_module_name,' attribute14',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute14);
1682: WSH_DEBUG_SV.log(l_module_name,' attribute15',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute15);

Line 1679: WSH_DEBUG_SV.log(l_module_name,' attribute12',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute12);

1675: WSH_DEBUG_SV.log(l_module_name,' attribute8',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute8);
1676: WSH_DEBUG_SV.log(l_module_name,' attribute9',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute9);
1677: WSH_DEBUG_SV.log(l_module_name,' attribute10',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute10);
1678: WSH_DEBUG_SV.log(l_module_name,' attribute11',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute11);
1679: WSH_DEBUG_SV.log(l_module_name,' attribute12',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute12);
1680: WSH_DEBUG_SV.log(l_module_name,' attribute13',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute13);
1681: WSH_DEBUG_SV.log(l_module_name,' attribute14',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute14);
1682: WSH_DEBUG_SV.log(l_module_name,' attribute15',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute15);
1683: WSH_DEBUG_SV.log(l_module_name,' unit_amount ',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).unit_amount );

Line 1680: WSH_DEBUG_SV.log(l_module_name,' attribute13',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute13);

1676: WSH_DEBUG_SV.log(l_module_name,' attribute9',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute9);
1677: WSH_DEBUG_SV.log(l_module_name,' attribute10',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute10);
1678: WSH_DEBUG_SV.log(l_module_name,' attribute11',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute11);
1679: WSH_DEBUG_SV.log(l_module_name,' attribute12',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute12);
1680: WSH_DEBUG_SV.log(l_module_name,' attribute13',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute13);
1681: WSH_DEBUG_SV.log(l_module_name,' attribute14',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute14);
1682: WSH_DEBUG_SV.log(l_module_name,' attribute15',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute15);
1683: WSH_DEBUG_SV.log(l_module_name,' unit_amount ',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).unit_amount );
1684: WSH_DEBUG_SV.log(l_module_name,' currency_code',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).currency_code);

Line 1681: WSH_DEBUG_SV.log(l_module_name,' attribute14',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute14);

1677: WSH_DEBUG_SV.log(l_module_name,' attribute10',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute10);
1678: WSH_DEBUG_SV.log(l_module_name,' attribute11',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute11);
1679: WSH_DEBUG_SV.log(l_module_name,' attribute12',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute12);
1680: WSH_DEBUG_SV.log(l_module_name,' attribute13',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute13);
1681: WSH_DEBUG_SV.log(l_module_name,' attribute14',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute14);
1682: WSH_DEBUG_SV.log(l_module_name,' attribute15',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute15);
1683: WSH_DEBUG_SV.log(l_module_name,' unit_amount ',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).unit_amount );
1684: WSH_DEBUG_SV.log(l_module_name,' currency_code',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).currency_code);
1685: WSH_DEBUG_SV.logmsg(l_module_name,' -------------------------------------------------------------------');

Line 1682: WSH_DEBUG_SV.log(l_module_name,' attribute15',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute15);

1678: WSH_DEBUG_SV.log(l_module_name,' attribute11',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute11);
1679: WSH_DEBUG_SV.log(l_module_name,' attribute12',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute12);
1680: WSH_DEBUG_SV.log(l_module_name,' attribute13',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute13);
1681: WSH_DEBUG_SV.log(l_module_name,' attribute14',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute14);
1682: WSH_DEBUG_SV.log(l_module_name,' attribute15',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute15);
1683: WSH_DEBUG_SV.log(l_module_name,' unit_amount ',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).unit_amount );
1684: WSH_DEBUG_SV.log(l_module_name,' currency_code',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).currency_code);
1685: WSH_DEBUG_SV.logmsg(l_module_name,' -------------------------------------------------------------------');
1686: END LOOP;

Line 1683: WSH_DEBUG_SV.log(l_module_name,' unit_amount ',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).unit_amount );

1679: WSH_DEBUG_SV.log(l_module_name,' attribute12',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute12);
1680: WSH_DEBUG_SV.log(l_module_name,' attribute13',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute13);
1681: WSH_DEBUG_SV.log(l_module_name,' attribute14',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute14);
1682: WSH_DEBUG_SV.log(l_module_name,' attribute15',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute15);
1683: WSH_DEBUG_SV.log(l_module_name,' unit_amount ',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).unit_amount );
1684: WSH_DEBUG_SV.log(l_module_name,' currency_code',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).currency_code);
1685: WSH_DEBUG_SV.logmsg(l_module_name,' -------------------------------------------------------------------');
1686: END LOOP;
1687: END IF;

Line 1684: WSH_DEBUG_SV.log(l_module_name,' currency_code',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).currency_code);

1680: WSH_DEBUG_SV.log(l_module_name,' attribute13',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute13);
1681: WSH_DEBUG_SV.log(l_module_name,' attribute14',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute14);
1682: WSH_DEBUG_SV.log(l_module_name,' attribute15',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute15);
1683: WSH_DEBUG_SV.log(l_module_name,' unit_amount ',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).unit_amount );
1684: WSH_DEBUG_SV.log(l_module_name,' currency_code',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).currency_code);
1685: WSH_DEBUG_SV.logmsg(l_module_name,' -------------------------------------------------------------------');
1686: END LOOP;
1687: END IF;
1688: END LOOP;

Line 1685: WSH_DEBUG_SV.logmsg(l_module_name,' -------------------------------------------------------------------');

1681: WSH_DEBUG_SV.log(l_module_name,' attribute14',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute14);
1682: WSH_DEBUG_SV.log(l_module_name,' attribute15',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).attribute15);
1683: WSH_DEBUG_SV.log(l_module_name,' unit_amount ',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).unit_amount );
1684: WSH_DEBUG_SV.log(l_module_name,' currency_code',p_delivery_rec.container_tab(i).Container_Tab(k).Container_Freight_Tab(l).currency_code);
1685: WSH_DEBUG_SV.logmsg(l_module_name,' -------------------------------------------------------------------');
1686: END LOOP;
1687: END IF;
1688: END LOOP;
1689: END IF;

Line 1694: wsh_debug_sv.pop(l_module_name);

1690:
1691: --}
1692: END LOOP;
1693: END IF;
1694: wsh_debug_sv.pop(l_module_name);
1695: EXCEPTION
1696: WHEN OTHERS THEN
1697: WSH_DEBUG_SV.logmsg(l_module_name,'Error in '||l_module_name, WSH_DEBUG_SV.C_STMT_LEVEL);
1698: WSH_DEBUG_SV.logmsg(l_module_name,'Unexpected error has occured. Oracle error message is '|| SQLERRM,WSH_DEBUG_SV.C_UNEXPEC_ERR_LEVEL);

Line 1697: WSH_DEBUG_SV.logmsg(l_module_name,'Error in '||l_module_name, WSH_DEBUG_SV.C_STMT_LEVEL);

1693: END IF;
1694: wsh_debug_sv.pop(l_module_name);
1695: EXCEPTION
1696: WHEN OTHERS THEN
1697: WSH_DEBUG_SV.logmsg(l_module_name,'Error in '||l_module_name, WSH_DEBUG_SV.C_STMT_LEVEL);
1698: WSH_DEBUG_SV.logmsg(l_module_name,'Unexpected error has occured. Oracle error message is '|| SQLERRM,WSH_DEBUG_SV.C_UNEXPEC_ERR_LEVEL);
1699: wsh_debug_sv.pop(l_module_name);
1700:
1701: END Debug_Shipment_Advice;

Line 1698: WSH_DEBUG_SV.logmsg(l_module_name,'Unexpected error has occured. Oracle error message is '|| SQLERRM,WSH_DEBUG_SV.C_UNEXPEC_ERR_LEVEL);

1694: wsh_debug_sv.pop(l_module_name);
1695: EXCEPTION
1696: WHEN OTHERS THEN
1697: WSH_DEBUG_SV.logmsg(l_module_name,'Error in '||l_module_name, WSH_DEBUG_SV.C_STMT_LEVEL);
1698: WSH_DEBUG_SV.logmsg(l_module_name,'Unexpected error has occured. Oracle error message is '|| SQLERRM,WSH_DEBUG_SV.C_UNEXPEC_ERR_LEVEL);
1699: wsh_debug_sv.pop(l_module_name);
1700:
1701: END Debug_Shipment_Advice;
1702:

Line 1699: wsh_debug_sv.pop(l_module_name);

1695: EXCEPTION
1696: WHEN OTHERS THEN
1697: WSH_DEBUG_SV.logmsg(l_module_name,'Error in '||l_module_name, WSH_DEBUG_SV.C_STMT_LEVEL);
1698: WSH_DEBUG_SV.logmsg(l_module_name,'Unexpected error has occured. Oracle error message is '|| SQLERRM,WSH_DEBUG_SV.C_UNEXPEC_ERR_LEVEL);
1699: wsh_debug_sv.pop(l_module_name);
1700:
1701: END Debug_Shipment_Advice;
1702:
1703: