About the xref:populateXRefRow Function
The xref:populateXRefRow
function populates a cross reference column with a single value. The xref:populateXRefRow
function returns a string value, which is the cross reference value being populated. For example, as shown in Table 44-8, the Order
table has the following columns: EBS
, Common
, and SBL
with values E100
, 100
, and SBL_001
respectively.
Table 44-8 Cross Reference Table with Single Column Values
EBS | Common | SBL |
---|---|---|
|
|
|
Note:
If you find you have concurrency issues when using this function, you can also use the populateLookupXRefRow
function. The populateLookupXRefRow
function should only be used in cases where simultaneous updates are being made, resulting in unique constraint violations. This function is described under About the xref:populateLookupXRefRow Function.
The syntax of the xref:populateXRefRow
function is shown in the following example:
xref:populateXRefRow(xrefLocation as string, xrefReferenceColumnName as string, xrefReferenceValue as string, xrefColumnName as string, xrefValue as string, mode as string) as string
Parameters
-
xrefLocation
: The cross reference table URI. -
xrefReferenceColumnName
: The name of the reference column. -
xrefReferenceValue
: The value corresponding to the reference column name. -
xrefColumnName
: The name of the column to be populated. -
xrefValue
: The value to be populated in the column. -
mode
: The mode in which thexref:populateXRefRow
function populates the column. You can specify any of the following values:ADD
,LINK
, orUPDATE
. Table 44-9 describes these modes.
Table 44-9 xref:populateXRefRow Function Modes
Mode | Description | Exception Reasons |
---|---|---|
|
Adds the reference value and the value to be added. For example, the following mode: xref:populateXRefRow("customers.xref" ,"EBS","EBS100", "Common","CM001", "ADD") Adds the reference value |
Exceptions can occur for the following reasons:
|
|
Adds the cross reference value corresponding to the existing reference value. For example, the following mode: xref:populateXRefRow("customers.xref" ,"Common","CM001","SBL","SBL_ 001","LINK") Links the value |
Exceptions can occur for the following reasons:
|
|
Updates the cross reference value corresponding to an existing reference column-value pair. For example, the following mode: xref:populateXRefRow("customers.xref" ,"SBL","SBL_001", "SBL","SBL_ 1001","UPDATE") Updates the value |
Exceptions can occur for the following reasons:
|
Note:
The mode parameter values are case-sensitive and should be specified in upper case only, as shown in Table 44-9.
Table 44-10 describes the xref:populateXRefRow
function modes and exception conditions for these modes.
Table 44-10 xref:populateXRefRow Function Results with Different Modes
Mode | Reference Value | Value to be Added | Result |
---|---|---|---|
|
|
|
Success Exception Exception |
|
|
|
Exception Success Exception |
|
|
|
Exception Exception Success |