Welcome to FC Documentation
Getting Started
Please follow the instructions below in sequential order:
- Download: FC Server Application
- Download: FC Client Application
- Go to Retrieved Update Sets and Import XML to load the "FC Server Application" update set.
- Preview update set and commit.
- Go to
https://[your_instance]/sys_ws_operation.do?sys_id=ed18366c975746d0e12c3eb0f053afce
- Set your Application Scope to FC and upload all files from the FC_Client_Application.zip as attachments on this record.
- When working within the application, we want to set the current application scope to FC during insert, update, or delete operations, due to the siloed nature of the design. However, given the limitation that the application scope can only be set from the global scope, we need to create a script include in the global scope that is callable from all application scopes. Please create a new script include as outlined below:
- Name: SetApplicationScope
- API Name: global.SetApplicationScope
- Application: Global
- Accessible from: All Application Scope
- Script:
var SetApplicationScope = Class.create(); SetApplicationScope.prototype = { initialize: function() {}, setApplicationScopeById: function(scopeId) { if (gs.getCurrentApplicationId() != scopeId) { gs.setCurrentApplicationId(scopeId); } }, type: 'SetApplicationScope' };
- Navigate to
https://[your_instance]/x_509925_fc_core
to see the portal.