Registration Component
Fnd_Reg_FeatureName
Fnd_Reg_FeatureName ({feature code{; feature name}}) -> Text
Parameters
| Parameter | Type | Description |
|---|---|---|
| feature code | Text | A registration feature code or “” (optional) |
| feature name | Text | The feature code’s display name (optional) |
| Function result | Text | The current feature code name |
Description
This feature name is displayed at the top of the Demo Dialog and in the text message of the Registration Dialog. You can call this method to set the display name for the application or any optional feature. By default, Foundation uses the database name set in the Fnd_Hook_Shell_Setup hook. If you are not using the Foundation Shell, you will need to supply the application name using this method or using the Fnd_Gen_SetDatabaseInfo method to set a “DatabaseName” value.
To set the feature name, pass a second parameter to this method:
Fnd_Reg_FeatureName ("INV";"Invoicing")
This method can also be used to get a feature name:
$featurName_t:=Fnd_Reg_FeatureName ("INV")
If the feature does not exist or no name has been specified, a blank string is returned.
Extracted source text
Fnd_Reg_FeatureName ({feature code{; feature name}}) ➔ Text
Parameter Type Description
feature code Text A registration feature code or “” (optional)
feature name Text The feature code’s display name (optional)
Function result Text The current feature code name
This feature name is displayed at the top of the Demo Dialog and in the text message of the Registration
Dialog. You can call this method to set the display name for the application or any optional feature. By
default, Foundation uses the database name set in the Fnd_Hook_Shell_Setup hook. If you are not
using the Foundation Shell, you will need to supply the application name using this method or using the
Fnd_Gen_SetDatabaseInfo method to set a “DatabaseName” value.
To set the feature name, pass a second parameter to this method:
Fnd_Reg_FeatureName ("INV";"Invoicing")
This method can also be used to get a feature name:
$featurName_t:=Fnd_Reg_FeatureName ("INV")
If the feature does not exist or no name has been specified, a blank string is returned.