بتاريخ: 27 أغسطس 201312 سنة comment_239538 السلام عليكم ورحمه الله عندي مشكله بسيطه انا عايز احفظ مجموعه من القيم في جدول في نفس الوقت مثلا عندي shuttle item اريد عند اختبار زر الحفظ بقوم بحفظ البيانات في جدول تقديم بلاغ
بتاريخ: 2 نوفمبر 201312 سنة comment_241846 وعليكم اتبع المثال التالي Working with a Multiple Select List ItemA multiple select item renders as a multiple select list form element which can be either a Multiselect List or Shuttle item type. When submitted, selected values are returned in a single colon-delimited string. You can handle values in this format in two ways: Using the INSTR function Using the APEX_UTIL.STRING_TO_TABLE function Using APEX_UTIL.STRING_TO_TABLE to Convert Selected ValuesSuppose you had a report on the EMP and DEPT tables that is limited by the departments selected from a Department multiple select list. First, you create the multiple select item, P1_DEPTNO, using the following query:SELECT dname, deptnoFROM deptSecond, you return only those employees within the selected departments as follows:SELECT ename, job, sal, comm, dnameFROM emp e, dept dWHERE d.deptno = e.deptnoAND instr(':'||:P1_DEPTNO||':',':'||e.deptno||':') > 0Next, assume you want to programmatically step through the values selected in the multiple select item, P1_DEPTNO. To accomplish this, you would convert the colon-delimited string into a PL/SQL array using the APEX_UTIL.STRING_TO_TABLE function. The following example demonstrates how to insert the selected departments into an audit table containing the date of the query. DECLAREl_selected APEX_APPLICATION_GLOBAL.VC_ARR2;BEGIN---- Convert the colon separated string of values into-- a PL/SQL arrayl_selected := APEX_UTIL.STRING_TO_TABLE(:P1_DEPTNO);---- Loop over array to insert department numbers and sysdate--FOR i IN 1..l_selected.countLOOPINSERT INTO report_audit_table (report_date, selected_department)VALUES (sysdate, l_selected(i));END LOOP;END; تقديم بلاغ
بتاريخ: 2 نوفمبر 201312 سنة كاتب الموضوع comment_241849 شكرا اخي احمد على الرد انا الحمد لله حليت هذه المشكله .. بس عندي مشكله ثانيه ياليت تحلها ليها وانا صراحه متعطل جدا هو كيفيه عمل زر حفظ يحفظ tabular form في جدول A و text item في جدول B في نفس الوقت تقديم بلاغ
انضم إلى المناقشة
يمكنك المشاركة الآن والتسجيل لاحقاً. إذا كان لديك حساب, سجل دخولك الآن لتقوم بالمشاركة من خلال حسابك.