Steps To Create A Concurrent Program of Type PL - SQL Stored Procedure - Techmandate
Steps To Create A Concurrent Program of Type PL - SQL Stored Procedure - Techmandate
Bet365
Home
Concurrent Programs
Search for:
Search
Posted | 0 comments
Recent Posts
PO Flip Process
Flow of accounting
information in Procure to
Pay Cycle
MOAC Tutorial Step 5:
1/9
11/4/2014
using PL/SQL is that the Oracle Applications database comes with a huge
library of PL/SQL programs and APIs that are freely available to developers
specifying PL/SQL Stored Procedure in the Execution Method field and the
name of the PL/SQL stored procedure defined in the Execution File
Name field.
Categories
Concurrent Programs
Inventory Q&A
cursor po_cursor is
select
PO_HEADER_ID POI,
TYPE_LOOKUP_CODE TLC,
VENDOR_ID VID,
CURRENCY_CODE CC
Oracle Apps Technical
http://www.techmandate.com/steps-to-create-a-concurrent-program-of-type-plsql-stored-procedure/
2/9
11/4/2014
From PO_HEADERS_ALL
where rownum<5;
begin
FND_FILE.put_line(FND_FILE.output,Starting processing:);
FOR po_rec in po_cursor
LOOP
FND_FILE.put_line(FND_FILE.output,
po_rec.POI || po_rec.TLC ||
po_rec.VID || po_rec.CC);
END LOOP;
FND_FILE.put_line(FND_FILE.output,Done!);
commit;
Return 0 for successful completion.
errbuf := ;
retcode := 0;
exception
when others then
Purchasing
Purchasing Q&A
R11 General Ledger (GL)
Uncategorized
errbuf := sqlerrm;
http://www.techmandate.com/steps-to-create-a-concurrent-program-of-type-plsql-stored-procedure/
3/9
11/4/2014
retcode := 2;
end;
/
Compile this procedure from SQL prompt.
Note: No need to place this in any Application Folder as this is a stored
procedure and is stored in Database.
Note 2: This PL/SQL stored procedure has 2 parameters. These parameters
are used for the interaction between the concurrent program and the pl/sql
Program.
System administrator>> concurrent>> program>> executable
Enter the following details
4/9
11/4/2014
5/9
11/4/2014
Payables
6/9
11/4/2014
http://www.techmandate.com/steps-to-create-a-concurrent-program-of-type-plsql-stored-procedure/
7/9
11/4/2014
Post a Reply
Your email address will not be published.
Name
Website
Comment
You may use these HTML tags and attributes: <a href="" title=""> <abbr
title=""> <acronym title=""> <b> <blockquote cite=""> <cite>
<code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>
SUBMIT COMMENT
http://www.techmandate.com/steps-to-create-a-concurrent-program-of-type-plsql-stored-procedure/
8/9
11/4/2014
Home
http://www.techmandate.com/steps-to-create-a-concurrent-program-of-type-plsql-stored-procedure/
9/9