cancel
Showing results for 
Search instead for 
Did you mean: 

SDK Field not available in Workflow Rules

dhruv_mehta
Active Contributor
0 Kudos

Dear All,

I have an XBO for Service Request. I have created a field and I would like to use that as a placeholder in Email. But that custom field is not available fields list , What could be the reason?

Accepted Solutions (1)

Accepted Solutions (1)

dhruv_mehta
Active Contributor
0 Kudos

I think EmailURI type of field is not working for workflow rule changed the type it started working.

Answers (2)

Answers (2)

anant_acharya
Advisor
Advisor
0 Kudos

Dear Dhruvin,

Could you please check item node extensibility flag for Service Request BO.

Regards
Anant

dhruv_mehta
Active Contributor
0 Kudos

The field is not in Item

[Extension] businessobject AP.CRM.Global:ServiceRequest raises MSG_FREESTYLE_MESSAGE {
 
   [Label("SecondaryEmailForEntry")] element YTemp_agent_email :  EmailURI;

node Item {
[Label("Line Technician")] element FE_ServiceTechnician_EmployeeID:EmployeeID;
[Scenario(ServiceRequest_Item)] element FE_ServiceTechnician_Name:LANGUAGEINDEPENDENT_EXTENDED_Text;
   	 } 
    
   	node ServiceReferenceObject {
   	    }
}

dhruv_mehta
Active Contributor
0 Kudos

Also I would like to know how to check Extensiblity flag for a node of a BO?

Thanks a lot for your quick reply!

uskalviskis
Participant
0 Kudos

Hi Dhurvin,

is your field located on Root or Item level? If fields are comming from the item level, they will not appear.

dhruv_mehta
Active Contributor
0 Kudos
yes its on root! Code :
[Extension] businessobject AP.CRM.Global:ServiceRequest raises MSG_FREESTYLE_MESSAGE {
 
   [Label("SecondaryEmailForEntry")] element YTemp_agent_email :  EmailURI;

node Item {
[Label("Line Technician")] element FE_ServiceTechnician_EmployeeID:EmployeeID;
[Scenario(ServiceRequest_Item)] element FE_ServiceTechnician_Name:LANGUAGEINDEPENDENT_EXTENDED_Text;
   	 } 
    
   	node ServiceReferenceObject {
   	    }
}