How can I go about extracting only orders that have not been invoiced? Extracting all data is not working due to large number of orders and i'm seeing there is a limit of 10k records.
I've tried these but none seem to have worked. Any suggestions will be appreciated. Thanks
ne 3
ne '3'
ne 'Invoiced'
One of the error is : An error has occurred. A binary operator with incompatible types was detected. Found operand types 'Microsoft.Dynamics.DataEntities.SalesStatus' and 'Edm.String' for operator kind 'NotEqual'.
Solved! Go to Solution.
@raoraheel can you try this?
CustomerGroupID eq 'DIRECT' and SalesOrderStatus ne Microsoft.Dyanmics.DataEntities.SalesStatus'Invoiced'
Hi @raoraheel
@krootz suggestion there was a typo in Dynamics spelling.
Try using the correct spelling and see if that works.
Thanks
If you liked my response, please consider giving it a thumbs up
Proud to be a Flownaut!
Learn more from my blog@raoraheel can you try this?
CustomerGroupID eq 'DIRECT' and SalesOrderStatus ne Microsoft.Dyanmics.DataEntities.SalesStatus'Invoiced'
@krootz that didn't work. Getting this error when I do that.
An error has occurred. The string 'Microsoft.Dyanmics.DataEntities.SalesStatus'Invoiced'' is not a valid enumeration type constant.
clientRequestId: 57982152-3717-4a38-8e1e-14c3f7e04ba7
@raoraheel sorry I assumed it was an enum. Is that a lookup?
An error has occurred. A binary operator with incompatible types was detected. Found operand types 'Microsoft.Dynamics.DataEntities.SalesStatus' and 'Edm.String' for operator kind 'NotEqual'.
So I'm not sure.
@krootz it is an enum. This is how my unfiltered data is being extracted right now that i'm trying to limit.
"IsSalesProcessingStopped":"No","SalesOrderStatus":"Invoiced","CustomerGroupId":"Direct"
Hi @raoraheel
@krootz suggestion there was a typo in Dynamics spelling.
Try using the correct spelling and see if that works.
Thanks
If you liked my response, please consider giving it a thumbs up
Proud to be a Flownaut!
Learn more from my blogIs it SalesOrderStatus or SalesStatus? Make sure you using the correct field name as well.
If you liked my response, please consider giving it a thumbs up
Proud to be a Flownaut!
Learn more from my blogUser | Count |
---|---|
96 | |
40 | |
25 | |
22 | |
16 |
User | Count |
---|---|
129 | |
51 | |
48 | |
35 | |
24 |