asked on
create or replace PROCEDURE Get_ent_copy (TC in number,us in VARCHAR2) IS
Cursor c_ent IS
select * From master_gen_ledger
Where (doc_date >= st_month and doc_date <= en_month)
and tr_code =tc
and user=us;
Cursor c_ent IS
select * From master_gen_ledger
Where (doc_date >= st_month and doc_date <= en_month)
and tr_code =tc;
Oracle is an object-relational database management system. It supports a large number of languages and application development frameworks. Its primary languages are SQL, PL/SQL and Java, but it also includes support for C and C++. Oracle also has its own enterprise modules and application server software.
TRUSTED BY
ASKER
it success
thanx