Advertisement
mugs

make fiscal year on requisition readonly

Jul 14th, 2015
204
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.47 KB | None | 0 0
  1. <changeSet id="NWUKFS-2508" author="za-kfs" >
  2.         <comment>make fiscal year on requisition readonly</comment>
  3.         <sql>
  4.             update krcr_parm_t set val = '0'
  5.             where parm_nm = 'ALLOW_ENCUMBER_NEXT_YEAR_DAYS' and cmpnt_cd = 'Requisition' and nmspc_cd = 'KFS-PURAP'
  6.         </sql>
  7.         <rollback>
  8.             <sql>
  9.                 update krcr_parm_t set val = '181'
  10.             where parm_nm = 'ALLOW_ENCUMBER_NEXT_YEAR_DAYS' and cmpnt_cd = 'Requisition' and nmspc_cd = 'KFS-PURAP'
  11.             </sql>
  12.         </rollback>
  13.     </changeSet>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement