Marin Takanov
01/22/2021, 5:03 PMJournalEntry
objects for unknown reason with SuiteTalk API
. When navigating to Transactions > Financial > Make* *Journal Entries > List, the journals are displayed, but it's like the NetSuite SuiteTalk WebServices API
doesn't support retrieving this objects. We even wrote some code which went through all objects in NetSuite and tried to get
one of the JournalEntry
by its @internal_id
(posting it in the thread). Anyone see what's the problem here?Marin Takanov
01/22/2021, 5:03 PMNetSuite::Records.constants.each do |c|
if NetSuite::Records.const_get(c).is_a? Class
pp "NetSuite::Records::#{c.to_s}".constantize.get 6430032
end
rescue
end;1
Marin Takanov
01/25/2021, 12:17 PM