Optional: You can modify the control properties
using signature options. Use the following inserts for the table data
objects to be visible in the Service Catalog applications: insert into
SIGOPTION ( APP , OPTIONNAME , DESCRIPTION , ESIGENABLED , VISIBLE
, SIGOPTIONID , LANGCODE , HASLD )
values ( 'PMSCOFFCAT' , 'MYOPTIONREAD' , 'Make read only' ,
0 , 1 , SIGOPTIONSEQ.nextval , 'EN' , 0 );
insert into APPLICATIONAUTH ( GROUPNAME , APP , OPTIONNAME , APPLICATIONAUTHID
)
values ( 'PMSCSRU' , 'PMSCOFFCAT' , 'MYOPTIONREAD' , APPLICATIONAUTHSEQ.nextval
);
insert into CONDITION ( CONDITIONID , CONDITIONNUM , TYPE , EXPRESSION
, CLASSNAME , DESCRIPTION )
values ( CONDITIONSEQ.nextval , 'EXPCON1' , 'EXPRESSION' , ':BUILDINGNUM=''RTP
500''' , null ,
'where building num is RTP500' );
insert into ctrlcondition ( ctrlconditionid, ctrlgroupid, conditionnum,
conditionseq, reevaluate, rowstamp)
values (1, 1, 'EXPCON1', 10, 1, maxseq.nextval);
insert into ctrlgroup ( ctrlgroupid, groupname, optionname, app, groupseq,
rowstamp)
values (1, 'PMSCSRU', 'MYOPTIONREAD', 'PMSCOFFCAT', 10, maxseq.nextval);
insert into ctrlcondprop ( ctrlcondpropid, property, propertyvalue,
conditionresult, ctrlconditionid, rowstamp)
values (1, 'inputmode', 'readonly', 1, 1, maxseq.nextval);
and
then add the signature option attribute to the control in the
library.xml,
for example:
<textbox dataattribute="DESCRIPTION"
id="PmBuildingAccess_aln5" label="Description" labelcss="pmrdp_text_node"
sigoption="MYOPTIONREAD"/>