Josh Godfrey
08/19/2022, 4:16 PMaccountingperiod
but it doesn't do me much good. The accountingPeriod table only show's if the entire period (for all subsidiaries) is locked/closed. We might have some subsidiaries still closing the books but other subsidiaries have completed their tasks and locked their periodJosh Godfrey
08/19/2022, 4:19 PMHow is Per Subsidiary Accounting Period Locking apply to transactions?
Posting Period will default to null/blank when we enter a new transaction (i.e. Vendor Bill, Invoice, etc.) dated Today. Users with no Overrride Period Restrictions permission will have to enter the entity (Customer/Vendor) in the transaction first before the Period field is filled up. NetSuite will check which period is open for that subsidiary for the transaction date indicated in the transaction.
Josh Godfrey
08/19/2022, 4:20 PMSelcuk Dogru
08/22/2022, 7:45 PMSelcuk Dogru
08/22/2022, 7:46 PMlet taskItemStatusSearch = search.create({
type: 'taskitemstatus',
filters: [
['period', 'abs', o], 'AND',
['itemtype', 'anyof', ['PCP_LOCK_AR', 'PCP_LOCK_AP', 'PCP_LOCK_ALL']], 'AND',
['complete', 'is', true]
],
columns: ['period', 'subsidiary', 'itemtype']
});