Information Label on Item/System/Operation Reference – Attribute Names (DELPPRCustomizedLabelInformation_ID)

An opening ID is an entry point used to customize business logic. This opening ID is run to return the list of attribute names to display in the information label used in the grid editors.

Note: For more information about customization by business rules, see Installation and Setup: Customize: Behavior: Data Setup: Customization by Business Rules.

This page discusses:

General Information

The table below provides you with information related to the definition of the opening ID.

PLM Opening ID DELPPRCustomizedLabelInformation_ID
Customization intent Execution
Execution context Client

Input Objects

Input objects must be of the following types:

  • ThisObject: Item/System/Operation reference.
  • Parameters: Corresponds to the context object.

Context Object Parameters

Parameter NameTypeRead/WriteComments
LabelInformationKeysListWriteList of attribute names to display

Sample

The following sample shows how to use the opening ID.

/* ---- input ---- */
Let ListInformationKey(List) /* List of attribute names */

ListInformationKey.Append("Description")
if ( true == Parameters.HasAttribute("LabelInformationKeys"))
{
     Parameters.SetAttributeObject("LabelInformationKeys", ListInformationKey)