The following scripts can be run according to the screen and field that you require to be editable again.
Time Entry Screen - Resources
Run this script to make the Price After Discount, Unit Price and Discount % editable, for resources, in the Time Entry Screen:
UPDATE ENPRISE_SETUP_FORM
SET EDITINFORM='Y',ENABLED='Y',VISINFORM='Y'
WHERE FORMID='Enp_TimeEntryX' AND ITEMID='GridRes' AND COLID IN ('SELLPR','ORIGSELLPR','LINEDISCOUNT')
Time Entry Screen - Staff Time
Run this script to make the Price After Discount, Unit Price and Discount % editable, for staff time, in the Time Entry Screen:
UPDATE ENPRISE_SETUP_FORM
SET EDITINFORM='Y',ENABLED='Y',VISINFORM='Y'
WHERE FORMID='Enp_TimeEntryX' AND ITEMID='GridStaff' AND COLID IN ('SELLPR','ORIGSELLPR','LINEDISCOUNT')
Job Line Processing Tab - FX Sell Price
Run this script to make the FX Sell Price field editable in the Job Line Processing tab:
UPDATE ENPRISE_SETUP_FORM
SET EDITINFORM='Y',ENABLED='Y',VISINFORM='Y'
WHERE FORMID='Enp_Job' AND ITEMID='GridInv' AND COLID= 'FXSELLPR'
Subjob Quote Tab - Unit Price
Run this script to make the Unit Price field editable in the Quote tab of the subjob:
UPDATE ENPRISE_SETUP_FORM
SET EDITINFORM='Y',ENABLED='Y',VISINFORM='Y'
WHERE FORMID='Enp_SubJob' AND ITEMID='GridQuote' AND COLID= 'ORIGSELLPR'
Subjob Quote Tab - Price After Discount
Run this script to make the Price After Discount field editable in the Quote tab of the subjob:
UPDATE ENPRISE_SETUP_FORM
SET EDITINFORM='Y',ENABLED='Y',VISINFORM='Y'
WHERE FORMID='Enp_SubJob' AND ITEMID='GridQuote' AND COLID = 'FXSELLPR'
UPDATE ENPRISE_SETUP_FORM
SET EDITINFORM='Y',ENABLED='Y',VISINFORM='Y'
WHERE FORMID='Enp_TimeEntryX' AND ITEMID='GridRes' AND COLID IN ('SELLPR','ORIGSELLPR','LINEDISCOUNT')
Time Entry Screen - Staff Time
Run this script to make the Price After Discount, Unit Price and Discount % editable, for staff time, in the Time Entry Screen:
UPDATE ENPRISE_SETUP_FORM
SET EDITINFORM='Y',ENABLED='Y',VISINFORM='Y'
WHERE FORMID='Enp_TimeEntryX' AND ITEMID='GridStaff' AND COLID IN ('SELLPR','ORIGSELLPR','LINEDISCOUNT')
Job Line Processing Tab - FX Sell Price
Run this script to make the FX Sell Price field editable in the Job Line Processing tab:
UPDATE ENPRISE_SETUP_FORM
SET EDITINFORM='Y',ENABLED='Y',VISINFORM='Y'
WHERE FORMID='Enp_Job' AND ITEMID='GridInv' AND COLID= 'FXSELLPR'
Subjob Quote Tab - Unit Price
Run this script to make the Unit Price field editable in the Quote tab of the subjob:
UPDATE ENPRISE_SETUP_FORM
SET EDITINFORM='Y',ENABLED='Y',VISINFORM='Y'
WHERE FORMID='Enp_SubJob' AND ITEMID='GridQuote' AND COLID= 'ORIGSELLPR'
Subjob Quote Tab - Price After Discount
Run this script to make the Price After Discount field editable in the Quote tab of the subjob:
UPDATE ENPRISE_SETUP_FORM
SET EDITINFORM='Y',ENABLED='Y',VISINFORM='Y'
WHERE FORMID='Enp_SubJob' AND ITEMID='GridQuote' AND COLID = 'FXSELLPR'
Comments
0 comments
Article is closed for comments.