DBA Data[Home] [Help]

APPS.WSH_INTERFACE_EXT_GRP dependencies on WSH_TRIP_STOPS_GRP

Line 1046: x_out_rec OUT NOCOPY WSH_TRIP_STOPS_GRP.action_parameters_rectype) IS

1042:
1043:
1044: Procedure map_stop_act_params_rectype(
1045: p_in_rec IN WSH_INTERFACE_EXT_GRP.stop_action_parameters_rectype,
1046: x_out_rec OUT NOCOPY WSH_TRIP_STOPS_GRP.action_parameters_rectype) IS
1047:
1048: Begin
1049:
1050: x_out_rec.caller := p_in_rec.caller ;

Line 1064: p_in_rec IN WSH_TRIP_STOPS_GRP.stopActionOutRecType,

1060: End map_stop_act_params_rectype;
1061:
1062:
1063: Procedure map_stopActionOutRecType(
1064: p_in_rec IN WSH_TRIP_STOPS_GRP.stopActionOutRecType,
1065: x_out_rec OUT NOCOPY WSH_INTERFACE_EXT_GRP.stopActionOutRecType) IS
1066:
1067: Begin
1068:

Line 1091: l_stop_act_params_rectype WSH_TRIP_STOPS_GRP.action_parameters_rectype;

1087: x_msg_count OUT NOCOPY NUMBER,
1088: x_msg_data OUT NOCOPY VARCHAR2)
1089: IS
1090:
1091: l_stop_act_params_rectype WSH_TRIP_STOPS_GRP.action_parameters_rectype;
1092: l_stopActionOutRecType WSH_TRIP_STOPS_GRP.stopActionOutRecType;
1093:
1094: BEGIN
1095: --

Line 1092: l_stopActionOutRecType WSH_TRIP_STOPS_GRP.stopActionOutRecType;

1088: x_msg_data OUT NOCOPY VARCHAR2)
1089: IS
1090:
1091: l_stop_act_params_rectype WSH_TRIP_STOPS_GRP.action_parameters_rectype;
1092: l_stopActionOutRecType WSH_TRIP_STOPS_GRP.stopActionOutRecType;
1093:
1094: BEGIN
1095: --
1096: map_stop_act_params_rectype(p_action_prms, l_stop_act_params_rectype);

Line 1114: wsh_util_core.default_handler('WSH_TRIP_STOPS_GRP.STOP_ACTION');

1110: map_stopActionOutRecType(l_stopActionOutRecType, x_stop_out_rec);
1111:
1112: EXCEPTION
1113: WHEN OTHERS THEN
1114: wsh_util_core.default_handler('WSH_TRIP_STOPS_GRP.STOP_ACTION');
1115:
1116: x_return_status := WSH_UTIL_CORE.G_RET_STS_UNEXP_ERROR;
1117:
1118: END Stop_Action;

Line 1125: x_out_rec OUT NOCOPY WSH_TRIP_STOPS_GRP.stopInRecType) IS

1121:
1122:
1123: Procedure Map_stopInRecType(
1124: p_in_rec IN WSH_INTERFACE_EXT_GRP.stopInRecType,
1125: x_out_rec OUT NOCOPY WSH_TRIP_STOPS_GRP.stopInRecType) IS
1126:
1127: Begin
1128:
1129: x_out_rec.caller := p_in_rec.caller ;

Line 1224: p_in_tab IN WSH_TRIP_STOPS_GRP.stop_out_tab_type,

1220:
1221: End Map_Stop_Attr_Tbl_Type;
1222:
1223: Procedure map_stop_out_tab_type(
1224: p_in_tab IN WSH_TRIP_STOPS_GRP.stop_out_tab_type,
1225: x_out_tab OUT NOCOPY WSH_INTERFACE_EXT_GRP.stop_out_tab_type) IS
1226:
1227: Begin
1228:

Line 1252: -- COMMENT : This calls core API WSH_TRIP_STOPS_GRP.CREATE_UPDATE_STOP

1248: -- x_msg_count number of messages in the list
1249: -- x_msg_data text of messages
1250: -- VERSION : current version 1.0
1251: -- initial version 1.0
1252: -- COMMENT : This calls core API WSH_TRIP_STOPS_GRP.CREATE_UPDATE_STOP
1253: --========================================================================
1254: PROCEDURE CREATE_UPDATE_STOP(
1255: p_api_version_number IN NUMBER,
1256: p_init_msg_list IN VARCHAR2,

Line 1265: l_stopInRecType WSH_TRIP_STOPS_GRP.stopInRecType;

1261: x_return_status OUT NOCOPY VARCHAR2,
1262: x_msg_count OUT NOCOPY NUMBER,
1263: x_msg_data OUT NOCOPY VARCHAR2) IS
1264:
1265: l_stopInRecType WSH_TRIP_STOPS_GRP.stopInRecType;
1266: l_Stop_Attr_Tbl_Type WSH_TRIP_STOPS_PVT.Stop_Attr_Tbl_Type;
1267: l_stop_out_tab_type WSH_TRIP_STOPS_GRP.stop_out_tab_type;
1268: BEGIN
1269: --

Line 1267: l_stop_out_tab_type WSH_TRIP_STOPS_GRP.stop_out_tab_type;

1263: x_msg_data OUT NOCOPY VARCHAR2) IS
1264:
1265: l_stopInRecType WSH_TRIP_STOPS_GRP.stopInRecType;
1266: l_Stop_Attr_Tbl_Type WSH_TRIP_STOPS_PVT.Stop_Attr_Tbl_Type;
1267: l_stop_out_tab_type WSH_TRIP_STOPS_GRP.stop_out_tab_type;
1268: BEGIN
1269: --
1270: Map_stopInRecType(p_in_rec, l_stopInRecType);
1271: Map_Stop_Attr_Tbl_Type(p_rec_attr_tab, l_Stop_Attr_Tbl_Type);