back to top

Associating A Secured Function With an Action in SalesLogix v7.2.2

Question: I’m running SalesLogix v7.2.2 and I would like to add a new function
that runs off of the Insert menu.  Within Architect I go into
Manage/Secured functions, this is where I create my New Insert xx
function.  After I do this and log back into the SalesLogix client, I
can see the new menu entry is available but when I select it I get this
message: “Unknown Function
Number: -1”.  I haven’t associated this function with an action, so I am
wondering how can I associate the new secured function with an action?

Answer: The “action” is defined in a global script, so either create a new global script or use one that you have already created.

Add an OnBeforeFunctionExecute function routine resembling the following:
——————————

————
Function OnBeforeFunctionExecute_NAME OF YOUR SEC FUNCTION(functionNumber, functionName)

    ‘Add some code here that you want to be executed when the user launches the secured function.

    OnBeforeFunctionExecute_NAME OF YOUR SEC FUNCTION = True ‘This tells SLX that the function completed successfuly.

End Function
——————————————

Here’s an example from a custom sec function called ViewHotList

Function OnBeforeFunctionExecute_ViewHotList(functionNumber, functionName)

    Application.MainViews.Add “System:Staffing Hot List”, 1, True
    OnBeforeFunctionExecute_ViewHotList = True
End Function

The “Global Tickets” script also has examples of these functions.

 

 

Contact Customer FX for your CRM project
We let our expertise speak for itself - let us know how our all-star team can help on your CRM project
About the Author

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Infor CRM Sync for Exchange: Action Required by August 31, 2026

Using Infor CRM Sync for Exchange with Microsoft 365? Your Exchange administrator must update tenant settings by August 31, 2026 to prevent sync disruption.

[Webinar] What’s Coming Next for Infor CRM SLX and Why v10 Matters

See what’s coming next for Infor CRM SLX, including new marketing workflows, automation improvements, and reasons to consider upgrading to v10.

Disable Caching in Infor CRM SLX Web Client

In the rare case caching is causing issues in the Infor CRM SLX web client, it is possible to disable specific types of caching by making edits using Application Architect, and then deploying.

Exploring AI Options for Infor CRM v10

I've started taking a closer look at the AI capabilities built into Infor CRM v10. Over the next several posts, I'll share what I learn. From the built-in features and supported AI providers to implementation considerations, costs, and practical use cases.

Infor CRM SLX 10.0: Delegate Ownership Changes for “Everyone” Records

Learn how the new EveryoneOwnerAssignment secured action in Infor CRM SLX 10.0 allows designated users to change ownership of Everyone-owned records without requiring Administrator access.

Related Articles

Infor CRM Sync for Exchange: Action Required by August 31, 2026

Using Infor CRM Sync for Exchange with Microsoft 365? Your Exchange administrator must update tenant settings by August 31, 2026 to prevent sync disruption.

[Webinar] What’s Coming Next for Infor CRM SLX and Why v10 Matters

See what’s coming next for Infor CRM SLX, including new marketing workflows, automation improvements, and reasons to consider upgrading to v10.

Disable Caching in Infor CRM SLX Web Client

In the rare case caching is causing issues in the Infor CRM SLX web client, it is possible to disable specific types of caching by making edits using Application Architect, and then deploying.

Exploring AI Options for Infor CRM v10

I've started taking a closer look at the AI capabilities built into Infor CRM v10. Over the next several posts, I'll share what I learn. From the built-in features and supported AI providers to implementation considerations, costs, and practical use cases.

Related Videos