Saturday, April 6, 2013

How To Enable The Costing Tab On The Organizational Payment Method


Run the following query to Enable Costing Tab in Organizational Payment Method

Note: Provide Proper Legislation Code before running the Query

INSERT INTO pay_legislative_field_info (field_name,
                                        legislation_code,
                                        rule_mode,
                                        rule_type,
                                        validation_type,
                                        validation_name,
                                        target_location)
  VALUES   ('COSTING_TAB',
            'SA', -- Legislation Code
            'Y',
            'DISPLAY',
            'TAB_PAGE_PROPERTY',
            'DISPLAY',
            'PAYWSDPM')

COMMIT;


No comments:

Post a Comment