not sure what field it is, I'm assuming it is some...
# suitecommerce
t
not sure what field it is, I'm assuming it is something with the backend tab in the config record
s
t
well sales order are coming up correctly
and the website fieldsets were added based on the documentation
fyi @Steve Goldberg the issue turned out to be with the core in the StoreItem model
it was calling the shoppingSession and consuming 10 usage points per item
if the customer's invoice was over 100 lines it would throw a field set error because the error msg in the catch is a generic error so we were even confused as to what the true error was
in reality is an SSS_USAGE_LIMIT error
s
Interesting. Do you have a case or issue number?
t
no case number. They have SCA so I overrode the method in an extension
s
OK, can you be specific about what you changed so I can get the team to look at it please?
t
message has been deleted
s
Ah OK
Catching the error event but not reporting it
t
correct
also only supports about 100 line items on MyAccount transaction details
s
So what did you do? Change it so that it reports the error correctly or just remove the usage check?
t
well in the transaction model i believe it reverts to loadWithSuiteScript instead of loadWithStoreITem
if the item fields return an empty array
so if the usage is low I just return an empty array and let the item fields get populated with loadWithSuiteScript in the transaction model
I added the usage check