DBA Data[Home] [Help]

APPS.CS_STD dependencies on FND_MESSAGE

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

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

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

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

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

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

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

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

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

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

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

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