NetSuite's data model is the organized structure of standard records, custom records, fields, sublists, joins, and IDs that defines how data is stored, connected, and exposed across NetSuite. In practice, it tells your team which record owns the data, which relationship controls the join, and which channel should be used for reporting, scripting, or integrations.
That definition needs to be grounded in how NetSuite actually behaves. Oracle's documentation on using SuiteScript with NetSuite records describes records as objects with body fields, buttons and actions, subtabs, and sublists. The SuiteScript Records Browser separately summarizes supported records, fields, sublists, search joins, search filters, search columns, and record transformations. In other words, NetSuite is not one flat database table per business process. It is a connected system of objects with different layers of data exposure depending on where you are working.
| NetSuite data model component | What it means | Why it matters |
|---|---|---|
| Record | The core business object, such as customer, item, vendor, or sales order | Establishes ownership and reporting grain |
| Field | An attribute stored on the record or line | Determines what can be queried, filtered, synchronized, or governed |
| Relationship | The link between two records or between a header and its lines | Controls joins, duplication risk, and transformation paths |
| Channel | The interface exposing the object, such as Saved Search, Workbook, SuiteQL, REST, or SuiteScript | Affects labels, IDs, supported joins, and safe usage |
Most business users can picture the model like this:
That is why netsuite records and fields is the right place to start, but not the whole picture. The real leverage comes from understanding how those objects connect.
Oracle's analytics stack makes the NetSuite data model more important in 2026 because teams must understand role-aware schemas, custom objects, and join behavior.
There are three concrete reasons this has become more important.
First, Oracle says NetSuite serves more than 43,000 customers. At that scale, account structures vary widely. A manufacturer, distributor, ecommerce brand, and software company may all use NetSuite, but their enabled features, custom segments, custom records, subsidiaries, and field layouts can be very different. Your account-specific model matters.
Second, Oracle documents that the older NetSuite.com SuiteAnalytics Connect data source is no longer available as of NetSuite 2026.1, and that NetSuite2.com is now the only SuiteAnalytics Connect data source. Oracle also positions the Records Catalog as the contextual reference tool for the NetSuite model structure and behavior, including record types and fields available for specific NetSuite channels.
Third, Oracle warns that relationships can distort results when they are misunderstood. In SuiteAnalytics Workbook, Oracle explains that one-to-many and many-to-many joins can duplicate source values and lead to inaccurate aggregations. That is not a niche analytics footnote. It is a core part of understanding the NetSuite data model.
For teams building reports, integrations, custom logic, or external BI pipelines, the takeaway is simple: the model is operational infrastructure, not background theory.
Teams usually dig into the model after reports, integrations, or customizations stop agreeing and nobody can explain which record owns the data. Finance sees one total in a saved search and another in Workbook. Operations adds a custom field that solves one workflow but creates confusion in another. Integration teams discover too late that a receiving system expects line-level detail while their export was modeled at the transaction header.
Those issues are not rare. They are the normal symptoms of a model that has grown faster than its documentation.
Pressure is higher in 2026 because more teams are working across Saved Search, Workbook, SuiteQL, REST, SOAP, SuiteScript, and outside BI tools at the same time. That means the same underlying record relationships have to support business users, analysts, developers, and implementation teams without everyone interpreting the schema differently.
The practical question is no longer just "what field is this?" It is "what does this field belong to, what grain does it operate at, and which channel exposes it safely?"
Most companies hit the switch when ad hoc fixes stop scaling. A few undocumented custom fields turn into dozens. One-off reports become board-level dashboards. A simple integration becomes a warehouse pipeline. At that point, the data model stops being background configuration and becomes operational infrastructure that usually needs a broader NetSuite Optimization plan.
The strongest model documentation answers five criteria at once: record ownership, relationship grain, channel exposure, governance, and downstream reporting impact. It is not enough to know that a field exists. A reliable model explains who owns it, how it joins, where it appears, what breaks if it changes, and how a team should validate it before using it in production.
In practice, every healthy model review should establish a clear owner per record family, a clear source of truth per metric, repeated join checks, more than one reference tool for hard schema questions, and a final validation pass before reporting logic is treated as production-ready.
| Evaluation criteria | What to check | Minimum operating rule |
|---|---|---|
| Record ownership | Whether the business object belongs on a customer, item, transaction, or custom record | A clear owner per record family |
| Reporting grain | Whether the metric belongs on the header, line, child record, or summary layer | A single grain per metric |
| Join validation | Whether row counts, sums, and duplicate behavior match business expectations | Repeated checks before publication |
| Channel mapping | Whether Records Catalog, Records Browser, Workbook, and SuiteQL expose the same object consistently | More than one reference tool for complex schema questions |
| Governance | Whether IDs, definitions, dependencies, and change history are documented | A change log for custom object families |
That framework also makes original analysis easier. Instead of debating a vague "bad data model," your team can review the business purpose of each new custom field, keep rollback notes for retired fields, and document review cycles for integration mapping before a change reaches a script, dashboard, or external warehouse.
Break the NetSuite data model into records, fields, sublists, custom segments, custom records, internal IDs, and script IDs to understand it more quickly.
A record is the main business object in NetSuite, such as a customer, vendor, item, employee, subsidiary, sales order, invoice, or custom record.
Oracle's SuiteScript documentation describes the record object as the container for the other components on the page. That is why nearly every NetSuite conversation eventually comes back to record type. Reporting starts with a root record. Workflows run on a record. Scripts load and save a record. APIs create, update, or query records.
The first practical question in any NetSuite design exercise is, "Which record owns this data?"
Common standard record families include:
When a team says it wants to understand the netsuite schema, this is usually what it means first: which records exist, and which of them should own the process.
A field is a data attribute stored on a record, and NetSuite supports both standard fields and multiple categories of custom fields depending on record context.
Oracle's custom field documentation lists separate types for CRM fields, entity fields, item fields, transaction body fields, transaction line fields, item number fields, and other record fields. That matters because field placement changes behavior. A body field applies to the record header. A line field applies to the transaction rows. An item field belongs to the item master. A custom segment behaves like a classification field that can be applied across record families.
From a business perspective, the important distinctions are:
If your users ever ask why a field is available in one search, form, or API path but not another, the answer often comes back to field type and placement.
Sublists store repeating child rows under a parent record, and they are one of the most important parts of NetSuite record relationships.
Oracle identifies sublists as one of the main components of a record. On a sales order, for example, the line items sit in a sublist. On a customer, related contacts or addresses can be exposed as linked child structures. On a transaction, this separation between header and line is why so many analytics problems happen.
A single sales order header can have many transaction lines. If you join those lines carelessly, totals multiply.
That is also why NetSuite Integration work should clarify whether a mapping belongs at the transaction header or line level before development starts. A header-level purchase order status, for example, should not be treated the same way as a line-level quantity received field. They may appear related to the same transaction, but they operate at different grains.
Custom segments and custom records let NetSuite extend the native model without forcing every business requirement into standard fields.
Oracle describes custom segments as custom classification fields similar to class, department, and location. Oracle also notes in SuiteCloud Development Framework guidance that each custom segment has an associated custom record type containing its possible values.
That detail is more important than it looks. It means a custom segment is not just "another dropdown." It is a governed classification layer that can shape reporting, filtering, and cross-record analysis when it is designed well. For finance and operations teams, custom segments are often a cleaner answer than building a new transaction model just to classify data differently.
If your team is evaluating NetSuite Modules, custom records, or reporting structure changes, this is one of the first areas worth reviewing with a NetSuite consultant.
Internal IDs and script IDs are the identifiers that let humans and tooling talk about the same object precisely.
Oracle documents that field IDs can be exposed through the UI and that standard SuiteScript field IDs are typically lowercase, while SuiteTalk uses camel case equivalents. It also notes that the Records Catalog and related browsers are where teams should verify the authoritative names of records and fields.
That creates one of the most common sources of confusion in the NetSuite data model:
NetSuite2.comWhen debugging an inherited account, turn on internal IDs early. It saves hours.
NetSuite record relationships describe how one record connects to another, and the most important distinction is whether the relationship is one-to-one, one-to-many, or many-to-many.
| Relationship type | What it means | Example |
|---|---|---|
| One-to-one | One record points to one related record | Sales order to primary customer |
| One-to-many | One parent has many child rows or records | Sales order to transaction lines |
| Many-to-many | Multiple records connect both ways | Accounts to subsidiaries in multi-subsidiary setups |
Oracle's Workbook documentation calls out one-to-many and many-to-many joins as the relationships that create duplicated source values in analytics. The classic example is the relationship between transaction and transaction line. One transaction record can have many line records. If you pull a transaction total and then join line fields without controlling aggregation, NetSuite can duplicate the header-level value across every related line.
That same principle applies outside Workbook:
That is why netsuite record relationships matter more than memorizing field labels. Relationships define reporting grain.
Many NetSuite fields are not simple values. They are references to another record.
A customer field on a sales order points to a customer record. An item field on a transaction line points to an item record. A subsidiary field points to a subsidiary record. A custom segment value points to the associated custom record type that stores its available values.
As a rule, if a field behaves like a dropdown sourced from another list or object, treat it as a relationship until proven otherwise.
Parent-child structure is built into many NetSuite objects, and teams should expect hierarchy rather than flatness.
Oracle notes that instances in associated custom record types can be hierarchical, with parent values referenced inside child instances. Similar patterns show up in practical account design:
That hierarchy is a strength of the platform. It also means data extraction becomes more accurate when the team documents parent and child behavior up front.
Across channels, the same NetSuite data model can look different in the UI, saved searches, Workbook, SuiteQL, SuiteScript, SOAP, and REST because each channel exposes the model differently.
Oracle says the Records Catalog provides record types and fields for specific NetSuite channels. Oracle's analytics data source also uses some generic record types, such as transaction, entity, and item, which represent multiple concrete record forms and may use different labels than the UI or saved search layer.
That difference shows up in four practical ways.
A field label can be human-friendly while the ID remains technical. Renaming a custom field changes what users see, but Oracle notes that in NetSuite2.com, the custom object's ID remains the stable reference used in queries in its documentation on custom object names and IDs.
Saved searches and Workbook are not identical views of the model. Oracle says some fields are accessible through different record types in the analytics data source, while other calculated fields from saved search are not ported directly in its documentation on differences between analytics data sources and saved searches. That is why recreating a saved search in Workbook can require different joins or formula logic.
Oracle documents that SuiteScript field IDs and SuiteTalk field IDs may differ in casing in its guide to showing record and field IDs in the UI. That sounds minor until a developer copies a field reference from one channel to another and gets an error.
Oracle says the Records Catalog reflects account configuration, permissions, customizations, and enabled features, while the SuiteScript Records Browser lists what is officially supported in SuiteScript. If a team uses the wrong reference tool for the job, it can end up assuming a record or field should exist where it is not actually supported.
In complicated accounts, NetSuite Consulting often adds the most value right here: clarifying which channel is the source of truth for the workstream in front of you.
Start with the Records Catalog for account-specific analytics work, then use the Records Browser and UI IDs for channel-specific validation.
Oracle gives a fairly clear division of labor here.
Oracle says the Records Catalog is available from Setup > Records Catalog and lists available record types in the left pane, with filtering, global field search, and visibility controls. It also describes the catalog as a contextual reference tool for the NetSuite model.
For most netsuite schema questions in 2026, this is the right first stop because it is:
Oracle says the SuiteScript Records Browser summarizes supported records, fields, sublists, joins, filters, columns, and record transformations for SuiteScript. Use it when the question is specifically about scriptable behavior.
Oracle documents that teams can expose field IDs and internal IDs in the UI. For admins and analysts, this is a practical way to validate whether labels such as "Customer Status," "Status," or "Channel" map to the same underlying field.
Oracle says SuiteAnalytics Connect exposes oa_tables, oa_columns, and oa_fkeys system tables to list available record types, columns, and relationships. It also warns that oa_fkeys can be inaccurate in NetSuite2.com, and that teams should avoid SELECT * on wide tables because queries against schema tables with more than 1,000 columns can fail if more than 1,000 columns are retrieved.
That warning matters. If your BI team treats foreign key metadata as perfect truth, it can build joins that look reasonable and still miss important relationships. Validate critical joins in the Records Catalog.
Schema design also affects security, compliance, and performance because visibility is role-aware and query design changes what downstream teams trust. Oracle states that Records Catalog visibility depends on enabled features and access rights, and Oracle's SuiteQL documentation says query access follows the same role-based controls used by SuiteAnalytics. In other words, the model is never just a technical dictionary. It is part of your access-control design.
In compliance work, admins should document where regulated or business-critical data is stored before exporting it to external systems. A finance team may accept a workbook dataset that stays inside NetSuite, while a warehouse team moving the same data into Snowflake may need stronger approval, retention, and audit rules. The same decision affects long-term maintenance as well: each extra pipeline, review step, and reconciliation path increases the effort of keeping the model trustworthy.
Performance matters for the same reason. Oracle notes that NetSuite2.com is now the SuiteAnalytics Connect data source, which means teams should design for the current analytics stack instead of maintaining legacy assumptions. The most reliable rule is simple: use the narrowest safe join, validate the grain first, and keep real-time reporting ambitions aligned with what the channel can support.
A sales order is one of the clearest ways to understand the NetSuite data model because it combines header fields, line fields, related records, classifications, and downstream transformations.
Think about a single sales order:
That structure is why some questions must be answered at the order level and others at the line level. If your goal is "How many sales orders were placed last month?" you want to order grain. If your goal is "How many units of a SKU were sold by location?" you want line grain. If your team mixes those two grains in one report without care, totals become unreliable.
Downstream transformations also appear here. The SuiteScript Records Browser documents record transformations, which matters because a sales order may eventually turn into an item fulfillment, invoice, or cash sale depending on the process. That is not just workflow behavior. It is a relationship path in the model.
A clearer understanding of that path makes it easier to design NetSuite Integrations, reporting, and custom automation without double counting or missing data.
A useful comparison is not "which tool is best?" in the abstract. It is which option gives your team the right mix of schema accuracy, security, customer service, real-time visibility, and maintenance discipline for the specific data model question in front of it. Native NetSuite references are usually the best starting point, but external platforms become more attractive when the work extends into warehousing, orchestration, and cross-system analytics.
| Native NetSuite option | Best use case | Advantages | Security and compliance notes | Real-time fit | Maintenance profile |
|---|---|---|---|---|---|
| Records Catalog | Account-specific schema discovery | Account-aware comparison of records, fields, joins, and permissions | Role-aware visibility helps protect restricted objects | Good for current-state schema review | Light maintenance when work stays inside NetSuite |
| SuiteScript Records Browser | Script-supported metadata validation | Best reference for supported fields, sublists, joins, and transformations | Safer for developer validation than guessing IDs | Not a real-time reporting tool | Light maintenance for scripting decisions |
| Workbook + SuiteQL | Reporting, comparison, and advanced join analysis | Strong for dataset design, reusable analytics logic, and direct query control | Security follows SuiteAnalytics role access | Strong for near-real-time operational analysis | Ongoing validation is important because reporting logic changes over time |
| SuiteAnalytics Connect | External BI extraction and metadata inventory | Best for large-scale table access and downstream modeling | Compliance review matters more once data leaves NetSuite | Better for scheduled sync than strict real-time use | Heavier maintenance than UI-native options because external pipelines need ownership |
External stacks become more relevant when native tools stop answering the business question cleanly.
| External data stack | Best use case | Advantages | Security and compliance notes | Real-time fit | Maintenance profile |
|---|---|---|---|---|---|
| Snowflake + Boomi, MuleSoft, NiFi, or Segment | Enterprise warehouse and orchestration design | Flexible comparison across NetSuite and non-NetSuite systems, stronger transformation control, broader connector coverage | Requires deliberate security, retention, and compliance controls outside NetSuite | Best when real-time or cross-system reporting is a hard requirement | Heaviest maintenance profile, but sometimes justified for scalable cross-system analytics |
That comparison is why most teams should not jump straight from a saved search problem to a warehouse project. If the issue is field ownership or join ambiguity, the native schema references usually solve it faster. If the issue is cross-system analytics, customer service handoff, or a need for real-time dashboards beyond NetSuite's native limits, then an external stack may be justified.
Your best option depends on whether your team needs schema visibility, analytics flexibility, technical validation, or outside help cleaning up a messy account. The strongest teams usually use more than one of the options below because no single tool answers every NetSuite data model question well.
Anchor Group is a strong fit when the NetSuite data model problem spans record ownership, custom field sprawl, SuiteQL logic, integration mappings, and governance. A consulting-led review usually moves faster than trying to solve each symptom independently, especially when different departments already interpret the same reporting definitions differently.
As a NetSuite implementation partner, Anchor Group combines certified NetSuite consultants with development and optimization expertise across manufacturing, wholesale distribution, retail, and ecommerce. That matters when your business needs the same model to support SuiteAnalytics, SuiteCommerce, SuitePeople, and operational workflows without every department defining the schema differently.
What makes Anchor Group more useful than a purely technical fix is the ability to connect business process design to technical record structure. A finance team may describe the issue as unreliable margin reporting, while operations may describe it as inconsistent order data. Those are often the same underlying model issue expressed in different languages, and a consulting engagement can turn that into a record-by-record remediation plan tied to NetSuite Services work.
For teams that want a low-friction next step while they sort through a messy schema, Anchor Group's FREE 30-minute NetSuite fix can be a practical way to validate assumptions before a broader cleanup project starts.
If you want a broader view of implementation, integration, and optimization support, start with NetSuite Services.
Anchor Group is best for companies that have outgrown ad hoc NetSuite administration and need a cleaner operating model across reporting, customization, and integrations.
Anchor Group uses a consultation-based services model rather than a self-serve product model. Scope, timeline, and delivery structure depend on whether your team needs a quick diagnostic, a broader consulting engagement, or ongoing NetSuite Managed Services.
Records Catalog is the best starting point when your question is, "What does this account actually expose right now?" Oracle positions it as the account-aware reference for record types and fields for a specific channel, which makes it more practical than generic documentation when your team is working with enabled features, custom records, or role-based visibility.
It is especially useful when analysts and developers need to validate the same schema from different angles. Because the catalog is tied to the real account, it reduces the risk of assuming a field, form, or join exists just because it appears in older browser references or in another environment.
Use Records Catalog first when your team is tracing a field, validating a join, or checking how a custom object appears in the live account. It is the most efficient path for analytics and schema-discovery work that needs to reflect real account configuration rather than generic platform documentation.
SuiteScript Records Browser is still the cleanest reference when the question is not just "does this field exist?" but "is this record, sublist, join, or transformation officially supported in SuiteScript?" It is a developer-facing reference, but it also helps technical admins validate whether a scripting assumption is grounded in supported behavior.
That matters because the Records Browser answers a narrower question than the Records Catalog. It is not the best account-aware schema explorer, but it is strong when your team needs to confirm SuiteScript field IDs, search joins, or record transformations before writing or updating code.
Choose the SuiteScript Records Browser when the workstream is scripting, automation, or technical troubleshooting and your team needs supported metadata rather than a business-facing schema overview. It is especially valuable before custom development or when inherited scripts reference unclear fields and joins.
Saved searches remain the easiest way for many business teams to work with the NetSuite data model without writing SQL. They are familiar, flexible enough for many operational questions, and strong for day-to-day visibility when the reporting grain is well understood.
Saved searches become risky when they hide modeling mistakes until later. Teams often build useful reports quickly, but if they do not document whether the search is operating at header level, line level, or related-record level, discrepancies become harder to debug as more users depend on the output.
Saved searches are best for business-user reporting, operational dashboards, and first-pass analysis when the schema question is relatively narrow. They work well when your team already knows the owning record and just needs accessible reporting around it.
Workbook and SuiteQL are the right fit when your team needs more control over joins, datasets, and repeatable analytics logic than saved searches can comfortably provide. They are also where NetSuite data model misunderstandings become most visible, because one-to-many joins, role-aware access, and generic analytics record types can all distort results if the grain is not defined upfront.
These tools are powerful precisely because they expose more of the model. That makes them strong for finance analytics, warehouse staging logic, and serious troubleshooting. It also means they demand tighter discipline around record ownership, join validation, and stable field IDs than many teams initially expect.
NetSuite2.com data source and Records Catalog workflowsWorkbook and SuiteQL are best for analytics teams, technical admins, and developers who need deeper control over how the NetSuite data model is queried. Use them when saved searches stop being expressive enough or when your team needs more reliable join logic for recurring analysis.
SuiteAnalytics Connect is the best option when the NetSuite data model needs to be consumed outside NetSuite at scale. It is useful for external BI, data warehousing, metadata extraction, and cases where your team needs system tables such as oa_tables, oa_columns, and oa_fkeys to inspect structures programmatically.
It is powerful, but it should not be treated as perfect truth on its own. Oracle warns that some metadata behavior, especially around foreign keys in NetSuite2.com, needs careful validation. That makes Connect an extraction and inspection tool, not a substitute for record-level judgment.
SuiteAnalytics Connect is best for BI teams, integration architects, and data engineers who need NetSuite data and metadata outside the application. It makes the most sense when the reporting or governance problem extends into warehouses, external dashboards, or broader enterprise data platforms.
Document record ownership, relationship grain, field purpose, and channel-specific naming before you build.
Define which record truly owns the business process. If the business rule belongs to the customer, do not hide it on a transaction unless there is a real reason. If the metric is line-level, do not report it from the header.
Treat transaction headers and transaction lines as different grains. This prevents reporting duplication and makes integration mapping more predictable.
Use IDs in technical documentation, especially for fields, custom segments, and custom records. Labels change. IDs are what scripts, queries, and APIs depend on.
Custom segments are powerful when the business needs cross-record classification for reporting, filtering, or accounting logic. They are less effective when used as a catch-all substitute for clear master data design.
Oracle's duplication warning for one-to-many relationships should shape how you test every workbook or SuiteQL query. Validate counts and sums at small scale before distributing a report broadly.
Most teams should document row-count validation, aggregate validation, and duplicate-path review every time. It is a simple habit, but it prevents a large share of the reporting drift that later gets mislabeled as a system problem.
A simple internal data dictionary that lists record type, field label, field ID, data owner, source system, and reporting usage will improve long-term support quality over time.
Strong data dictionaries also assign a clear owner per metric, keep dependency references for critical fields, and require approval before production-facing definition changes. Those small controls create a stronger audit trail than most teams expect.
When your team is already evaluating NetSuite performance, governance, or reporting quality, add a model audit to the scope. Orphaned fields, duplicate segments, and unclear custom records create more drag than most teams realize.
Most NetSuite data model problems come from treating the schema as flatter and more consistent than it really is.
Common mistakes include:
None of those mistakes are unusual. They are normal in growing accounts. The important thing is to catch them early, ideally before a broader NetSuite Cloud Features rollout or data integration project depends on them.
There is no single best option for every NetSuite data model problem. The right choice depends on whether your team needs schema visibility, analytics control, or cross-functional cleanup.
Managing the model becomes much easier once your team stops treating records, fields, and relationships as isolated technical details. Records define ownership. Fields define meaning. Relationships define reporting grain, automation paths, and integration behavior. When those three parts are clear, your reporting gets cleaner, your scripts get safer, and your implementation choices get easier to support.
If your account has grown to the point where nobody is fully confident in the schema anymore, the next step is usually a focused architecture review: identify the core records, document the field IDs that matter, validate key joins, and clean up custom objects that no longer serve the business. If you want a lower-friction next step after reading, contact Anchor Group.
They usually differ because one dataset summarizes at one grain while the other joins child rows and duplicates header-level values. When that happens, the fix is not to keep tweaking formulas randomly. It is to confirm the base record, the relationship type, and whether the metric belongs on the header, the line, or a related record.
Start by exposing internal IDs in the UI so your team can separate the visible label from the technical identifier. Then verify the field in Records Catalog for the analytics channel you care about. If the field is part of a custom object or appears under a different generic record type in analytics, validate the join path before writing the query.
Start with Records Catalog for analytics or SuiteQL questions because it shows role-aware record types, fields, and related records for the active channel. If the work is script-specific, cross-check the same object in the SuiteScript Records Browser so your team confirms both the relationship path and whether the join is actually supported in SuiteScript.
Records Catalog is the stronger tool for account-specific schema discovery because it reflects enabled features, custom objects, permissions, and channel-aware relationships. The SuiteScript Records Browser is narrower and more developer-focused. It is the better reference when your team needs to confirm supported records, sublists, joins, filters, columns, and transformations in SuiteScript.
No single universal model diagram exists because each account changes with enabled features, custom objects, forms, permissions, and segments. The more reliable approach is to build an account-specific diagram from Records Catalog, key transaction flows, and your own data dictionary instead of relying on a generic schema image from another environment.
Not always, because admins and analysts can document many records and fields when ownership is clear and the scope stays business-facing. NetSuite Developers become more important when the account includes heavy customization, SuiteScript dependencies, or integrations that rely on technical IDs and transformation logic.
Use a custom segment when the business needs a governed classification that works across records for filtering, reporting, or accounting logic. Use a regular custom field when the data belongs to one record context and does not need that broader classification behavior. Many messy accounts overuse custom fields where a segment would have created cleaner reporting discipline.
Yes, but only after careful dependency checking across all forms, searches, Workbook datasets, SuiteQL queries, scripts, workflows, and integration mappings. The dangerous part is rarely the field itself. It is the undocumented downstream use.
Related Articles:
Disclaimer: This content is for general informational purposes only and may not reflect current updates or your specific configuration—please confirm details with your Anchor Group consultant.
Tagged with Solutions