الانتقال إلى المحتوى
View in the app

A better way to browse. Learn more.

مجموعة مستخدمي أوراكل العربية

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Help Plz Frm - 41219

Featured Replies

بتاريخ:

I need your help, I want to link forms with reports but I get is an error message FRM-41219 and here is the code I wrote to link to reports


repid := find_report_object('rejet d''affiliation FAIT .jsp');
synchronize;TOOL_ENV.GETVAR( 'REP_SERVER', rep_serv );SET_REPORT_OBJECT_PROPERTY(repid,REPORT_EXECUTION_MODE,RUNTIME);
SET_REPORT_OBJECT_PROPERTY(repid,REPORT_COMM_MODE,ASYNCHRONOUS);
SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESTYPE,FILE);
SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESFORMAT,'pdf'); 
SET_REPORT_OBJECT_PROPERTY(repid,REPORT_SERVER,rep_serv);
SET_REPORT_OBJECT_PROPERTY(repid,REPORT_OTHER,'paramform=no p_ben_id='||:parameter.id_ben||
' code_deleg='||:entete.cd_deleg); 
v_rep := RUN_REPORT_OBJECT(repid);
rep_status := REPORT_OBJECT_STATUS(v_rep);
WHILE rep_status in ('RUNNING','OPENING_REPORT','ENQUEUED','ERROR')
LOOP 
rep_status := report_object_status(v_rep); 
END LOOP;
message('Edition....'||rep_status);
IF rep_status = 'FINISHED' THEN
WEB.SHOW_DOCUMENT('/reports/rwservlet/getjobid'||
substr(v_rep,instr(v_rep,'_',-1)+1)||'?'||'server='||rep_serv,'_blank'); 
END IF;

تم تعديل بواسطة mustafagamiel

بتاريخ:

السلام عليكم
repid := find_report_object('rejet d''affiliation FAIT .jsp');
الخطأ هنا
هل قمتي بإنشاء في ال node الموجود في ال navigator أنشئيى reports ةتسميه مثلا بأي اسم وتضعي هذا الاسم بين القوسين السابقين
يمكنك مراجعة هذا الرابط لكيفية انشاء ال reports node in navigtor
http://www.araboug.org/ib/index.php?s=&amp...st&p=159600

وأيضا هذا الرابط
http://www.araboug.org/ib/index.php?showtopic=14810

بتاريخ:
  • كاتب الموضوع

thank you for the interest. I checked what you wrote to me but now I have another error message FRM-41213
connection to the server reports is impossible I installed the server using commandrwserver -install repstage batch=yes autostart=yes
mais I get the message please consult the installation guides for how to set up and run this program
plz i need your help

بتاريخ:

السلام عليكم
لتشغيل الريبورت سيرفر
من خلال الدوس
من خلال قائمة ابدأ ثم تشغيل ثم اكتبي cmd وبعد كده يتم كتابة rwserver server=rep_serv
start-run-write cmd
then
rwserver server=rep_serv

حيث rep_serv هذا هو اسم الريبورت سيرفر وهو اسم اختياري لكي لكن المهم هو أن يكتب كما هو داخل الكود وطبعا بعد تشغيله يجب الانتظار حتى يتم قراءة أن الريبورت سيرفر جاهز ولا يتم اغلاقه وبعد كده يتم استدعاء التقرير من خلال الفورم
لتشغيل الريبورت سيرفر دون كتابة ماسبق كل مرة
يتم عمل ملف من نوع نود باد ويتم كتابة نفس الجملة السابقة "rwserver server=rep_serv" وبعد الحفظ يتم تغير الامتداد من النوع txt إلى النوع bat كي يتم تشغيله مباشرة دون لدخول على الدوس ويمكن سحبه ووضعه في قائمة ابدا ومن ثم في البرامج في جزء start up كي يتم تشغيله مباشرة عند فتح الجهاز

بتاريخ:
  • كاتب الموضوع

assalamo 3likoum
I do what you told me but I get the same error message ,
1/start-run-write cmd then rwserver server=rep_serv i get the errore message FRM-41213 CONEXION TO REPORT SERVER REPSTAGE IS IMPOSSIBLE
2/I found a file in the following path rwserver.bat as I want to execute i get the message pleaz conslut the guide of insttalation to set up and run

knowing that only a few times even if I get the message
that the reports server is ready, it does not appear in the service even if I compile I get forms FRM-41213 CONEXION TO REPORT SERVER REPSTAGE IS IMPOSSIBLE
if you have idea pppppppppppppppplllllllllllllzzzzzzzzzzzz help me
thanks










بتاريخ:
  • كاتب الموضوع

i get the message " please consult the installation guides for how set up and run this program"
knowing that the path of this scripts is "c:\devsuitehome_1\reports\sampes\scripts" and his name is rwserbver.bat


and what I did is that I have also written "rep_server=repstage" to the file "C:\DevSuiteHome_1\forms\server\default.env "
i want know if it is right



and in the code :


declare
repid                    REPORT_OBJECT; 
v_rep                    varchar2(20);
rep_status               varchar2(100);
rep_serv                 varchar2(20);
begin repid := find_report_object('rejetaff');
synchronize;[/color][/b][/color][color="#0000ff"][b][color="#ff0000"]TOOL_ENV.GETVAR( 'repstage', rep_serv );[/color][/b][/color][color="#0000ff"][b][color="#ff0000"]SET_REPORT_OBJECT_PROPERTY(repid,REPORT_EXECUTION_MODE,RUNTIME);
SET_REPORT_OBJECT_PROPERTY(repid,REPORT_COMM_MODE,ASYNCHRONOUS);
SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESTYPE,FILE);
SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESFORMAT,'pdf'); 
SET_REPORT_OBJECT_PROPERTY(repid,REPORT_SERVER,'repstage');
SET_REPORT_OBJECT_PROPERTY(repid,REPORT_OTHER,'paramform=no p_ben_id='||:parameter.id_ben||
                          ' code_deleg='||:entete.cd_deleg); 
v_rep := RUN_REPORT_OBJECT(repid);
rep_status := REPORT_OBJECT_STATUS(v_rep);
WHILE rep_status in ('RUNNING','OPENING_REPORT','ENQUEUED','ERROR')
        LOOP                   
            rep_status := report_object_status(v_rep); 
        END LOOP;
message('Edition....'||rep_status);
IF rep_status = 'FINISHED' THEN
WEB.SHOW_DOCUMENT('/reports/rwservlet/getjobid'||
substr(v_rep,instr(v_rep,'_',-1)+1)||'?'||'server='||rep_serv,'_blank');             
END IF; 
end;

بتاريخ:
  • كاتب الموضوع

ppppppppppppppppppplllllllllllllllzzzzz someone help me
i nnnnnede your help

بتاريخ:

السلام عليكم
انا وضعت في المشاركة السابقة ملف ولم تنزليه
لكن جربي مؤقتا هذا الحل يتم وضعه في الزر على طول

web.show_document('http://127.0.0.1:8889/reports/rwservlet?
report=d:\Reports\dept.jsp&destype=cache&desformat=htmlcss&userid=scott/tiger@orcl&p_ben_id='||:parameter.id_ben||'&code_deleg='||:entete.cd_deleg);


شيلي اسم المستخدم وضعي اسم المستخدم بتاعك وكان اضبطي مكان التقرير هو هنا في قرص ال d في مجلد الريبورت يتم استبدال ده d:\Reports\dept.jsp بالمسار الاي عندك
--

بتاريخ:
  • كاتب الموضوع

I am very sorry for the inconvenience
I followed everything that is written in the examples you gave meI changed the port number with the one that is written in file tnsnames (1521 up to 7777) forms as I run I get a blank page blank, and when I returned to the page (oracle developer forms runtime web I see the same error appears at the bottom of the window FRM-41213: connection to server can not stage)
wallllllahe I read everything you sent me
I am very sorry for the inconvenience
thanks
and this is the code

report_id:= find_report_object('rejetaff');
SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_COMM_MODE,SYNCHRONOUS);
SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_DESTYPE,CACHE);
SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_SERVER,'stage');
SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_OTHER,'paramform=no p_ben_id='||:parameter.id_ben||' code_deleg='||:entete.cd_deleg); 
ReportServerJob:=run_report_object(report_id);
web.show_document('http://localhost:7777/reports/rwservlet?
report=D:\TEST\rejetaff.jsp&destype=cache&desformat=pdf&userid=scott/tiger@ora&paramform=no p_ben_id='||:parameter.id_ben||'code_deleg='||:entete.cd_deleg);




note:First I tried with port 7777 but an error message in Firefox browser the connection is not possible at this port and the same message FRM-41213 at the window oracle forms developer runtime_web) I really need your help

بتاريخ:

السلام عليكم
بهدوء في مشكلة في تشغيل الريبورت سيرفر ومشعارف ماهي
الشيء الثاني فقط استخدمي الكود الاسبق بدون وضع أي شيء فقط هتشيلي اسم المستخدم وكلمة المرور وتضعي الاسم المسنخدم الخاص بكي
رقم البورت ممكن يكون ماياتي إما 8889 أو 8888 تأكدي منه من خلال
الفورم بليدر من قائمة edit وبعد كده prerfences ثم يتم اختيار زر ال runtime وعند الضغط على زر reset سيظهر لكي ال url ومكتوب البورت نمبر
فقط استخدمي ده مرة تانية بدون زيادات أو أي شيء

web.show_document('http://127.0.0.1:8889/reports/rwservlet?
report=d:\Reports\dept.jsp&destype=cache&desformat=htmlcss&userid=scott/tiger@orcl&p_ben_id='||:parameter.id_ben||'&code_deleg='||:entete.cd_deleg);



مع تغير البيانات الاي المفروض تتغير ولو استمرت المشكلة يرجى رفع الفورم +التقرير +الجدول

بتاريخ:
  • كاتب الموضوع

assalamou 3alikom
i did what you told me
but i get this message


[وسط]

space.gifspace.gif
space.gif[/وسط] Erreur space.gif space.gif REP-51002: Echec de liaison avec le serveur Reports Server rep_sweet-45a10b1f5 space.gif

space.gifspace.gif

Copyright © 2002, 2005, Oracle. Tous droits réservés.

بتاريخ:
  • كاتب الموضوع

i do tihe instruction
control panel
- add hardware
- next
- choose first option - yes - and click next
- scroll to the bottom of the list and select - add a new hardware device - and click next
- choose second option - install - and clich next
- select network adapters
- from the right pane, select Microsoft Loopback Adapter and click next
- click next to start installing the new hardware
- finish
- now you have a loopback adapter
- go to network connections at control panel and double click the loopback adapter
- Then you have to add an IP address for this connection to be static IP (192.168.100.100

it does not :) :ph34r: :rolleyes: :rolleyes: :angry:
is what I need to change the IP address of 192.168.100.100 to 127.0.0.1 ?????????






)

بتاريخ:

السلام عليكم
يمكنك تغير ده 127.0.0.1 باسم الجهاز بتاعك أو كتابة localhost
وأتمنى أن يكون اشتغل معك

بتاريخ:
  • كاتب الموضوع

I changed the name of the host to sweet-45a10b1f5
and the pth of the file and the username
web.show_document('http:///sweet-45a10b1f5:8889/reports/rwservlet?
report=d:\TEST\rejetaff.jsp&destype=cache&desformat=pdf&userid=HR/L&p_ben_id='||:parameter.id_ben||'&code_deleg='||:entete.cd_deleg);
but i get the message space.gif REP-51002: Echec de liaison avec le serveur Reports Server rep_sweet-45a10b1f5
ihave question :for you when you install the server reports is that this server is in the list of services for me it does not??????

بتاريخ:
  • كاتب الموضوع

It seems that it is trivial for you to answer my questions, ok I'll look in other forums
any way thanks :)

بتاريخ:
It seems that it is trivial for you to answer my questions

لاحول ولاقوة إلا بالله
المشكلة تكمن أثناء تنصيب الاوراكل وهي أن تكون عملتي الخطوات السابقة من عمل شبكة وهمية هو المفروض يكون المشكلة انحلت من خلال الرابط السابق
الاي اقدر اقول لكي عليه احذفي الديفيلوبير فقط ونصبيه مرة أخرى
لحذف الديفيلوبير من خلال الوصول إلى oracle univesal installer ويم اختيار deinstall ويتم التظليل على مكونات الديفيلوبير ونصبيه مرة أخرى وربنا ييسر

انضم إلى المناقشة

يمكنك المشاركة الآن والتسجيل لاحقاً. إذا كان لديك حساب, سجل دخولك الآن لتقوم بالمشاركة من خلال حسابك.

زائر
أضف رد على هذا الموضوع...

برجاء الإنتباه

بإستخدامك للموقع فأنت تتعهد بالموافقة على هذه البنود: سياسة الخصوصية

Account

Navigation

البحث

إعداد إشعارات المتصفح الفورية

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.