Skip to main content
1. A summary of your issue and steps for reproducing the problem. 

We have an OData Service with two external objects Department (header) and Employees (child) and accessing them in Salesforce Lightning Connect.

We are able to perform std. Odata operation from SFDC. We have also performed navigation between the two external objects. We like to know how to perform Deep Insert using Lightning connect for this scenerio.

Note - We are able to perform Deep Insert from browser (Advanced Rest Client Chrome Extension) for the services we have.

sample Deep Insert 

{

"Dname": "HR",

"Loc": "Chennai",

"Employees@odata.bind": ["Employees(15)"],

"Employees": [

{

"Name":"Durga",

"Job":"HR",

"Mgr":7902,

"Hiredate":"2016-03-16T18:30:00Z",

"Sal":1250,

"Grade":1,

"Deptno":1

},

{

"Name":"Kumar",

"Job":"HR",

"Mgr":7902,

"Hiredate":"2016-03-16T18:30:00Z",

"Sal":1250,

"Grade":1,

"Deptno":1

}

]

}
1 answer
  1. Mar 22, 2016, 1:38 PM
    Could you please tell me,  how to perform Deep Insert using Lightning connect for above scenerio...
0/9000