DBA Data[Home] [Help]

APPS.XDPCORE_ERROR dependencies on FND_GLOBAL

Line 375: l_ErrorDesc := replace(l_ErrorDesc, fnd_global.local_chr(0), '');

371:
372: -- Place Holder until FND Bug 2064891 is resolved.
373:
374: --l_ErrorDesc := replace(l_ErrorDesc, chr(0), '');
375: l_ErrorDesc := replace(l_ErrorDesc, fnd_global.local_chr(0), '');
376:
377: Begin
378: l_ErrorType := wf_engine.GetItemAttrText(itemtype => PrepareErrorMessage.itemtype,
379: itemkey => PrepareErrorMessage.itemkey,

Line 475: --l_NtfDesc := l_NtfDesc || fnd_global.local_chr(10) || XDPCORE.error_stack;

471: l_NtfDesc := FND_MESSAGE.GET;
472: --l_NtfDesc := l_NtfDesc || chr(10) || XDPCORE.error_stack;
473:
474: --Date: 21-Feb-2005 Author:dputhiye Bug#:4112678 (Bug 3998762 on 11.5.9)
475: --l_NtfDesc := l_NtfDesc || fnd_global.local_chr(10) || XDPCORE.error_stack;
476: --The source line commented above has been replaced with the line below.
477: --error_stack lengths during runtime can get to 32,000+ and must be truncated here to fit in l_NtfDesc.
478: --Length of the variable l_NtfDesc is 4000, and any change in the declaration must be reflected here.
479: l_NtfDesc := l_NtfDesc || fnd_global.local_chr(10) || substr(XDPCORE.error_stack, 1, 3999 - length(l_NtfDesc));

Line 479: l_NtfDesc := l_NtfDesc || fnd_global.local_chr(10) || substr(XDPCORE.error_stack, 1, 3999 - length(l_NtfDesc));

475: --l_NtfDesc := l_NtfDesc || fnd_global.local_chr(10) || XDPCORE.error_stack;
476: --The source line commented above has been replaced with the line below.
477: --error_stack lengths during runtime can get to 32,000+ and must be truncated here to fit in l_NtfDesc.
478: --Length of the variable l_NtfDesc is 4000, and any change in the declaration must be reflected here.
479: l_NtfDesc := l_NtfDesc || fnd_global.local_chr(10) || substr(XDPCORE.error_stack, 1, 3999 - length(l_NtfDesc));
480: --End of fix for 4112678
481:
482: -- clear the stack..
483: XDPCORE.error_stack := NULL;

Line 629: l_NtfBody := l_NtfBody || FND_MESSAGE.GET || fnd_global.local_CHR(10);

625:
626: FND_MESSAGE.SET_NAME('XDP','XDP_WI_DISP_NAME');
627: FND_MESSAGE.SET_TOKEN('WI', l_wi_disp_name);
628: --l_NtfBody := l_NtfBody || FND_MESSAGE.GET ||CHR(10);
629: l_NtfBody := l_NtfBody || FND_MESSAGE.GET || fnd_global.local_CHR(10);
630:
631:
632: XDP_NOTIFICATIONS.Get_WI_Update_URL(l_WIInstaceID,
633: l_OrderID,

Line 661: l_NtfBody := l_NtfBody || FND_MESSAGE.GET || fnd_global.local_CHR(10);

657:
658: FND_MESSAGE.SET_NAME('XDP','XDP_FA_DISP_NAME');
659: FND_MESSAGE.SET_TOKEN('FA', l_fa_disp_name);
660: --l_NtfBody := l_NtfBody || FND_MESSAGE.GET ||CHR(10);
661: l_NtfBody := l_NtfBody || FND_MESSAGE.GET || fnd_global.local_CHR(10);
662: exception
663: when others then
664: --not at FA level do nothing..
665: null;

Line 672: l_NtfBody := l_NtfBody || FND_MESSAGE.GET || fnd_global.local_CHR(10);

668: -- set error date..
669: FND_MESSAGE.SET_NAME('XDP', 'XDP_ERROR_DATE');
670: FND_MESSAGE.SET_TOKEN('ERROR_DATE', to_char(SYSDATE,'DD-MON-YYYY HH24:MI:SS'));
671: --l_NtfBody := l_NtfBody || FND_MESSAGE.GET ||CHR(10);
672: l_NtfBody := l_NtfBody || FND_MESSAGE.GET || fnd_global.local_CHR(10);
673:
674: l_NtfSubject := l_order_number||' ( '||l_order_version||' ):';
675: -- get error set in the context..
676: XDPCORE.get_error(l_object_type, l_object_key,