You are on page 1of 2

------------------------------------------------------------------------

--
-- Copyright 1974 to current year. AVEVA Solutions Limited and its subsidiaries.
All rights reserved in original code only.
--
-- File: admextractprefix.pmlfrm
-- Type: Form Definition
-- Group: PDMS Global Administration Application
-- Keyword: GLOBAL
-- Module: admin
-- Replaces:
--
-- Author: S.G.Karthik
-- Created: Thu Mar 30 11:31:06 BST 2006
--
--
-- Description:
-- form to show the prefix Information about the letters H,E,C,X,M,V,D.
--
------------------------------------------------------------------------
--
-- Methods defined:
--
-- Method call Return Description
-- =========== ====== ===========
-- admExtractPrefix() - Constructor
--
------------------------------------------------------------------------

setup form !!admExtractPrefix


!this.formTitle = 'Prefix Information'
!this.iconTitle = 'PrefixInfo'

textpane .info 'Prefix Information' at x0 y0 width 50 height 11


exit
-- End of form definition
------------------------------------------------------------------------
--
-- Method: admExtractPrefix
--
-- Description: Constructor
--
-- Method Type: Function/Procedure
-- Arguments:
-- [#] [R/RW] [Data Type] [Description]
-- Return:
-- [Data Type] [Description]
--
------------------------------------------------------------------------
define method .admExtractPrefix()
!desc[1] = 'H - Indicates a claim exists at a lower hierarchy level.'
!desc[2] = 'C - Element is claimed by current user.'
!desc[3] = 'E - Element is significant and claimed to an extract in this MDB.'
!desc[4] = 'M - Element is significant and it, or one of its non-significant
children,'
!desc[5] = ' has been modified in an extract in this MDB.'
!desc[6] = 'X - Element is claimed from an extract in this MDB, so changes to
this'
!desc[7] = ' element cannot be issued or aborted.'
!desc[8] = 'V - Element has been modified in a Variant extract in this MDB.'
!desc[9] = 'D - Top Level Element has been deleted in this MDB.'
!desc[10]= 'R - Additional element(s) will be included with flush/issue from
this extract'
!this.info.val = !desc
endmethod
-- End of method definition for .admExtractPrefix()
----------------------------------------------------------------------------------

You might also like