/* modify Ops launchpad object and display results */	

/* load RexxUtil function */
call RxFuncAdd 'SysSetObjectData', 'RexxUtil', 'SysSetObjectData';

setupString = ,
	'DRAWEROBJECTS=4,<WP_CLOCK>;'  ||,
	'LPTEXT=YES;'			||,
	'LPDRAWERTEXT=YES;'	              

rc = SysSetObjectData('<OpsLaunchPad>', setupString ); 
	if rc = 1 then 
        say 'Successfully added objects to Launch pad'
      else say 'Could not add objects to Launch pad'              

