DBA Data[Home] [Help]

APPS.OKE_K_APPROVAL_WF dependencies on FND_MESSAGE

Line 418: FND_MESSAGE.Set_Name('OKE' , 'OKE_APRV_ABT_BOA_NOT_APPROVED');

414: IF ( krec.ste_code IN ( 'SIGNED' , 'ACTIVE' ) ) THEN
415: ResultOut := 'COMPLETE:Y';
416: ELSE
417: ResultOut := 'COMPLETE:N';
418: FND_MESSAGE.Set_Name('OKE' , 'OKE_APRV_ABT_BOA_NOT_APPROVED');
419: WF_ENGINE.SetItemAttrText
420: ( ItemType => ItemType
421: , ItemKey => ItemKey
422: , AName => 'MESSAGE1'

Line 423: , AValue => FND_MESSAGE.Get );

419: WF_ENGINE.SetItemAttrText
420: ( ItemType => ItemType
421: , ItemKey => ItemKey
422: , AName => 'MESSAGE1'
423: , AValue => FND_MESSAGE.Get );
424: END IF;
425: RETURN;
426:
427: END IF;

Line 491: FND_MESSAGE.Set_Name('OKE' , 'OKE_APRV_ABT_APPROVED');

487: IF ( ste_code IN ( 'ENTERED' , 'CANCELED' ) ) THEN
488: ResultOut := 'COMPLETE:N';
489: ELSE
490: ResultOut := 'COMPLETE:Y';
491: FND_MESSAGE.Set_Name('OKE' , 'OKE_APRV_ABT_APPROVED');
492: WF_ENGINE.SetItemAttrText
493: ( ItemType => ItemType
494: , ItemKey => ItemKey
495: , AName => 'MESSAGE1'

Line 496: , AValue => FND_MESSAGE.Get );

492: WF_ENGINE.SetItemAttrText
493: ( ItemType => ItemType
494: , ItemKey => ItemKey
495: , AName => 'MESSAGE1'
496: , AValue => FND_MESSAGE.Get );
497: END IF;
498: RETURN;
499:
500: END IF;

Line 627: FND_MESSAGE.Set_Name('OKE' , 'OKE_APRV_ABT_INACTIVE');

623: ste_code := WF_ENGINE.GetItemAttrText(ItemType , ItemKey , 'STE_CODE');
624:
625: IF ( ste_code in ( 'CANCELED' , 'TERMINATED' , 'EXPIRED' ) ) THEN
626: ResultOut := 'COMPLETE:Y';
627: FND_MESSAGE.Set_Name('OKE' , 'OKE_APRV_ABT_INACTIVE');
628: WF_ENGINE.SetItemAttrText
629: ( ItemType => ItemType
630: , ItemKey => ItemKey
631: , AName => 'MESSAGE1'

Line 632: , AValue => FND_MESSAGE.Get );

628: WF_ENGINE.SetItemAttrText
629: ( ItemType => ItemType
630: , ItemKey => ItemKey
631: , AName => 'MESSAGE1'
632: , AValue => FND_MESSAGE.Get );
633: ELSE
634: ResultOut := 'COMPLETE:N';
635: END IF;
636: RETURN;

Line 1303: , AValue => fnd_message.get_string('OKE' , 'OKE_APRV_INVALID_FORWARDTO') );

1299: WHEN INVALID_FORWARD_TO THEN
1300: ResultOut := 'ERROR:';
1301: WF_ENGINE.SetItemAttrText
1302: ( ItemType => ItemType , ItemKey => ItemKey , AName => 'ERRORTEXT'
1303: , AValue => fnd_message.get_string('OKE' , 'OKE_APRV_INVALID_FORWARDTO') );
1304: WF_CORE.Context( 'OKE_K_APPROVAL_WF'
1305: , 'SET_APPROVAL_HISTORY'
1306: , ItemType , ItemKey , to_char(ActID) , FuncMode , ResultOut );
1307: RAISE;