Skip to Main Content

SQL & PL/SQL

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Generate BarCode values based upon field input

1567114Oct 6 2015 — edited Oct 7 2015

Hello,

Please need help on this

I have a business requirement where I need to generate bar-code based upon the field value:

create table table_a

(

code varchar2(50));

insert into table_a

values('GA-101');

insert into table_a

values('BA-101');



insert into table_a

values('CA-101');



insert into table_a

values('EA-101');



insert into table_a

values('GA-101');


commit;


I need to generate the barcode in Report using PL/SQL based upon field values



Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Nov 4 2015
Added on Oct 6 2015
10 comments
1,547 views