Showing posts with label AR INTERFACE. Show all posts
Showing posts with label AR INTERFACE. Show all posts

Thursday, 8 February 2018

Oracle Fusion FBDI : AR Auto Invoice Import


Oracle Fusion FBDI : AR Auto Invoice Import


Hi Friends , in this post We will try to Import AR Invoices in Oracle Fusion Through FBDI.

Step1:- Go to Oracle Repository to Download FBDI Data Templates






Step2:- Enter the Data in Data Template. Please be sure , your Transaction Batch Source Name should be created in the System



Step3:- Then click on the First tab of This Data Template and Click on 'Generate CSV File'



Step4:- This is the Zip file created from this Data Template.



Step5:- Go to Oracle Fusion and Then go to Navigator and Click on File Import and Export.



Step6:- Then Upload the ZIP file here below and select the UCM Account.




Step7:- Then go to Navigator again and click on Scheduled Processes.



Step8:- Then Run the Load Interface File Import as below.

 
 
Enter Parameters for this Program.
 
 
Step9:- Then Again click on Scheduled New Processes as below and run the second program.



Step10 :- Run the Second ESS job Import auto Invoice.

 
Enter the Job Parameters and Select the BU and Source Accordingly as per the sheet.
 
 

Monday, 22 January 2018

SQL Query to Find Lock Sessions in Oracle Apps R12



SELECT s.inst_id,
NVL (s.username, 'Internal') "Database User",
m.SID,
s.serial#,
p.spid "DB OS Process",
m.TYPE,
DECODE (m.lmode,
0, 'None',
1, 'Null',
2, 'Row Share',
3, 'Row Excl.',
4, 'Share',
5, 'S/Row Excl.',
6, 'Exclusive',
lmode, LTRIM (TO_CHAR (lmode, '990'))
) "Lock Type",
DECODE (m.request,
0, 'None',
1, 'Null',
2, 'Row Share',
3, 'Row Excl.',
4, 'Share',
5, 'S/Row Excl.',
6, 'Exclusive',
request, LTRIM (TO_CHAR (m.request, '990'))
) "Lock Request",
DECODE (command,
0, 'None',
DECODE (m.id2,
0, dusr.username || '.' || SUBSTR (dobj.NAME, 1, 30),
'Rollback Segment'
)
) "Object",
s.machine "Application Server",
s.process "Apps OS process",
m.ctime,
NVL (NVL (usr.description, s.action),
'Database Session'
) "Online User,Concurrent",
NVL (fnd.responsibility_name, s.module) "Responsibility,Module",
fnd.user_form_name "Form Name",
SQL.sql_text "Statement"
FROM gv$session s,
gv$lock m,
gv$process p,
apps.fnd_form_sessions_v fnd,
apps.fnd_user usr,
gv$sqlarea SQL,
dba_users dusr,
SYS.obj$ dobj
WHERE m.id1 IN (SELECT il.id1
FROM gv$lock il
WHERE il.request <> 0)
AND m.SID = s.SID
AND s.paddr = p.addr
AND s.inst_id = p.inst_id
AND SQL.inst_id(+) = s.inst_id
AND SQL.address(+) = s.sql_address
AND SQL.hash_value(+) = s.sql_hash_value
AND s.username != 'SYS'
AND m.lmode != 4
AND fnd.audsid(+) = s.audsid
AND m.inst_id = s.inst_id
AND fnd.user_name = usr.user_name(+)
AND fnd.user_id = usr.user_id(+)
AND dobj.obj#(+) = DECODE (m.id2, 0, m.id1, 1)
AND dusr.user_id(+) = dobj.owner#
ORDER BY m.id1, m.request ASC, m.SID;

Contact us for any Collaboration, Project Support & On Job Support Work

Name

Email *

Message *