GetGroupletURL method: BannerTile class
Syntax
GetGroupletURL()
Description
You must provide an implementation of the GetGroupletURL abstract method. In your implementation, return the URL to the dashboard header component as a string value.
Important:
Do not explicitly invoke this method. It will be invoked by the PeopleSoft system as necessary.
Parameters
None.
Returns
A string value.
Example
The following example shows an implementation of GetGroupletURL that uses the GenerateComponentContentURL built-in PeopleCode function to generate the URL string.
method GetGroupletURL
/+ Returns String +/
/+ Extends/implements PTNUI:Banner:BannerTile.GetGroupletURL +/
Local string &url = GenerateComponentContentURL(%Portal, %Node, MenuName.MY_MENU, "GBL", Component.MY_DRIVERCOMP, "", "");
Return &url;
end-method;