How Can We Help?
Answer
The Script to display text along with a field from an activityA specific step in a process. It will be the user interface for that step (web form or a screen), for example, the Leave Application (screen interface or web form) will be the first Activity in the Leave Requisition process. The Leave Application Authorization will be the second step or Activity in the Leave Requisition process. One Process can have multiple activities., without having to play around with styling is as follows:
public void RD4050ApprovNotRefLab_OnLoad() { activity.SetControlValue("RD4050ApprovNotRefLab", "Your internal sale has been approved by "+activity.GetControlValue("RD20CurrentUser")); }
public void RD4050ApprovNotRefLab_OnRefresh() { activity.SetControlValue("RD4050ApprovNotRefLab", "Your internal sale has been approved by "+activity.GetControlValue("RD20CurrentUser")); }
Comments are closed.