DBA Data[Home] [Help]

APPS.PA_TASK_ASSIGNMENTS_PUB dependencies on PA_LOOKUPS

Line 4070: from pa_lookups

4066: C_Cost_Type_Exists_rec C_Cost_Type_Exists%ROWTYPE;
4067:
4068: Cursor C_UOM_exists(p_uom_code IN VARCHAR2) IS
4069: select lookup_code --meaning
4070: from pa_lookups
4071: where lookup_type = 'UNIT'
4072: and lookup_code = p_uom_code;
4073: C_UOM_exists_rec C_UOM_exists%ROWTYPE;
4074:

Line 4077: from pa_lookups

4073: C_UOM_exists_rec C_UOM_exists%ROWTYPE;
4074:
4075: Cursor C_UOM(p_uom IN VARCHAR2) IS
4076: select lookup_code --meaning
4077: from pa_lookups
4078: where lookup_type = 'UNIT'
4079: and meaning = p_uom;
4080: C_UOM_rec C_UOM%ROWTYPE;
4081: