|
Field
|
Description or Value
|
|---|---|
|
Name*
|
Specify a suitable name for the SFM transaction. For example, Dependency Group Creation.
|
|
Tags
|
Add suitable tags.
|
|
Description
|
Enter a description for the SFM transaction.
|
|
Field
|
Description or Value
|
|---|---|
|
Source Object
|
Select Dependency Management.
|
|
Target Object
|
Select Work Order Dependency.
|
|
Field
|
Description or Value
|
|---|---|
|
Header fields (Dependency Management Object)
|
Dependency Group Name, Description
|
|
Detail fields (Work Order Dependency Object)
|
Primary Work Order, and Secondary Work Order – Mandatory fields, Resource Dependency, Time Dependency, Minimum Time Deviation, Minimum Time Deviation Units, Maximum Time Deviation, Maximum Time Deviation Units
|
<apex:page standardController="SVMXC__Dependency_Management__c" extensions="COMM_Controller" tabStyle="SVMXC__Dependency_Management__c" showheader="true" action="{!CreateDependency}" />
public PageReference CreateDependency()
{
try
{
return RedirectTo('Dependency_Management__c','<Name of the VF page created above ');
}catch(Exception ex)
{
throw ex;
}
}
[Apex]<apex:page standardController="SVMXC__Dependency_Management__c" extensions="COMM_Controller" tabStyle="SVMXC__Dependency_Management__c" showheader="true" action="{!CreateDependency}" />