Hi All,
How can i fetch defacts details information using Sage.SData.Client library, i can able to retrive defect level information using below code by unfortunately no luck for getting defacts details information yet.
SDataService svc = new SDataService("http://localhost/sdata/slx/dynamic/-/", "lee", "");
var req = new SDataResourceCollectionRequest(svc);
req.ResourceKind = "defects";
AtomFeed feed = req.Read();
foreach (AtomEntry entry in feed.Entries)
{
SDataPayload payload = entry.GetSDataPayload();
}
Kindly help. |