DBA Data[Home] [Help]

APPS.WSH_PARTY_MERGE dependencies on STANDARD

Line 2052: WSH_DEBUG_SV.logmsg(l_module_name, 'Before calling container unassign standard api: '

2048:
2049: --Start of fix for bug 5749968
2050: --
2051: IF l_debug_on THEN
2052: WSH_DEBUG_SV.logmsg(l_module_name, 'Before calling container unassign standard api: '
2053: || TO_CHAR(SYSDATE,'YYYY/MM/DD HH24:MI:SS') );
2054: END IF;
2055: --
2056:

Line 2065: -- Calling Standard api to unassign detail from container

2061: IF ( l_parent_del_detail_id_tab(unassignCnt) IS NOT NULL AND
2062: l_delivery_id_tab(unassignCnt) IS NULL )
2063: THEN
2064: l_return_status := NULL;
2065: -- Calling Standard api to unassign detail from container
2066: WSH_DELIVERY_DETAILS_ACTIONS.Unassign_Detail_from_Cont (
2067: p_detail_id => l_del_detail_id_tab(unassignCnt),
2068: x_return_status => l_return_status );
2069:

Line 2087: WSH_DEBUG_SV.logmsg(l_module_name, 'After calling container unassign standard api: '

2083: END LOOP;
2084:
2085: --
2086: IF l_debug_on THEN
2087: WSH_DEBUG_SV.logmsg(l_module_name, 'After calling container unassign standard api: '
2088: || TO_CHAR(SYSDATE,'YYYY/MM/DD HH24:MI:SS') );
2089: END IF;
2090: --
2091: --End of fix for bug 5749968

Line 2241: WSH_DEBUG_SV.logmsg(l_module_name, 'Before calling delivery unassign standard api: '

2237:
2238: --Start of fix for bug 5749968
2239: --
2240: IF l_debug_on THEN
2241: WSH_DEBUG_SV.logmsg(l_module_name, 'Before calling delivery unassign standard api: '
2242: || TO_CHAR(SYSDATE,'YYYY/MM/DD HH24:MI:SS') );
2243: END IF;
2244: --
2245:

Line 2249: -- Calling Standard api to unassign detail from delivery

2245:
2246: FOR unassignDelCnt in l_del_detail_id_tab.FIRST..l_del_detail_id_tab.LAST
2247: LOOP
2248: l_return_status := NULL;
2249: -- Calling Standard api to unassign detail from delivery
2250: WSH_DELIVERY_DETAILS_ACTIONS.Unassign_Detail_from_delivery (
2251: p_detail_id => l_del_detail_id_tab(unassignDelCnt),
2252: x_return_status => l_return_status );
2253:

Line 2270: WSH_DEBUG_SV.logmsg(l_module_name, 'After calling delivery unassign standard api: '

2266: END LOOP;
2267:
2268: --
2269: IF l_debug_on THEN
2270: WSH_DEBUG_SV.logmsg(l_module_name, 'After calling delivery unassign standard api: '
2271: || TO_CHAR(SYSDATE,'YYYY/MM/DD HH24:MI:SS') );
2272: END IF;
2273: --
2274: --End of fix for bug 5749968