بتاريخ: 9 أغسطس 20178 سنة comment_288913 السلام عليكم ورحمة الله وبركاته ،،، مثال : يوجد لدي شاشة على سبيل المثال ( المستحقين للترقية ) ، وهي تتكون من بلوكين ( 2 Blocks ) ماستر وديتيل ( Master & Detail ) ، أحياناً أقوم بتحديد جميع المراتب للموظفين ( من المرتبة الأولى حتى الثالثة عشر ) من بلوك الماستر بالخطأ ، والنظام هنا يأخذ وقتاً طويلاً جداً في جلب البيانات ، وعند إغلاق المتصفح يظل الـ Session موجود ويسبب بطء على قاعدة البيانات، فلا أعتقد أن إغلاق المتصفح هي الطريقة المثلى لإيقاف جلب البيانات، فـ هل يوجد طريقة - أو اختصار في الكيبورد - لإيقاف جلب البيانات في الشاشة ، لمثل هذه الحالات ؟ تقديم بلاغ
بتاريخ: 9 أغسطس 20178 سنة comment_288957 Description Closes a query that is open in the current block. A query is open between the time the SELECT statement is issued and the time when all the rows have been fetched from the database. In particular, a query is not open when the form is in Enter Query mode, because the SELECT statement has not yet been issued. Syntax PROCEDURE ABORT_QUERY; Built-in Type unrestricted procedure Enter Query Mode yes A query is open between the time the SELECT statement is issued and the time when all the rows have been fetched from the database. In particular, a query is not open when the form is in Enter Query mode, because the SELECT statement has not yet been issued. Parameters none Usage Notes ABORT_QUERY is not the equivalent of the Query, Cancel runtime default menu command. It does not prevent the initial fetch from the database, but rather interrupts fetch processing, thus preventing subsequent fetches. تقديم بلاغ
بتاريخ: 10 أغسطس 20178 سنة كاتب الموضوع comment_288983 شكراً على الرد ،،، وجدت أيضا هذه المعلومة : To programmatically cancel Enter Query mode, call the built-in EXIT_FORM, using a When-New-Record-Instance trigger to check a flag as follows: IF (:global.cancel_query = 'Y' and :system.mode = 'ENTER-QUERY') THEN Exit_Form; END IF; :global.cancel_query = 'N'; يعني أضع هذا الكود في When-New-Record-Instance trigger ، لكن كيف يمكنني إنشاء اختصار في لوحة المفاتيح لهذا الغرض ؟ تم تعديل 10 أغسطس 20178 سنة بواسطة MR X تقديم بلاغ
انضم إلى المناقشة
يمكنك المشاركة الآن والتسجيل لاحقاً. إذا كان لديك حساب, سجل دخولك الآن لتقوم بالمشاركة من خلال حسابك.