DBA Data[Home] [Help]

APPS.JA_CN_COA_EXPORT_PKG dependencies on FND_GLOBAL

Line 209: l_seperator VARCHAR2(1) := FND_GLOBAL.Local_Chr(9); --' ';

205: JA_CN_INCOMPLETE_DFF_ASSIGN EXCEPTION;
206: JA_CN_INVALID_ACCOUNT_STRU EXCEPTION;
207: l_msg_incomplete_dff_assign VARCHAR2(2000);
208: l_msg_invalid_account_stru VARCHAR2(2000);
209: l_seperator VARCHAR2(1) := FND_GLOBAL.Local_Chr(9); --' ';
210:
211: l_na_curr_req_id NUMBER; --Request id of current request
212: l_xml_layout BOOLEAN;
213: l_template_language VARCHAR2(10) := pv_xml_template_language;

Line 440: l_na_curr_req_id := FND_GLOBAL.CONC_REQUEST_ID; --id of current request

436:
437: --4. Go through all the natural accounts with a natural number marked in
438: -- "Level" field and lists all invalid accounts in invalid account table
439: -- JA_CN_COA_NA_EXCEPTION.
440: l_na_curr_req_id := FND_GLOBAL.CONC_REQUEST_ID; --id of current request
441:
442: OPEN c_na_info;
443: LOOP -- Loop for all natural accounts
444: FETCH c_na_info INTO l_na_number

Line 491: ,fnd_global.user_id

487: ,l_length
488: ,l_expected_length
489: ,l_na_acc_str
490: ,l_na_curr_req_id
491: ,fnd_global.user_id
492: ,SYSDATE
493: ,fnd_global.user_id
494: ,SYSDATE
495: ,fnd_global.LOGIN_ID

Line 493: ,fnd_global.user_id

489: ,l_na_acc_str
490: ,l_na_curr_req_id
491: ,fnd_global.user_id
492: ,SYSDATE
493: ,fnd_global.user_id
494: ,SYSDATE
495: ,fnd_global.LOGIN_ID
496: );
497: END IF; --Value length

Line 495: ,fnd_global.LOGIN_ID

491: ,fnd_global.user_id
492: ,SYSDATE
493: ,fnd_global.user_id
494: ,SYSDATE
495: ,fnd_global.LOGIN_ID
496: );
497: END IF; --Value length
498: END IF; --Account Level should not null and be a natural number and <16
499: END LOOP;