...
pccCreate
pccGetUdr
pccGetUdrList
pccCreate
This function creates a data set object that can be used with the pccGetUdr
and pccGetUdrList
functions described below.
Code Block |
---|
any pccCreate( string area ) |
Parameters
Parameter | Description |
---|---|
| The name of the area which the function is operating against. |
Returns: | A data set object that can be used with the |
...
Info | ||
---|---|---|
| ||
will create a data set object that can be used with the |
pccGetUdr
Retrieves a specific UDR based on the stated UDR type and key.
Code Block |
---|
drudr pccGetUdr( string typename, any key [, any dataset] ) |
Parameters
Parameter | Description |
---|---|
| The fully qualified typename of the requested UDR. |
| The reference to the requested UDR |
| The data set object that you want to use for retrieving the UDR. This field is optional, and if it is not used, the data set that was used last will be used for the retrieval. |
Returns: | The matching UDR or null if no matching UDR was found. |
...
Info | ||
---|---|---|
| ||
will retrieve a UDR of the type PCC.Products.Provisioning.Notification with the key 50 . |
pccGetUdrList
Retrieves a list with all the UDRs with the stated UDR type.
Code Block |
---|
list<drudr> pccGetUdrList( string typename [, any dataset] ) |
Parameters
Parameter | Description |
---|---|
| The fully qualified UDR typename of the requested UDRs. |
| The data set object that you want to use for retrieving the UDRs. This field is optional, and if it is not used, the data set that was used last will be used for the retrieval. |
Returns: | A list containing all the UDRs of the requested type. |
...