SQL to inspect form personalization

552 단어
SQL to inspect form personalization:
SELECT *
FROM   fnd_form_custom_rules
WHERE  function_name LIKE '%OEXOEORD%'
AND    description LIKE '%Order Confirmation';

SELECT *
FROM   fnd_form_custom_actions
WHERE  rule_id IN
       (SELECT id
        FROM   fnd_form_custom_rules
        WHERE  function_name LIKE '%OEXOEORD%'
        AND    description LIKE '%Order Confirmation');

원본 링크:http://blog.csdn.net/t0nsha/article/details/6409853

좋은 웹페이지 즐겨찾기