Sage SalesLogix
  • Contact Us
  • Sage North America
800-643-6400
Welcome Twitter Facebook LinkedIn
Community Home Blogs Share Ideas Search Request Access Resources
Reply
New Member
KaiSchaffrath
Posts: 17
Registered: 09-10-2009

No row with the given identifier exists

I'm trying to check over sdata for existing leads. I'm using for example this address to check:

 

http://server:smileytongue:ort/sdata/slx/dynamic/-/leads?where Company like 'company name'

 

But it always tells me "No row with the given identifier exists".

 

I've checked back in the application Architect but there I can find exact the same name "Company" as I'm using  it in my link.

 

What am I making false that this is not working?

 

Regards

 

Kai

Please use plain text.
Gold Super Contributor
RJLedger
Posts: 2,234
Registered: 03-19-2009

Re: No row with the given identifier exists

You need to format it like this:

   For "Contains:

     http://servername/sdata/slx/dynamic/-/Leads?where=Company like '*company name*'

    For "Starts With:

     http://servername/sdata/slx/dynamic/-/Leads?where=Company like '*company name'

   For "Ends With:

     http://servername/sdata/slx/dynamic/-/Leads?where=Company like 'company name*' 

 

FYI.. you can toss &orderby=Company on teh end if you want to.. 

--
RJ Ledger - rjledger@rjlSystems.net

".. Stay Focused..."
http://www.rjlSystems.net - blog: www.rjlSystems.net/blog.html
Please use plain text.
New Member
KaiSchaffrath
Posts: 17
Registered: 09-10-2009

Re: No row with the given identifier exists

Thanks RJ,

 

I think I've found the solution.

I've checked directly in the sql database and noticed that the record I was looking for was existing twice in the sql database, but only shown once in slx. After removing the duplicate, everything worked fine.

 

Regards

 

Kai

Please use plain text.