DBA Data[Home] [Help]

APPS.CS_STD dependencies on FND_MESSAGE

Line 30: Fnd_Message.Set_Name('CS','CS_ALL_INVALID_ORDER_TYPE');

26: -- from so_order_types
27: -- where name = X_order_type;
28: exception
29: when NO_DATA_FOUND then
30: Fnd_Message.Set_Name('CS','CS_ALL_INVALID_ORDER_TYPE');
31: Fnd_Message.Set_Token('ORDER_TYPE',X_Order_Type);
32: App_Exception.Raise_Exception;
33: END Get_Order_Type_Id;
34: --

Line 31: Fnd_Message.Set_Token('ORDER_TYPE',X_Order_Type);

27: -- where name = X_order_type;
28: exception
29: when NO_DATA_FOUND then
30: Fnd_Message.Set_Name('CS','CS_ALL_INVALID_ORDER_TYPE');
31: Fnd_Message.Set_Token('ORDER_TYPE',X_Order_Type);
32: App_Exception.Raise_Exception;
33: END Get_Order_Type_Id;
34: --
35: procedure Get_Day_Uom(X_day_uom_code IN VARCHAR2,

Line 43: Fnd_Message.Set_Name('CS','CS_ALL_INVALID_UOM_CODE');

39: from mtl_units_of_measure
40: where uom_code = X_day_uom_code;
41: exception
42: when NO_DATA_FOUND then
43: Fnd_Message.Set_Name('CS','CS_ALL_INVALID_UOM_CODE');
44: Fnd_Message.Set_Token('UOM_CODE',X_Day_UOM_Code);
45: App_Exception.Raise_Exception;
46: END Get_Day_UOM;
47: --

Line 44: Fnd_Message.Set_Token('UOM_CODE',X_Day_UOM_Code);

40: where uom_code = X_day_uom_code;
41: exception
42: when NO_DATA_FOUND then
43: Fnd_Message.Set_Name('CS','CS_ALL_INVALID_UOM_CODE');
44: Fnd_Message.Set_Token('UOM_CODE',X_Day_UOM_Code);
45: App_Exception.Raise_Exception;
46: END Get_Day_UOM;
47: --
48: procedure Get_Month_Uom(X_month_uom_code IN VARCHAR2,

Line 56: Fnd_Message.Set_Name('CS','CS_ALL_INVALID_UOM_CODE');

52: from mtl_units_of_measure
53: where uom_code = X_month_uom_code;
54: exception
55: when NO_DATA_FOUND then
56: Fnd_Message.Set_Name('CS','CS_ALL_INVALID_UOM_CODE');
57: Fnd_Message.Set_Token('UOM_CODE',X_Month_UOM_Code);
58: App_Exception.Raise_Exception;
59: END Get_Month_UOM;
60: --

Line 57: Fnd_Message.Set_Token('UOM_CODE',X_Month_UOM_Code);

53: where uom_code = X_month_uom_code;
54: exception
55: when NO_DATA_FOUND then
56: Fnd_Message.Set_Name('CS','CS_ALL_INVALID_UOM_CODE');
57: Fnd_Message.Set_Token('UOM_CODE',X_Month_UOM_Code);
58: App_Exception.Raise_Exception;
59: END Get_Month_UOM;
60: --
61: procedure Get_Appl_Short_Name(X_flex_code IN VARCHAR2,