بتاريخ: 7 أغسطس 200718 سنة comment_106754 السلام عليكم ورحمة اللهكيف الحال اخوانيكثير ممن يتعاملون مع الابس يحتاجون الى تنفيذ بعض السكربتات قررت ان ابدأ موضوع نتشارك فيما بيننا حول بعض الاكواد التي من الممكن ان تفيد و تسهل من العمل تحت منصة الابس سأبدأ انا باول كود واتمنى منكم المشاركةللحصول على ما نملكه من مسؤوليات Responsiplities SELECT (SELECT application_short_name FROM fnd_application fa WHERE fa.application_id = frt.application_id) application, frt.responsibility_id, frt.responsibility_name FROM apps.fnd_responsibility_tl frt; تقديم بلاغ
بتاريخ: 7 أغسطس 200718 سنة كاتب الموضوع comment_106762 لايجاد القوائم المرتبطة بالمسؤولياتMenu & responsibilites SELECT DISTINCT a.responsibility_name, c.user_menu_name FROM apps.fnd_responsibility_tl a, apps.fnd_responsibility b, apps.fnd_menus_tl c, apps.fnd_menus d, apps.fnd_application_tl e, apps.fnd_application f WHERE a.responsibility_id(+) = b.responsibility_id AND a.responsibility_id = ‘20538’ AND b.menu_id = c.menu_id AND b.menu_id = d.menu_id AND e.application_id = f.application_id AND f.application_id = b.application_id AND a.LANGUAGE = 'US'; تقديم بلاغ
بتاريخ: 7 أغسطس 200718 سنة كاتب الموضوع comment_106764 Submenu And Function Listing PurposeTo get submenus and Function attached to this Main menu.DescriptionBy using this query user can check function and submenus attached to that specific menuParametersUser_menu_name Which user can get from query of section Menu ListingQuery SELECT c.prompt, c.description FROM apps.fnd_menus_tl a, fnd_menu_entries_tl c WHERE a.menu_id = c.menu_id AND a.user_menu_name = 'F4 UK PAY Navigator'; تقديم بلاغ
بتاريخ: 8 أغسطس 200718 سنة كاتب الموضوع comment_106826 User And Assigned Responsibility Listing PurposeTo get assigned responsibility to a user.DescriptionUser wants to check responsibility attached to a specific userParametersNoneQuery SELECT UNIQUE u.user_id, SUBSTR (u.user_name, 1, 30) user_name,SUBSTR (r.responsibility_name, 1, 60) responsiblity,SUBSTR (a.application_name, 1, 50) applicationFROM fnd_user u,fnd_user_resp_groups g,fnd_application_tl a,fnd_responsibility_tl rWHERE g.user_id(+) = u.user_idAND g.responsibility_application_id = a.application_idAND a.application_id = r.application_idAND g.responsibility_id = r.responsibility_idORDER BY SUBSTR (user_name, 1, 30),SUBSTR (a.application_name, 1, 50),SUBSTR (r.responsibility_name, 1, 60); تقديم بلاغ
انضم إلى المناقشة
يمكنك المشاركة الآن والتسجيل لاحقاً. إذا كان لديك حساب, سجل دخولك الآن لتقوم بالمشاركة من خلال حسابك.