DBA Data[Home] [Help]

APPS.FND_CONCURRENT dependencies on FND_DCP

Line 66: FND_DCP.get_lk_handle(apid, cqid, cpid, lkhn, result);

62: return TRUE;
63:
64: exception
65: when no_data_found then
66: FND_DCP.get_lk_handle(apid, cqid, cpid, lkhn, result);
67: if ( result = 1 ) then
68: CmLKHandles(cpid) := lkhn;
69: return TRUE;
70: else

Line 531: | Bug 2093806: Use FND_DCP.Check_Process_Status_By_Handle |

527: TargetP := 1;
528: gothandle := get_handle(0, 0, 1, lkh);
529: if ( gothandle ) then
530: /*---------------------------------------------------------+
531: | Bug 2093806: Use FND_DCP.Check_Process_Status_By_Handle |
532: +---------------------------------------------------------*/
533: FND_DCP.check_process_status_by_handle(lkh, result, alive);
534: if (alive = 1) then
535: ActiveP := 1;

Line 533: FND_DCP.check_process_status_by_handle(lkh, result, alive);

529: if ( gothandle ) then
530: /*---------------------------------------------------------+
531: | Bug 2093806: Use FND_DCP.Check_Process_Status_By_Handle |
532: +---------------------------------------------------------*/
533: FND_DCP.check_process_status_by_handle(lkh, result, alive);
534: if (alive = 1) then
535: ActiveP := 1;
536: elsif ((alive = 0) and ( result <> 0 )) then
537: /*-------------------------------------------------------+

Line 538: | Message set by FND_DCP.Check_Process_Status_By_Handle |

534: if (alive = 1) then
535: ActiveP := 1;
536: elsif ((alive = 0) and ( result <> 0 )) then
537: /*-------------------------------------------------------+
538: | Message set by FND_DCP.Check_Process_Status_By_Handle |
539: | available for retreival. |
540: +-------------------------------------------------------*/
541: callstat := result;
542: end if;

Line 574: | Bug 2093806: Use FND_DCP.Check_Process_Status_By_Handle |

570: gothandle := get_handle(C1REC.CONCURRENT_PROCESS_ID,
571: applid, managerid, lkh);
572: if ( gothandle ) then
573: /*---------------------------------------------------------+
574: | Bug 2093806: Use FND_DCP.Check_Process_Status_By_Handle |
575: +---------------------------------------------------------*/
576: FND_DCP.check_process_status_by_handle(lkh, result, alive);
577: if (alive = 1) then
578: i := i + 1;

Line 576: FND_DCP.check_process_status_by_handle(lkh, result, alive);

572: if ( gothandle ) then
573: /*---------------------------------------------------------+
574: | Bug 2093806: Use FND_DCP.Check_Process_Status_By_Handle |
575: +---------------------------------------------------------*/
576: FND_DCP.check_process_status_by_handle(lkh, result, alive);
577: if (alive = 1) then
578: i := i + 1;
579: elsif ((alive = 0) and ( result <> 0 )) then
580: /*-------------------------------------------------------+

Line 581: | Message set by FND_DCP.Check_Process_Status_By_Handle |

577: if (alive = 1) then
578: i := i + 1;
579: elsif ((alive = 0) and ( result <> 0 )) then
580: /*-------------------------------------------------------+
581: | Message set by FND_DCP.Check_Process_Status_By_Handle |
582: | available for retrieval. |
583: +-------------------------------------------------------*/
584: callstat := result;
585: end if;