DBA Data[Home] [Help]

APPS.MTL_IC_PARAMETERS_PKG dependencies on INV_RELEASE

Line 47: AND ( (inv_control.get_current_release_level < inv_release.GET_J_RELEASE_LEVEL)

43: CURSOR C IS
44: SELECT rowid FROM MTL_INTERCOMPANY_PARAMETERS
45: WHERE ship_organization_id = X_Ship_Organization_Id
46: AND sell_organization_id = X_Sell_Organization_Id
47: AND ( (inv_control.get_current_release_level < inv_release.GET_J_RELEASE_LEVEL)
48: OR
49: (inv_control.get_current_release_level >= inv_release.GET_J_RELEASE_LEVEL AND flow_type = X_Flow_Type)
50: );
51:

Line 49: (inv_control.get_current_release_level >= inv_release.GET_J_RELEASE_LEVEL AND flow_type = X_Flow_Type)

45: WHERE ship_organization_id = X_Ship_Organization_Id
46: AND sell_organization_id = X_Sell_Organization_Id
47: AND ( (inv_control.get_current_release_level < inv_release.GET_J_RELEASE_LEVEL)
48: OR
49: (inv_control.get_current_release_level >= inv_release.GET_J_RELEASE_LEVEL AND flow_type = X_Flow_Type)
50: );
51:
52: l_Flow_Type NUMBER;
53: l_Intercompany_COGS_Account_Id NUMBER;

Line 59: IF inv_control.get_current_release_level >= inv_release.GET_J_RELEASE_LEVEL THEN

55: l_Expense_Accrual_Account_Id NUMBER;
56:
57: BEGIN
58:
59: IF inv_control.get_current_release_level >= inv_release.GET_J_RELEASE_LEVEL THEN
60: l_Flow_Type := X_Flow_Type;
61: l_Intercompany_COGS_Account_Id := X_Intercompany_COGS_Account_Id;
62: l_Inventory_Accrual_Account_Id := X_Inventory_Accrual_Account_Id ;
63: l_Expense_Accrual_Account_Id := X_Expense_Accrual_Account_Id;

Line 291: IF(inv_control.get_current_release_level >= inv_release.GET_J_RELEASE_LEVEL) Then

287: FND_MESSAGE.Set_Name('FND', 'FORM_RECORD_CHANGED');
288: APP_EXCEPTION.Raise_Exception;
289: end if;
290:
291: IF(inv_control.get_current_release_level >= inv_release.GET_J_RELEASE_LEVEL) Then
292:
293: if (
294: (Recinfo.flow_type = X_Flow_Type) --added as part of patchset-j development
295: OR ( (Recinfo.flow_type IS NULL)

Line 393: IF(inv_control.get_current_release_level >= inv_release.GET_J_RELEASE_LEVEL) Then

389: if (SQL%NOTFOUND) then
390: Raise NO_DATA_FOUND;
391: end if;
392:
393: IF(inv_control.get_current_release_level >= inv_release.GET_J_RELEASE_LEVEL) Then
394: UPDATE MTL_INTERCOMPANY_PARAMETERS
395: SET
396: flow_type = X_Flow_Type,
397: intercompany_cogs_account_id = X_Intercompany_COGS_Account_Id,