DBA Data[Home] [Help]

APPS.PA_TASK_ASSIGNMENTS_PUB dependencies on PA_LOOKUPS

Line 3792: from pa_lookups

3788: C_Cost_Type_Exists_rec C_Cost_Type_Exists%ROWTYPE;
3789:
3790: Cursor C_UOM_exists(p_uom_code IN VARCHAR2) IS
3791: select lookup_code --meaning
3792: from pa_lookups
3793: where lookup_type = 'UNIT'
3794: and lookup_code = p_uom_code;
3795: C_UOM_exists_rec C_UOM_exists%ROWTYPE;
3796:

Line 3799: from pa_lookups

3795: C_UOM_exists_rec C_UOM_exists%ROWTYPE;
3796:
3797: Cursor C_UOM(p_uom IN VARCHAR2) IS
3798: select lookup_code --meaning
3799: from pa_lookups
3800: where lookup_type = 'UNIT'
3801: and meaning = p_uom;
3802: C_UOM_rec C_UOM%ROWTYPE;
3803: