how to call oracle report using form builder on which command button.If i press command button report should be run.
imranmahmood_3 0 Newbie Poster
Recommended Answers
Jump to PostYou need to use the function RUN_REPORT_OBJECT
DECLARE repid REPORT_OBJECT; v_rep VARCHAR2(100); rep_status varchar2(20); BEGIN repid := find_report_object('report4'); v_rep := RUN_REPORT_OBJECT(repid); ...... END;
Jump to PostPut debasisdas' code in your When-Button-Pressed trigger.
All 5 Replies
debasisdas 580 Posting Genius Featured Poster
Sulley's Boo commented: riiiiiiiiight +6
georgeskayal 0 Newbie Poster

hfx642
georgeskayal 0 Newbie Poster
deveshdashora 0 Newbie Poster
Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.