DestroyBOMLinkList

Get BOM Structure

Minor Business Rule

Object Name: B3000840

Parent DLL: CMFGBASE

Location: Client/Server

Language: C

Data Structure

D300084C - Destroy BOM Structure Link List

Parameter NameData ItemData TypeReq/OptI/O/Both
idBOMStructureLinkListGENLNGIDREQNONE

General purpose ID variable.

Related Functions

B3000160 Convert Batch Quantity
B4000260 Line Type - Activity Rules

Related Tables

F3002 Bill of Material Master File
GetBOMHoriziontal

GetBOMHoriziontal

Get BOM Structure

Major Business Rule

Object Name: B3000840

Parent DLL: CMFGBASE

Location: Client/Server

Language: C

1.Functional Description

1.1Purpose

This BF retrieves the next vertically related item in the BOM structure required in the Bill of 

Material explosion process, stores it in a link list, and returns it to the calling application. 



1.2Setup Notes and Prerequisites


• This BF is part of the On-Line BOM Explosion process.  The On-Line BOM Explosion process includes 
standard ER for BOM explosion and additional Business Functions that have been created for On-line Bill 

of Material Explosion.

• Each time the BF is called, the next vertical level will be stored in the link list and returned to 
the calling application.

• The calling program should write the first level of the bill of material to the grid. 
• After level 1 is written to the grid, call this BF passing the values from the first level.
• If the next level is found, write a custom grid line with the values returned  and call the BF again 
passing the values from the level that was just written.  continue this step until End of Vertical 

Branch.

• At End of Vertical Branch, one vertical branch of the bill of material structure will be written to 
the grid.

• After the BOM has been completely exploded, call BF DestroyLinkList after BOM has been exploded.

1.3Special Logic

This section should be used when additional logic is used in the Business Function for application 

specific functionality or exceptional situations.


2.Technical Specifications

2.4Processing 


1.0.  If the pointer to the link list is equal to NULL, add first node to link list.

1.1.  Create Link List.
1.2.  Assign DS Level = 0.

1.2.  Add a node in the link list where the following values are saved:

Parent Branch   =  DS Parent Branch

Parent Item=  DS Parent Item

Type of Bill=  DS Type of Bill

Batch Qty=  DS Batch Qty

Batch Qty UOM=  DS Batch Qty UOM

Level=  DS Level

Component Branch=  DS Component Branch

Component Item =  DS Component Item

Quantity Required=  DS Quantity Required

Unit Of Measure=  DS Unit of Measure

Operation Sequence =  DS Operation Sequence

Line Number=  DS Line Number

Effective From=  DS Effective From

Hrequet=  Hrequest  Used to Retreive the Record  


1.0.  If the pointer to the link list is not equal to null, retrieve the values of the last link list 

node.



2.0.  Add the next level to the link list.

2.1.  Retrieve the next level from the Bill of Material Table (F3002) until fetch fails, record 
found, or SBNT <> 0.    (LOOP)

2.1.1.  If DS Bill Retrieved is equal to '1', retrieve a record from the Bill of Material 
Table 

index:  ID_F3002_PARENT_ITEM__BRANCH__TYPE 
where MMCU = DS Component Branch, KIT = DS Component Item, TBM = DS Type of Bill, BQTY = 

Prev. level Quantity Required in primary UOM.  


2.1.2.  If (DS Bill Retrieved is equal to '0') or (DS Bill Retrieved is equal to '1' and no 
record was found in 2.1.1.), retrieve a record from the Bill of Material Table. 

index: ID_F3002_PARENT_ITEM__BRANCH__TYPE 
where MMCU = DS Component Branch, KIT = DS Component Item, TBM = DS Type of Bill, BQTY = 

0.  


 2.1.3. If DS Bill Retrieved is equal to '2', retrieve a record from the Bill of Material 
Table 

index: ID_F3002_PARENT_ITEM__BRANCH__TYPE 
where MMCU = DS Component Branch, KIT = DS Component Item, TBM = DS Type of Bill.  


2.1.4.  If DS As of Date not equal to zero or NULL, check date effectivity.  The DS As of Date 
must be greater than or equal to the F3002 Effective From date and less than or equal to the 

F3002 Effective Thru Date.  If the DS As of Date is not within the date effectivity range, or 

cShowCoProducts = '0'  and ixcoby == 'C' or cShowByProducts  = '0' and ixcoby == 'B' or 

cShowIngredients = '0' and ixcoby == 'I',  and it is not a text line, read next BOM record.


2.2.  If a Bill of Material Record was found, process next level.
2.2.1.  Assign DS Level = DS Level + 1.
2.2.2.  If DS RetrieveStockingType = '1', retrieve the stocking type from F4102 for the child.

2.2.2.  Assign values to be stored in Link List.

LL Parent Branch-  F3002 MMCU

LL Parent Item-  F3002 KIT

LL Type of Bill-  F3002 TBM

LL Batch Qty-  F3002 BQTY

LL Batch Qty UOM-  F3002 UOM

LL Level-  DS Level

LL Component Branch-  F3002 CMCU

LL Component Item -  F3002 ITM

LL Quantity Required-  F3002 QNTY

LL Unit Of Measure-  F3002 UM

LL Operation Sequence-  F3002 OPSQ

LL Line No-  F3002 CPNT

LL Effective From-  F3002 EFFF

LL StockingType-  F4102 STKT

2.2.3.  Add node to link list.
2.2.4.  If DS Return Pointer is equal to '1', allocate memory for F3002 record and assign DS 
F3002 pointer = pointer to F3002 record.


2.2.5.  Assign  values from the F3002 record  to return in the BF data structure.
DS Parent Branch =  F3002 MMCU

DS Parent Item=  F3002 KIT

DS Type of Bill=  F3002 TBM

DS Batch Qty=  F3002 BQTY

DS Batch Qty UOM=  F3002 UOM

DS Component Branch=  F3002 CMCU

DS Component Item=  F3002 ITM

DS Unit of Measure=  F3002 UM

DS Operation Sequence=  F3002 OPSQ

DS Effective From=  F3002 EFFF

  2.2.6.  If DS RetrieveStockingType = '1', assign DS StockingType = F4102 stocking type. 

 2.2.6.  Assign DS End of Vertical Branch = '0'.

2.2.7.  Assign DS Record Found = '1'.

2.3.  If a Bill of Material Record was not found, assign DS End of Vertical Branch  = '1', assign 
DS Record Found = '0'.


This Function will get the next horizonal BOM Record


Data Structure

D300084A - Get BOM Horizonal

Parameter NameData ItemData TypeReq/OptI/O/Both
idPointerToLinkListGENLNGIDNONENONE

General purpose ID variable.

idF3002PointerGENLNGIDNONENONE

General purpose ID variable.

szParentBranchMMCUcharNONENONE

A code that represents a high-level business unit. Use this code to refer to a branch or plant that might have departments or jobs, which 
represent lower-level business units, subordinate to it. For example:     o Branch/Plant (MMCU)     o Dept A (MCU)     o Dept B (MCU)     o Job 123 
(MCU) Business unit security is based on the higher-level business unit.

mnParentItemKITMATH_NUMERICNONENONE

The system provides for three separate item numbers.    1.   Item Number (short) - An eight-digit, computer assigned, completely 
non-significant item number.    2.   2nd Item Number - The 25-digit, free form, user defined alphanumeric item number.    3.   3rd Item Number - Another 
25-digit, free form, user defined alphanumeric item number.

szTypeOfBillTBMcharNONENONE

A user defined code (40/TB) that designates the type of bill of material. You can define different types of bills of material for different uses. 
For example:    M     Standard manufacturing bill    RWK   Rework bill    SPR   Spare parts bill  The system enters bill type M in the work order 
header when you create a work order, unless you specify another bill type. The system reads the bill type code on the work order header to 
know which bill of material to use to create the work order parts list. MRP uses the bill type code to identify the bill of material to use when it 
attaches MRP messages. Batch bills of material must be type M for shop floor management, product costing, and MRP processing.

mnBatchQuantityBQTYMATH_NUMERICNONENONE

The quantity of finished units that you expect this bill of material or routing to produce. You can specify varying quantities of components 
based on the amount of finished goods produced. For example, 1 ounce of solvent is required per unit up to 100 units of finished product. 
However, if 200 units of finished product is produced, 2 ounces of solvent are required per finished unit. In this example, you would set up batch 
quantities for 100 and 200 units of finished product, specifying the proper amount of solvent per unit.

szBatchQuantityUOMUOMcharNONENONE

A user defined code (00/UM) that indicates the quantity in which to express an inventory item, for example, CS (case) or BX (box).

szLevelVC10AcharNONENONE

This is a generic field used as a work field in Everest.

szComponentBranchCMCUcharNONENONE

A secondary or lower-level business unit. The system uses the value that you enter to indicate that a branch or plant contains several 
subordinate departments or jobs. For example, assume that the component branch is named MMCU. The structure of MMCU might be as follows:    
Branch/Plant - (MMCU)       Dept A - (MCU)       Dept B - (MCU)       Job 123 - (MCU)

mnComponentItemITMMATH_NUMERICNONENONE

An inventory item number. The system provides three separate item numbers plus an extensive cross-reference capability to other item 
numbers (see data item XRT) to accommodate substitute item numbers, replacements, bar codes, customer numbers, supplier numbers, and 
so forth. The item numbers are as follows:   o Item Number (short) - An eight-digit, computer-assigned item number     o 2nd Item Number - The 
25-digit, free-form, user defined alphanumeric item number     o 3rd Item Number - Another 25-digit, free-form, user defined alphanumeric item 
number

mnQuantityRequiredQNTYMATH_NUMERICNONENONE

The number of units that the system applies to the transaction.

szUnitOfMeasureUOMcharNONENONE

A user defined code (00/UM) that indicates the quantity in which to express an inventory item, for example, CS (case) or BX (box).

mnOperationSequenceNoOPSQMATH_NUMERICNONENONE

A number used to indicate an order of succession. In routing instructions, a number that sequences the fabrication or assembly steps in the 
manufacture of an item. You can track costs and charge time by operation. In bills of material, a number that designates the routing step in the 
fabrication or assembly process that requires a specified component part. You define the operation sequence after you create the routing 
instructions for the item. The Shop Floor Management system uses this number in the backflush/preflush by operation process. In engineering 
change orders, a number that sequences the assembly steps for the engineering change. For repetitive manufacturing, a number that 
identifies the sequence in which an item is scheduled to be produced. Skip To fields allow you to enter an operation sequence that you want to begin 
the display of information. You can use decimals to add steps between existing steps. For example, use 12.5 to add a step between steps 
12 and 13.

jdAsOfDateASDE1JDEDATENONENONE

The date used for effectivity checking. Enter a specific date to display documents (orders, bills of material, routings, as applicable) that are 
effective on or after that date. The current system date is the default, but you can enter any future or past date.

cReturnPointerEV01charNONENONE

An option that specifies the type of processing for an event.

cEndOfBOMStructureEV01charNONENONE

An option that specifies the type of processing for an event.

cRecordFoundEV01charNONENONE

An option that specifies the type of processing for an event.

idHUSERGENLNGIDNONENONE

General purpose ID variable.

szSecondItemNumberLITMcharNONENONE

A number that identifies the item. The system provides three separate item numbers plus an extensive cross-reference capability to 
alternative item numbers. The three types of item numbers are: Item Number (short) An 8-digit, computer-assigned item number. 2nd Item Number A 
25-digit, user defined, alphanumeric item number. 3rd Item Number  Another 25-digit, user defined, alphanumeric item number. In addition to 
these three basic item numbers, the system provides an extensive cross-reference search capability. You can define numerous 
cross-references to alternative part numbers. For example, you can define substitute item numbers, replacements, bar codes, customer numbers, or 
supplier numbers.

szThirdItemNumberAITMcharNONENONE

The system provides three separate item numbers plus an extensive cross-reference capability to alternate item numbers. These item 
numbers are as follows: 1.  Item Number (short) - An 8-digit, computer-assigned item number. 2.  2nd Item Number - The 25-digit, free-form, user 
defined alphanumeric item number. 3.  3rd Item Number - Another 25-digit, free-form, user defined alphanumeric item number.  In addition to 
these three basic item numbers, an extensive cross-reference search capability has been provided (see XRT). Numerous cross references to 
alternate part numbers can be user defined, such as substitute item numbers, replacements, bar codes, customer numbers, or supplier 
numbers.

cIndentLevelEV01charNONENONE

An option that specifies the type of processing for an event.

cCoByProductsCOBYcharNONENONE

A code that distinguishes standard components or ingredients from co-products,by-products, and intermediates. Co-products are 
(concurrent) end items as the result of a process. By-products are items that can be produced at any step of a process, but were not planned. 
Intermediate products are items defined as a result of a step but are automatically consumed in the following step. Generally, intermediates are 
nonstock items and are only defined steps with a pay-point for reporting purposes. Standard components (Discrete Manufacturing) or ingredients 
(Process Manufacturing) are consumed during the production process. Valid values are:    C Co-products    B By-products    I Intermediate 
products    Blank Standard components or ingredients

nLevelAsIntegerINT01integerNONENONE

Number of Days in Future to Query for Responses Due. 

cFixedOrVariableQtyFORQcharNONENONE

A code that indicates if the quantity per assembly for an item on the bill of material varies according to the quantity of the parent item 
produced or is fixed regardless of the parent quantity. This value also determines if the component quantity is a percent of the parent quantity. Valid 
values are:    F Fixed Quantity    V Variable Quantity (default)    %   Quantities are expressed as a percentage and must total 100%For 
fixed-quantity components, the Work Order and Material Requirements Planning systems do not extend the component's quantity per assembly 
value by the order quantity.

nIndentionStartValueINT02integerNONENONE

Number of Days in the Past to Query for Quote Requests Received. 

jdEffectiveFromEFFFJDEDATENONENONE

A date that indicates one of the following:     o When a component part goes into effect on a bill of material     o When a routing step goes into 
effect as a sequence on the routing for an item     o When a rate schedule is in effect The default is the current system date. You can enter 
future effective dates so that the system plans for upcoming changes. Items that are no longer effective in the future can still be recorded and 
recognized in Product Costing, Shop Floor Management, and Capacity Requirements Planning. The Material Requirements Planning system 
determines valid components by effectivity dates, not by the bill of material revision level. Some forms display data based on the effectivity 
dates you enter.

jdEffectiveThruEFFTJDEDATENONENONE

A date that indicates one of the following:     o When a component part is no longer in effect on a bill of material     o When a routing step is no 
longer in effect as a sequence on the routing for an item     o When a rate schedule is no longer active The default is December 31 of the 
default year defined in the Data Dictionary for Century Change Year. You can enter future effective dates so that the system plans for upcoming 
changes. Items that are no longer effective in the future can still be recorded and recognized in Product Costing, Shop Floor Management, 
and Capacity Requirements Planning. The Material Requirements Planning system determines valid components by effectivity dates, not by 
the bill of material revision level. Some forms display data based on the effectivity dates you enter.

cShowSubstitutesNotUsedEV02charNONENONE

An option that specifies the type of processing for an event.

cShowCoProductsEV02charNONENONE

An option that specifies the type of processing for an event.

cShowByProductsEV02charNONENONE

An option that specifies the type of processing for an event.

cShowIntermediatesNotUsedEV02charNONENONE

An option that specifies the type of processing for an event.

cTextYNTXYNcharNONENONE

A code that indicates whether the information with this order line type contains only text information. In World software, valid values are:    Y 
This line contains only text information.    N This line contains more than text information. In OneWorld, a checkmark indicates that the 
information with this order line type contains only text information.

cInventoryInterfaceYNIVIcharNONENONE

A code that identifies the type of interface to the Inventory Management system. Valid values are:    Y The dollar or unit value of any activity 
containing this line type will be reflected in inventory. The system also edits the item that you enter to ensure that it is a valid item. Y is the 
default.    A The system recognizes the number that you enter as a G/L account number. The system uses this code in purchasing only.    B The 
system performs edits when using format 4 in purchase order entry.        The system retrieves price data from the inventory tables, but does not 
update the quantity on the purchase order. This code is valid only when you have set the G/L Interface field to Y (yes). Budget checking is 
fully functional when you use this interface code.    D The item in this line is an inventory item that will not affect availability or quantities.    N The 
item is not an inventory item. To verify whether the item exists in the Item Master file, use Inventory Interface N in conjunction with the flag, Edit 
the Item Master for Non-Stock Items.

cEvaluatePhantomsEV01charNONENONE

An option that specifies the type of processing for an event.

cPhantomItemEV01charNONENONE

An option that specifies the type of processing for an event.

mnLineNumberCPNBMATH_NUMERICOPTNONE

A number that specifies how the system displays the sequence of components on a single-level bill of material. This number initially 
indicates the sequence in which a component was added to the bill of material. You can modify this number to change the sequence in which the 
components appear.

Related Functions

B3000160 Convert Batch Quantity
B4000260 Line Type - Activity Rules

Related Tables

F3002 Bill of Material Master File
GetBOMVertical

GetBOMVertical

Get BOM Structure

Major Business Rule

Object Name: B3000840

Parent DLL: CMFGBASE

Location: Client/Server

Language: C

1.Functional Description

1.1Purpose

Retrieve the next horizontally related item in the BOM structure required in the Bill of Material 

explosion process.. 


1.2Setup Notes and Prerequisites


• This BF is part of the On-Line BOM Explosion process.  The On-Line BOM Explosion process includes 
standard ER for BOM explosion and additional Business Functions that have been created for On-line Bill 

of Material Explosion.

• Each time the BF is called, the vertical branch built by GetBOMStructureVertical will be processed 
from highest level to lowest level until a horizontal relationship is found.

• After a horizonal relationship is found, the ER should call GetBOMStructureVertical to vertically 
explode the item that was selected from this business function..


1.3Special Logic

This section should be used when additional logic is used in the Business Function for application 

specific functionality or exceptional situations.


2.Technical Specifications


2.4Processing 


1.0.  If DS Pointer to Link List is equal to NULL, return.


2.0.  Process link list records until end of link list or horizontal BOM relationship is found.  
(LOOP)


2.1.  Retreive last node in Link List.  If no nodes exist in the link list, assign DS End of BOM 
Structure = '1' and return.


2.3.  Read Next BOM Record Sequentially until record found, fetch fails, or SBNT <> 0.  (LOOP)
2.3.1.  Read next BOM record Using the saved HRequest.
index:  ID_F3002_PARENT_ITEM__BRANCH__TYPE
where MMCU = LL Parent Branch, KIT = LL Parent Item, TBM = LL Type of Bill, BQTY = LL 

Batch Qty

2.3.2.  If record found and (DS As Of Date is not equal to 0 or NULL), check date effectivity.  
DS As of Date must be greater than or equal to F3002 Effective From date and less than or equal 

to F3002 Effective Thru.  If DS As of Date is not within date effectivity range, or 

cShowCoProducts = '0'  and ixcoby == 'C' or cShowByProducts  = '0' and ixcoby == 'B' or cShowIngredients = 

'0' and ixcoby == 'I',  and it is not a text line, read next BOM record.read next record.

2.3.3.  If record found, process horizontal BOM relationship.  
2.3.3.1.  If DS RetrieveStockingType = '1', retrieve F4102 STKT assign to Link list and DS 
Stocking Type for the child.

2.3.3.1.  Update current Link List Node.  The level number should not change.
2.3.3.2.  Assign DS Record Found = '1'.

2.3.3.3.  If DS Return Pointer is equal to '1', allocate memory for F3002 record and 
return pointer to F3002 record.

2.3.4.  If fetch fails, repeat 2.0. 


This Function will get the next vertical BOM Recor

Data Structure

D300084B - Get BOM Vertical

Parameter NameData ItemData TypeReq/OptI/O/Both
szParentBranchMMCUcharNONENONE

A code that represents a high-level business unit. Use this code to refer to a branch or plant that might have departments or jobs, which 
represent lower-level business units, subordinate to it. For example:     o Branch/Plant (MMCU)     o Dept A (MCU)     o Dept B (MCU)     o Job 123 
(MCU) Business unit security is based on the higher-level business unit.

mnParentItemKITMATH_NUMERICNONENONE

The system provides for three separate item numbers.    1.   Item Number (short) - An eight-digit, computer assigned, completely 
non-significant item number.    2.   2nd Item Number - The 25-digit, free form, user defined alphanumeric item number.    3.   3rd Item Number - Another 
25-digit, free form, user defined alphanumeric item number.

szTypeOfBillTBMcharNONENONE

A user defined code (40/TB) that designates the type of bill of material. You can define different types of bills of material for different uses. 
For example:    M     Standard manufacturing bill    RWK   Rework bill    SPR   Spare parts bill  The system enters bill type M in the work order 
header when you create a work order, unless you specify another bill type. The system reads the bill type code on the work order header to 
know which bill of material to use to create the work order parts list. MRP uses the bill type code to identify the bill of material to use when it 
attaches MRP messages. Batch bills of material must be type M for shop floor management, product costing, and MRP processing.

mnBatchQuantityBQTYMATH_NUMERICNONENONE

The quantity of finished units that you expect this bill of material or routing to produce. You can specify varying quantities of components 
based on the amount of finished goods produced. For example, 1 ounce of solvent is required per unit up to 100 units of finished product. 
However, if 200 units of finished product is produced, 2 ounces of solvent are required per finished unit. In this example, you would set up batch 
quantities for 100 and 200 units of finished product, specifying the proper amount of solvent per unit.

szBatchQuantityUOMUOMcharNONENONE

A user defined code (00/UM) that indicates the quantity in which to express an inventory item, for example, CS (case) or BX (box).

szLevelVC10AcharNONENONE

This is a generic field used as a work field in Everest.

szComponentBranchCMCUcharNONENONE

A secondary or lower-level business unit. The system uses the value that you enter to indicate that a branch or plant contains several 
subordinate departments or jobs. For example, assume that the component branch is named MMCU. The structure of MMCU might be as follows:    
Branch/Plant - (MMCU)       Dept A - (MCU)       Dept B - (MCU)       Job 123 - (MCU)

mnComponentItemITMMATH_NUMERICNONENONE

An inventory item number. The system provides three separate item numbers plus an extensive cross-reference capability to other item 
numbers (see data item XRT) to accommodate substitute item numbers, replacements, bar codes, customer numbers, supplier numbers, and 
so forth. The item numbers are as follows:   o Item Number (short) - An eight-digit, computer-assigned item number     o 2nd Item Number - The 
25-digit, free-form, user defined alphanumeric item number     o 3rd Item Number - Another 25-digit, free-form, user defined alphanumeric item 
number

mnQuantityRequiredQNTYMATH_NUMERICNONENONE

The number of units that the system applies to the transaction.

szUnitOfMeasureUOMcharNONENONE

A user defined code (00/UM) that indicates the quantity in which to express an inventory item, for example, CS (case) or BX (box).

mnOperationSequenceOPSQMATH_NUMERICNONENONE

A number used to indicate an order of succession. In routing instructions, a number that sequences the fabrication or assembly steps in the 
manufacture of an item. You can track costs and charge time by operation. In bills of material, a number that designates the routing step in the 
fabrication or assembly process that requires a specified component part. You define the operation sequence after you create the routing 
instructions for the item. The Shop Floor Management system uses this number in the backflush/preflush by operation process. In engineering 
change orders, a number that sequences the assembly steps for the engineering change. For repetitive manufacturing, a number that 
identifies the sequence in which an item is scheduled to be produced. Skip To fields allow you to enter an operation sequence that you want to begin 
the display of information. You can use decimals to add steps between existing steps. For example, use 12.5 to add a step between steps 
12 and 13.

jdEffectiveFromASDE1JDEDATENONENONE

The date used for effectivity checking. Enter a specific date to display documents (orders, bills of material, routings, as applicable) that are 
effective on or after that date. The current system date is the default, but you can enter any future or past date.

idBOMStructureLinkListGENLNGIDNONENONE

General purpose ID variable.

idF3002PointerGENLNGIDNONENONE

General purpose ID variable.

cReturnPointerEV01charNONENONE

An option that specifies the type of processing for an event.

cBillRetrievedEV01charNONENONE

An option that specifies the type of processing for an event.

cEndOfVerticalEV01charNONENONE

An option that specifies the type of processing for an event.

cRecordFoundEV01charNONENONE

An option that specifies the type of processing for an event.

cSuppressErrorMessageEV01charNONENONE

An option that specifies the type of processing for an event.

szErrorMsgIDDTAIcharNONENONE

A code that identifies and defines a unit of information. It is an alphanumeric code up to 8 characters long that does not allow blanks or 
special characters such as %, &, or +. You create new data items using system codes 55-59. You cannot change the alias.

cEndOfBOMStructureEV01charNONENONE

An option that specifies the type of processing for an event.

idHUSERGENLNGIDNONENONE

General purpose ID variable.

szSecondItemNumberLITMcharNONENONE

A number that identifies the item. The system provides three separate item numbers plus an extensive cross-reference capability to 
alternative item numbers. The three types of item numbers are: Item Number (short) An 8-digit, computer-assigned item number. 2nd Item Number A 
25-digit, user defined, alphanumeric item number. 3rd Item Number  Another 25-digit, user defined, alphanumeric item number. In addition to 
these three basic item numbers, the system provides an extensive cross-reference search capability. You can define numerous 
cross-references to alternative part numbers. For example, you can define substitute item numbers, replacements, bar codes, customer numbers, or 
supplier numbers.

szThirdItemNumberAITMcharNONENONE

The system provides three separate item numbers plus an extensive cross-reference capability to alternate item numbers. These item 
numbers are as follows: 1.  Item Number (short) - An 8-digit, computer-assigned item number. 2.  2nd Item Number - The 25-digit, free-form, user 
defined alphanumeric item number. 3.  3rd Item Number - Another 25-digit, free-form, user defined alphanumeric item number.  In addition to 
these three basic item numbers, an extensive cross-reference search capability has been provided (see XRT). Numerous cross references to 
alternate part numbers can be user defined, such as substitute item numbers, replacements, bar codes, customer numbers, or supplier 
numbers.

cIndentLevelEV01charNONENONE

An option that specifies the type of processing for an event.

cCoByProductsCOBYcharNONENONE

A code that distinguishes standard components or ingredients from co-products,by-products, and intermediates. Co-products are 
(concurrent) end items as the result of a process. By-products are items that can be produced at any step of a process, but were not planned. 
Intermediate products are items defined as a result of a step but are automatically consumed in the following step. Generally, intermediates are 
nonstock items and are only defined steps with a pay-point for reporting purposes. Standard components (Discrete Manufacturing) or ingredients 
(Process Manufacturing) are consumed during the production process. Valid values are:    C Co-products    B By-products    I Intermediate 
products    Blank Standard components or ingredients

nLevelAsIntINT01integerNONENONE

Number of Days in Future to Query for Responses Due. 

cFixedOrVariableQtyFORQcharNONENONE

A code that indicates if the quantity per assembly for an item on the bill of material varies according to the quantity of the parent item 
produced or is fixed regardless of the parent quantity. This value also determines if the component quantity is a percent of the parent quantity. Valid 
values are:    F Fixed Quantity    V Variable Quantity (default)    %   Quantities are expressed as a percentage and must total 100%For 
fixed-quantity components, the Work Order and Material Requirements Planning systems do not extend the component's quantity per assembly 
value by the order quantity.

jdAsOfDateASDE1JDEDATENONENONE

The date used for effectivity checking. Enter a specific date to display documents (orders, bills of material, routings, as applicable) that are 
effective on or after that date. The current system date is the default, but you can enter any future or past date.

nIndentionStartValueINT02integerNONENONE

Number of Days in the Past to Query for Quote Requests Received. 

jdEffectiveThruEFFTJDEDATENONENONE

A date that indicates one of the following:     o When a component part is no longer in effect on a bill of material     o When a routing step is no 
longer in effect as a sequence on the routing for an item     o When a rate schedule is no longer active The default is December 31 of the 
default year defined in the Data Dictionary for Century Change Year. You can enter future effective dates so that the system plans for upcoming 
changes. Items that are no longer effective in the future can still be recorded and recognized in Product Costing, Shop Floor Management, 
and Capacity Requirements Planning. The Material Requirements Planning system determines valid components by effectivity dates, not by 
the bill of material revision level. Some forms display data based on the effectivity dates you enter.

cShowCoProductsEV02charNONENONE

An option that specifies the type of processing for an event.

cShowByProductsEV02charNONENONE

An option that specifies the type of processing for an event.

cShowIntermediatesNotUsedEV02charNONENONE

An option that specifies the type of processing for an event.

cShowSubstitutesNotUsedEV02charNONENONE

An option that specifies the type of processing for an event.

cTextYNTXYNcharNONENONE

A code that indicates whether the information with this order line type contains only text information. In World software, valid values are:    Y 
This line contains only text information.    N This line contains more than text information. In OneWorld, a checkmark indicates that the 
information with this order line type contains only text information.

cInventoryInterfaceYNIVIcharNONENONE

A code that identifies the type of interface to the Inventory Management system. Valid values are:    Y The dollar or unit value of any activity 
containing this line type will be reflected in inventory. The system also edits the item that you enter to ensure that it is a valid item. Y is the 
default.    A The system recognizes the number that you enter as a G/L account number. The system uses this code in purchasing only.    B The 
system performs edits when using format 4 in purchase order entry.        The system retrieves price data from the inventory tables, but does not 
update the quantity on the purchase order. This code is valid only when you have set the G/L Interface field to Y (yes). Budget checking is 
fully functional when you use this interface code.    D The item in this line is an inventory item that will not affect availability or quantities.    N The 
item is not an inventory item. To verify whether the item exists in the Item Master file, use Inventory Interface N in conjunction with the flag, Edit 
the Item Master for Non-Stock Items.

cEvaluatePhantomsEV01charNONENONE

An option that specifies the type of processing for an event.

cPhantomItemEV01charNONENONE

An option that specifies the type of processing for an event.

mnLineNumberCPNBMATH_NUMERICOPTNONE

A number that specifies how the system displays the sequence of components on a single-level bill of material. This number initially 
indicates the sequence in which a component was added to the bill of material. You can modify this number to change the sequence in which the 
components appear.

Related Functions

B3000160 Convert Batch Quantity
B4000260 Line Type - Activity Rules

Related Tables

F3002 Bill of Material Master File