DBA Data[Home] [Help]

APPS.BIS_UPDATE_ACTUAL_SOURCE_PVT SQL Statements

The following lines contain the word 'select', 'insert', 'update' or 'delete':

Line: 28

      UPDATE bis_indicators SET actual_data_source_type = 'AK'
                              , actual_data_source = l_actual_data_source
        WHERE  short_name = measure_data_source_rec.short_name;
Line: 40

END Update_Actual_Source;
Line: 43

  CURSOR c_updt IS SELECT type , parameters , function_id
   FROM fnd_form_functions
   WHERE type = 'BISTAR' FOR UPDATE OF type , parameters;
Line: 51

      UPDATE fnd_form_functions SET type = NULL ,
      parameters = parameters||fnd_global.local_chr(38)||'pFunctionType=BISTAR'
      WHERE current of c_updt;
Line: 55

      UPDATE fnd_form_functions SET type = NULL
      WHERE current of c_updt;