DBA Data[Home] [Help]

APPS.CSF_ACCESS_PKG dependencies on ASG_TASK_ACC

Line 540: the access record in ASG_TASK_ACC and make a call to

536: private or the task is an departure or arrival
537: task.
538:
539: If the conditions apply, proceed with inserting/updating
540: the access record in ASG_TASK_ACC and make a call to
541: see if the Service Request related to the task needs
542: to be replicated as well.
543:
544: Arguments:

Line 601: ( x_acc => 'ASG_TASK_ACC'

597: IF (c_task%FOUND)
598: THEN
599: -- Update access table for this task_id
600: v_ret := UpdateAcc
601: ( x_acc => 'ASG_TASK_ACC'
602: , x_pk => 'TASK_ID'
603: , x_pk_id => x_task_id
604: , x_server_id => x_server_id
605: , x_op => x_op

Line 1290: FROM asg_task_acc

1286: ( v_task_id NUMBER
1287: )
1288: IS
1289: SELECT server_id
1290: FROM asg_task_acc
1291: WHERE task_id = v_task_id;
1292:
1293: v_server_id NUMBER;
1294: