The name for a SmartList object will appear throughout the SmartList user interface. The Explorer_Get_Object_Name procedure will be called by the SmartList each time the object’s name is needed. This procedure should return the name of the object, including a trailing space at the end.
The following is the Explorer_Get_Object_Name procedure for the sample integrating application. It returns the name of the new Leads SmartList object created by the sample.
Procedure name: Explorer_Get_Object_Name
in integer IN_Object_Dict_ID; in integer IN_Object_Type; inout string IO_Object_Name; clear IO_Object_Name; if IN_Object_Dict_ID = IG_PROD_ID then if IN_Object_Type = SMARTLIST_OBJECTTYPE_LEADS then IO_Object_Name = "Leads "; end if; end if;