The kind of care given at the place of service: 'In-patient' or 'Community' (or blank).
object.POSSetting
Part | Attribute | Type | Description |
---|---|---|---|
object |
Required | The object always implements the
ISProvider interface |
Display the kind of care given at the place of service: 'In-patient' or 'Community' (or blank).
Dim aFilter
Dim aPOSList
Dim aPOS
Dim aPOSSetting
Dim aMessage
Set aFilter = Profile.CreateProvidersFilter
aFilter.Category = 3 'pcPOS
set aPOSList = Profile.LoadProvidersByFilter(aFilter)
for each aPOS in aPOSList
set aPOSSetting = aPOS.POSSetting
if aPOSSetting is nothing then
aMessage = aMessage & "POS: " & vbNewLine & aPOS.FullName &_
": NO DEFINED SETTING " & vbNewLine & vbNewLine
else
aMessage = aMessage & vbNewLine & "POS: " & aPOS.FullName & vbNewLine &_
"POS SETTING: " & aPOSSetting.Description
end if
next
Profile.MsgBox (aMessage)
In Profile Client v8 on User Interface POS Setting can be found in
.