Alfasith AX

Alfasith AX
اللَّهُمَّ انْفَعْنِي بِمَا عَلَّمْتَنِي، وَعَلِّمْنِي مَا يَنْفَعُنِي، وَزِدْنِي عِلْمًا

Wednesday, December 24, 2014

nbtstat commands for windows.

Hi,

MS-DOS utility that displays protocol statistics and current TCP/IP connections using NBT (NetBIOS over TCP/IP), which allow the user to troubleshoot NetBIOS name resolution issues. Normally, name resolution is done when NetBIOS over TCP/IP is functioning correctly. It does this through local cache lookup, WINS or DNS server query or through LMHOSTS or Hosts lookup.
Availability

NBTSTAT [ [-a RemoteName] [-A IP address] [-c] [-n] [-r] [-R] [-RR] [-s] [-S] [interval] ]
-a (adapter status) Lists the remote machine's name table given its name
-A (Adapter status) Lists the remote machine's name table given its IP address.
-c (cache) Lists NBT's cache of remote [machine] names and their IP addresses
-n (names) Lists local NetBIOS names.
-r (resolved) Lists names resolved by broadcast and via WINS
-R (Reload) Purges and reloads the remote cache name table
-S (Sessions) Lists sessions table with the destination IP addresses
-s (sessions) Lists sessions table converting destination IP addresses to computer NETBIOS names.
-RR (ReleaseRefresh) Sends Name Release packets to WINs and then, starts Refresh
RemoteName Remote host machine name.
IP address Dotted decimal representation of the IP address.
interval Redisplays selected statistics, pausing interval seconds between each display. Press Ctrl+C to stop redisplaying statistics.
Examples

nbtstat -A 204.224.150.3

REF : http://www.computerhope.com/

Regards,

Tuesday, December 16, 2014

Code / Job to run any application from AX

Hi,

    static void AlfasithRunAnyApplication(Args _args)
    {
        WinAPI::shellExecute("D:\\Dynamic Netsoft Construction Suite V2.pptx");
        WinAPI::shellExecute("C:\\Users\\dns.amohamed\\Downloads\\Love Mash Up.mp3");
        // Here Application will wait till previous application opens / runs
    }

Regards,

Sunday, December 14, 2014

Code to refresh AOS and remove *.AOC files in AX

Hi,

static server void refreshAOS(Args _args)
{
    ;

    xSession::removeAOC();
    SysTreeNode::refreshAll();
    SysFlushDictionary::doFlush();
    SysFlushAOD::doFlush();
    xSession::updateAOC();
}

Regards,

REF: http://www.dynamicsaxlatino.com/limpiar-flush-cache-de-aos-o-aot-en-ax/

Code to refresh AOT in AX

Hi,

public server static void refreshServer()
{
    #AOT ;
    TreeNode::findNode(#TablesPath).AOTrefresh();
    TreeNode::findNode(#TableMapsPath).AOTrefresh();
    TreeNode::findNode(#ViewsPath).AOTrefresh();
    TreeNode::findNode(#ExtendedDataTypesPath).AOTrefresh();
    TreeNode::findNode(#BaseEnumsPath).AOTrefresh();
    TreeNode::findNode(#LicenseCodesPath).AOTrefresh();
    TreeNode::findNode(#ConfigurationKeysPath).AOTrefresh();
    TreeNode::findNode(#SecurityKeysPath).AOTrefresh();
    TreeNode::findNode(#TableCollectionsPath).AOTrefresh();
    TreeNode::findNode(#PerspectivesPath).AOTrefresh();
    TreeNode::findNode(#MacrosPath).AOTrefresh();
    TreeNode::findNode(#ClassesPath).AOTrefresh();
    TreeNode::findNode(#ReportsPath).AOTrefresh();
    TreeNode::findNode(#ReportTemplatesPath).AOTrefresh();
    TreeNode::findNode(#SectionTemplatesPath).AOTrefresh();
    TreeNode::findNode(#QueriesPath).AOTrefresh();
    TreeNode::findNode(#JobsPath).AOTrefresh();
    Dictionary::aodFlush();
    Dictionary::dataFlush();
    flush UtilElements, UtilIdElements;
}

Regards,

Monday, December 1, 2014

An unexpected error has occurred while opening the workflow. See the event log on the AOS and contact your system administrator to resolve the issue.

Hi,

Error : "An unexpected error has occurred while opening the workflow. See the event log on the AOS and contact your system administrator to resolve the issue."

when creating the workflow in the AX, where as standard workflow is creating.

Solution :  Generate Full CIL +Synchronization of all the tabels will relieve you from this error.

Regards,

Wednesday, November 19, 2014

Code to print Ledger journal balance in AX

static void AlfasithPrintLedgerBalance(Args _args)

{

    LedgerBalanceMainAccountAmounts balance;

    MainAccountListPageBalanceParameters balanceParameters;

    MainAccount mainAccount;

    ;

    mainAccount = MainAccount::findByMainAccountId( "11120005");

    balanceParameters = MainAccountListPageBalanceParameters::construct();

    balance = LedgerBalanceMainAccountAmounts::construct();



    balance.parmAccountingDateRange(balanceParameters.getStartDate(),balanceParameters.getEndDate());

    balance.parmPostingLayer(balanceParameters.getPostingLayer());

    balance.parmIncludeOpeningPeriod(balanceParameters.getIncludeOpeningPeriods());

    balance.parmIncludeRegularPeriod(balanceParameters.getIncludeOperatingPeriods());

    balance.parmIncludeClosingPeriod(balanceParameters.getIncludeClosingPeriods());

    balance.parmIncludeClosingPeriodBySystem(balanceParameters.getIncludeClosingPeriods());


    balance.calculateBalance(mainAccount);


    info(strFmt("%1", balance.getAccountingCurrencyBalance()));

}

Tuesday, November 4, 2014

15 - 40 Minutes full compilation of AX using CMD prompt

Hi,

cd C:\Program Files\Microsoft Dynamics AX\60\Server\MicrosoftDynamicsAX\bin
Here \\MicrosoftDynamicsAX\\ represents the Instance name that you given while installing.

axbuild.exe xppcompileall /aos=01 /altbin="C:\Program Files (x86)\Microsoft Dynamics AX\60\Client\Bin" /workers=4
aos = 01 is the SI NO. you can find that SI for your instance in server configuration.




Reference page : http://msdn.microsoft.com/library/d6da631b-6a9d-42c0-9ffe-26c5bfb488e3.aspx

Regards,
Mohamed Alfasith

Monday, November 3, 2014

Access the other instance DB belongs to same domain but different DB in AX

Hi,

static void AlfasithOtherDBAccess(Args _args)
{
    LoginProperty       loginProp;
    ODBCConnection      conn;
    Resultset           resultSet, resultSetCount; // get record
    Statement           statement1, statement2; // Create SQL Statement
    ResultSetMetaData   metaData ; // get Record metadate like columnname.
    RetailTillLayout    RetailTillLayout;
    int i = 1;
    ;

    // Set Server Database
    loginProp = new LoginProperty();
    loginProp.setServer('DNWADY0046L'); // System or  server name
    loginProp.setDatabase('MicrosoftDynamicsAX'); // instance DB name like MicrosoftDynamicsAX_Live

    // Create Connection and SQL Statement
    conn = new ODBCConnection(loginProp);
    statement1 = conn.createStatement();
    resultSet = statement1.executeQuery("SELECT TOP 1 * from [MicrosoftDynamicsAX].[dbo].[RetailTillLayout]");

    while (resultSet.next())
    {
        metaData = resultSet.getMetaData();
        while (i)
        {
            info("Column Name :"+metaData.getColumnName(i)+ " Value = "+resultSet.getString(i));
            i++;
        }
    }
}

Regards,

Sunday, October 26, 2014

Overcome from divide by zero error in AX

Hi,

2 ways.

>>
int    a,b,c;
if(b)
    c = a / b;
else
 print " Cannot divide by zero"

OR

c  = a / minOne(b);

//it returns a itself if b is zero because minOne() returns non zero values that we passes. If it is zero then it retuns 1

Above methods is to prevent the stoppage of flow of execution.

Regards,

Saturday, October 25, 2014

Code to get multi selected records in from grid in AX

Hi,

Make that object (button) to multiselect property as "YES".
on the control (button) event method (Clicked).

void clicked()
{

     int             ListOfRecIds, i=1;
    container  contains;
    CustTable  custTableLoc; // Table_Name  that we used in as the datasource.
    super();
   
    ListOfRecIds= custTable_ds.recordsMarked().lastIndex();
    custTableLoc= custTable_ds.getFirst(1);
   
   while (custTableLoc)
    {
        contains = conIns(container, i ,custTableLoc.AccountNum)
       custTableLoc = custTable_ds.getNext();
        i++;
    }
 }
Regards,

Saturday, October 18, 2014

Delete the model files from AX

Hi,

Open the command prompt > run > cmd
cd\
cd C:\Program Files\Microsoft Dynamics AX\60\ManagementUtilities
Above location is the AX installed location.

axutil delete /model:"Payroll model" /Config:MicrosoftDynamicsAx

Here model is the concern model that needs to be deleted
& Config is the AOS name.
Note: Unless you compile you will not find the difference.

Regards,

List out all the models installed in particular instance in AX

Hi,

Open the command prompt > run > cmd
cd\
cd C:\Program Files\Microsoft Dynamics AX\60\ManagementUtilities
Above location is the AX installed location.

axutil list /Config:MicrosoftDynamicsAx

Here Config is the AOS name.



Regards,


Friday, October 17, 2014

Creating SO(Sales Order) in AX 2012

Creating PO (Purchase order) in AX 2012

Date handling in AX 2012

Hi,

dateStartMth and dateEndMth in ax 2012

//Get day from date
dayOfMth(systemdateget())

//Get month from date
mthOfYr(systemdateget())

//Get year from date
year(systemdateget())

// Ger Ist date of the month
dateStartMth (DueDate); // If DueDate = 18\11\1989 this method returns 01\11\1989

// Get Last date of the month
dateEndMth (DueDate) // If DueDate = 18\11\1989 it returns 30\11\1989

// Get no of months between the 2 dates.
noOfMonths =  intvNo(Date1, Date2, intvScale::Month);

// Get no of month between 2 dates belongs to 2 different year.
noOfMonths =  intvNo(Date1, Date2, intvScale::YearMonth);


//for next month
dateLoc = nextMth(today());

//for prevous month
dateLoc=prevMth(today());

//for next year
dateLoc=nextYr(today());

//for previous year
dateLoc =preYr(today());

//4 month before
dateLoc=prevQtr(today());

//4 month after
dateLoc=nextQtr(today());

Regards,

Free dumps for microsoft certification(prometric certification)

Hi,

Below URL takes you to the dump store.(Its non authorized page but useful).
http://www.examcollection.com/

Regards,

Tuesday, October 14, 2014

String Handling in AX

Hi,

    str 100     mailBody = 'Mohamed Alfasith IsmailSuban';
    if(strScan(mailBody,'Suban',1,strLen(mailBody)))
// Checks the presence of the string
       print strreplace(mailBody,'Suban',"Mohamed");
//Replaces the substring in main string...
 
//Delete the first letter in AX
strDel("Dynamic AX",1,1); // it retuns "ynamic"

subStr("Alfasith",3,5); //Returns the string 'fasit'.
strUpr("Alfaith"); // Returns the string ALFASITH
strRTrim("*AX*"); //Returns "*AX". removes the space in right end
strLTrim("*AX*"); //Returns " AX*". removes the space in left end

str mytxt = "Mohamed\nAlfasith\nIsmail"; // here \n is the new line escape sequence
print strLine(mytxt,1); // this prints only Mohamed

strLen("Fasith"); // returns 6

strRep('Ala',5); //  returns AlaAlaAlaAlaAla

Regards

Saturday, October 11, 2014

Convert UTCDateTime to date & date to UTCDateTime in AX

Hi,

    print DateTimeUtil::newDateTime(today(), 0, DateTimeUtil::getCompanyTimeZone());
    // Here today() is the date format not utcdatetime format...


    print DateTimeUtil::date(UTCFieldValue);
    // Here UTCFieldValue is theUTC date time field...


    //Get date diff from 1 UTC date time and another date type in AX
    return DateTimeutil::getDifference(
                        DateTimeUtil::newDateTime(resRentAgreement.StartDate, 0,       DateTimeUtil::getCompanyTimeZone()),
                        resGracePeriodHistory.createdDateTime))
// here resRentAgreement is the date field and resGracePeriodHistory is UTCDateTime field.

Regards,

Saturday, October 4, 2014

Microsoft ebooks free download

Hi,

Microsoft free e-books are available at.

http://blogs.msdn.com/b/microsoft_press/archive/2011/03/03/ebooks-list-of-our-free-books.aspx

Regards,

Free dot net (*.net) frame work download

Dear,

.net frame works *.exe files from MS office official page download center.

.NET Framework 4.5 Setup
.NET Framework 4.0 Setup
.NET Framework 3.5 Setup
.NET Framework 3.5 Setup Service Pack 1
.NET Framework 3.0 Setup
.NET Framework 2.0 Setup
.NET Framework Client Profile Offline Installer

Regards,


Code to check document is attached in AX

Hi,

static void AlfasithCheckAttacheddocu(Args _args)
{
    PurchTable             PurchTable; //Table your concern
    DocuRef                 DocuRef;
    ;
    select purchTable where purchTable.PurchId == "112255"; // Table your concern
    select DocuRef where DocuRef.RefTableId == PurchTable.TableId
                    &&  DocuRef.RefRecId == PurchTable.RecId;
   
    info(DocuRef.Name);
    pause;
}

Regards,

Difference between Microsoft dynamic AX 2012 with Dynamic AX 2009. Microsoft white paper

Hi,

Difference between Microsoft dynamic AX 2012 with Dynamic AX 2009.

http://www.microsoft.com/en-us/download/details.aspx?id=7225

This document provides a summary of new and changed features that have been implemented in Microsoft Dynamics AX 2012, Microsoft Dynamics AX 2012 Feature Pack, Microsoft Dynamics AX 2012 R2, and Microsoft Dynamics AX 2012 R3. It also describes companion apps and tools and services that support AX 2012. It also includes deprecated feature notices that describe features that have been removed in an

Regards,

Tuesday, September 30, 2014

Table ID for the tables in AX 2012 R2

Hi,

AccountingDistribution ( accounting distribution 7452 )
AccountingDistributionEventTmp ( accounting distribution 100001 )
AccountingDistributionTemplate ( Accounting distribution template 7453 )
AccountingDistributionTemplateDetail ( Accounting distribution template detail 7454 )
AccountingDistributionTmp ( AccountingDistributionTmp 100002 )
AccountingDistributionTmpAmounts ( Accounting distributions 7455 )
AccountingDistributionTmpJournalize ( accounting distribution 100003 )
AccountingDistributionTmpPurchSummary ( Encumbrance summary 7446 )
AccountingEvent ( Accounting event 7456 )
AccountingEventDateTmp ( Accounting event 100004 )
AccountingEventTmp ( Accounting event 100005 )
AccountingTmpEvent ( Accounting event 100006 )
AccountSumMap ( Account totals 1326 )
AddressCountryRegionBLWI ( BLWI country/region 1049 )
AddressCountryRegionGroupBLWI ( BLWI country/region groups 1050 )
AddressZipCodeImportLog_NL ( ZIP/postal code import log 389 )
AgreementClassification ( Agreement classification 4616 )
AgreementClassificationTranslation ( Agreement classification translation 4619 )
AgreementFollowUpTmp ( Agreement 7548 )
AgreementHeader ( Agreement 4895 )
AgreementHeaderDefault ( Release order defaulting policy 4898 )
AgreementHeaderDefaultHistory ( Agreement history 4908 )
AgreementHeaderDefaultMap ( Agreement header default and agreement header default history map 7313 )
AgreementHeaderHistory ( Agreement history 4633 )
AgreementHeaderMap ( Agreement header and agreement header history map 7312 )
AgreementHeaderTmp ( Agreement 6630 )
AgreementLine ( Agreement line 4896 )
AgreementLineDefault ( Agreement line default 4907 )
AgreementLineDefaultHistory ( Agreement line history 4911 )
AgreementLineHistory ( Agreement line history 4910 )
AgreementLineMap ( Agreement line and agreement line history map 7314 )
AgreementLineQuantityCommitment ( Agreement line quantity 4901 )
AgreementLineQuantityCommitmentHistory ( Agreement line history 4913 )
AgreementLineReference ( Intercompany agreement line references 100007 )
AgreementLineReleasedLine ( Agreement released line 5188 )
AgreementLineReleasedLineHistory ( Agreement released line history 5190 )
AgreementLineReleasedLineMap ( AgreementLineReleasedLine and AgreementLineReleasedLineHistory Map 4485 )
AgreementLineTmp ( Agreement 6647 )
AgreementLineVolumeCommitment ( Agreement line volume 4899 )
AgreementLineVolumeCommitmentHistory ( Agreement line history 4912 )
AgreementReference ( Intercompany agreement references 100008 )
AgreementReleaseHeaderMatch ( Release order match 5191 )
AifAction ( Action 580 )
AifAdapter ( Adapter 1125 )
AifAppShareFile ( Application Share Files 100009 )
AifChangeTrackingTable ( Application Integration Framework Change Tracking Table 100010 )
AifChannel ( Channel 1111 )
AifCorrelation ( Correlation 566 )
AifDataPolicy ( Data policy 824 )
AifDataPolicyLegalValue ( Legal value 10116 )
AifDataPolicyXPath ( Data Policy XPath 101 )
AifDocumentField ( Data policy schema information 805 )
AifDocumentFilter ( Document filter 100011 )
AifDocumentLog ( Document table 1684 )
AifDocumentQueryFilter ( Document query filter 100012 )
AifDocumentSchemaTable ( Document schema table 1041 )
AifDocumentSetFilter ( Document set filter 100013 )
AifDocumentSetFilterElement ( Document set filter element 100014 )
AifEndpointActionValueMap ( Document setup 625 )
AifEndpointConstraintMap ( Endpoint filter map 679 )
AifExceptionMap ( Service exception metadata 100015 )
AifExceptionsView ( Exceptions associated with Application Integration Framework processing 100286 )
AifFileSystemConfiguration ( File system configuration 100016 )
AifGatewayQueue ( Gateway queue 1115 )
AifGdsCache ( Generic document service cache 100017 )
AifGlobalSettings ( Integration Framework global settings 383 )
AifInboundPort ( Inbound port 7175 )
AifLookupEntry ( Lookup entry 834 )
AifLookupTable ( Lookup table 825 )
AifMessageLog ( Message table 1693 )
AifOutboundPort ( Outbound port 7186 )
AifOutboundProcessingQueue ( Outbound processing queue 180 )
AifParameterLookup ( Parameter lookup table 2300 )
AifPipeline ( Pipeline 767 )
AifPipelineComponent ( Pipeline component 770 )
AifPipelineComponentLookup ( Pipeline component 2294 )
AifPort ( Port 7174 )
AifPortActionPolicy ( Port action policy 7225 )
AifPortDocument ( Port document 9979 )
AifPortServiceView ( Port service view 100287 )
AifPortUser ( Port user 7520 )
AifPortValueMap ( Port value map 100018 )
AifQueueManager ( Queue manager 871 )
AifResourceIdMap ( ResourceId map 2425 )
AifResourceLock ( Resource lock 5871 )
AifResponse ( AifResponse 2746 )
AifRuntimeCache ( AIF runtime cache 2471 )
AifSchemaStore ( Schema store 1040 )
AifService ( AIF service 2222 )
AifServiceReferences ( Service references 111 )
AifSqlCdcEnabledTables ( SQL Change Data Capture Enabled Tables 100019 )
AifSqlCtTriggers ( Change Tracking Trigger Configuration 100020 )
AifSqlCtVersion ( Change Tracking Version 100021 )
AifStringEdtLookup ( String field type lookup 2466 )
AifTransform ( Transforms 5414 )
AifTransformElement ( Transform pipeline elements 5421 )
AifValueSubstitutionComponentConfig ( Value substitution component configuration 2258 )
AifValueSubstitutionConfig ( Value substitution configuration table 2140 )
AifWcfConfiguration ( WCF configuration 7556 )
AifWebsites ( Web sites 370 )
AifXmlTransformConfig ( Xml transform configuration table 2147 )
AifXsltRepository ( XSLT repository table 2146 )
AllocateKeyMap ( Allocation key map 1260 )
AllocateTransMap ( Allocation transactions map 527 )
AssetAcquisitionMethod ( Fixed asset acquisition method 2378 )
AssetActivityCode ( Asset activity codes 2979 )
AssetAddition ( Fixed asset additions 2443 )
AssetBalanceReportColumnsTmp ( Fixed asset note 5370 )
AssetBalances ( Fixed asset balances 9948 )
AssetBalancesPeriodTmp ( Fixed asset movements 5371 )
AssetBasis ( Fixed asset basis 4842 )
AssetBonus ( Fixed asset special depreciation allowance 1640 )
AssetBook ( Value model by fixed asset 1328 )
AssetBookCompareTmp ( Fixed asset book compare 5372 )
AssetBookMerge ( Fixed asset books 1464 )
AssetBookMergeLookup ( Book lookup 1463 )
AssetBookTable ( Value models 1329 )
AssetBookTableDerived ( Derived value models 1387 )
AssetBookTableDerivedJournal ( Derived value models journal 1388 )
AssetBudget ( Fixed asset budget transactions 1154 )
AssetChangesHistory ( Fixed asset changes history 2593 )
AssetCondition ( Fixed asset condition 2379 )
AssetConsumptionFactor ( Consumption factor 1330 )
AssetConsumptionFactorLines ( Consumption lines 1331 )
AssetConsumptionProposalTmp ( Consumption proposal 5373 )
AssetConsumptionUnit ( Consumption units 1332 )
AssetDepBook ( Fixed assets/depreciation books 126 )
AssetDepBookBonus ( Fixed asset depreciation book special depreciation allowance 1758 )
AssetDepBookJournalName ( Depreciation book journal names 736 )
AssetDepBookJournalParmPost ( Post depreciation book journals 2382 )
AssetDepBookJournalTable ( Depreciation book journal table 737 )
AssetDepBookJournalTrans ( Depreciation book journal lines 739 )
AssetDepBookLVPTransferProposal_AU ( Asset LVP transfer proposal temp 2090 )
AssetDepBookMassUpdateTmp ( Fixed assets 5374 )
AssetDepBookTable ( Depreciation books 123 )
AssetDepBookTableDerived ( Derived depreciation books 1666 )
AssetDepBookTableDerivedJour ( Derived depreciation book journal 636 )
AssetDepBookTrans ( Depreciation book fixed asset transactions 740 )
AssetDepreciationProfile ( Depreciation table 1155 )
AssetDepreciationProfileSpec ( Fixed asset depreciation profile schedules 1156 )
AssetDepreciationZakat_SA ( Zakat assets and depreciation transactions 4092 )
AssetDisposal ( Fixed asset disposals 6323 )
AssetDisposalParameters ( Disposal parameters 1157 )
AssetDueReplacementTmp ( Fixed asset due for replacement 5531 )
AssetFieldChangesMap ( Asset field changes map 2594 )
AssetFutureValueTmp ( Future value of fixed asset 5375 )
AssetGroup ( Fixed asset groups 1139 )
AssetGroupBookSetup ( Fixed asset group/value model 1333 )
AssetGroupDepBookSetup ( Fixed asset group/depreciation book 128 )
AssetGroupDepBookSetupBonus ( Fixed asset group depreciation book special depreciation allowance setup 1674 )
AssetGroupGlobal ( Organization-wide fixed asset identifiers 6156 )
AssetGroupGlobalMapping ( Organization-wide fixed asset identifiers 100022 )
AssetGroupZakat_SA ( Zakat asset group 4093 )
AssetInsurance ( Fixed asset insurance report 4775 )
AssetInventTrans ( Inventory transactions for fixed assets 1181 )
AssetLedger ( Fixed asset posting profile 1158 )
AssetLedgerAccounts ( Fixed asset ledger accounts 1141 )
AssetLending ( Fixed assets on loan 1159 )
AssetLocation ( Fixed assets locations 1161 )
AssetLVPTransferProposal_AU ( Asset LVP transfer proposal temp 2053 )
AssetMajorType ( Fixed asset major type 2380 )
AssetMidQuarterTmp ( Fixed asset mid-quarter applicability 5376 )
AssetOverviewTmpBE ( Belgian fixed assets report 4873 )
AssetParameters ( Fixed asset parameters 1162 )
AssetParametersDeprRates_DE ( Values for reducing balance 1167 )
AssetPropertyGroup ( Property groups 2980 )
AssetRBSLFactorTable ( RB/SL factors 368 )
AssetReplacementTmp ( Asset replacement 7376 )
AssetReserveTransactionsTmp ( Posted sales tax 4840 )
AssetReserveType ( Fixed assets provision types 1335 )
AssetRevaluationGroup ( Revaluation groups for fixed assets 1336 )
AssetRevaluationGroupSpec ( Revaluation factor for fixed assets 1337 )
AssetRule ( Business rules for fixed assets determination 6171 )
AssetRuleEcoResCategory ( Asset rule - economic resource category relationship table 6173 )
AssetRuleLocal ( Asset acquisition rules - local 6172 )
AssetRuleQualifier ( Asset acquisition rules qualifier 6174 )
AssetRuleQualifierLanguage ( Asset acquisition rules qualifier languages 6175 )
AssetRuleQualifierLanguageLocal ( Asset acquisition rules qualifier languages - local 6176 )
AssetRuleQualifierLocal ( Asset acquisition rules qualifier - local 6177 )
AssetRuleQualifierOption ( Asset acquisition rules qualifier options 6178 )
AssetRuleQualifierOptionLanguage ( Asset acquisition rules qualifier option languages 6179 )
AssetRuleQualifierOptionLanguageLocal ( Asset acquisition rules qualifier option languages - local 6180 )
AssetRuleQualifierOptionLocal ( Asset acquisition rules qualifier options - local 6181 )
AssetRuleThreshold ( Asset acquisition rules threshold amounts 6182 )
AssetRuleThresholdLocal ( Asset acquisition rules threshold amounts - local 6183 )
AssetRuleTmpAssetQualifierLookup ( Lookup table for qualifier 3736 )
AssetsInAssetStatementTmp ( Fixed assets 5377 )
AssetSorting ( Fixed asset properties 1338 )
AssetStatementFixedAssetsTmp ( Fixed asset statement rows 100023 )
AssetStatementInterval ( Fixed asset interval 1676 )
AssetStatementLowValuePoolTmp_AU ( Fixed asset statement rows 5904 )
AssetStatementRow ( Fixed asset statement rows 1675 )
AssetStatementRowSetupTmp ( Fixed asset statement rows 100024 )
AssetStatementTmp ( Fixed asset statement 5378 )
AssetTable ( Fixed assets 1165 )
AssetTmpAssetTransferHistory ( View the history of transfers for the fixed asset 7308 )
AssetTmpInventoryWorkSheet ( Fixed asset physical inventory worksheet 100025 )
AssetTrans ( Fixed asset transactions 1169 )
AssetTransactionListing ( Fixed asset transactions 4776 )
AssetTransferHistory ( Fixed asset transfer history 7154 )
AssetTransMerge ( Fixed asset transactions 2239 )
AuditPolicyAdditionalOption ( Audit policy 7634 )
AuditPolicyCaseGroup ( Audit policy case group 7422 )
AuditPolicyCaseGroupAttribute ( Audit policy case group attribute 7423 )
AuditPolicyFullTextSearchTransient ( AuditPolicyFullTextSearchTransient 7420 )
AuditPolicyListKeyword ( Audit policy list keyword 6511 )
AuditPolicyListKeywordView ( AuditPolicyListKeywordView 100288 )
AuditPolicyListParty ( Audit policy list party 7113 )
AuditPolicyRuleDetail ( Audit policy rule detail 7426 )
AuditPolicyRuleViolation ( Audit policy rule violation 7427 )
AxdDocumentParameters ( Parameters for inbound Axd documents 369 )
BankAccountMap ( Bank account map 1177 )
BankAccountStatement ( Bank statement 640 )
BankAccountStatementTmp ( Bank statement 5379 )
BankAccountTable ( Bank accounts 7 )
BankAccountTableLookup ( Bank accounts 5490 )
BankAccountTrans ( Bank transactions 8 )
BankAccountTrap ( Bank account trap 8691 )
BankAccountView ( Bank account 100289 )
BankBillOfExchangeLayout ( Bill of exchange layout 1746 )
BankBillOfExchangeTable ( Bill of exchange table 1747 )
BankBillOfExchangeTmp ( Print bill of exchange 5936 )
BankBillOfExchangeTmp_FR ( Print bill of exchange 9836 )
BankCashflowReportTmp ( Bank cash flow report 5287 )
BankCentralBankPurpose ( Payment purpose codes 1142 )
BankCheckStatisticsTmp ( Bank checks statistics 7444 )
BankChequeLayout ( Check layout 9 )
BankChequePaymTrans ( Invoices paid by check 635 )
BankChequeReprints ( Check table 1396 )
BankChequeTable ( Check table 10 )
BankCodaAccountStatement ( CODA - bank statement 1776 )
BankCodaAccountStatementLines ( Bank statement details 1775 )
BankCodaAccountTable ( CODA - bank accounts 1777 )
BankCodaDetailsTmp ( Statement print 9776 )
BankCodaParameters ( CODA - bank parameters 1781 )
BankCodaTrans ( CODA - transaction 1778 )
BankCodaTransCategory ( Transaction category 1779 )
BankCodaTransDefTable ( CODA definitions 1782 )
BankCodaTransFamily ( Transaction family 1780 )
BankCustPaymIdTable ( Payment ID 8687 )
BankCustPaymModeBankAccounts ( Customer method of payment bank accounts 8688 )
BankCustVendPaymModeBankAccounts ( Customer and vendor method of payment bank accounts 8690 )
BankDeposit ( Bank deposit 11 )
BankDepositByCustomerTmp ( Deposit summary by customer 4705 )
BankDepositByDateTmp ( Deposit summary by date 5380 )
BankDocumentFacilityAgreement ( Bank facility agreements 7094 )
BankDocumentFacilityAgreementLine ( Bank facility agreement line 7095 )
BankDocumentFacilityAgreementView ( Bank document facility 9804 )
BankDocumentFacilityGroup ( Bank facility groups 7096 )
BankDocumentFacilityTmp ( Bank document facility 9803 )
BankDocumentFacilityType ( Bank facility types 7097 )
BankDocumentFacilityView ( Bank document facility view 7098 )
BankDocumentPosting ( Bank posting profiles 7127 )
BankFileArchFileTypeTable ( File types 2690 )
BankFileArchParameters ( File archive parameters 2699 )
BankFileArchTable ( File archive 2692 )
BankGroup ( Bank groups 5 )
BankIBSLog_BE ( IBS transactions 2061 )
BankIBSLogArchive_BE ( IBS archive 2060 )
BankIBSParameters_BE ( IBS parameters 2059 )
BankLC ( Letter of credit / import collection 7279 )
BankLCCustTrans ( Export letter of credit transaction 7821 )
BankLCExport ( Letter of credit / import collection export table 7280 )
BankLCExportDetailsSalesLineTmp ( Letter of credit sales line 9779 )
BankLCExportDetailsShipmentTmp ( Letter of credit/import collection shipment 9780 )
BankLCExportDetailsTmp ( Letter of credit details 9781 )
BankLCExportLine ( Letter of credit export shipment details 7281 )
BankLCImport ( Letter of credit / import collection import table 7282 )
BankLCImportApplicationPurchLineTmp ( Letter of credit application purchase line 9772 )
BankLCImportApplicationShipmentTmp ( Letter of credit/import collection shipment 9773 )
BankLCImportApplicationTmp ( Letter of credit application 9774 )
BankLCImportCharge_SA ( Letter of credit charge transactions 100027 )
BankLCImportChargeAllocation_SA ( Letter of credit transactions allocation 100026 )
BankLCImportHistory ( Letter of credit / import collection import history table 7283 )
BankLCImportLine ( Import of letter of credit shipment details 7284 )
BankLCImportLineHistory ( Letter of credit shipment details history data 7285 )
BankLCImportMargin ( Letter of credit margin transactions 100028 )
BankLCImportMarginAllocation ( Letter of credit transactions allocation 100029 )
BankLCInfo ( Letter of credit / import collection documentation information 7286 )
BankLCLine ( Letter of credit shipment details 7287 )
BankLCVendTrans ( Import letter of credit transaction 7822 )
BankLedgerReconciliationTmp ( Bank 10778 )
BankLGAction ( Letter of guarantee actions 7495 )
BankLGAmountCalculation ( Letter of guarantee amount calculation 7214 )
BankLGCustomerSalesOrder ( Sales orders 100290 )
BankLGDocumentMap ( Documents 7496 )
BankLGDocumentView ( Origin documents 7497 )
BankLGFacilityAgreementLine ( Letter of guarantee facility agreement line 7215 )
BankLGGuarantee ( Letter of guarantee 100030 )
BankLGGuaranteeCustomerSalesOrder ( Letter of guarantee 100031 )
BankLGGuaranteeProject ( Letter of guarantee 100032 )
BankLGGuaranteePurchaseOrder ( Letter of guarantee 100033 )
BankLGGuaranteeRelationMap ( Letter of guarantee 100275 )
BankLGGuaranteeSalesQuotation ( Letter of guarantee 100034 )
BankLGProject ( Projects 100291 )
BankLGPurchaseOrder ( Purchase orders 100292 )
BankLGSalesQuotation ( Quotations 7500 )
BankNegInstTableMap ( Negotiable instruments map 1711 )
BankParameters ( Bank parameters 708 )
BankPaymAdviceChequeTmp ( BankPaymAdviceChequeTmp 5594 )
BankPaymAdviceCustTmp ( BankPaymAdviceCustTmp 5595 )
BankPaymAdviceVendTmp ( BankPaymAdviceVendTmp 5937 )
BankPaymBalanceSurvey ( Survey code 6083 )
BankPaymBalanceSurveyPaymCodes ( Survey codes and purpose codes 6096 )
BankPromissoryNoteLayout ( Promissory note layout 1636 )
BankPromissoryNoteTable ( Promissory note table 1635 )
BankPromissoryNoteTmp_ES ( Promissory note 7236 )
BankPromissoryNoteTmp_FR ( Promissory note 7265 )
BankReconciliationSummaryTmp ( Bank reconciliation 5938 )
BankReconciliationTmp ( Bank reconciliation 5939 )
BankRemittanceFileCustVend ( Bank remittance 1803 )
BankRemittanceFilesCust ( Remittance files for customers 1599 )
BankRemittanceFilesVend ( Remittance files for vendors 1596 )
BankState11 ( State 11 1048 )
BankStmtISOAccountStatement ( Bank statement account statement 7382 )
BankStmtISOCashBalance ( Bank statement cash balance 7383 )
BankStmtISOCashBalanceAvailibility ( Bank statement cash balance availability 7384 )
BankStmtISODiscrepancy ( Bank statement discrepancy 7681 )
BankStmtISODocument ( Bank statement document 7385 )
BankStmtISOGroupHeader ( Bank statement group header 7386 )
BankStmtISOPartyIdentification ( Bank statement party identification 7387 )
BankStmtISOReportEntry ( Bank statement report entry 7388 )
BankTmpState11 ( BLWI report transactions 1057 )
BankTransactionTypeGroupHeader ( Bank transaction groups 643 )
BankTransType ( Bank transaction type 12 )
BankTransTypeGroupDetails ( Bank transaction types 644 )
BankVendPaymModeBankAccounts ( Vendor method of payment bank accounts 8689 )
BarcodeSetup ( Bar code setup 1214 )
Batch ( Batch transactions 2827 )
BatchConstraints ( Has conditions 2100 )
BatchConstraintsHistory ( Batch constraints history 2079 )
BatchGlobal ( BatchGlobal 124 )
BatchGroup ( Batch groups 2828 )
BatchHistory ( Batch tasks history 2272 )
BatchJob ( Batch job 2096 )
BatchJobAlerts ( Batch job alerts 2004 )
BatchJobHistory ( Batch jobs history 2271 )
BatchServerConfig ( Batch server schedule 2026 )
BatchServerGroup ( Batch server groups 2399 )
BIAnalysisServer ( Analysis server table 1063 )
BICompanyView ( Company 3959 )
BIConfiguration ( Configuration 2453 )
BICurrencyView ( Currency 11002 )
BIDateAttribute ( BI date attribute 7414 )
BIDateDimension ( Time dimension 7418 )
BIDateDimensionFormatStrings ( Time dimension format strings 3792 )
BIDateDimensionsView ( Date dimension 7477 )
BIDateDimensionTranslations ( Time dimension translations 3791 )
BIDateDimensionTranslationsView ( Date dimension translations 7478 )
BIDateDimensionValue ( Time dimension values 7416 )
BIDateGregorian ( Gregorian calendar date 7305 )
BIDateHierarchy ( BI date dimension hierarchy 7417 )
BIDateHierarchyTmp ( BI date dimension hierarchy 100035 )
BIExchangeRateView ( Exchange rates by day 7542 )
BIPerspectives ( Perspectives 2810 )
BISampleOrgHierarchyView ( Sample BI Organization Hierarchy View 7232 )
BITimePeriodsMDX ( Time periods 842 )
BIUdmTranslations ( UDM translations 2834 )
BlackListTable_IT ( Black list report table 12150 )
BlackListTransTable_IT ( Black list transaction report table 12151 )
BOM ( BOM lines 18 )
BOMCalcGroup ( Calculation groups 1114 )
BOMCalcItemInventoryDimensionTask ( BOM calculation task (product dimensions) 12129 )
BomCalcItemTask ( BOM calculation tasks 12130 )
BOMCalcTable ( Calculation 19 )
BOMCalcTmpRoutePhantom ( Open the selected activity 6104 )
BOMCalcTrans ( BOM calculation transactions 20 )
BOMCalcTransMap ( BOM calculation transactions 1580 )
BOMConfigRoute ( Configuration route 21 )
BOMConfigRule ( Configuration rules 22 )
BOMConsistOfTmp ( Lines 10154 )
BOMCostGroup ( Cost groups 146 )
BOMCostProfit ( Profit-setting 147 )
BOMDefaultProductionFlow ( Default production flow 4268 )
BOMLevelRecalculation ( BOM level recalculation 10810 )
BOMMap ( BOM lines 23 )
BOMParameters ( BOM parameters 24 )
BOMParmReportFinish ( Report as finished 711 )
BOMPartOfTmp ( BOMPartOfTmp 5885 )
BOMTable ( Bills of materials 26 )
BOMTmpUsedItem2ProducedItem ( Relationships 2745 )
BOMVersion ( BOM versions 27 )
BudgetAllocationTerm ( Budget allocation terms 3144 )
BudgetAllocationTermDetail ( Budget allocation term lines 3142 )
BudgetAllowTransferRule ( Budget transfer rules 7875 )
BudgetAllowTransferRuleMember ( Budget transfer rule members 7879 )
BudgetAllowTransferRuleMemberCriteria ( Budget transfer rule member criteria 7880 )
BudgetCheckResultErrorWarningDetail ( Budget check result error warning detail 3995 )
BudgetConsTmpDimensionValueItem ( Consolidations dimension values 5968 )
BudgetControlBudgetCycle ( Budget models by budget cycle 10493 )
BudgetControlConfiguration ( Budget control configuration 7089 )
BudgetControlDimensionAttribute ( Budget control dimensions 7091 )
BudgetControlMainAccount ( Budget control main account 5945 )
BudgetControlRule ( Budget control rules 7102 )
BudgetControlRuleCriteria ( Budget control rule criteria 7108 )
BudgetControlRuleUserGroupOption ( Budget user group options 7109 )
BudgetControlSourceIntegratorEnabled ( Budget control source integrator enabled 11479 )
BudgetControlUserGroupSuppressWarnings ( User groups that have budget control warning messages suppressed 100036 )
BudgetCycle ( Budget cycle 7066 )
BudgetCycleTimeSpan ( Budget cycle time span 7067 )
BudgetGroup ( Budget groups 7110 )
BudgetGroupLedgerDimension ( Budget group ledger dimension 7117 )
BudgetGroupMember ( Budget group members 7111 )
BudgetGroupMemberCriteria ( Budget group member criteria 7114 )
BudgetGroupUserGroupOption ( Budget user group options 7116 )
BudgetMap ( Budget map 28 )
BudgetModel ( Budget models 29 )
BudgetModelMap ( Budget model map 30 )
BudgetOverrideUserGroupOption ( Over budget permissions 7092 )
BudgetParameters ( Budget parameters 2535 )
BudgetPrimaryLedgerDimensionAttribute ( Budget dimensions 7112 )
BudgetSource ( Budget source 2619 )
BudgetSourceTracking ( Budget source tracking 2686 )
BudgetSourceTrackingDetail ( Budget source tracking detail 2617 )
BudgetSourceTrackingRelievingDetail ( Budget source tracking relieving details 3003 )
BudgetSourceTrackingSummary ( BudgetSourceTrackingSummary 100037 )
BudgetTmpBalance ( Budget balances 3004 )
BudgetTmpConsolidation ( Budget consolidation 3389 )
BudgetTmpControlStatistics ( Budget control statistics 25 )
BudgetTmpDetails ( Budget register entry details 5891 )
BudgetTmpEnum ( Budget enum details 100038 )
BudgetTransactionCode ( Budget codes 2546 )
BudgetTransactionCube ( Budget register entries 7706 )
BudgetTransactionHeader ( Budget register entries 2547 )
BudgetTransactionLine ( Budget account entries 2549 )
BudgetTransactionLineReverse ( Budget account entry reversal 2886 )
BusinessStatisticsData ( Business statistics lines 32 )
BusinessStatisticsDef ( Business statistics 33 )
CapitalAdjReportTmp_MX ( Capital report 6966 )
CaseAssociation ( Case association 2298 )
CaseCategoryHierarchyDetail ( Case category 2297 )
CaseDependency ( Case dependency 2775 )
CaseDetail ( Case detail 2254 )
CaseDetailBase ( Case 5489 )
CaseLog ( Case log details 2779 )
CaseWebDetail ( Case web detail 100039 )
CaseWorkflowWorkItem ( Case workflow work item 10563 )
CashDisc ( Cash discount 34 )
CatCart ( Shopping cart 4650 )
CatCartLine ( Shopping cart line 4651 )
CatCartLineState ( Shopping cart line state 4657 )
CatCatalogPolicyRule ( Purchasing policy 4950 )
CatCatalogProductRelationType ( Manually hidden products in the navigation categories 4690 )
CatCategoryProductReference ( Category product reference 4655 )
CatClassifiedProductReference ( Classified product reference 4654 )
CatDisplayCategoryAttributeRange ( Filterable attribute range 5347 )
CatDisplayCategoryFilterableAttribute ( Filterable attribute 6208 )
CatDisplayCategoryFilterRange ( Filterable attribute range 5348 )
CatDisplayCategoryPriceRange ( Display category price range 5349 )
CatDisplayCategorySharedInfo ( The shared information between multiple CatDisplayCategoryTable entries 2829 )
CatDisplayCategoryTable ( Navigation category 2830 )
CatDisplayCategoryTranslation ( Display category translation 6648 )
CatDisplayCategoryView ( Navigation category 3405 )
CatDisplayExternalCatalogAdded ( Manually-Hidden products view 4722 )
CatDisplayExternalCatalogAll ( Navigation category products view 4730 )
CatDisplayExternalCatalogCategory ( Manually hidden products in the navigation categories 4691 )
CatDisplayExternalCatalogOriginal ( Procurement category products view 4723 )
CatDisplayExternalCatalogOverride ( Manually-Hidden products view 4724 )
CatDisplayExternalCatalogSifted ( Filtered procurement category products view 4726 )
CatDisplayExternalCatalogSite ( Procurement category products view 4725 )
CatDisplayExternalCatalogSiteAll ( Navigation category products view 4731 )
CatDisplayExternalCatalogSiteAllActive ( Navigation category external catalogs view for site (active procurement category) 100293 )
CatDisplayExternalCatalogSiteSifted ( Filtered procurement category products view 4727 )
CatDisplayProductAdded ( Manually-Hidden products view 4695 )
CatDisplayProductAll ( Navigation category products view 4696 )
CatDisplayProductCategory ( Manually hidden products in the navigation categories 4692 )
CatDisplayProductOriginal ( Procurement category products view 4698 )
CatDisplayProductOverride ( Manually-Hidden products view 4699 )
CatDisplayProductSifted ( Filtered procurement category products view 4697 )
CatDisplayProductSite ( Procurement category products view 4700 )
CatDisplayProductSiteAll ( Navigation category products view 4701 )
CatDisplayProductSiteAllActive ( Navigation category product view for site (active procurement category) 100294 )
CatDisplayProductSiteSifted ( Filtered procurement category products view 4702 )
CatDisplaySharedDataTranslation ( Shared data translation 6650 )
CatDisplayVendorAdded ( Manually-Hidden products view 4736 )
CatDisplayVendorAll ( Navigation category products view 4743 )
CatDisplayVendorCategory ( Manually hidden products in the navigation categories 4694 )
CatDisplayVendorOriginal ( Procurement category products view 4737 )
CatDisplayVendorOverride ( Manually-Hidden products view 4738 )
CatDisplayVendorSifted ( Filtered procurement category products view 4741 )
CatDisplayVendorSite ( Procurement category products view 4739 )
CatDisplayVendorSiteAll ( Navigation category products view 4744 )
CatDisplayVendorSiteAllActive ( Navigation category vendor view for site (active procurement category) 100295 )
CatDisplayVendorSiteSifted ( Filtered procurement category products view 4742 )
CatDistinctProductReference ( Product reference 4653 )
CategoryTable ( Category table 2611 )
CatExternalCatalog ( External catalog 2588 )
CatExternalCatalogCategories ( External catalog categories 2606 )
CatExternalCatalogFilter ( External catalogs 6245 )
CatExternalCatalogProperties ( External catalog session properties 2599 )
CatExternalCatalogQuote ( External catalog quotation 5383 )
CatExternalCatalogTranslation ( External catalog 6942 )
CatExternalCatalogVendor ( Vend external catalog 3669 )
CatExternalCatalogVendorCategory ( External catalog vendor category 100296 )
CatExternalHostedProduct ( External hosted product 2719 )
CatExternalMessageFormat ( External message format 2603 )
CatExternalQuoteProductReference ( External quotation product reference 4656 )
CatExternalRunTimeAttributes ( External run time attributes 2723 )
CatExternalVendorBasketSettings ( External catalog vendor basket settings 2892 )
CatExternalVendorSiteSettings ( External vendor site settings 2595 )
CatParameters ( Vendor catalog import parameters 7068 )
CatProcureCatalogPriceRange ( Procurement catalog price range 6210 )
CatProcureCatalogTable ( Procurement catalogs 2841 )
CatProcureCatalogTranslation ( Shared data translation 100040 )
CatProcurementCache ( Procurement cache 5469 )
CatProcurementCatalogProductSiteAll ( Navigation category products view 10770 )
CatProductAttributeFilter ( Product attributes 5488 )
CatProductFilter ( External catalogs 6246 )
CatProductReference ( Product reference 4652 )
CatProductSearchableAttributeFilter ( Searchable attribute 6288 )
CatTmpExternalCatalogCategory ( External catalog procurement category 100041 )
CatUserReview ( User reviews 6872 )
CatUserReviewComment ( User review comments 6875 )
CatUserReviewComputedProductRating ( Average user product ratings 6876 )
CatUserReviewComputedVendorRating ( Average user vendor ratings 6877 )
CatUserReviewProduct ( User product reviews 6873 )
CatUserReviewSettings ( User review settings 6878 )
CatUserReviewVendor ( User vendor reviews 6874 )
CatVendCatalogFilePerLegalEntity ( Catalog file per legal entity 100297 )
CatVendCatalogFileStatusInLegalEntity ( Catalog file status in legal entity 100298 )
CatVendCatalogFileTotalApprovedProducts ( Total approved products in a catalog file 100299 )
CatVendCatalogFileTotalProducts ( Total products in a catalog file 100300 )
CatVendCatalogFileTotalReleasedInLE ( Total products released to legal entity 100301 )
CatVendExternalCatalog ( Vend external catalog 2605 )
CatVendorApprovedProduct ( Vendor approved products 5183 )
CatVendorBooleanValue ( The value of the Boolean data type for the attributes 5205 )
CatVendorCatalog ( Vendor catalogs 3289 )
CatVendorCatalogImportEventLog ( Catalog import event log 5002 )
CatVendorCatalogMaintenanceRequest ( Dependent 4811 )
CatVendorCatalogProductPerCompany ( Catalog Released products 7773 )
CatVendorChannel ( Vendor configuration 4825 )
CatVendorCriterionGroupAverage ( Average ratings per vendor and category 7894 )
CatVendorCurrencyValue ( Currency attribute values 9851 )
CatVendorDateTimeValue ( The value of the DateTime data type for the attributes 5207 )
CatVendorFloatValue ( The value of the Float data type for the attributes 5208 )
CatVendorIntValue ( The value of the Integer data type for the attributes 5209 )
CatVendorProductCandidate ( Product candidate 3409 )
CatVendorProductCandidateImage ( Product image 5186 )
CatVendorProductCandidatePrice ( Product price 4813 )
CatVendorProductTextTranslation ( Product text translation 5187 )
CatVendorReleaseCatalog ( Release catalog to legal entity 4810 )
CatVendorSchemaDownloadLog ( Schema download log 4809 )
CatVendorTextValue ( The value of the Text data type for the attributes 5211 )
CatVendorTextValueTranslation ( The localization of properties of the attributes 5212 )
CatVendorTmpProductAttribute ( Catalog import product attribute values 100042 )
CatVendProdCandidateAttributeValue ( The base table for other value tables that each stores values of a different data type 5210 )
CCTmpStatistics ( Statistics 8001 )
ChequeTmp ( ChequeTmp 9908 )
ChequeTmp_FR ( ChequeTmp_FR 9914 )
CollabSiteLink ( Collaboration workspace associations 100043 )
CollabSiteParameters ( General settings for collaboration workspaces 2681 )
CollabSiteTable ( Collaboration workspace URLs 100044 )
CommissionCalc ( Commission rates 35 )
CommissionCustomerGroup ( Commission customer group 36 )
CommissionItemGroup ( Commission item group 37 )
CommissionSalesGroup ( Commission sales group 38 )
CommissionSalesRep ( Commission sales rep. 39 )
CommissionTrans ( Commission transactions 40 )
Common ( Common 65535 )
CompanyCurrencyConversion ( Company currency conversion 1364 )
CompanyDefaultLocation ( Legal entity default locations 4784 )
CompanyImage ( Company images 1394 )
CompanyInfo ( Legal entities 41 )
CompanyNAFCode ( NAF codes 1120 )
CompanyView ( Company 1475 )
ConfigChoice ( Configuration selection 42 )
ConfigGroup ( Configuration groups 43 )
ContactPerson ( Contacts 520 )
ContentType ( Content types 7366 )
ConvInventPriceIsZeroTmp ( Items with prices converted to zero 10745 )
COSAccrualTable ( Accrual schemes 1238 )
COSAllocation ( Allocation 1828 )
COSAllocationLine ( Allocation line 1829 )
COSCalcTrans ( Calculation transactions 1830 )
COSCalculation ( Calculation 1831 )
COSCalculationReportTmpLine ( Calculation report lines 100045 )
COSCostAccrual ( Accruals 1832 )
COSCostBalances ( Cost balances 1833 )
COSCostBudget ( Cost budget 1834 )
COSCostDistribution ( Cost distribution 1835 )
COSCostDistributionLine ( Cost distribution lines 1836 )
COSCostPercent ( Cost splitting 1838 )
COSCostRates ( Maintain cost rates 1839 )
COSCostTrans ( Cost transaction 1840 )
COSDiffLedgerTmp ( Cost category accounting 10048 )
COSDimensionAttributeLink ( Dimension attribute link 7273 )
COSHierarchy ( Hierarchies 1842 )
COSHierarchyLinear ( Hierarchy levels 114 )
COSHierDivision ( Divisions 1843 )
COSHierStructure ( Hierarchy structure 1845 )
COSJournalNameTab ( Journal names 1846 )
COSJournalTable ( Register transactions 1847 )
COSJournalTrans ( Journal transaction 1848 )
COSJournalTxt ( Ledger journal texts 1849 )
COSLedgerAllocDim ( Checklist, cost categories 1850 )
COSLedgerControlDim ( Dimension posting control 1851 )
COSLedgerLine ( Line details 1852 )
COSLedgerReference ( Cost category reference 1854 )
COSLedgerTable ( Cost categories 1855 )
COSLine ( Cost line 1856 )
COSLineCalculation ( Calculate lines 2393 )
COSLineLinear ( Line structure for EDS 1436 )
COSLineStructure ( Line structures 1857 )
COSLineSum ( Line total 1858 )
COSParameters ( Parameter 1859 )
COSPlanAccounts ( Plan cost category 1860 )
COSPlanCalculation ( Calculation setup 1862 )
COSPlanCostTrans ( Transactions/Budget 1863 )
COSPlanDimensions ( Plan dimensions 1864 )
COSPlanLineCost ( Cost allocation 1865 )
COSPlanLines ( Plan positions 1866 )
COSPlanLineTrans ( Planning, line movements 1867 )
COSPlanModel ( Forecast model 1868 )
COSPlanTable ( Plan table 1869 )
COSPlanWorkLoad ( Import service plan 1870 )
COSPlanWorkTrans ( Plan service transactions 1872 )
COSPlanWorkUnits ( Plan service units 1873 )
COSPrintReportLine ( EDS sum line 1900 )
COSRateCalcDefinition ( Cost rate calculation 1874 )
COSReference ( Reference table 1875 )
COSReferenceLine ( Reference table values 1876 )
COSReport ( Cost accounting report 1877 )
COSReportColumn ( Report columns 1879 )
COSReportLine ( Report lines 1880 )
COSReportPrintTmp ( COSReportPrintTmp 10473 )
CostControlTransCommittedCost ( Committed cost updates 2353 )
CostControlTransCommittedCostCube ( Committed cost updates 10152 )
CostingVersion ( Costing versions 2449 )
CostingVersionMap ( Costing version map 1374 )
COStmpAccrualTrans ( Overview accrual transactions 1110 )
COStmpAllowedDimensions ( Allowed on 2451 )
COStmpBalancesDimHier ( Balances 1881 )
COStmpCalcBalances ( Balances 1883 )
COSTmpCalcHierarchy ( Calculated value 1885 )
COStmpCalculate ( Calculated value 1886 )
COStmpCostBalances ( Cost balances 1887 )
COSTmpCostTrans ( Calculated value 1890 )
COSTmpDateSumCode ( Date totals 1891 )
COSTmpDimensions ( Calculated value 1892 )
COSTmpLine ( Calculated value 1894 )
COSTmpLineBudget ( Calculated value 1895 )
COStmpOffsetBalancesDimHier ( Calculated value 1896 )
COStmpPlanTrans ( Calculated value 1898 )
COSTmpReport ( Calculated value 1899 )
COSTmpReportSum ( Calculated value 1901 )
COStmpUsedDimensions ( Dimensions used 544 )
COStmpVersion ( Calculated value 1902 )
COStmpWorkBalances ( Service balances 1903 )
COSTmpWorkUnits ( Calculated value 1905 )
COSTransTmp ( Transaction journal 7547 )
CostSheetCache ( CostSheetCache 6107 )
CostSheetCalculationBasis ( Costing sheet calculation basis 2797 )
CostSheetCalculationFactor ( Costing sheet calculation factor 1541 )
CostSheetCostGroupImpact ( CostSheetCostGroupImpact 2869 )
CostSheetNodeTable ( Costing sheet node 2739 )
CostSheetTable ( Costing sheet 2780 )
CostSheetTmpNodeTable ( Costing sheet 2806 )
CostTmpCalcCode2ProdCalcTrans (  2853 )
CostTmpCalcTrans ( Cost transactions 2737 )
CostTmpCostRollup ( The CostTmpCostRollup table contains the amount for each cost group 2467 )
CostTmpSheetCalcResult ( Costing sheet result 2761 )
COSVersion ( Calculation version 1906 )
COSWorkBudget ( Service budget 1908 )
COSWorkDistribution ( Service distribution 1909 )
COSWorkDistributionLine ( Service distribution lines 1910 )
COSWorkLine ( Service line 1911 )
COSWorkOffset ( Service balances, offset transaction 1912 )
COSWorkTrans ( Service transaction 1913 )
CreditCardAuthTrans ( Credit card transactions 2347 )
CreditCardCust ( Customer credit card 2349 )
CreditCardCustNumber ( Credit card numbers 2748 )
CreditCardMicrosoftSetup ( Windows Live ID setup 2753 )
CreditCardProcessors ( Payment services 2351 )
CreditCardProcessorsSecurity ( Payment services security 2774 )
CreditCardTypeCurrency ( Credit card type currency 10458 )
CreditCardTypeSetup ( Credit card type setup 10457 )
Currency ( Currency table 47 )
CurrencyBLWI ( BLWI currencies 1051 )
CurrencyCodeMap ( Currency code map 2049 )
CurrencyEuroDenomination ( Denomination currency 6895 )
CurrencyGender ( Currency gender 7888 )
CurrencyLedgerGainLossAccount ( Currency ledger revaluation account 6896 )
CurrencyOnlineConversion ( Currency online conversion 6910 )
CustAccountStatementExtTmp ( Customer - external account statement 10578 )
CustAging ( Customer aging snapshot header 3145 )
CustAgingLegalEntity ( Customer aging snapshot 5256 )
CustAgingLegalEntityView ( Customer aging snapshot 5397 )
CustAgingLine ( Customer aging snapshot line 3146 )
CustAgingLineView ( Customer aging snapshot 5398 )
CustAgingReportTmp ( Customer aging report 10601 )
CustAuditorTmp ( Customer auditor 7780 )
CustBalanceListTmp_MY ( Customer balance list with credit limit 4879 )
CustBankAccount ( Customer bank accounts 50 )
CustBillOfExchangeInvoice ( Bill of exchange invoices 1595 )
CustBillOfExchangeJour ( Bill of exchange journal 1476 )
CustBillOfExchangeOpenTransTmp_ES ( Open cartera transactions by due date 7248 )
CustBillOfExchangeReportTmp ( Bill of exchange journal 5596 )
CustBillOfExchangeTrans ( Bill of exchange lines 1503 )
CustBillOpenTrans_FR ( List of open customer drafts 7299 )
CustCheckSettlement ( Customer settlement 7783 )
CustClassificationGroup ( Customer classification groups 1101 )
CustCOD ( Customer transactions 6226 )
CustCollectionJourTmp ( Collection letter note 10603 )
CustCollectionLetterJour ( Collection letter journal 51 )
CustCollectionLetterLine ( Collection letter lines 52 )
CustCollectionLetterTable ( Collection letter setup 53 )
CustCollectionLetterTrans ( Collection letter transactions 54 )
CustCollectionsAgent ( Collections agent 2180 )
CustCollectionsAgentPool ( Customer collections agent and customer pool relationships 2183 )
CustCollectionsCaseDetail ( Customer collections cases 5563 )
CustCollectionsContact ( Customer collections contact person 3386 )
CustCollectionsPool ( Customer pools 2174 )
CustCollectionsTmpCriteria ( Collection customer pool query criteria 2177 )
CustConfirmJour ( Sales order confirmations 55 )
CustConfirmSalesLink ( Customer confirmation - sales order relation table 1501 )
CustConfirmTrans ( Confirmation lines 56 )
CustDefaultLocation ( Customer default locations 4780 )
CustDispute ( Dispute status 3213 )
CustDomStatementTmp_BE ( Payment control 5842 )
CustDueReportDetailTmp ( Detailed due day list 100046 )
CustEgiroFtxAnalyse ( eGiro free-text analysis 2696 )
CustEgiroParameters ( eGiro parameters 2697 )
CustEgiroSegmentTrans ( eGiro segments 2698 )
CustEinvoiceDatasource ( eInvoice data source 8692 )
CustEinvoiceDatasourceFields ( eInvoice fields 8693 )
CustEinvoiceHeader ( eInvoice header 8694 )
CustEinvoiceIntegration ( Integration 8695 )
CustEinvoiceIntegrationError ( Error codes 8696 )
CustEinvoiceIntegrationPaymModeChg ( Integration payment mode change 8697 )
CustEinvoiceIntegrationTrans ( E-Invoice transactions 8698 )
CustEinvoiceIntegrationTypeTable ( Integration type 2693 )
CustEinvoiceLines ( eInvoice lines 2694 )
CustEinvoiceTable ( e-invoice 2695 )
CustExchRateAdjSimulationTmp ( Simulation 7775 )
CustExchRateAdjustment ( Foreign currency revaluation 1126 )
CustFormletterDocument ( Customer, form setup 1307 )
CustFormletterParameters ( Customer, form parameters 1305 )
CustGrossMarginbyAccount_NA ( Customer invoice journal 5566 )
CustGrossMarginbyItem_NA ( Customer invoice journal 5567 )
CustGroup ( Customer groups 57 )
CustInPaymentCHTmp ( Import file 5843 )
CustInPaymTmpNO ( Import file 7346 )
CustInPaymTmpSE ( Import file 7487 )
CustInterest ( Customer interest codes 58 )
CustInterestAdjustmentHistory ( History 9733 )
CustInterestFee ( Customer interest code currency details 59 )
CustInterestJour ( Interest journal 60 )
CustInterestNoteTmp ( Interest note 5107 )
CustInterestRange ( Range 2912 )
CustInterestTrans ( Interest lines 61 )
CustInterestVersion ( Customer interest code versions 4575 )
CustInterestVersionDetail ( Customer interest version detail 4576 )
CustInterestWaiveLimit ( Interest waive limit 7137 )
CustInterestWriteOffUnPostedJournal ( Interest write off un posted  journal 7230 )
CustInvoiceBackorderLine ( Backorder invoice lines 1570 )
CustInvoiceDistributionTemplate ( Free text invoice template line - %1 7151 )
CustInvoiceJour ( Customer invoice journal 62 )
CustInvoiceJourTmp ( Customer invoice journal 7892 )
CustInvoiceLine ( Customer free text invoice lines 63 )
CustInvoiceLineIdRef ( Customer transaction line identifier 3438 )
CustInvoiceLineMapping ( CustInvoiceLineMapping 4881 )
CustInvoiceLineTemplate ( Free text invoice template lines - %1 7148 )
CustInvoiceMarkupTransTemplate ( Template charges 7150 )
CustInvoicePackingSlipQuantityMatch ( Customer invoice - packing slip matching 7229 )
CustInvoiceSalesLink ( Customer invoice - sales order relation table 1500 )
CustInvoiceSettled_TransDateTmp_ES ( Bill-Invoice relation by transaction date 5629 )
CustInvoiceSpecTmp ( Invoice specification 10418 )
CustInvoiceStandardLineTemplate ( Customer free text invoice template lines 7149 )
CustInvoiceTable ( Customer free text invoice 1209 )
CustInvoiceTemplate ( Free text invoice template 7147 )
CustInvoiceTmp ( Open invoice transactions 7506 )
CustInvoiceTrans ( Customer invoice lines 64 )
CustInvoiceTransExpanded ( Customer invoice lines 7070 )
CustInvoiceVolumeTmp ( Invoice turnover report 7779 )
CustInvoiceVolumeTmp_BE ( Invoice turnover report 10167 )
CustLedger ( Customer posting profiles 65 )
CustLedgerAccounts ( Customer ledger accounts 66 )
CustLedgerReconciliationTmp ( Customer 10779 )
CustLedgerTransTmp ( History by transaction 6186 )
CustLedgerTransTypeMapping ( Settlement transaction mapping 5131 )
CustOpenInvoices ( Open customer invoices 118 )
CustOpenTransWithIdRef ( Open customer transactions with IDs 2455 )
CustOutAttendingNote_BillRemittanceTmp ( Bill group 10657 )
CustOutAttendingNoteATTmp_EDIFACT ( Data medium accompanying note 7772 )
CustOutAttendingNoteTmpDE_DTAUS ( Diskette accompanying note 100047 )
CustOutPaymOrderCHTmp_DebitDirect ( Payment order 5845 )
CustOutPaymOrderCHTmp_LSV ( Bank payment order 5846 )
CustPackingSlipBackorderLine ( Backorder packing slip lines 1573 )
CustPackingSlipBackorderLineHistory ( Backorder packing slip lines 100048 )
CustPackingSlipJour ( Customer packing slips 71 )
CustPackingSlipSalesLink ( Customer packing slip - sales order relation table 1502 )
CustPackingSlipTrans ( Customer - packing slip lines 72 )
CustPackingSlipTransExpanded ( Customer packing slip lines 7238 )
CustPackingSlipTransHistory ( Customer packing slip line history 100049 )
CustPackingSlipVersion ( Customer packing slip versions 100050 )
CustParameters ( Customer parameters 67 )
CustPaymDates_BE ( Execution date 115 )
CustPaymentJournalTmp_NA ( Customer payment journal 5900 )
CustPaymFee ( Customer payment fee 1542 )
CustPaymFormat ( File formats for methods of payment (customers) 1171 )
CustPaymManFee ( Payment fee 869 )
CustPaymManFeeHist ( History on payment fee 936 )
CustPaymManFeeHistTmp ( Payment fee list 5381 )
CustPaymManFeeLines ( Fee lines for payment 1271 )
CustPaymManFile ( File extract 909 )
CustPaymManParmTrans ( Payment parameter transactions 1301 )
CustPaymManPostReq ( Validation 913 )
CustPaymManStepChange ( Payment step process changed 1266 )
CustPaymManStepPosting ( Payment step posting 860 )
CustPaymManStepTable ( Payment step process 859 )
CustPaymManTrans ( Payment transactions 861 )
CustPaymManTransHist ( History on payment 862 )
CustPaymManUnpaidTmp ( Voided payment transactions 4841 )
CustPaymMethodAttribute ( Payment attributes in payment proposal 386 )
CustPaymMethodVal ( Payment control in customer journals 777 )
CustPaymModeFee ( Customer payment fee setup 1543 )
CustPaymModeFeeInterval ( Customer payment fee interval 1613 )
CustPaymModeSpec ( Customer specifications 1075 )
CustPaymModeTable ( Methods of payment - customers 70 )
CustPaymReconciliationPrint_DK_BSTmp ( Customer - payment reconciliation 5226 )
CustPaymSched ( Customer - payment schedules 68 )
CustPaymSchedLine ( Customer payment schedule lines 69 )
CustPostPaymJournalTmp ( Customer posted payment journal 4859 )
CustPrenote ( Customer prenotes 2913 )
CustProvisionalBalanceTmp ( Customers 7900 )
CustQuotationConfirmJour ( Quotation confirmation 120 )
CustQuotationConfirmSalesLink ( Sales quotation confirmation - sales order relation table 122 )
CustQuotationConfirmTrans ( Quotation confirmation lines 121 )
CustQuotationJour ( Quotation journal 73 )
CustQuotationSalesLink ( Sales quotation - sales order relation table 1497 )
CustQuotationTrans ( Quotation lines 74 )
CustRecurrenceInvoice ( Customer invoice recurrence setup 7152 )
CustRecurrenceInvoiceGroup ( Post recurring invoices 7635 )
CustRelatedInvoice ( Related invoices 4882 )
CustSalesItemGroupStatisticsTmp_NA ( Sales item group statistics 5620 )
CustSalesOpenLines ( Order lines 6284 )
CustSalesOpenOrders_NA ( Open sales orders 6111 )
CustSettlement ( Customer settlement 75 )
CustSettlementLine ( Customer settlement lines 3439 )
CustSettlementPriority ( Settlement priority 3132 )
CustSettlementTransactionPriority ( Settlement priority 4596 )
CustShippedNotInvoicedTmp_NA ( Shipped not invoiced 4855 )
CustStatementDirTmp ( Customer account statement 2369 )
CustStatisticsGroup ( Statistics group 76 )
CustTable ( Customers 77 )
CustTableCube ( Customers 5312 )
CustTmpAccountSum ( Account totals 1377 )
CustTrans ( Customer transactions 78 )
CustTransCashDisc ( Customer cash discount 1045 )
CustTransIdRef ( Customer transaction identifiers 2093 )
CustTransListTmp ( Customer transactions, that is, invoices, payments, etc. 5598 )
CustTransMarkedOpenLine ( Mark transaction lines 3440 )
CustTransOpen ( Open customer transactions 865 )
CustTransOpenLine ( Open customer transaction lines 3441 )
CustTransOpenPerDateTmp ( Open transactions 5599 )
CustTransOpenTmp_ES ( Open transactions 5630 )
CustTransTotalSales ( Total customer sales 5313 )
CustUserRequest ( Customer user requests 100051 )
CustVendAccountStatementIntTmp ( Account statement 5600 )
CustVendAgingStaticticsAutoReportTmp ( Account totals 10121 )
CustVendAifPaymTable ( Set up outbound ports for electronic payments 100052 )
CustVendCreditInvoicingJour ( Credit invoicing jour 1585 )
CustVendCreditInvoicingLine ( Credit invoicing lines 1592 )
CustVendCreditInvoicingTable ( Credit invoicing header 1593 )
CustVendCreditInvoicingTrans ( Credit invoicing transactions 1594 )
CustVendExchRateAdjustment ( Foreign currency revaluation 100276 )
CustVendExternalItem ( External item descriptions 768 )
CustVendGroup ( Customer and vendor group map 79 )
CustVendInvoiceJour ( Invoice journal 80 )
CustVendInvoiceTrans ( Invoice lines 81 )
CustVendItemGroup ( External item description group 769 )
CustVendLedger ( Customer and vendor posting profiles map 82 )
CustVendLedgerAccounts ( Customer and vendor ledger accounts map 83 )
CustVendLedgerDimensions ( Customer and vendor ledger accounts map 3687 )
CustVendNACHAIATInfoTable_US ( NACHA IAT information 6019 )
CustVendNegInstJour ( Customer and vendor negotiable instrument journal map 1954 )
CustVendNegInstTrans ( Customer and vendor negotiable instrument lines map 1955 )
CustVendOutTmp ( Electronic payment 5289 )
CustVendPaymentSched ( Customer and vendor payment schedule map 84 )
CustVendPaymentSchedLine ( Customer and vendor payment schedule lines map 85 )
CustVendPaymFormatTable ( Customer and vendor payment format map 1826 )
CustVendPaymJournalFee ( Payment journal fee 1545 )
CustVendPaymJournalTmp ( Payment lines 7776 )
CustVendPaymModeFeeIntervalMap ( Customer and vendor payment fee interval map 1714 )
CustVendPaymModeFeeMap ( Customer and vendor method of payment, payment fee map 1712 )
CustVendPaymModeSpec ( Customer and vendor payment specification map 1827 )
CustVendPaymModeTable ( Customer and vendor method of payment map 1589 )
CustVendPaymProcessingData ( Payment processing data 7242 )
CustVendPaymProposalLine ( Payment proposal line 470 )
CustVendPaymProposalTmp ( Invoices and payments 10600 )
CustVendPDCReceipt ( Temporary table 9856 )
CustVendPDCRegister ( Postdated checks register 7953 )
CustVendSettlement ( Customer and vendor settlements map 88 )
CustVendTable ( Customer and vendor table map 89 )
CustVendTmpCreditInvoicing ( Credit notes 1597 )
CustVendTmpOpenTransBalances ( Balance 2173 )
CustVendTmpPaymProposalReport ( Invoices and payments 117 )
CustVendTrans ( Customer and vendor transactions map 90 )
CustVendTransAging ( Customer or vendor account number 12143 )
CustVendTransCashDisc ( Customer and vendor cash discount transactions map 1385 )
CustVendTransOpen ( Customer and vendor open transactions map 877 )
CustVendTransportCalendarSetup ( Transport calendar 376 )
CustVendTransportPointLine ( Transport points 377 )
CustVendTransportTime ( Transport time 378 )
DataArea ( Companies 65533 )
DataAreaTemp ( The DataAreaTemp table stores data area IDs 100053 )
DatabaseLog ( Database logs 65508 )
DefaultDimensionView ( Default financial dimensions 10170 )
DestinationCode ( Destination code 929 )
DigitalCertificateTmp ( Digital certificate 100056 )
DimAttributeAssetGroup ( Fixed asset groups 11751 )
DimAttributeAssetTable ( Fixed assets 11752 )
DimAttributeBankAccountTable ( Bank accounts 11753 )
DimAttributeCompanyInfo ( Legal entities 11754 )
DimAttributeCustGroup ( Customer groups 11755 )
DimAttributeCustTable ( Customers 11756 )
DimAttributeHcmJob ( Jobs 11757 )
DimAttributeHcmPosition ( Positions 11758 )
DimAttributeHcmWorker ( Workers 11759 )
DimAttributeInventItemGroup ( Item groups 11760 )
DimAttributeInventTable ( Items 11761 )
DimAttributeMainAccount ( Main accounts 11762 )
DimAttributeOMBusinessUnit ( Business units 11763 )
DimAttributeOMCostCenter ( Cost centers 11764 )
DimAttributeOMDepartment ( Departments 11765 )
DimAttributeOMValueStream ( Value streams 11766 )
DimAttributeProjGroup ( Project groups 11767 )
DimAttributeProjInvoiceTable ( Project contracts 11768 )
DimAttributeProjTable ( Projects 11769 )
DimAttributeSmmBusRelTable ( Prospects 11770 )
DimAttributeSmmCampaignTable ( Campaigns 11771 )
DimAttributeTrvTravelTxt ( Expense purposes 11772 )
DimAttributeVendGroup ( Vendor groups 11773 )
DimAttributeVendTable ( Vendors 11774 )
DimAttributeWrkCtrResourceGroup ( Resource groups 11775 )
DimAttributeWrkCtrTable ( Resources 11776 )
DimensionAlias ( Ledger account alias 299 )
DimensionAttribute ( Dimension 362 )
DimensionAttributeDirCategory ( Dimension category 372 )
DimensionAttributeLevelValue ( Dimension code value 380 )
DimensionAttributeLevelValueAllView ( Dimension code value 100302 )
DimensionAttributeLevelValueView ( Dimension code value 4466 )
DimensionAttributeSet ( Dimension code set 3625 )
DimensionAttributeSetItem ( Dimension code set value 3626 )
DimensionAttributeTranslation ( Dimension attribute translation 100057 )
DimensionAttributeValue ( Dimension code 381 )
DimensionAttributeValueCombination ( Dimension code combination 385 )
DimensionAttributeValueCombinationStatus ( Dimension code combination status 388 )
DimensionAttributeValueConsolidation ( Dimension consolidation code 100058 )
DimensionAttributeValueCostAccounting ( Dimension code cost accounting 395 )
DimensionAttributeValueFinancialStmt ( Dimension code financial statement 420 )
DimensionAttributeValueGroup ( Dimension code group 467 )
DimensionAttributeValueGroupCombination ( Dimension code group combination 473 )
DimensionAttributeValueGroupStatus ( Dimension code group combination status 529 )
DimensionAttributeValueSet ( Dimension code set 3260 )
DimensionAttributeValueSetItem ( Dimension code set value 3261 )
DimensionAttributeValueSetItemView ( Dimension code set value 4467 )
DimensionAttributeValueTotallingCriteria ( From value 583 )
DimensionAttrValueCOAOverride ( Dimension code chart of accounts override 6908 )
DimensionAttrValueLedgerOverride ( Dimension code ledger override 6903 )
DimensionConstraintNode ( Dimension constraint 605 )
DimensionConstraintNodeCriteria ( Dimension constraint criteria 620 )
DimensionConstraintTree ( Dimension constraint tree 646 )
DimensionDefaultMap ( Default dimensions 6815 )
DimensionFinancialTag ( Custom list financial dimension 656 )
DimensionFocusBalance ( Dimension set balance 7399 )
DimensionFocusBalanceCalculationView ( Dimension set balance 7890 )
DimensionFocusBalanceCube ( Dimension set balance 9839 )
DimensionFocusBalanceTmp ( Dimension set balance temporary data 7931 )
DimensionFocusLedgerDimensionReference ( Dimension set ledger dimension reference 7403 )
DimensionFocusUnprocessedTransactions ( Dimension set unprocessed transactions 7402 )
DimensionHierarchy ( Dimension set 668 )
DimensionHierarchyLevel ( Dimension set level 684 )
DimensionHierarchyLevelView ( Dimension set level 5340 )
DimensionRelationshipConstraint ( Select relationships 7717 )
DimensionRule ( Dimension rule 5677 )
DimensionRuleAppliedHierarchy ( Dimension rule applied hierarchy 5678 )
DimensionRuleCriteria ( Dimension rule criteria 5679 )
DimensionRules ( Dimension rule 100303 )
DimensionSynchronize ( Dimension synchronize 100059 )
DimensionSynchronizeAccountStructure ( Dimension synchronize account structure 100060 )
DimensionSynchronizeLedger ( Dimension synchronize ledger 100061 )
DimensionValueGroupJournalControlStatus ( Dimension group journal status 2935 )
DIOTAdditionalInfoForNoVendor_MX ( DIOT additional information for no vendor 7292 )
DIOTAddlInfoForNoVendorLedger_MX ( DIOT additional information for no vendor 10677 )
DIOTAddlInfoForNoVendorProj_MX ( DIOT additional information for no vendor 10676 )
DIOTDeclarationConcept_MX ( DIOT declaration concept 7250 )
DIOTDeclarationTaxCode_MX ( DIOT concept tax code 7252 )
DIOTDeclarationTmp_MX ( DIOT declaration report 7606 )
DirAddressBook ( Address books 2948 )
DirAddressBookExternalPartyView ( System address book and external party relationships 100304 )
DirAddressBookInternalPersonView ( System address book and internal party relationships 100305 )
DirAddressBookParty ( Global address book party relationships 2949 )
DirAddressBookPartyAllView ( All address book and party relationships 100306 )
DirAddressBookPartyView ( Address book and party relationships 100307 )
DirAddressBookSecurityRole ( Enter address books and assign role permissions 7954 )
DirAddressBookTeam ( Address book and team association 100062 )
DirCheckFullNameTmp ( Check full name 7306 )
DirDunsNumber ( DUNS numbers 7736 )
DirExternalRole ( External role 9872 )
DirNameAffix ( Name affixes 2974 )
DirNameSequence ( Name sequences 2971 )
DirNameSequenceTranslation ( Name sequence translation 4410 )
DirOrganization ( Organizations 2978 )
DirOrganizationBase ( Internal and external organizations 6886 )
DirOrganizationName ( Organization name 4806 )
DirOrgPersonRelations ( Person relations 2604 )
DirParameters ( Global address book parameters 2750 )
DirPartyContactInfoView ( Party contact information view 5605 )
DirPartyEcoResCategory ( Set up categories 4071 )
DirPartyListPageView ( Global address book list view 9956 )
DirPartyLocation ( Party location relationships 2952 )
DirPartyLocationPrivateRoles ( Party location private roles 100063 )
DirPartyLocationRole ( Party location and role relationships 4264 )
DirPartyLookupGridView ( Party name components 7155 )
DirPartyMap ( Party map 7710 )
DirPartyNamePrimaryAddressView ( Location address view 6442 )
DirPartyNameView ( Global address book view 7957 )
DirPartyPostalAddressView ( Party postal address view 5078 )
DirPartyPrimaryContactInfoView ( Party contact information view 100308 )
DirPartyRelationship ( Party relationships 2601 )
DirPartyRelationships_Child ( Relationships 7806 )
DirPartyRelationships_Parent ( Relationships 7793 )
DirPartyRelationshipsUnionView ( Relationships 7808 )
DirPartyTable ( Global address book 2303 )
DirPartyTypeView ( Global address book type view 100518 )
DirPartyView ( Global address book roles 6095 )
DirPerson ( People 2975 )
DirPersonName ( Person name 4807 )
DirPersonUser ( User to person relationship 4830 )
DirRelationshipTypeTable ( Relationship types 2602 )
DirSubNameSequence ( Name sequence details 2972 )
DlvMode ( Mode of delivery 92 )
DlvReason ( Reason of delivery 1755 )
DlvTerm ( Terms of delivery 93 )
DOCommerceConfiguration ( Commerce Services configuration 100064 )
DOCommerceEntityGroupSyncState ( Synchronization state of entity groups 100065 )
DOCommerceMarketplaces ( Marketplaces 100066 )
DOCommerceOnlineStores ( Online stores 100067 )
DOCommercePriceDiscView ( Commerce Services price and discount view 100309 )
DOCommercePropertyBag ( Property bag 100068 )
DOCommonCloudErrors ( Cloud errors 100069 )
DOCommonPerformance ( Performance trace 100070 )
DOCommonPortServiceSubscription ( Port subscription mapping 100071 )
DOCommonRetryTable ( Retry this entity 100072 )
DOCommonServerState ( Server state 100073 )
DOCommonServiceCredentials ( Online services credentials 100074 )
DOCommonServicesAccount ( Online services account 100075 )
DOCommonServiceSubscription ( Online Services subscription 100076 )
DOCommonStagingTable ( Staging table 100077 )
DOCommonSyncStateTable ( Server state 100078 )
DocuDataSource ( Document data sources 100079 )
DocuDataSourcesView ( Data sources 100310 )
DocuField ( Document fields 94 )
DocuFileTypes ( Document file extensions 1133 )
DocuOpenFile ( Temporary files 1536 )
DocuParameters ( Document management parameters 96 )
DocuRef ( Document references 97 )
DocuTable ( Document tables 98 )
DocuTableEnabled ( Active document tables 1434 )
DocuTemplate ( Document templates 100080 )
DocuType ( Document types 99 )
DocuValue ( Document value 100 )
DocuValueMetaData ( Document file meta data 7367 )
DOSitesPageInfoTmp ( Page created date 100081 )
DOSitesSolution ( Sites solution table 100082 )
DOSitesSolutionPort ( Sites solution port 100083 )
DOSitesSolutionPortService ( SitesSolutionPortService 100084 )
EcoResApplicationControl ( Application control modifiers 4332 )
EcoResAttribute ( Attributes 4333 )
EcoResAttributeDefaultValue ( Default value for an attribute 4334 )
EcoResAttributeTranslation ( The localization of properties of the attributes 4335 )
EcoResAttributeType ( Attribute types 4343 )
EcoResAttributeTypeUnitOfMeasure ( Unit of measure for the attribute type 4344 )
EcoResAttributeValue ( Attribute values 4336 )
EcoResBooleanValue ( The value of the Boolean data type for the attributes 4337 )
EcoResBoundedAttributeTypeValue ( Attribute type boundaries 4338 )
EcoResCatalogControl ( Catalog control flags 4339 )
EcoResCategory ( Category 2665 )
EcoResCategoryAttribute ( Attributes 4340 )
EcoResCategoryAttributeLookup ( Category attribute lookup 7998 )
EcoResCategoryData ( Import commodity code 3263 )
EcoResCategoryHierarchy ( Category hierarchies 2660 )
EcoResCategoryHierarchyRole ( Category hierarchy roles 2664 )
EcoResCategoryHierarchyTranslation ( Category hierarchy translation 4589 )
EcoResCategoryInstanceValue ( Instance value for a category 5719 )
EcoResCategoryTranslation ( Category hierarchy translation 4593 )
EcoResColor ( Colors 3169 )
EcoResComponentControl ( Component control modifiers 4341 )
EcoResConfiguration ( Configurations 3170 )
EcoResCurrencyValue ( The value of the currency data type for the attributes 9996 )
EcoResDateTimeValue ( The value of the DateTime data type for the attributes 4342 )
EcoResDistinctProduct ( Products 3265 )
EcoResDistinctProductVariant ( Product variants 3266 )
EcoResEnumerationAttributeTypeValue ( Enumeration domain value 4345 )
EcoResFloatValue ( The value of the Float data type for the attributes 4346 )
EcoResInstanceValue ( Instance value 4347 )
EcoResIntValue ( The value of the Integer data type for the attributes 4348 )
EcoResProcurementCategoryExpanded ( Procurement category 6629 )
EcoResProduct ( Products 3270 )
EcoResProductAttributeValue ( Product attribute values 6460 )
EcoResProductCategory ( Product category assignment 3444 )
EcoResProductCategoryExpanded ( Product categories 7069 )
EcoResProductDimensionAttribute ( Product dimension attributes 3272 )
EcoResProductDimensionGroup ( Product dimension groups 3171 )
EcoResProductDimensionGroupFldSetup ( Product dimension group fields setup 3172 )
EcoResProductDimensionGroupProduct ( Products - dimension groups 10092 )
EcoResProductIdentifier ( Product number 4456 )
EcoResProductImage ( Image management 5213 )
EcoResProductInstanceValue ( Instance value for a product 4349 )
EcoResProductMaster ( Product masters 3267 )
EcoResProductMasterColor ( Colors assigned to product masters 3273 )
EcoResProductMasterConfiguration ( Configurations assigned to product masters 3274 )
EcoResProductMasterDimensionValue ( Product master - dimension values 3275 )
EcoResProductMasterModelingPolicy ( Product modeling policy 4457 )
EcoResProductMasterSize ( Sizes assigned to product masters 3277 )
EcoResProductParameters ( Product parameters 4144 )
EcoResProductRelation ( Posting status 5523 )
EcoResProductRelationTable ( The EcoResProductRelation table contains the defined relations between the products 2858 )
EcoResProductRelationType ( The types of relations that can be defined between the products 2859 )
EcoResProductRelationTypeTranslation ( The types of relations that can be defined between the products 6934 )
EcoResProductTranslation ( Product translation 6869 )
EcoResProductTranslations ( Product translation 7865 )
EcoResProductVariantColor ( Product variants colors 3280 )
EcoResProductVariantConfiguration ( Product variants configurations 3281 )
EcoResProductVariantDimensionValue ( Product variant - dimension values 3282 )
EcoResProductVariantSize ( Product variants sizes 3284 )
EcoResReleaseProductLegalEntity ( Legal entities assigned to products in release sessions 7050 )
EcoResReleaseProductLegalEntityLog ( Release product to legal entity log 7052 )
EcoResReleaseSession ( Release sessions 7028 )
EcoResReleaseSessionProduct ( Products in release sessions 7048 )
EcoResSalesCategoryExpanded ( Sales category 6628 )
EcoResShoppingPreferences ( Requisitioning options 4599 )
EcoResSize ( Sizes 3173 )
EcoResStorageDimensionGroup ( Storage dimension groups 6835 )
EcoResStorageDimensionGroupFldSetup ( Storage dimension group fields setup 6836 )
EcoResStorageDimensionGroupItem ( Items - storage dimension groups 6842 )
EcoResStorageDimensionGroupProduct ( Products - storage dimension groups 6837 )
EcoResTextValue ( The value of the Text data type for the attributes 4350 )
EcoResTextValueTranslation ( The localization of properties of the attributes 4351 )
EcoResTmpAttribute ( Temporary attributes 100085 )
EcoResTmpProductCategory ( Product procurement category 100086 )
EcoResTmpProductDimValue ( Product variant dimension value 3531 )
EcoResTmpProductImage ( Temporary image table 5214 )
EcoResTmpProductVariantSuggestion ( Product variant suggestions 3457 )
EcoResTrackingDimensionGroup ( Tracking dimension groups 6843 )
EcoResTrackingDimensionGroupFldSetup ( Tracking dimension group fields setup 6845 )
EcoResTrackingDimensionGroupItem ( Items - tracking dimension groups 6847 )
EcoResTrackingDimensionGroupProduct ( Products - tracking dimension groups 6848 )
EcoResValue ( The base table for other value tables that each stores values of a different data type 4352 )
ECPCustSignUp ( Sign up requests 992 )
ECPParameters ( Customer self-service parameters 948 )
ECPPresentation ( Presentations 975 )
EInvoiceJour_MX ( EInvoice 11154 )
EInvoiceParameters_MX ( Electronic invoice parameters  11196 )
EInvoiceReportTmp_MX ( EInvoice 100087 )
EInvoiceTrans_MX ( e-invoice lines 11349 )
EMSAssignment ( Assignment 5426 )
EMSConversion ( Environmental conversion 3540 )
EMSConversionFlowRelation ( Conversion flow relation 3548 )
EMSConversionLine ( Conversion lines 3541 )
EMSConversionProcessRelation ( Conversion process relation 4261 )
EMSDailyFlow ( Substance flow details 6229 )
EMSDailyFlowView ( Substance flow details 6279 )
EMSFlow ( Substance flow details 3546 )
EMSFlowBudget ( Substance budget 3543 )
EMSInvoiceRegisterFlowRelation ( Invoice register flow relation 3544 )
EMSMapFilterProcess ( Map filter to process relation 6552 )
EMSMapFilterSubstance ( Map filter to substance relation 6553 )
EMSMapFilterSubstanceCategory ( Map filter to substance category relation 6554 )
EMSMapPosition ( Process position 5793 )
EMSMeter ( Meters 3532 )
EMSMeterFlowRelation ( Meter flow relation 3547 )
EMSMeterReading ( Meter readings 3534 )
EMSParameter ( Parameter 3539 )
EMSProcess ( Process 3535 )
EMSProcessEquityShare ( Process equity share 4428 )
EMSProcessMap ( Process map 5646 )
EMSProcessMapFlowTmp ( Process map 5822 )
EMSProcessReference ( Process reference 3538 )
EMSProcessRelation ( Process relation 3542 )
EMSPurchOrderFlowRelation ( Purchase order  flow relation 3545 )
EMSSimulationRowTmp ( Environmental simulation 100088 )
EMSSimulationTriggerRowTmp ( Environmental simulation 100089 )
EMSSubstance ( Substance 3536 )
EMSSubstanceCategory ( Substance category 3537 )
EMSSubstanceEntryTmp ( EMSSubstanceEntryTmp 100090 )
EPDocuParameters ( Enterprise Portal document parameters 1557 )
EPGlobalParameters ( Enterprise Portal global parameters 2234 )
EPPersonalize ( Personalize 1484 )
EPPriceCalc ( Price query 1586 )
EPWebSiteParameters ( Web sites 6098 )
ESSActivitySite ( Activity site 6964 )
EUSalesList ( EU sales list 543 )
EUSalesListReportingGroup ( EU sales list reporting group 100091 )
EUSalesListReportingHeader ( EU sales list reporting header 100092 )
EUSalesListReportingLine ( EU sales list reporting line 100093 )
EventCompanyRule ( Alerts - companies with rules 1372 )
EventCUD ( Alerts - CUD event 288 )
EventInbox ( Alerts - event inbox 289 )
EventInboxData ( Alerts - event inbox data 290 )
EventParameters ( Alerts - parameters 291 )
EventRule ( Alerts - rule 292 )
EventRuleData ( Alerts - rule data 293 )
EventRuleField ( Alerts - rule field 294 )
EventRuleIgnore ( Alerts - due dates ignore log 295 )
EventRuleIgnoreAggregation ( Alerts - Ignore log 1703 )
EventRuleRel ( Alerts - rule relation 296 )
EventRuleRelData ( Alerts - rule relation data 297 )
EventSystemParameters ( Alerts - global parameters 7166 )
EventTmpAlertReport ( Event alert rule report 10128 )
EventTmpAlertTrackingReport ( Event alert rule report 100094 )
ExchangeRate ( Exchange rate 6885 )
ExchangeRateCurrencyPair ( Exchange rate currency pair 6883 )
ExchangeRateDenToDenAfterBothStart ( Exchange rates between denomination currencies 10281 )
ExchangeRateDenToDenBetweenStart ( Exchange rates between denomination currencies 10282 )
ExchangeRateDenToEuroAfterStart ( Exchange rates between a denomination currency and the triangulation currency 10283 )
ExchangeRateDenToVarAfterStartView ( Exchange rates between a currency and a denomination currency 10284 )
ExchangeRateEffectiveView ( Effective exchange rates 7541 )
ExchangeRateEuroDenominationView ( Denomination exchange rates 10285 )
ExchangeRateFixedCurrencyView ( Fixed currency exchange rates 7531 )
ExchangeRatePriorToStartDateView ( Exchange rates prior to denomination start date 10286 )
ExchangeRateSameFromToCurrencyView ( Exchange rates between the same currency 10287 )
ExchangeRateType ( Exchange rate type 6882 )
ExchangeRateUnionView ( Exchanges rates and reciprocal rates 10288 )
ExchangeRateVarToDenAfterStartView ( Exchange rates between a currency and a denomination currency 10289 )
ExchangeRateView ( Exchange rates 7644 )
ExpressionElement ( Expression element 7255 )
ExpressionPredicate ( Expression predicate 7256 )
ExpressionProjectionDatasource ( Expression datasource 7257 )
ExpressionProjectionField ( Expression field 7258 )
ExpressionStagingTable ( Expression staging table 10253 )
ExpressionTable ( Expression table 2223 )
ExtCodeTable ( External code 1340 )
ExtCodeValueTable ( External code value 1341 )
FinancialTagCategory ( Tag category 693 )
FiscalCalendar ( Fiscal calendar 6142 )
FiscalCalendarDate ( Fiscal calendar date view 7216 )
FiscalCalendarPeriod ( Fiscal calendar period 6143 )
FiscalCalendarYear ( Fiscal calendar year 6145 )
ForecastInvent ( Inventory forecast 142 )
ForecastItemAllocation ( Item allocation keys 150 )
ForecastItemAllocationLine ( Item allocation transactions 151 )
ForecastModel ( Forecast models 135 )
ForecastPurch ( Supply forecast 143 )
ForecastSales ( Demand forecast 144 )
ForecastSalesItemTmp ( Temporary table 100095 )
FormletterJournal ( Journal table 773 )
FormletterJournalTrans ( Journal lines 771 )
FormletterParmLine ( Order lines update tables 844 )
FormletterParmTable ( Orders update tables 1459 )
FormletterParmUpdate ( Order lines update tables 2232 )
FormLetterRemarks ( Form note 136 )
FormLetterSortingParameters ( Parameters for form sorting 1433 )
FreeTextInvoiceTmp ( FreeTextInvoiceTmp 10468 )
GanttColorTable ( Gantt color 1662 )
GanttLine ( Gantt transactions 236 )
GanttLineResourceGroups ( Gantt transactions 3488 )
GanttTable ( Gantt table 238 )
GanttTmpLink ( Gantt table 1173 )
GanttTmpReqExplosion ( Gantt table 1227 )
GanttTmpSMA ( Temporary table 2186 )
GanttTmpUndo ( Gantt table 1178 )
GanttTmpWrkCtrJob ( Gantt table 1579 )
GeneralJournalAccountEntry ( General journal account entry 3119 )
GeneralJournalAccountEntryDimension ( General journal account entry dimension 100096 )
GeneralJournalAccountEntryHash ( General journal account entry hash 100097 )
GeneralJournalAccountEntryTmp ( PlaceHolder 100098 )
GeneralJournalAccountEntryZakat_SA ( Journal lines 4115 )
GeneralJournalCube ( General journal 6022 )
GeneralJournalEntry ( General journal entry 3123 )
GeneralJournalEntryTmp ( PlaceHolder 100099 )
GiroReport ( GiroReport 100277 )
GiroReportTmp ( GIRO report data 100100 )
HcmAbsenceAdministrationTmp ( Absence administration 10678 )
HcmAbsenceStatusTmp ( Absence status 10423 )
HcmAccommodationType ( Accommodation type 4507 )
HcmADARequirement ( ADA requirements 4508 )
HcmADARequirementTmp ( ADA requirements 9808 )
HcmAgreementTerm ( Terms of employment 9699 )
HcmAnniversaryTmp ( Anniversaries 9898 )
HcmApplicant ( Applicants 6912 )
HcmApplicantLegalEntityView ( Applicant legal entities 100311 )
HcmApplicantReference ( Applicant reference 6915 )
HcmApplicantResumeTmpTable ( Applicant résumé 10411 )
HcmApplicantStatusTmp ( Applicants 9931 )
HcmApplicationBasketLocation ( Application basket location relationships 6879 )
HcmApplicationBasketLocationView ( Application basket location view 7158 )
HcmBeneficiaryRelationship ( Beneficiary relationship 9949 )
HcmBenefit ( Benefit 7553 )
HcmBenefitEnrollmentGroup ( Benefit enrollment group 100101 )
HcmBenefitEnrollmentResult ( Benefit enrollment result 100102 )
HcmBenefitEnrollmentStatus ( Benefit enrollment status 100103 )
HcmBenefitOption ( Benefit option 7552 )
HcmBenefitPlan ( Benefit plan 7549 )
HcmBenefitType ( Benefit type 4509 )
HcmBirthdayTmp ( Birthdays 9812 )
HcmCertificateType ( Certificate type 4510 )
HcmCompensationLevel ( Levels 6204 )
HcmCompLocation ( Compensation regions 10885 )
HcmCourseAgendaTmp ( Course agenda 9899 )
HcmCourseConfirmationTmp ( Course confirmation 9809 )
HcmCourseNotes ( Course descriptions 6868 )
HcmCourseType ( Course types 4794 )
HcmCourseTypeCertificateProfile ( Course type - certificates 4795 )
HcmCourseTypeDefaultDimension ( Course type default dimensions 7593 )
HcmCourseTypeEducationProfile ( Course type - education 4796 )
HcmCourseTypeGroup ( Course groups 4797 )
HcmCourseTypeNotes ( Course type descriptions 6861 )
HcmCourseTypeSkillProfile ( Course type - skills 4798 )
HcmCoveredBeneficiaryRelationship ( Covered beneficiary relationship 7557 )
HcmCoveredBeneficiaryRelationshipTmp ( Covered beneficiary relationship 100104 )
HcmCoveredDependentRelationship ( Covered dependent relationship 9698 )
HcmCoveredDependentRelationshipTmp ( Covered dependent relationship 100105 )
HcmDepartmentView ( Departments 9998 )
HcmDependentRelationship ( Dependent relationship 9950 )
HcmDiscussion ( Discussions 4511 )
HcmDiscussionType ( Discussion types 4512 )
HcmDueCertificateTmp ( Certificate competency 100106 )
HcmEducationDiscipline ( Education disciplines 4513 )
HcmEducationDisciplineCategory ( Grouping of educational studies 4514 )
HcmEducationDisciplineGroup ( Education and discipline category associations 4515 )
HcmEducationInstitution ( Institution 4516 )
HcmEducationLevel ( Level of education 4517 )
HcmEmergencyContactRelationship ( Emergency contact relationship 9951 )
HcmEmployment ( Employment 9704 )
HcmEmploymentAbsenceSetup ( Employee absence 9701 )
HcmEmploymentBonus ( Bonus 9708 )
HcmEmploymentContractor ( Employment contractor 9693 )
HcmEmploymentDetail ( Employment detail 9706 )
HcmEmploymentEmployee ( Employee detail 9705 )
HcmEmploymentInsurance ( Insurance 9700 )
HcmEmploymentLeave ( Employee leave 9702 )
HcmEmploymentStockOption ( Options 9692 )
HcmEmploymentTerm ( Employment term 9703 )
HcmEmploymentVacation ( Employment vacation 9707 )
HcmEPAbsenceTransListYearTmp ( Absence transactions 100107 )
HcmEPAnniversariesTmp ( Anniversaries 10188 )
HcmEPBirthdaysTmp ( Birthdays 10187 )
HcmEthnicOrigin ( Ethnic origins 4518 )
HcmGoal ( Goals 4519 )
HcmGoalActivity ( Goal activities 4520 )
HcmGoalComment ( Goal comments 4521 )
HcmGoalHeading ( Goal headings 4522 )
HcmGoalNote ( Goal notes 4523 )
HcmGoalType ( Goal types 4524 )
HcmGoalTypeTemplate ( Goal type templates 4525 )
Hcmi9Document ( I-9 document 5649 )
Hcmi9DocumentList ( I-9 list type - A, B, or C 4526 )
Hcmi9DocumentType ( I-9 document type 4527 )
HcmIdentificationType ( Identification type 4528 )
HcmIncomeTaxCategory ( Income tax category 4529 )
HcmIncomeTaxCode ( Income tax code 4530 )
HcmInsuranceType ( Insurance types 4531 )
HcmIssuingAgency ( Issuing agency 4557 )
HcmJob ( Jobs 4497 )
HcmJobADARequirement ( Job - ADA requirements 5168 )
HcmJobDetail ( Job detail 5167 )
HcmJobFunction ( Compensation job function 4916 )
HcmJobInformationTmp ( Jobs 100108 )
HcmJobPreferredCertificate ( Job - certificates 5169 )
HcmJobPreferredEducationDiscipline ( Job - education 5170 )
HcmJobPreferredSkill ( Job - skills 5171 )
HcmJobResponsibility ( Job - areas of responsibility 5172 )
HcmJobTask ( Job tasks 4553 )
HcmJobTaskAssignment ( Job - work tasks 5173 )
HcmJobTemplate ( Job templates 5143 )
HcmJobTemplateADARequirement ( Job template - ADA requirements 5146 )
HcmJobTemplateCertificate ( Job template - certificates 5147 )
HcmJobTemplateEducationDiscipline ( Job template - education 5144 )
HcmJobTemplateResponsibility ( Job template - areas of responsibility 5148 )
HcmJobTemplateSkill ( Job template - skills 5149 )
HcmJobTemplateTask ( Job template - work tasks 5145 )
HcmJobType ( Compensation job type 4928 )
HcmLanguageCode ( Language codes 4534 )
HcmLeaveType ( Leave types 4535 )
HcmLoanItem ( Loan items 4536 )
HcmLoanType ( Loan types 4537 )
HcmMyDepartments ( Departments for current user 100109 )
HcmMyDepartmentsNoAccess ( Restricted departments for current user 100110 )
HcmMyPersonalContactsNoAccess ( Global address book access view 100111 )
HcmNumberOfWorkersTmp ( Generate the number of workers per department 10302 )
HcmParentDepartmentTmp ( Departments 10209 )
HcmPayrollBasis ( Base payroll 5535 )
HcmPayrollCategory ( Payroll category 4538 )
HcmPayrollDeduction ( Deduction 5536 )
HcmPayrollDeductionType ( Salary deduction types 4539 )
HcmPayrollFrame ( Wage groups 4540 )
HcmPayrollFrameCategory ( Personnel category 4541 )
HcmPayrollLine ( Wage lines 5537 )
HcmPayrollPension ( Retirement 5538 )
HcmPayrollPremium ( Payroll allowance 4643 )
HcmPayrollScaleLevel ( Payroll scale level 4542 )
HcmPeopleDepartmentTmp ( Departments 163 )
HcmPersonAccommodation ( Accommodations 5150 )
HcmPersonalContactRelationship ( Personal contact relationship 10664 )
HcmPersonCertificate ( Certificate competency 5151 )
HcmPersonCourse ( Course competency 5152 )
HcmPersonDetails ( Person details 5261 )
HcmPersonEducation ( Education competency 5153 )
HcmPersonFieldMap ( Personal details 5409 )
HcmPersonIdentificationNumber ( Identification 5264 )
HcmPersonImage ( View  image files associated with person 6841 )
HcmPersonLaborUnion ( Labor union 5262 )
HcmPersonLoan ( Loan 5154 )
HcmPersonPrivateDetails ( Person private details 5263 )
HcmPersonProfessionalExperience ( Professional experience competency 5155 )
HcmPersonProjectRole ( Project experience competency 5156 )
HcmPersonSkill ( Skill competency 5157 )
HcmPersonSkillMapping ( Skill mapping 5158 )
HcmPersonTrustedPosition ( Position of trust competency 5159 )
HcmPersonView ( Competency tracked persons 6034 )
HcmPosition ( Positions 6202 )
HcmPositionDefaultDimension ( Position default dimensions 7594 )
HcmPositionDetail ( Position details 6266 )
HcmPositionDuration ( Position durations 7727 )
HcmPositionHierarchy ( Position hierarchies 6253 )
HcmPositionHierarchyType ( Position hierarchy types 6264 )
HcmPositionType ( Position type 6257 )
HcmPositionWorkerAssignment ( Position worker assignments 6259 )
HcmRatingLevel ( Levels 4543 )
HcmRatingModel ( Rating models 4544 )
HcmReasonCode ( Reason codes 4545 )
HcmRecruitingApplicationStatusTmp ( Application status by project 10422 )
HcmRelationshipTypeGroup ( Relationship type groups 9952 )
HcmReminderType ( Reminder types 4546 )
HcmResponsibility ( Areas of responsibility 4547 )
HcmSeniorityTmp ( Seniority list 10029 )
HcmSharedParameters ( Shared human resources parameters 10405 )
HcmSkill ( Skills 4548 )
HcmSkillBySkillTypeCountTmp ( Skill count by skill type 9900 )
HcmSkillBySkillTypeTmp ( Worker skills by skill type 10235 )
HcmSkillGapJobTmp ( Skill gap: job 10189 )
HcmSkillGapProfileTmp ( Skills gap 5585 )
HcmSkillMappingCertificate ( Skill-mapping - certificates 5587 )
HcmSkillMappingEducation ( Skill-mapping - education 5588 )
HcmSkillMappingHeader ( Skill-mapping - main 5589 )
HcmSkillMappingLine ( Skill-mapping - lines 5590 )
HcmSkillMappingRange ( Skill-mapping - criteria 5591 )
HcmSkillMappingSearchTmp ( Skill mapping 6314 )
HcmSkillMappingSkill ( Skill-mapping - skills 5592 )
HcmSkillProfileTmp ( Skill profile 10264 )
HcmSkillType ( Skill types 4552 )
HcmSurveyCompany ( Compensation survey companies 6207 )
HcmTitle ( Titles 5164 )
HcmTmpDepartmentMerge ( Move employees 5657 )
HcmTmpSkillGapReports ( Skills gap 5593 )
HcmUnions ( Labor unions 4554 )
HcmVeteranStatus ( Veteran status 4555 )
HcmWebMenuItemTmp ( Titles 10364 )
HcmWorker ( Worker 5116 )
HcmWorkerBankAccount ( Worker bank accounts 5650 )
HcmWorkerCubeDimension ( Cube dimension for worker 7876 )
HcmWorkerDefaultLocation ( Worker default locations 5385 )
HcmWorkerDetailsView ( Worker 100312 )
HcmWorkerEnrolledBenefit ( Worker enrolled benefit 7554 )
HcmWorkerLegalEntityView ( Worker legal entities 100313 )
HcmWorkerPrimaryPosition ( Worker primary position 6260 )
HcmWorkerReminder ( Worker reminders 5651 )
HcmWorkerResumeTmp ( Worker résumé 10238 )
HcmWorkerSkillTmp ( Skills by worker 10259 )
HcmWorkerTask ( Worker tasks 4556 )
HcmWorkerTaskAssignment ( Worker task assignments 5652 )
HcmWorkerTaxInfo ( Tax information 5653 )
HcmWorkerTitle ( Worker titles 5265 )
HcmWorkerUserRequest ( Worker user requests 100112 )
Hierarchy ( Hierarchies 2482 )
HierarchyLinkTable ( Hierarchy associations 2483 )
HierarchyTreeTable ( Hierarchy tree 2484 )
HRCComp ( Compensation 2276 )
HRCCompGrid ( Compensation grids 2278 )
HRCCompRefPointSetup ( Reference point setups 2280 )
HRCCompRefPointSetupLine ( Reference points 2281 )
HRCCompTmpGrid ( Compensation grid view 2282 )
HRMAbsenceAdministrationTmp ( Absence administration 8346 )
HRMAbsenceCode ( Absence codes 8347 )
HRMAbsenceCodeGroup ( Absence groups 8348 )
HRMAbsenceRequest ( Absence request 8600 )
HRMAbsenceSetup ( Absence setup 8349 )
HRMAbsenceStatusColumns ( Absence status list - columns 8370 )
HRMAbsenceStatusHeader ( Absence status 8371 )
HRMAbsenceStatusListTmp ( Absence status 8372 )
HRMAbsenceTable ( Absence registrations 8350 )
HRMAbsenceTrans ( Absence transactions 8351 )
HRMApplicantInterview ( Interview with applicants 8002 )
HRMApplicantRouting ( Application routing 8003 )
HRMApplication ( Applications 8005 )
HRMApplicationBasket ( Application basket 8601 )
HRMApplicationEmailTemplate ( Application e-mail templates 8549 )
HRMApplicationWordBookmark ( Application bookmarks 8550 )
HRMCompEligibility ( Compensation plan eligibility rules 2507 )
HRMCompEligibilityLevel ( Compensation eligibility levels 2508 )
HRMCompEvent ( Compensation events 2556 )
HRMCompEventEmpl ( Compensation employee event table 2557 )
HRMCompEventLine ( Compensation recommend event table 2558 )
HRMCompEventLineComposite ( Compensation recommend event composite lines 2559 )
HRMCompEventLineFixed ( Compensation recommend event fixed lines 2560 )
HRMCompEventLinePointInTime ( Compensation recommend event point in time lines 2561 )
HRMCompFixedAction ( Compensation fixed action table 2309 )
HRMCompFixedBudget ( Compensation fixed increase budget 2562 )
HRMCompFixedEmpl ( Employee fixed compensation 6121 )
HRMCompFixedPlanTable ( Compensation fixed plan 2510 )
HRMCompFixedPlanUtilMatrix ( Compensation fixed plan range utilization matrix 2511 )
HRMCompOrgPerf ( Compensation performance per organization unit 2563 )
HRMCompPayFrequency ( Compensation pay frequency 2314 )
HRMCompPayrollEntity ( Compensation external pay group table 2316 )
HRMCompPerfAllocation ( Compensation performance allocation 2564 )
HRMCompPerfAllocationLine ( Compensation performance allocation lines 2565 )
HRMCompPerfPlan ( Compensation performance plan 2566 )
HRMCompPerfPlanEmpl ( Compensation employee performance plan 2567 )
HRMCompPerfRating ( Compensation performance rating 2568 )
HRMCompProcess ( Compensation process table 2569 )
HRMCompProcessLine ( Compensation process lines 2570 )
HRMCompProcessLineAction ( Compensation process lines - actions allowed 2571 )
HRMCompVarAwardEmpl ( Employee variable compensation 2512 )
HRMCompVarEnrollEmpl ( Employee variable compensation enrollment 6125 )
HRMCompVarEnrollEmplLine ( Employee variable compensation enrollment overrides 2514 )
HRMCompVarPlanLevel ( Variable compensation level 2515 )
HRMCompVarPlanTable ( Compensation variable plan 6128 )
HRMCompVarPlanType ( Compensation variable type 2319 )
HRMCompVesting ( Compensation vesting rules 2320 )
HRMCourseAgenda ( Agenda 8426 )
HRMCourseAgendaLine ( Sessions on agenda 8427 )
HRMCourseAttendee ( Course participants 8012 )
HRMCourseAttendeeLine ( Registration list 8428 )
HRMCourseHotel ( Hotel 8430 )
HRMCourseInstructor ( Course instructors 8013 )
HRMCourseLocation ( Course locations 8014 )
HRMCourseLocationPicture ( Pictures of course locations 8435 )
HRMCourseRoom ( Classrooms 8015 )
HRMCourseRoomGroup ( Classroom groups 8016 )
HRMCourseSession ( Session 8445 )
HRMCourseSessionTrack ( Track 8446 )
HRMCourseTable ( Courses 8017 )
HRMCourseTableHotel ( Hotel for course 8447 )
HRMCourseTableInstructor ( Course instructors 8448 )
HRMInjuryBodyPart ( Injury and illness body parts 1058 )
HRMInjuryCostType ( Injury and illness cost types 1062 )
HRMInjuryFilingAgency ( Reporting agencies 1064 )
HRMInjuryIncident ( Injury or illness incidents 1065 )
HRMInjuryIncidentCostType ( Injury or illness costs 1073 )
HRMInjuryIncidentFilingAgency ( Injury or illness filings 1074 )
HRMInjuryIncidentTreatment ( Injury or illness treatments 1081 )
HRMInjuryOutcomeType ( Injury and illness outcome types 1076 )
HRMInjurySeverityLevel ( Injury and illness severity levels 2760 )
HRMInjuryTreatmentType ( Injury and illness treatment types 2758 )
HRMInjuryType ( Injury and illness types 1082 )
HRMMassHireLine ( Mass hire lines 8602 )
HRMMassHireProject ( Mass hire project 8603 )
HRMMedia ( Media 8038 )
HRMMediaType ( Media types 8039 )
HRMParameters ( Personnel parameters 8041 )
HRMRecruitingJobAd ( Job ads 8604 )
HRMRecruitingLastNews ( Recruitment - developments 8049 )
HRMRecruitingMedia ( Recruitment media 8055 )
HRMRecruitingTable ( Recruitment projects 8056 )
HRMVirtualNetworkGroup ( Questionnaire groups 8065 )
HRMVirtualNetworkGroupRelation ( Questionnaire group members 8066 )
HRMVirtualNetworkMap ( Personal details 8140 )
HRPApprovedLimit ( Approved signing limit 5442 )
HRPApprovedLimitAmount ( Approved signing limit amount 5447 )
HRPApprovedLimitAmountChangelog ( Approved signing limit amount changelog 5451 )
HRPDefaultLimit ( Default signing limit 5448 )
HRPDefaultLimitCompensationRule ( Default signing limit compensation rule 5452 )
HRPDefaultLimitDetail ( Default signing limit detail 5443 )
HRPDefaultLimitJobRule ( Default signing limit job rule 5453 )
HRPDefaultLimitRule ( Default signing limit rule 5438 )
HRPLimitAgreement ( Signing limit agreement 5434 )
HRPLimitAgreementAttestation ( Signing limit agreement confirmation 5444 )
HRPLimitAgreementCompException ( Signing limit agreement comp exception 5454 )
HRPLimitAgreementDetail ( Signing limit agreement detail 5445 )
HRPLimitAgreementException ( Signing limit agreement exception 5449 )
HRPLimitAgreementJobException ( Signing limit agreement job exception 5455 )
HRPLimitAgreementRule ( Signing limit agreement rule 5439 )
HRPLimitDocument ( Signing limit document 5435 )
HRPLimitParameters ( Signing limit policy parameters 5436 )
HRPLimitRequest ( Signing limit request 5440 )
HRPLimitRequestAmount ( Signing limit request amount 5446 )
HRPLimitRequestCurrencyRule ( Signing limit request currency rule 5441 )
HRPLimitRevocationReasonCode ( Signing limit revocation reason code 5437 )
HRPRevokedLimit ( Revoked signing limit 5450 )
HRPTmpApprovedLimitFactBox ( View selected signing limit request 100113 )
HRPTmpDefaultSigningLimitRule ( Default signing limit rule 100114 )
HRPTmpLimitAgreementRule ( Limit agreement rule 100115 )
HRPTmpMyReportFactBox ( Edit the request by manager 5573 )
IndirectCostOverviewTmp ( IndirectCostOverviewTmp 6984 )
InflationAdjJournal_MX ( The InflationAdjJournal_MX table is used to track Inflation adjustment journal records 6920 )
InpcRateTable_MX ( INPC rates 6921 )
InpcRateTmp_MX ( INPC rates 7672 )
IntercompanyActionPolicy ( Intercompany configuration 100116 )
IntercompanyAgreementActionPolicy ( Intercompany configuration for agreements 100117 )
InterCompanyEndpointActionPolicy ( Intercompany configuration 398 )
InterCompanyEndpointActionPolicyTransfer ( Intercompany synchronization configuration 399 )
InterCompanyError ( Intercompany errors 400 )
InterCompanyGoodsInTransitLineTotalsTmp ( Intercompany goods in transit order line totals 100118 )
InterCompanyGoodsInTransitOrdersTmp ( In transit intercompany orders 100119 )
InterCompanyGoodsInTransitTmp ( Intercompany goods in transit 100120 )
InterCompanyInventDim ( Inventory dimensions 408 )
InterCompanyInventSum ( Intercompany on-hand inventory 409 )
InterCompanyJour ( Intercompany journals 873 )
InterCompanyPurchSalesReference ( Sales/purchase references 1607 )
InterCompanyTradingPartner ( Trading partner 7059 )
InterCompanyTradingRelation ( Trading relationship 7058 )
InterCompanyTradingValueMap ( Intercompany value mapping 7472 )
InterCompanyTrans ( Intercompany journal lines 881 )
Intrastat ( Intrastat 542 )
IntrastatArchiveDetail ( Intrastat archive detail 647 )
IntrastatArchiveGeneral ( Intrastat archive 648 )
IntrastatCompressParameters ( Compression of Intrastat 1524 )
IntrastatCountryRegionParameters ( Intrastat code 4395 )
IntrastatFormLetter ( Intrastat 5633 )
IntrastatFormLetterListTmp ( Intrastat 7898 )
IntrastatFormLetterTmpFI ( Form FI 7243 )
IntrastatFormLetterTmpFR ( Form FI 7424 )
IntrastatFormLetterTmpSE ( Form SE 7439 )
IntrastatFormLetterUK ( Intrastat 5634 )
IntrastatItemCode ( Commodity code 541 )
IntrastatListNL ( Intrastat 5704 )
IntrastatListTmpUK ( List UK 7529 )
IntrastatParameters ( Foreign trade parameters 549 )
IntrastatPort ( Port 747 )
IntrastatServicePoint_FI ( Intrastat service point 2038 )
IntrastatStateParameters ( Intrastat code 4396 )
IntrastatStatProc ( Statistics procedure 786 )
IntrastatToProdcom ( Intrastat to PRODCOM conversion 132 )
IntrastatTransactionCode ( Transaction codes 31 )
IntrastatTransferMap ( Intrastat transfer map 6827 )
IntrastatTransportMode ( Transport method 743 )
InvAdjustmentReportTmp_MX ( Inventory report 6954 )
InventAdjustmentReportTmp ( InventAdjustmentReportTmp 156 )
InventAgeGroupDimTmp ( Inventory value and quantity by age 5817 )
InventAutoSalesPriceMap ( Create sales price automatically 2261 )
InventBatch ( Batches 752 )
InventBlocking ( Inventory blocking 2085 )
InventBlockingQualityOrder ( Inventory blocking to quality order relation 2755 )
InventBuyerGroup ( Buyer groups 714 )
InventCheckReceiptCostPricePcsTmp ( 2. Check cost prices 10222 )
InventClosing ( Inventory closing 145 )
InventClosingLog ( Log 1461 )
InventClosingNonFinancialInventTrans ( InventClosingNonFinancialInventTrans 100121 )
InventCostList ( Calculation list 1695 )
InventCostListTrans ( Lot level adjustments 1696 )
InventCostTmpItemFinancialInventDim ( InventCostTmpItemFinancialInventDim 100122 )
InventCostTmpRelationLookup ( Cost relation 2372 )
InventCostTmpTransBreakdown ( Breakdown of inventory cost transactions 2133 )
InventCostTrans ( Standard cost transactions 2188 )
InventCostTransMap ( Standard cost transactions 133 )
InventCostTransSum ( Inventory cost closing balances 2189 )
InventCostTransVariance ( Inventory cost variances 2190 )
InventCostTransView ( Standard cost transactions 2208 )
InventCountGroup ( Counting groups 148 )
InventCountJour ( Counting history 149 )
InventCountStatisticsTmp ( Counting statistics 6973 )
InventDim ( Inventory dimensions 698 )
InventDimCleanUp ( Clean up unused inventory dimensions 2762 )
InventDimCombination ( Released product variants 1626 )
InventDimParm ( Dimension parameters 704 )
InventDimPostedReportTmp ( Inventory value by inventory dimension 5425 )
InventDimSetupGrid ( View dimensions 758 )
InventFallbackWarehouse ( Fallback warehouse for site 2210 )
InventFiscalLIFOGroup ( Fiscal LIFO reporting group 1089 )
InventFiscalLIFOJournalName ( Fiscal LIFO journal tables 1091 )
InventFiscalLIFOJournalTable ( Fiscal LIFO journal table 1092 )
InventFiscalLIFOJournalTrans ( Fiscal LIFO journal lines 1093 )
InventFiscalLIFOJournalTransAdj ( Fiscal LIFO Journal line adjustments 2416 )
InventFiscalLIFOValuationTmp ( Fiscal LIFO journal lines 5905 )
InventItemBarcode ( Item - bar code 1213 )
InventItemCostGroupRollup ( Item/version price per cost group 2807 )
InventItemCostGroupRollupMap ( Item/version price per cost group 2598 )
InventItemCostGroupRollupSim ( Pending item/version price per cost group 1623 )
InventItemGroup ( Item groups 152 )
InventItemGroupForm ( Item groups 10135 )
InventItemGroupItem ( Relationship between items and item groups 7051 )
InventItemGTIN ( Item - GTIN 1104 )
InventItemInventSetup ( Item inventory order settings 1762 )
InventItemLocation ( Warehouse items 659 )
InventItemLocationCountingStatus ( Current counting status for items 11053 )
InventItemOrderSetupMap ( Item order settings map 1741 )
InventItemPrice ( Price 2479 )
InventItemPriceActive ( Active prices 2270 )
InventItemPriceFilter ( Active prices grouped by day 2269 )
InventItemPriceId ( Price 2266 )
InventItemPriceMap ( Inventory item prices 1360 )
InventItemPrices ( Item prices 2273 )
InventItemPricesFiltered ( Active and pending prices 2274 )
InventItemPriceSim ( Pending item prices 1358 )
InventItemPriceSimId ( Pending item prices 2267 )
InventItemPriceToleranceGroup ( Item price tolerance groups 2062 )
InventItemPurchSetup ( Item purchase order settings 1754 )
InventItemSalesSetup ( Item sales order settings 1764 )
InventItemSampling ( Item sampling 1927 )
InventItemSetupSupplyType ( Supply type setup 4572 )
InventJournalName ( Inventory journal names 153 )
InventJournalTable ( Inventory journal table 154 )
InventJournalTrans ( Inventory journal lines 155 )
InventJournalTrans_Tag ( Tag counting 1134 )
InventLedgerConciliationTmp ( Inventory 5692 )
InventLedgerConflictTmpBalance ( InventLedgerConflictTmpBalance 7202 )
InventLedgerConflictTmpConflict ( Inventory ledger conflicts 7201 )
InventLedgerConflictTmpConflictTmp ( Inventory ledger conflicts 100123 )
InventLocation ( Warehouses 158 )
InventLocationDefaultLocation ( Warehouse default locations 7533 )
InventLocationExpanded ( Warehouses 7167 )
InventLocationLogisticsLocation ( Warehouse location relationships 3510 )
InventLocationLogisticsLocationRole ( Warehouse location roles 7517 )
InventLocationLogisticsLocationRoleView ( Warehouse location roles 100314 )
InventModelGroup ( Item model groups 709 )
InventModelGroupItem ( Relationship between items and item model groups 7053 )
InventMovementTmp_TH ( Inventory movement 6286 )
InventNonConformanceHistory ( Non conformance history 2434 )
InventNonConformanceOrigin ( Non conformance origin 2440 )
InventNonConformanceRelation ( Non conformance references 2013 )
InventNonConformanceTable ( Non conformance 2002 )
InventNumGroup ( Number groups 159 )
InventOnhandTmp ( InventOnhandTmp 9903 )
InventOpenQtyCriticalTmp ( Open quantity 5361 )
InventOrderEntryDeadlineGroup ( Order entry deadline groups 1571 )
Inventorderentrydeadlineparameters ( Order entry deadline parameters 1581 )
InventOrderEntryDeadlineTable ( Order entry deadlines 1632 )
InventPackagingGroup ( Packing groups 1561 )
InventPackagingMaterialCode ( Packing material code 1564 )
InventPackagingMaterialFee ( Packing material fee 1565 )
InventPackagingMaterialTrans ( Packing material transactions 1566 )
InventPackagingMaterialTransPurch ( Packing material transactions - purchase 1567 )
InventPackagingUnit ( Packing units 1562 )
InventPackagingUnitMaterial ( Packing material 1563 )
InventParameters ( Inventory parameters 160 )
InventParmQuarantineOrder ( Update parameters for quarantine orders 947 )
InventPendingQuantity ( Pending inventory quantities 6888 )
InventPendingRegistrationDetail ( Pending registration details 6889 )
InventPhysicalPerWarehouseTransTmp_IT ( Inventory journal 9682 )
InventPosting ( Item, ledger posting 157 )
InventPostingParameters ( Inventory transaction combinations 1517 )
InventPriceMap ( Inventory price map 1667 )
InventPriceOverviewTmp ( Item prices 6209 )
InventProblemType ( Problem types 1918 )
InventProblemTypeSetup ( Problem/Non conformance types validation 1920 )
InventProdComLineDetail ( PRODCOM details 134 )
InventProdComLineWithCode ( Products on the PRODCOM list 139 )
InventProdComParameters ( PRODCOM parameters 141 )
InventProdcomSetup ( PRODCOM setup on item 322 )
InventProdComTable ( PRODCOM 472 )
InventProdComTmp_BE ( Print 100124 )
InventProductGroup ( Product groups 935 )
InventProductGroupBOM ( Product group structure 937 )
InventProductGroupItem ( Product group items 939 )
InventProductGroupItemMatching ( Product group - item group matching 575 )
InventQualityOrderLine ( Quality order lines 1989 )
InventQualityOrderLineResults ( Quality order line results 1993 )
InventQualityOrderTable ( Quality orders 1961 )
InventQualityOrderTableOrigin ( Quality order origin 2441 )
InventQuarantineOrder ( Quarantine order 944 )
InventQuarantineZone ( Quarantine zones 1924 )
InventReleaseOrderPickingTmp ( Invent release order picking 1102 )
InventReportDimHistory ( Dimension history for documents 1804 )
InventSerial ( Serial numbers 1204 )
InventSettlement ( Inventory settlement 173 )
InventSite ( Site 6064 )
InventSiteDefaultLocation ( Site default locations 7532 )
InventSiteDimensionLinkValidationTmp ( Linked dimension validation 10414 )
InventSiteLogisticsLocation ( Site location relationships 3509 )
InventSiteLogisticsLocationRole ( Site location roles 7503 )
InventSiteLogisticsLocationRoleView ( Site location roles 100315 )
InventStdCostConv ( Standard cost conversion 2204 )
InventStdCostConvCheckTmp ( Check 5894 )
InventStdCostConvItem ( Standard cost conversion items 2207 )
InventStdCostConvItemConverted ( Standard cost converted items 2503 )
InventStorageDimMap ( Inventory storage map 1122 )
InventSum ( On-hand inventory 174 )
InventSumCriticalTmp ( Critical on-hand inventory 10040 )
InventSumDateTable ( On-hand inventory periodic header 284 )
InventSumDateTrans ( On-hand inventory periodic transactions 1584 )
InventSumDateTransReport ( On-hand inventory periodic transactions 10271 )
InventSumDelta ( On-hand inventory changes 2397 )
InventSumDeltaDim ( On-hand inventory checks 2398 )
InventSumLogTTS ( Transaction list 1267 )
InventSupplyTmpOnhand ( On-hand 2137 )
InventSupplyTmpOrders ( Orders 2139 )
InventSupplyTmpStdLeadtime ( Standard lead times 2141 )
InventSupplyTmpVendors ( Vendors 2155 )
InventTable ( Items 175 )
InventTableExpanded ( Released products 6615 )
InventTableModule ( Inventory module parameters 176 )
InventTestAssociationTable ( Quality associations 1956 )
InventTestBlockProcessTmp ( Document blocking 100125 )
InventTestCertOfAnalysisLine ( Certificate of analysis lines 2040 )
InventTestCertOfAnalysisLineResults ( Certificate of analysis line results 2034 )
InventTestCertOfAnalysisTable ( Certificate of analysis 2033 )
InventTestCertOfAnalysisTmp ( Certificate of analysis 5518 )
InventTestCorrection ( Corrections 2014 )
InventTestDiagnosticType ( Diagnostic types 1810 )
InventTestDocumentTypeTmp ( Document type 2185 )
InventTestEmplResponsible ( Workers responsible for quality 2012 )
InventTestGroup ( Test groups 1795 )
InventTestGroupMember ( Test group members 1942 )
InventTestInstrument ( Test instruments 1925 )
InventTestItemQualityGroup ( Item quality groups 1904 )
InventTestMiscCharges ( Quality charges 1926 )
InventTestOperation ( Operations 1823 )
InventTestOperationItems ( Operation items 2023 )
InventTestOperationMiscCharges ( Charges transactions 2029 )
InventTestOperationTimeSheet ( Timesheet 2027 )
InventTestQualityGroup ( Quality groups 1822 )
InventTestRelatedOperations ( Related operations 2024 )
InventTestReportSetup ( Report setup for quality management 2083 )
InventTestTable ( Tests 1928 )
InventTestUpdatedQuantityTmp ( InventTestUpdatedQuantityTmp 100126 )
InventTestVariable ( Test variables 1824 )
InventTestVariableOutcome ( Test variable outcomes 1871 )
InventTrans ( Inventory transactions 177 )
InventTransDirection ( Inventory direction 2614 )
InventTransferJour ( Transfer order history 1706 )
InventTransferJourLine ( Transfer order line history 1710 )
InventTransferLine ( Transfer order lines 1705 )
InventTransferOrderOverviewTmp ( Transfer overview 6975 )
InventTransferParmLine ( Transfer order line - update table 1708 )
InventTransferParmTable ( Transfer order - update table 1707 )
InventTransferParmUpdate ( Transfer orders - general update table 2526 )
InventTransferTable ( Transfer orders 1704 )
InventTransGrouped ( Inventory transactions 7071 )
InventTransOrigin ( Inventory transactions originator 2938 )
InventTransOriginAssemblyComponent ( Relationship between an assembled item and its components 857 )
InventTransOriginBlockingIssue ( Relationship between the blocking order and the inventory transactions originator of the issued transactions 3254 )
InventTransOriginBlockingReceipt ( Relationship between the blocking order and the inventory transactions originator of the received transactions 3255 )
InventTransOriginJournalTrans ( Relationship between the inventory journal line and the inventory transactions originator 3224 )
InventTransOriginJournalTransReceipt ( Relationship between the inventory journal line and the inventory transactions originator of the transfer receipt transactions 3236 )
InventTransOriginKanbanEmptied ( Relationship between the kanban and the inventory transactions originator 3436 )
InventTransOriginKanbanJobPickList ( Relationship between the kanban job picking list and the inventory transactions originator 3435 )
InventTransOriginKanbanJobProcess ( Relationship between the process kanban job and the inventory transactions originator 3431 )
InventTransOriginKanbanJobTrsIssue ( Relationship between the transfer kanban job issue and the inventory transactions originator 3432 )
InventTransOriginKanbanJobTrsReceipt ( Relationship between the transfer kanban job receipt and the inventory transactions originator 3469 )
InventTransOriginKanbanJobWIP ( Relationship between the WIP kanban job and the inventory transaction originator 4289 )
InventTransOriginProdBOM ( Relationship between the production BOM and the inventory transactions originator 3221 )
InventTransOriginProdTable ( Relationship between the production order and the inventory transactions originator 3220 )
InventTransOriginPurchLine ( Relationship between the purchase order line and the inventory transactions originator 2989 )
InventTransOriginPurchRFQCaseLine ( Relationship between the purchase RFQ case line and the inventory transactions originator 3232 )
InventTransOriginPurchRFQLine ( Relationship between the purchase RFQ line and the inventory transactions originator 3251 )
InventTransOriginQualityOrder ( Relationship between the inventory quality order and the inventory transactions originator 3226 )
InventTransOriginQuarantineOrder ( Relationship between the inventory quarantine order and the inventory transactions originator 3225 )
InventTransOriginSalesLine ( Relationship between the sales order line and the inventory transactions originator 2983 )
InventTransOriginSalesQuotationLine ( Relationship between the sales quotation line and the inventory transactions originator 2987 )
InventTransOriginTransfer ( Transfer relations of the inventory transaction originator table 2643 )
InventTransOriginTransferReceive ( Relationship between the inventory transfer order line and the inventory transactions originator of the receipt transactions 3229 )
InventTransOriginTransferScrap ( Relationship between the inventory transfer order line and the inventory transactions originator of the scrap transactions 3231 )
InventTransOriginTransferShip ( Relationship between the inventory transfer order line and the inventory transactions originator of the shipment transactions 3230 )
InventTransOriginTransferTransitFrom ( Relationship between the inventory transfer order line and the inventory transactions originator of the transit source transactions 3227 )
InventTransOriginTransferTransitTo ( Relationship between the inventory transfer order line and the inventory transactions originator of the transit destination transactions 3228 )
InventTransOriginWMSOrder ( Relationship between the production order and the inventory transactions originator 3233 )
InventTransPosting ( Inventory transaction posting 553 )
InventValueReport ( Inventory value reports 7228 )
InventValueReportCostGroupIdLookup ( Cost group 7973 )
InventValueReportDimension ( Inventory dimensions for inventory value reports 7274 )
InventValueReportFinancialAdjustment ( InventValueReportFinancialAdjustment 7578 )
InventValueReportFinancialBalance ( InventValueReportFinancialBalance 7579 )
InventValueReportFinancialTransaction ( InventValueReportFinancialTransaction 7577 )
InventValueReportIndirectBalance ( Transaction data 7923 )
InventValueReportIndirectCostCodeLookup ( Indirect cost code 7933 )
InventValueReportIndirectFinTransaction ( Transaction data 7924 )
InventValueReportIndirectPhysTransaction ( Transaction data 7925 )
InventValueReportIndirectUnionAll ( Transaction data 7926 )
InventValueReportItemGroupIdLookup ( Item group 7971 )
InventValueReportItemIdLookup ( Item 7801 )
InventValueReportLine ( Reports on physical inventory and inventory value 5309 )
InventValueReportParm ( InventValueReportParm 7546 )
InventValueReportPhysicalAdjustment ( InventValueReportPhysicalAdjustment 7580 )
InventValueReportPhysicalBalance ( InventValueReportPhysicalBalance 7581 )
InventValueReportPhysicalReversed ( InventValueReportPhysicalReversed 7583 )
InventValueReportPhysicalSettlement ( InventValueReportPhysicalSettlement 7582 )
InventValueReportPhysicalTransaction ( InventValueReportPhysicalTransaction 7530 )
InventValueReportResourceGroupIdLookup ( Resource group 7974 )
InventValueReportResourceIdLookup ( Resource 10759 )
InventValueReportSubContBalance ( Transaction data 100316 )
InventValueReportSubContFinTransaction ( Transaction data 100317 )
InventValueReportSubContPhysTransaction ( Transaction data 100318 )
InventValueReportSubContUnionAll ( Transaction data 100319 )
InventValueReportTmpLedgerLine ( Cumulative ledger account value 7470 )
InventValueReportTmpLine ( Inventory value 7440 )
InventValueReportUnionAll ( InventValueReportUnionAll 10758 )
InventValueReportWrkCtrBalance ( Transaction data 7701 )
InventValueReportWrkCtrFinTransaction ( Transaction data 7703 )
InventValueReportWrkCtrGroupIdLookup ( Resource group 7972 )
InventValueReportWrkCtrIdLookup ( Resource 7802 )
InventValueReportWrkCtrPhysTransaction ( Transaction data 7702 )
InventValueReportWrkCtrUnionAll ( Transaction data 7705 )
ISOCurrencyCode ( ISO currency codes 2469 )
ISRConcept_MX ( ISR report setup 6617 )
ISRConceptMainAccount_MX ( Link main accounts 7182 )
ISRDetailedDeclarationTmp_MX ( Detailed report by concept and account 6949 )
ISRProvisonalDeclarationTmp_MX ( Summary report 7008 )
ISRRateTable_MX ( ISR rate table 6620 )
JmgAbsenceCalendar ( Absence registration 8168 )
JmgAssistance ( Assistant 8169 )
JmgAttendanceRegistration ( Attendance registrations 3203 )
JmgBulletinBoard ( Notice board 8170 )
JmgBulletinBoardRecipient ( Notice board recipients 8607 )
JmgBulletinBoardTerminalRecipient ( Notice board terminal recipients 8625 )
JmgBundleSlize ( Bundle allocation 8171 )
JmgChangeLog ( Change log 3350 )
JmgClientFieldTable ( Field setup 4893 )
JmgDocumentGroup ( Document groups 4226 )
JmgDocumentGroupMember ( Document group members 4228 )
JmgDocumentGroupType ( Document group types 4227 )
JmgDocumentLog ( Document log 5353 )
JmgEmployee ( Time registration workers 8172 )
JmgEventCtrl ( Switch code 8480 )
JmgExternalTerminalTable ( External terminals 8608 )
JmgFlexCorrection ( Flex correction 8173 )
JmgFlexGroup ( Flex groups 8609 )
JmgGroupApprove ( Groups 8174 )
JmgGroupCalc ( Groups 8175 )
JmgGroupSigningLine ( Collective registration lines 8176 )
JmgGroupSigningTable ( Collective registration 8177 )
JmgIllegalEventCodeCombination ( Invalid switch code combinations 8610 )
JmgIpcActivity ( Activities 8178 )
JmgIpcActivityCostPrice ( Indirect activity cost price 8611 )
JmgIpcCategory ( Indirect activities 8179 )
JmgIpcJournalTable ( IPC journal table 3206 )
JmgIpcJournalTrans ( IPC journal transactions 3207 )
JmgIpcLedgerJournal ( Post indirect activities costs 8319 )
JmgIpcLedgerTrans ( Ledger-posted indirect activities costs 8320 )
JmgIpcTrans ( Indirect activities costs transactions 3208 )
JmgJobDocuRef ( Document reference for jobs 5342 )
JmgJobTable ( Job table 8612 )
JmgOvertimeSlize ( Overtime allocation 8180 )
JmgParameters ( Time and attendance - parameters 8181 )
JmgPayAddTable ( Premium types 8182 )
JmgPayAddTrans ( Premium lines 8183 )
JmgPayAdjustCostType ( Pay adjustment 8593 )
JmgPayAdjustSetup ( Pay adjustment pay types 8594 )
JmgPayAgreementLine ( Pay agreement lines 8184 )
JmgPayAgreementLineMap ( Pay agreements 8208 )
JmgPayAgreementOverride ( Pay agreement override 8185 )
JmgPayAgreementOverrideLine ( Pay agreement override lines 8186 )
JmgPayAgreementTable ( Pay agreement 8187 )
JmgPayCountSum ( Worker balances 8188 )
JmgPayCountTable ( Count unit 8189 )
JmgPayEmployee ( Worker rates 8190 )
JmgPayEvents ( Pay items 8191 )
JmgPayLineDelimitation ( Pay line delimitation 3472 )
JmgPayRate ( Rates 2383 )
JmgPayrollPeriodTable ( Pay periods 8595 )
JmgPayrollPeriodTrans ( Pay period records 8596 )
JmgPayStatConfig ( Payroll statistics setup 8321 )
JmgPayStatGroup ( Payroll statistic groups 8322 )
JmgPayStatTrans ( Payroll statistics 8323 )
JmgPayTable ( Pay types 8192 )
JmgPieceRateEmpl ( View members of the piecework groups 8481 )
JmgPieceRateGroup ( Piecework groups 8482 )
JmgPieceRateLine ( Piecework productions 8483 )
JmgPieceRateTable ( Piecework 8484 )
JmgProdJobStatus ( Job status 7226 )
JmgProdParameters ( Manufacturing execution production parameters 2793 )
JmgProdParametersDim ( Manufacturing execution production parameters 2618 )
JmgProfileCalendar ( Profile calendar 8193 )
JmgProfileDay ( Profile start table 8194 )
JmgProfileGroup ( Profile group 8195 )
JmgProfileOverride ( Profile override 8196 )
JmgProfileOverrideSpec ( Profile time override 8197 )
JmgProfileRelation ( Profile relation 8198 )
JmgProfileReportWeekTmp ( Profiles 10132 )
JmgProfileSpec ( Profile timetable 8199 )
JmgProfileSpecMap ( Profile timetable 8209 )
JmgProfileTable ( Profile table 8200 )
JmgProfileTypeTable ( Profile types 9807 )
JmgRegistrationActionPaneTable ( Action Pane 7505 )
JmgRegistrationButtonTable ( Button setup 4894 )
JmgRegistrationGridTable ( Grid table 7610 )
JmgRegistrationSetup ( Registration setup 8626 )
JmgScheduledLoan ( Temporary group assignment 8627 )
JmgSpecialDayTable ( Special days 8628 )
JmgStampJournalTable ( Day's total 8201 )
JmgStampJournalTrans ( Logbook 8202 )
JmgStampTrans ( Transferred journal registrations 8203 )
JmgStampTransMap ( Logbook 8210 )
JmgTermReg ( Raw registrations 8485 )
JmgTermRegArchive ( Raw registrations archive 8616 )
JmgTermRegArchiveMap ( Raw registrations archive 8624 )
JmgTermRegTmp ( Raw registrations 8486 )
JmgTermTexts ( Send statistics 8490 )
JmgTimeCalcParmeters ( Calculation parameters 8491 )
JmgTimecardTable ( Electronic timecard 8618 )
JmgTimecardTrans ( Electronic timecard registrations 8619 )
JmgTmpAbsence ( Absence form 9942 )
JmgTmpAbsenceCalendarOutput ( Temporary absence administration table 8204 )
JmgTmpAbsenceStatistics ( Absence statistics 10162 )
JmgTmpActiveJobs ( Active jobs 10220 )
JmgTmpAttendance ( Attendance 10218 )
JmgTmpBOMConsump ( BOM consumption 8620 )
JmgTmpCalculationGroup ( Calculation group 10217 )
JmgTmpEmplSignedIn ( Attendance 8629 )
JmgTmpErrorSpecification ( Error specification 8621 )
JmgTmpFlexBalance ( Flex overview 10216 )
JmgTmpFlexCheck ( Flex overview 10211 )
JmgTmpIndirectActivity ( Indirect activity 9921 )
JmgTmpIpcBarcode ( Temporary table 9930 )
JmgTmpJobBundleProdFeedback ( Quantity reports 8622 )
JmgTmpJobBundleProjStartup ( Select cost categories 8623 )
JmgTmpJobStatus ( Job status 8630 )
JmgTmpPayExport ( Temporary payment file 8206 )
JmgTmpPaySpecification ( Pay specification 9945 )
JmgTmpPayStatTrans ( Temporary table 10133 )
JmgTmpProjBarcode ( Temporary table 10020 )
JmgTmpWorkerCard ( Worker ID card 9920 )
JmgTmpWorkPlanner ( Work planner 8631 )
JmgWorkPlannerEmployeeTmp ( Worker 9941 )
JmgWorkPlannerProfileTmp ( Worker 10064 )
JournalError ( Errors 1218 )
JournalizingDefinition ( Posting definition 3214 )
JournalizingDefinitionBudgetTrans ( Journalizing definition budget register entry 4777 )
JournalizingDefinitionMatch ( Ledger posting definition match account 3215 )
JournalizingDefinitionMatchDetail ( Ledger posting definition match account detail 3216 )
JournalizingDefinitionPayablesTrans ( Journalizing definition accounts payable 3495 )
JournalizingDefinitionPurchTrans ( Purchasing transaction journalizing definition 3365 )
JournalizingDefinitionRelatedDefinition ( Posting definition related definitions 3217 )
JournalizingDefinitionVersion ( Journalizing definition version 5779 )
JournalNameMap ( Journal names 1219 )
JournalTableMap ( Journal table 181 )
JournalTransMap ( Journal lines 182 )
Kanban ( Kanbans 2770 )
KanbanBoardTmpFilterCriteria ( Kanban board transfer job filter 6618 )
KanbanBoardTmpMessageBoard ( Kanban board - message board 3373 )
KanbanBoardTmpProcessJob ( Kanban board - list of process jobs 3176 )
KanbanBoardTmpTransferJob ( Kanban board - list of transfer jobs 3375 )
KanbanCard ( Card 2986 )
KanbanFlow ( Kanban flows 2960 )
KanbanFlowActivityRelationship ( Kanban flow activity relationships 4290 )
KanbanFlowTmpActivityRelations ( Kanban flow activity relationship 4923 )
KanbanJob ( Kanban jobs 2772 )
KanbanJobCapacitySum ( Kanban job capacity consumption 5115 )
KanbanJobIssue ( Kanban job issue 6918 )
KanbanJobPickingList ( Kanban job picking lists 2861 )
KanbanJobPlanActivityService ( Kanban jobs assigned to plan activity services 100127 )
KanbanJobPurchaseLine ( Kanban jobs assigned to purchase order lines 100128 )
KanbanJobQualityMeasure ( Kanban job quality measures 2871 )
KanbanJobReceipt ( Kanban job receipt 6919 )
KanbanJobReceiptAdviceLine ( Kanban jobs assigned to receipt advice lines 100129 )
KanbanJobSchedule ( Kanban job schedule 2870 )
KanbanJobScheduleCapacitySum ( Kanban job schedule capacities 5098 )
KanbanJobScheduleLock ( Kanban planning engine lock table 100130 )
KanbanJobStatusUpdate ( Kanban job status updates 2875 )
KanbanJobTmpPegging ( Pegging kanbans 3326 )
KanbanJobTmpPickList ( Picking list 3237 )
KanbanPageTmp ( Kanban page 6595 )
KanbanQuantityCalculation ( Kanban quantity calculations 7138 )
KanbanQuantityCalculationProposal ( Kanban quantity proposals 7139 )
KanbanQuantityDemandPeriodFence ( Time fence 7144 )
KanbanQuantityDemandPeriodSeason ( Season 7145 )
KanbanQuantityPolicy ( Kanban quantity calculation policies 7140 )
KanbanQuantityPolicyDemandPeriod ( Demand period 7143 )
KanbanQuantityPolicyKanbanRuleFixed ( Relationship between kanban quantity policy and kanban rule 7141 )
KanbanQuantityPolicySafetyStock ( Safety stock 7142 )
KanbanRule ( Kanban rules 2932 )
KanbanRuleEvent ( Kanban event rules 6828 )
KanbanRuleFixed ( Kanban fixed rules 2951 )
KanbanRuleVariable ( Kanban variable rules 6826 )
KanbanStatusUpdate ( Kanban handling unit status updates 2874 )
KanbanTmpFlow ( Kanban flows 2992 )
KMAnswer ( Answer 8084 )
KMAnswerCollection ( Answer groups 8085 )
KMCollection ( Questionnaires 8086 )
KMCollectionQuestion ( Questionnaire questions 8087 )
KMCollectionQuestionAnswer ( Questionnaire answer counting group 8369 )
KMCollectionRights ( Questionnaires - user rights 8467 )
KMCollectionTemplate ( Questionnaire templates 8088 )
KMCollectionType ( Questionnaire types 8089 )
KMConnectionType ( Reference types 8093 )
KMKnowledgeCollectorParameters ( Questionnaire parameters 8262 )
KMKnowledgeCollectorPlanningTable ( Scheduled questionnaires 8468 )
KMKnowledgeCollectorPlanningType ( Questionnaire planning - type 8469 )
KMQuestion ( Questions 8129 )
KMQuestionAnalyzeTmp ( Questions 7818 )
KMQuestionMedia ( Questionnaire media 8470 )
KMQuestionnaireStatisticsLine ( Questionnaire statistics - lines 8471 )
KMQuestionnaireStatisticsTable ( Questionnaire statistics - main 8472 )
KMQuestionResultGroup ( Question - result groups 8130 )
KMQuestionResultGroupText ( Question - point distribution 8131 )
KMQuestionRow ( Rows for question 8598 )
KMQuestionType ( Question types 8132 )
KMTmpKnowledgeCollectorPerson ( Knowledge collector person 7055 )
KMTmpQuestionFeedback ( Feedback analysis report 8473 )
KMTmpQuestionnaireList ( Questionnaires 442 )
KMVirtualNetworkAnswerGroup ( Group points in answered questionnaires 8263 )
KMVirtualNetworkAnswerLine ( Lines on answered/planned questionnaires 8138 )
KMVirtualNetworkAnswerTable ( Plan a questionnaire 8139 )
LanguageTable ( Languages 799 )
LanguageTxt ( Translations 185 )
LeanCosting ( Backflush costing calculation 3873 )
LeanCoverage ( Lean replenishment coverage 2984 )
LeanCoverageKanbanRule ( Replenishment rule validity record 2985 )
LeanProdFlowActivityPickingLocation ( Production flow activity picking locations 4291 )
LeanProdFlowPlanActivityRelation ( Production flow activity relations 4292 )
LeanProductionFlow ( Production flows 6032 )
LeanProductionFlowActivity ( Production flow activities 4293 )
LeanProductionFlowCosting ( Production flow backflush costing 3812 )
LeanProductionFlowCostingUnusedQty ( Production flow unused quantities 3874 )
LeanProductionFlowCycleTimeTmpLine ( Cycle time history 5416 )
LeanProductionFlowModel ( Production flow model 9143 )
LeanProductionFlowReference ( Production flow references 4295 )
LeanScheduleGroup ( Lean schedule groups 2993 )
LeanScheduleGroupEntryGroup ( Lean schedule items 3000 )
LeanScheduleGroupEntrySingle ( Lean schedule items 2999 )
LeanScheduleGroupItem ( Lean schedule items 2998 )
LeanTmpCarrier ( Lookup table 100131 )
LeanWorkCellCapacity ( Work cell capacities 4296 )
Ledger ( Ledger 7057 )
LedgerAccountCov ( Liquidity cash flow forecast 186 )
LedgerAccountSchedTmp ( Chart of accounts 10579 )
LedgerAccountStatementPerCurrencyTmp ( LedgerAccountStatementPerCurrencyTmp 10420 )
LedgerAccountSumTmp_FR ( Balance list with group total accounts 7761 )
LedgerAccountTypePrefix ( Account type prefix 1692 )
LedgerAccrualTable ( Accrual schemes 1698 )
LedgerActivityZakatTmp_SA ( Zakat information 10520 )
LedgerAllocateKey ( Period allocation key 187 )
LedgerAllocateTrans ( Period allocation line 188 )
LedgerAllocation ( Allocation key for ledger posting 189 )
LedgerAllocationBasisRule ( Ledger allocation basis 6074 )
LedgerAllocationBasisRuleSource ( Ledger allocation basis source 6065 )
LedgerAllocationRule ( Ledger allocation rule 6068 )
LedgerAllocationRuleDestination ( Ledger allocation rule destination 6069 )
LedgerAllocationRuleSource ( Ledger allocation rule source 6070 )
LedgerAllocationRulesTmp ( LedgerAllocationRulesTmp 10589 )
LedgerAllocationTmpSource ( Ledger allocation source amounts 2716 )
LedgerAuditFileTransactionLog_NL ( Table holding audit file transactions 10429 )
LedgerBalanceControl ( Balance control accounts 190 )
LedgerBalanceSheetDimFileFormat ( File formats for the export of the financial statement 1400 )
LedgerBalColumnsDim ( Columns 1938 )
LedgerBalColumnsDimQuery ( Query for columns on the financial statement 48 )
LedgerBalHeaderDim ( Ledger balance 1932 )
LedgerChartOfAccounts ( Chart of accounts 6904 )
LedgerChartOfAccountsStructure ( Chart of accounts structure 6905 )
LedgerCheckTrans ( General journal entry 10008 )
LedgerCheckVoucherTmp ( Check ledger transactions 5601 )
LedgerClosingSheet ( Closing sheet 198 )
LedgerClosingTable ( Closing accounts 199 )
LedgerClosingTmp ( Closing sheet 9916 )
LedgerClosingTrans ( Closing transactions 200 )
LedgerConsolidateCurrencyConversion ( Consolidation currency translation 10207 )
LedgerConsolidateHist ( Ledger consolidation history 1206 )
LedgerConsolidateHistRef ( Ledger consolidation reference history 1207 )
LedgerConsolidateSourceDimension ( Source dimension 5368 )
LedgerCov ( Cash flow forecasts 205 )
LedgerCurrencyConversionLog ( Ledger currency conversion 100132 )
LedgerCurrencyReq ( Currency requirement 206 )
LedgerCustPaymProposal ( Customer payment proposal 1386 )
LedgerDimTransactionMap ( Ledger transactions extract map 1937 )
LedgerEliminationRule ( Ledger elimination rule 6082 )
LedgerEliminationRuleLine ( Ledger elimination rule line 6081 )
LedgerEliminationRuleLineCriteria ( Source criteria 6031 )
LedgerEliminationTmpJournalLine ( General journal account entry 6061 )
LedgerEncumbranceReconciliationTmp ( Encumbrance and ledger reconciliation 7755 )
LedgerEntry ( Ledger entry 3122 )
LedgerEntryJournal ( Ledger entry journal 3120 )
LedgerEntryJournalizing ( Ledger entry journalizing 3121 )
LedgerFiscalCalendarPeriod ( Ledger fiscal calendar period 7080 )
LedgerFiscalCalendarYear ( Ledger fiscal calendar year 7079 )
LedgerFiscalJournalTmp_IT ( Print an Italian fiscal journal 10241 )
LedgerGainLossAccount ( Ledger revaluation account 6913 )
LedgerGDPdUField ( Data export fields 797 )
LedgerGDPdUGroup ( Data export definition groups 807 )
LedgerGDPdURelation ( Data export relations 823 )
LedgerGDPdUTable ( Data export tables 835 )
LedgerGDPdUTableSelection ( Data export table selections 837 )
LedgerImportMode ( Methods of importing account statements 1128 )
LedgerInAccountStatementTmpDE_DTAUS ( Import file 5901 )
LedgerInAccountStatementTmpDE_MT940 ( Import file 5902 )
LedgerInfoZakat_SA ( Ledger chart of accounts 4203 )
LedgerInterCompany ( Intercompany accounting 207 )
LedgerItemCodeZakat_SA ( Zakat item codes 4112 )
LedgerJournalAccountMovementTmp ( LedgerJournalAccountMovementTmp 10419 )
LedgerJournalCashReportTmp ( Cash report 10708 )
LedgerJournalControlDetail ( Journal control 6071 )
LedgerJournalControlHeader ( Journal control 6072 )
LedgerJournalizeReport ( Ledger journal totals 209 )
LedgerJournalizeReportTmp ( Journal list and Extended journal list 10385 )
LedgerJournalizeReportTmp_DE ( German journal list 5827 )
LedgerJournalName ( Name of journal 210 )
LedgerJournalParmPost ( Post journals 1988 )
LedgerJournalPeriodFinalPrintBE ( Journal reports final periods 1783 )
LedgerJournalPostControlTmp ( Posting restrictions 5602 )
LedgerJournalPostControlUser ( Ledger journal user posting restriction 2006 )
LedgerJournalPostControlUserGroup ( Ledger journal user group posting restriction 2007 )
LedgerJournalSummaryTmp_ES ( Summarized Spanish journal list 100133 )
LedgerJournalTable ( Ledger journal table 211 )
LedgerJournalTableTypeBE ( Journal type BE 1784 )
LedgerJournalTmp ( Print journal 10841 )
LedgerJournalTrans ( Journal lines 212 )
LedgerJournalTrans_Asset ( Asset journal lines 2213 )
LedgerJournalTrans_Project ( Project journal lines 1619 )
LedgerJournalTransAccountView ( Journal lines 5286 )
LedgerJournalTransAccrual ( Ledger accruals 1699 )
LedgerJournalTransAccrualTrans ( Ledger accrual transactions 1700 )
LedgerJournalTransBankLC ( Journal lines for bank letter of credit 100134 )
LedgerJournalTransLedgerDimensionView ( Journal lines 100320 )
LedgerJournalTransVoucherTemplate ( Voucher templates 2290 )
LedgerJournalTransZakat_SA ( Zakat transactions 7938 )
LedgerJournalTxt ( Ledger journal texts 563 )
LedgerJournalVendTrans_BE ( Journal lines 1987 )
LedgerJournalVoucherChanged ( Changed journal vouchers 850 )
LedgerLiquidity ( Liquidity accounts 216 )
LedgerMainZakatTmp_SA ( Zakat information 10521 )
LedgerOpeningSheet_ES ( Opening sheets 863 )
LedgerOpeningTable_ES ( Opening accounts 864 )
LedgerOpeningTrans_ES ( Opening transactions 867 )
LedgerParameters ( Ledger parameters 217 )
LedgerPeriodCode ( Date intervals 219 )
LedgerPeriodDateDimensionActualDatesView ( Ledger date dimension table 100321 )
LedgerPeriodDateDimensionNullDatesView ( Ledger date dimension table 100322 )
LedgerPeriodDateDimensionView ( Ledger date dimension table 5696 )
LedgerPeriodModuleAccessControl ( Period permissions 7375 )
LedgerPeriodSumTmp_FR ( Ledger totals by periods 6268 )
LedgerPostingJournal ( Posting journals 1013 )
LedgerPostingJournalListTmp ( Posting journal list 5020 )
LedgerPostingJournalTotalTmp ( Ledger transactions 5840 )
LedgerPostingJournalVoucherSeries ( Posting journal and voucher series 1014 )
LedgerPostingTransactionProjectTmp ( PlaceHolder 10823 )
LedgerPostingTransactionTaxTmp ( PlaceHolder 10824 )
LedgerPostingTransactionTmp ( PlaceHolder 10822 )
LedgerProvisionsTmp_SA ( Zakat information 10522 )
LedgerPurchaseJournalReportTmpBE ( Purchase journal report 10037 )
LedgerReconciliationTmp ( General ledger reconciliation 100135 )
LedgerRelatedAccounts_ES ( Related accounts 868 )
LedgerReportIndexZakat_SA ( Zakat reports 4114 )
LedgerReportJournal_IT ( Fiscal journal sum 1319 )
LedgerReportZakat_SA ( Zakat reports 4113 )
LedgerRevenueActivityTmp_SA ( Zakat information 10523 )
LedgerRowDef ( Row structures 1933 )
LedgerRowDefErrorLog ( Error log 302 )
LedgerRowDefinitionPrintTmp ( Print row definition 11001 )
LedgerRowDefLine ( Row structure lines 1934 )
LedgerRowDefLineCalc ( Expression arguments 1935 )
LedgerSystemAccounts ( System accounts 220 )
LedgerTmpAccountCategoryLink ( Ledger account category temp 1398 )
LedgerTmpGDPdUField ( Temporary data export field 838 )
LedgerTmpGDPdULookup ( Data export lookup 839 )
LedgerTotalAndBalanceListTmp ( Balance list 5940 )
LedgerTransAccountVoucherTmp_FR ( Transaction list by account 10197 )
LedgerTransactionListTmp ( Ledger transaction list 100136 )
LedgerTransBaseTmp ( Transaction origin 10764 )
LedgerTransferOpeningSumTmp ( Account totals 2795 )
LedgerTransferOpeningTmp ( Close-of-year transactions 10821 )
LedgerTransFurtherPosting ( Bridged postings 1384 )
LedgerTransPerJournalTmp ( Posted transactions by journal 10802 )
LedgerTransSettlement ( Ledger settlements 1054 )
LedgerTransStatementTmp ( Statement by dimensions 10780 )
LedgerTransVoucherLink ( Related ledger transaction vouchers 6100 )
LedgerTrialBalanceTmp ( Trial balance 10816 )
LedgerValueZakat_SA ( Value 4116 )
LedgerVendPaymProposal ( Vendor payment proposal 1382 )
LedgerXBorderActivityTmpAT ( Cross-border services 5288 )
LedgerXBRLProperties ( Path and file name for XBRL 7118 )
LedgerXBRLTransactionLog_NL ( Table holding XBRL transactions 10428 )
LedgerZakatHeaderTmp_SA ( Zakat information 10524 )
LegFinJourRepTmpLegTransBE ( Financial journal report 5307 )
LineOfBusiness ( Line of business 928 )
LogisticsAddressCountryRegion ( Country/region 2942 )
LogisticsAddressCountryRegionNameView ( Country/Region names 100323 )
LogisticsAddressCountryRegionTranslation ( Country/region translations 4405 )
LogisticsAddressCountryRegTranslFiltered ( Country/region labels in system language 6616 )
LogisticsAddressCounty ( Counties 2943 )
LogisticsAddressDateEffectiveMap ( Postal and electronic address date effective map 7689 )
LogisticsAddressDistrict ( Districts 4404 )
LogisticsAddressFormatHeading ( Address format 2944 )
LogisticsAddressFormatLines ( Address format lines 2945 )
LogisticsAddressParameters ( Address parameters 7966 )
LogisticsAddresssCity ( Cities 4427 )
LogisticsAddressState ( States 2946 )
LogisticsAddressZipCode ( ZIP/postal codes 2947 )
LogisticsContactInfoView ( Contact information view 5584 )
LogisticsCountryRegionPaymentIdType_NO ( Payment ID type 4435 )
LogisticsElectronicAddress ( Communication details 2956 )
LogisticsEntityContactInfoView ( Entity contact information view 7653 )
LogisticsEntityLocationMap ( Entity location map 7654 )
LogisticsEntityLocationRoleMap ( Entity location role map 7716 )
LogisticsEntityLocationView ( Entity location view 7650 )
LogisticsEntityPostalAddressView ( Entity postal address view 7652 )
LogisticsLESiteWarehouseLocation ( Legal entity, site, and warehouse locations view 7193 )
LogisticsLocation ( Locations 2954 )
LogisticsLocationAccessView ( Location access view 100324 )
LogisticsLocationDefaultTmp ( Default location 4866 )
LogisticsLocationExt ( Locations 3555 )
LogisticsLocationMap ( Location map 7680 )
LogisticsLocationParty ( Party location roles view 7196 )
LogisticsLocationRole ( Roles 2953 )
LogisticsLocationRoleTranslation ( Role translations 4409 )
LogisticsPostalAddress ( Addresses 2941 )
LogisticsPostalAddressExpanded ( Geographic location 7184 )
LogisticsPostalAddressMap ( Address mapping 3110 )
LogisticsPostalAddressView ( Address view 5076 )
LogMap ( Log map 326 )
MainAccount ( Main account 720 )
MainAccountCategory ( Main account categories 6840 )
MainAccountControlCurrencyCode ( Currency posting control 6187 )
MainAccountControlPosting ( Select the posting type of the current account 3776 )
MainAccountControlTaxCode ( Posting control for tax code 3779 )
MainAccountControlUser ( User posting control 3786 )
MainAccountCube ( Main account 7889 )
MainAccountForJournalControlView ( Main account 6426 )
MainAccountLedgerDimensionView ( Main account ledger dimension 9877 )
MainAccountLegalEntity ( Main account legal entity 6902 )
MainAccountTemplate ( Main account templates 6909 )
MarkupAutoLine ( Auto charges 226 )
MarkupAutoTable ( Auto charges transactions 227 )
MarkupGroup ( Charges groups 228 )
MarkupMatchingTrans ( Expected charges 3579 )
MarkupTable ( Charges code 229 )
MarkupTmpAllocation ( Charge allocation RecId values 6474 )
MarkupTmpDetails ( Invoice markup details 6119 )
MarkupTmpMaxAmountValidation ( Purchase order and invoice markup totals 6185 )
MarkupTmpTotals ( Invoice markup totals 6120 )
MarkupTmpTrans_FI ( Temporary 2109 )
MarkupTolerance ( Charges tolerances 2089 )
MarkupTrans ( Charges transactions 230 )
MarkupTransHistory ( Charges transactions history 4478 )
MarkupTransMap ( MarkupTrans and MarkupTransHistory map 4486 )
MarkupTransMapping ( MarkupTransMapping 4883 )
ModelSecPolRuntimeEx ( Model security policy runtime 65431 )
ModelSecPolRuntimeView ( Model security policy runtime view 65430 )
MyAddressBook ( Address books for current user 100137 )
MyAddressBookForXDS ( User defined and system address books for current user 100138 )
MyDepartments ( Departments for current user 100139 )
MyDirectReports ( Worker 100140 )
MyLegalEntities ( Legal entities associated with role 100141 )
MyLegalEntitiesForNS ( Legal entities 100142 )
MyLegalEntitiesForXDS ( Legal entities associated with role 100143 )
MyLegalEntityForWorker ( Legal entities associated with worker 100144 )
MyRoles ( Current user's roles 100145 )
NGPCodesTable_FR ( NGP codes 9729 )
NumberSequenceDatatype ( Datatype number sequence properties 4221 )
NumberSequenceDatatypeParameterType ( Number sequence datatype parameter type 4222 )
NumberSequenceGroup ( Number sequence group 772 )
NumberSequenceGroupRef ( Number sequence group references 793 )
NumberSequenceHistory ( History 521 )
NumberSequenceList ( Number sequence list 271 )
NumberSequenceParameterShortName ( Short name 7668 )
NumberSequenceReference ( Number sequence references 707 )
NumberSequenceScope ( Number sequence Scope 4224 )
NumberSequenceTable ( Number sequence code 273 )
NumberSequenceTTS ( Number sequence transaction tracking 270 )
OfficeAddinAccountStructureView ( Account structures 100325 )
OMDepartmentView ( Department 7123 )
OMExplodedOrganizationSecurityGraph ( Exploded organization structure 2444 )
OMHierarchyChangeLog ( Hierarchy change log 5068 )
OMHierarchyPurpose ( Purpose type 5069 )
OMHierarchyPurposesTmp ( Purposes 100146 )
OMHierarchyRelationship ( Hierarchy relationship 4967 )
OMHierarchyType ( Hierarchy 5067 )
OMHierPurposeOrgTypeMap ( Maps hierarchy purpose to the supported node types 7260 )
OMInternalOrganization ( Internal organization 2376 )
OMInternalOrganizationTmpType ( Internal organization type 100147 )
OMOperatingUnit ( Operating unit 2377 )
OMOperatingUnitView ( Operating unit 100326 )
OMRevisionEdit ( Revision table used for storing the model that is being edited 5898 )
OMTeam ( Team 5329 )
OMTeamMemberSelection ( Add team members 6270 )
OMTeamMembershipCriterion ( Team type 5200 )
OMUserRoleOrganization ( User role organization assignment 7919 )
OMUserRoleOrganizationTemp ( User role organization assignment 100148 )
OutlookSyncParameters ( Microsoft Outlook synchronization parameters 384 )
OutlookUserSetup ( Outlook worker 7887 )
ParmBuffer ( Parameter 858 )
ParmUpdate ( General parameters 2527 )
PaymDay ( Payment days 875 )
PaymDayLine ( Payment day lines 876 )
PaymInstruction ( Payment instruction 1677 )
PaymManStepTable ( Payment step 1262 )
PaymModeMap ( Customer and vendor method of payment map 1922 )
PaymSched ( Payment schedule 277 )
PaymSchedLine ( Payment schedule lines 278 )
PaymTerm ( Terms of payment 276 )
PBABOMRouteOccurrence ( BOM Route occurrence 8581 )
PBAConfiguratedItemTmp ( Configured item 10017 )
PBAConsistOfTmp ( Composed of 10065 )
PBACustGroup ( Product model group 8494 )
PBADefault ( Default values 8495 )
PBADefaultRoute ( Default route 8496 )
PBADefaultRouteTable ( Default route 8497 )
PBADefaultVar ( Default value 8498 )
PBAGraphicParameters ( Graphic parameters 8639 )
PBAGraphicParametersInterval ( Interval 138 )
PBAGraphicParametersVariable ( Graphic parameters variables 8640 )
PBAGroup ( Product model group 8499 )
PBAInventItemGroup ( Product model group 8500 )
PBAItemLine ( Item line 8586 )
PBALanguageTxt ( Translations 8501 )
PBANodeMap ( Product Builder tree node 8546 )
PBAParameters ( Product Builder parameters 8502 )
PBAReuseBOMRoute ( Reuse BOM & route 8582 )
PBARule ( Validation rule 8503 )
PBARuleAction ( Action 8504 )
PBARuleActionValue ( Value 8505 )
PBARuleActionValueCode ( Value 8506 )
PBARuleActionValueCodeParm ( Value 8641 )
PBARuleClause ( Validation rule 8642 )
PBARuleClauseSet ( Versions 8643 )
PBARuleClauseVersion ( Versions 8644 )
PBARuleCodeCompiled ( Compiled code 8645 )
PBARuleDebuggerTable ( Rule debugger 6063 )
PBARuleExprMap ( Rule expression map 8547 )
PBARuleLine ( Rule 8507 )
PBARuleLineCode ( Value 8583 )
PBARuleLineCodeParm ( Line code parameters 8646 )
PBARuleLineSimple ( Simple rule 8647 )
PBARulePBAId2ConsId ( Model mapping 8648 )
PBARuleTableConstraint ( Table constraints 2130 )
PBARuleTableConstraintColumn ( Table constraints 2129 )
PBARuleTableConstraintRef ( Table constraint references 2124 )
PBARuleVariable ( Rule sorting 8649 )
PBARuleVariableLine ( Rule sorting 8650 )
PBASalesHeader ( Sales header 2436 )
PBATable ( Product model 8509 )
PBATableGenerateItemId ( Generate item number 8584 )
PBATableGenerateItemVariables ( Generate items and dimensions 8585 )
PBATableGroup ( Product model group 8510 )
PBATableInstance ( Configuration details 8511 )
PBATablePBAInstance ( Configuration details 8512 )
PBATablePrice ( Price combinations 8513 )
PBATablePriceCurrencySetup ( Amount in transaction currency 8514 )
PBATablePriceSetup ( Rule 8515 )
PBATablePriceSetupCode ( Value 8587 )
PBATableVariable ( Modeling variables 8516 )
PBATableVariableDefaultVal ( Default value 8517 )
PBATableVariableVal ( Outcomes 8518 )
PBATmpBomId ( Generated BOM and route 8519 )
PBATmpBuildForm ( Value table 8520 )
PBATreeBOM ( BOM lines 8522 )
PBATreeCase ( Case node 8523 )
PBATreeCode ( Code node 8524 )
PBATreeDefault ( Default node 8525 )
PBATreeDocRef ( Document handling 8526 )
PBATreeFor ( FOR node 8527 )
PBATreeInfoLog ( Message 8528 )
PBATreeInventDim ( Inventory dimensions 8589 )
PBATreeNode ( Modeling tree 8529 )
PBATreeRoute ( Route 8530 )
PBATreeRouteOpr ( Operation relation 8531 )
PBATreeSimpel ( Simple node 8532 )
PBATreeSwitch ( Switch node 8533 )
PBATreeTable ( Table node 8534 )
PBATreeTableSelect ( Table node 8535 )
PBATreeTableVal ( Table node 8536 )
PBAUserProfiles ( User profile 8537 )
PBAUserProfileUserRelation ( Product builder user profile 10273 )
PBAVariable ( Variables 8538 )
PBAVariableVal ( Outcomes 8539 )
PBAVarPBAProfiles ( User profiles 8540 )
PBAVersion ( Versions 8541 )
PCApplicationControlConstraint ( Component condition 4353 )
PCClass ( Product configuration component class 4423 )
PCComponentAttributeGroup ( Component attribute UI group 4974 )
PCComponentAttributeGroupCategoryAttr ( Component attribute UI group 4975 )
PCComponentAttributeGroupTranslation ( Attribute group translation 7019 )
PCComponentConstraint ( Component constraint 4355 )
PCComponentControl ( Component control 4976 )
PCComponentControlRootComponent ( Root component UI definition 6342 )
PCComponentControlSubComponent ( Sub component UI definition 6343 )
PCComponentInstance ( Component instance 4356 )
PCComponentInstanceRootComponent ( Root component instance 4357 )
PCComponentInstanceSubComponent ( Sub-component instance 4358 )
PCComponentInstanceValue ( Component instance value 4359 )
PCConfigurationControl ( Configuration control 4977 )
PCConstraint ( Constraint 4360 )
PCDatabaseRelationConstraintDefinition ( System defined table constraint definition 4844 )
PCExpressionConstraint ( Expression constraint 4361 )
PCGlobalTableConstraintDefinition ( User defined table constraint definition 4845 )
PCProductConfiguration ( Product configuration 4362 )
PCProductConfigurationModel ( Product configuration model 4363 )
PCProductConfigurationModelTranslation ( Product configuration model translation 7020 )
PCProductModelVersion ( Product configuration model version 4364 )
PCProductModelVersionApprover ( Version approver 4365 )
PCSolverTextValue ( Text solver value 7023 )
PCSolverVariable ( Attribute solver name 7018 )
PCSubComponent ( Sub-component 4366 )
PCSubComponentRequirement ( Sub-component requirement 4367 )
PCSubComponentTranslation ( Sub component translation 7021 )
PCTableConstraint ( Table constraint 4368 )
PCTableConstraintCell ( Table constraint cell 4846 )
PCTableConstraintColumnCategoryAttribute ( Attached table constraint attribute 4847 )
PCTableConstraintColumnDefinition ( Table constraint column 4848 )
PCTableConstraintDatabaseColumnDef ( System defined table constraint column 4849 )
PCTableConstraintDefinition ( Table constraint definition 4850 )
PCTableConstraintGlobalColumnDef ( User defined table constraint column definition 4851 )
PCTableConstraintRow ( Table constraint row 4852 )
PCTemplate ( Product configuration template 4370 )
PCTemplateAttribute ( Template attribute 4371 )
PCTemplateAttributeBinding ( Template attribute value 4372 )
PCTemplateCategoryAttribute ( Template component attribute value 4373 )
PCTemplateComponent ( Component template 4374 )
PCTemplateComponentConstraint ( Template condition 4375 )
PCTemplateConfiguration ( Template configuration 4376 )
PCTemplateConfigurationTranslation ( Configuration template translation 7022 )
PCTemplateConstant ( Template constant value 4377 )
PCTmpTranslation ( Translations 7024 )
PCVariantConfiguration ( Variant configuration 4378 )
PCWhereUsedTmp ( Constraint-Based product configuration models 11233 )
PersonTitleTable ( Titles/occupations 519 )
Plan ( Plans 4297 )
PlanActivitiesCrossProductionFlow ( Related cross production flow reference activities 4563 )
PlanActivity ( Plan activities 4298 )
PlanActivityLocation ( Plan activity locations 4299 )
PlanActivityRelationship ( Plan activity relationships 4300 )
PlanActivityRelationshipParent ( Plan activity relationship 9816 )
PlanActivityResourceRequirement ( Plan activity resource requirements 4301 )
PlanActivityService ( Activity service terms 100149 )
PlanActivityServiceOutputItem ( Activity service output items 100150 )
PlanActivityTime ( Plan activity times 4302 )
PlanActivityTimeComponent ( Plan activity time components 4303 )
PlanActivityTmpActivityTimes ( Activity times 4927 )
PlanActivityTmpPickingLocations ( Picking locations 4926 )
PlanActivityTmpServiceOutputProducts ( Service output products 100151 )
PlanActivityTmpServiceWizardItemSelect ( Item selection 100152 )
PlanActivityWithLocations ( Plan activity location 9817 )
PlanConstraint ( Plan constraints 4304 )
PlanPlanActivitiesAggregate ( Aggregate plan plan activities 4558 )
PlanPlanActivity ( Plan activity relationships 4305 )
PlanReference ( Plan references 4306 )
PlanSequenceConstraintValue ( Plan constraint values 4307 )
PriceDiscAdmName ( Price/discount agreement journal name 970 )
PriceDiscAdmTable ( Price/discount agreement journal table 971 )
PriceDiscAdmTrans ( Price/discount agreement journal lines 972 )
PriceDiscChangePoliciesTmp ( PriceDiscChangePoliciesTmp 6344 )
PriceDiscChangePolicy ( Price discount change policy 2042 )
PriceDiscGroup ( Price groups 312 )
PriceDiscHeading ( Price/Discount header 313 )
PriceDiscLine ( Price/discount 314 )
PriceDiscPolicyFields ( Price discount policy fields 2043 )
PriceDiscPurchPolicyParameters ( Price disc purch policy parameters 2036 )
PriceDiscResultFields ( Price discount result fields 2088 )
PriceDiscSalesLineTmpPrintout ( Line discount list 100153 )
PriceDiscSalesMultiLineTmpPrintout ( Multiline discount list 100154 )
PriceDiscSalesPolicyParameters ( Price disc sales policy parameters 2035 )
PriceDiscSalesTotalTmpPrintout ( Total discount 100155 )
PriceDiscSmartRoundingGroup ( Rounding version 2923 )
PriceDiscSmartRoundingGroupCurrency ( Rounding version members 2925 )
PriceDiscSmartRoundingRule ( Rounding rules 2924 )
PriceDiscTable ( Price agreements 315 )
PriceDiscTmpPrintout ( Pricelist 2020 )
PriceParameters ( Price parameters 316 )
PrintJobHeader ( Print job information (job-level) 65525 )
PrintJobPages ( Print job information (page-level) 65524 )
PrintMgmtDocInstance ( Print management document instance 1600 )
PrintMgmtIdentificationText ( Print management footer text 1603 )
PrintMgmtReportFormat ( Report formats 10208 )
PrintMgmtSettings ( Print management document settings 1618 )
ProcCategoryAccessPolicyParameter ( Category access rule data 5659 )
ProcCategoryCharterPagePolicy ( Procurement category charter page policy 5611 )
ProcCategoryCommodityCode ( Commodity code 5612 )
ProcCategoryExpanded ( Procurement category 7848 )
ProcCategoryItemTaxGroup ( Procurement category item sales tax group 7713 )
ProcCategoryLegalEntityView ( Legal entities 100327 )
ProcCategoryModifier ( Procurement category modifier 7518 )
ProcCategoryPage ( Procurement category charter page 5614 )
ProcCategoryPageTranslation ( Category page translation 5615 )
ProcCategoryPolicyParameter ( Category procurement policy rule data 5670 )
ProcCategoryQuestionnaire ( Category questionnaires 5617 )
ProcCategoryTmpAccessPolicy ( List of categories 5911 )
ProcCategoryTmpAllowedCategory ( List of categories 5912 )
ProcCategoryTmpCommodityCode ( Category commodity code 5139 )
ProcCategoryTmpPolicyRule ( Category policy rules 5820 )
ProcCategoryTmpVendor ( Vendors 5915 )
ProcCategoryVendorStatus ( Procurement category vendor 10319 )
ProcCategoryVendorView ( Vendors 5916 )
ProdBOM ( Production BOM 232 )
ProdBOMTransProj ( Project BOM journal transactions 1811 )
ProdCalcTrans ( Calculation 233 )
ProdCalcTransExpanded ( Cost calculation 7168 )
ProdCalcTransLevel ( Production level 7169 )
ProdCapacityReservationsTmp ( Capacity reservations 10953 )
ProdComTmp_BE ( Print 9867 )
ProdFinishGoodsInProgressTmp ( Finished items in process 100156 )
ProdGroup ( Production groups 255 )
ProdIndirectTrans ( Indirect cost transactions 1100 )
ProdJobCardTmp ( Job card 100157 )
ProdJournalBOM ( BOM journal transactions 239 )
ProdJournalName ( Production journals 240 )
ProdJournalProd ( Production journal transactions 241 )
ProdJournalRoute ( Routing journal transactions 242 )
ProdJournalRouteProj ( Project routing journal transactions 2887 )
ProdJournalTable ( Production journal table 243 )
ProdParameters ( Production parameters 245 )
ProdParametersDim ( Production parameters by site 1148 )
ProdParmBOMCalc ( BOM calculation - production 246 )
ProdParmCostEstimation ( Estimation 247 )
ProdParmHistoricalCost ( End 248 )
ProdParmRelease ( Release 249 )
ProdParmReportFinished ( Production report as finished 250 )
ProdParmScheduling ( Scheduling 251 )
ProdParmSplit ( Split 1180 )
ProdParmStartUp ( Start 252 )
ProdParmStatusDecrease ( Reset status 253 )
ProdPickListTmp ( ProdPickListTmp 10153 )
ProdPool ( Production pools 254 )
ProdRawmaterialInProgressTmp ( Raw materials in process 6977 )
ProdRoute ( Production route 257 )
ProdRouteCardTmp ( Route card 10157 )
ProdRouteJob ( Route jobs 258 )
ProdRouteProj ( Project production route 1505 )
ProdRouteSchedulingView ( Scheduling 3381 )
ProdRouteTrans ( Route transactions 261 )
ProdRouteTransExpanded ( Route transactions 7170 )
ProdRouteTransPackingSlipOrigin ( Direct outsourcing transaction packing slip origin 100158 )
ProdRouteTransVendInvoiceOrigin ( Direct outsourcing transaction vendor invoice origin 100159 )
ProdStatusParameters ( Production status setup 310 )
ProdTable ( Production orders 262 )
ProdTableExpanded ( Production order 7171 )
ProdTableJour ( Journal 263 )
ProdTableProj ( Project production orders 683 )
ProdTimeUnitOfMeasure ( Time units of measure 5507 )
ProdTmpInProcessCosting ( In process production costing 184 )
ProdTmpTopTenDelayedOrders ( Delayed production orders 7820 )
ProdUnitTable ( Production units 2263 )
ProjActivity ( Activities 634 )
ProjActivityAssignment ( Project resource assignment 4315 )
ProjActualConsumptionPart ( Actual costs 100328 )
ProjAdjTreeVisualizationLine ( Adjustment tree setup 18173 )
ProjAllocateKey ( Project allocation keys 576 )
ProjAllocateTrans ( Project - allocation transaction 577 )
ProjBegBalJournalTrans_CostSales ( Journal lines for beginning balances 3549 )
ProjBegBalJournalTrans_Fee ( Journal lines for beginning balances 3550 )
ProjBegBalJournalTrans_OnAcc ( Journal lines for beginning balances 3551 )
ProjBIEmplTrans ( Hour transactions 5350 )
ProjBIForecastEmpl ( Hour forecast 5351 )
ProjBudget ( Project budget 4443 )
ProjBudgetAllocationLine ( Allocation line 4444 )
ProjBudgetLine ( Project budget line 4462 )
ProjBudgetLineMap ( Budget line map 10772 )
ProjBudgetReductionHistory ( Project budget reduction history 4887 )
ProjBudgetRevision ( Project budget revision 7297 )
ProjBudgetRevisionLine ( Project budget revision line 7298 )
ProjBudgetRevLineAllocation ( Project budget revision line allocation 7300 )
ProjBudgetStatus ( Project budget status 10716 )
ProjBudgetStatusDetail ( Project budget status detail 10717 )
ProjBudgetUserGroupOption ( User group project budget settings 4417 )
ProjCashFlowTmp ( Cash flow 5358 )
ProjCategory ( Project category 582 )
ProjCategoryGroup ( Category group 584 )
ProjClosingProfile ( Closing profile 5408 )
ProjControl ( Control types 715 )
ProjControlCategory ( Categories for control types 742 )
ProjControlCostGroup ( Estimate template 741 )
ProjControlPeriodCostGroup ( Cost group 744 )
ProjControlPeriodTable ( Control periods 746 )
ProjControlPeriodTableColumn ( Control period estimate 1709 )
ProjControlPeriodTrans ( Work in process 820 )
ProjCostPriceExpense ( Project - expense cost price 49 )
ProjCostSalesPrice ( Project - expense sales price 1664 )
ProjCostTrans ( Expense 586 )
ProjCostTransCost ( Expense 3005 )
ProjCostTransSale ( Expense 3007 )
ProjCostTransView ( Expense transactions 100329 )
projCustInvoiceLineDistsUnpostedView ( Unposted free text invoice distributions 10114 )
ProjDefaultOffsetSetup ( Default offset accounts 1105 )
ProjectAccountingDistribution ( Project accounting distribution 7129 )
ProjectRevenueHeader ( Project revenue header 7480 )
ProjectRevenueLine ( Project revenue line 7481 )
ProjEmplCategoryAssoc ( Employee/category 5950 )
ProjEmplCategoryAssoc_ValidationGroup ( Employee/category validation group 5951 )
ProjEmplTrans ( Hours 587 )
ProjEmplTransactionsView ( Hour transactions 100330 )
ProjEmplTransCost ( Hours 3009 )
ProjEmplTransSale ( Hours 3010 )
ProjEstimateListTmp ( Estimate list 5094 )
ProjExportToExcelPivotTable ( Export to Microsoft Excel Pivot report setup 1231 )
ProjExpPolicies ( Project expense policies 2710 )
ProjExpPolicyGroupEmpl ( Group of employees for project expense policy purposes 2711 )
ProjExpPolicyGroups ( Project expense policy worker groups 2712 )
ProjForecastCost ( Expense forecast 578 )
ProjForecastCostView ( Expense forecast 100331 )
ProjForecastEmpl ( Hour forecast 579 )
ProjForecastEmplView ( Hour forecast 100332 )
ProjForecastOnAcc ( On-account forecast 1930 )
ProjForecastOnAccView ( On-account forecast 100333 )
ProjForecastReductionHistory ( Project forecast reduction history 1230 )
ProjForecastRevenue ( Fee forecast 581 )
ProjForecastRevenueView ( Fee forecast 100334 )
ProjForecastSalesView ( Demand forecast 100335 )
ProjForecastUnion ( Forecast 100336 )
ProjFormletterDocument ( Project, form setup 1576 )
ProjFormletterParameters ( Project, form parameters 1577 )
ProjFundingLimit ( Project funding limit 2253 )
ProjFundingRule ( Project funding rule 2156 )
ProjFundingRuleAllocation ( Project funding rule allocation 3164 )
ProjFundingSearchParameter ( Funding search parameter 2809 )
ProjFundingSource ( Project funding source 2424 )
ProjGrant ( Grant 4778 )
ProjGrantCustomerContact ( Project grant customer communication view 6215 )
ProjGrantFrequency ( Project grant frequency 4779 )
ProjGrantMatching ( Project grant matching 4218 )
ProjGrantorType ( Project grantor type 4219 )
ProjGrantType ( Project grant type 4461 )
ProjGrantTypeFrequency ( Project grant type frequency 4220 )
ProjGrantView ( Project grant view 4972 )
ProjGroup ( Project groups 588 )
ProjHourCostPrice ( Project - hour cost price 585 )
ProjHourSalesPrice ( Project - hour sales price 622 )
ProjHourUtilizationTmp ( Project hour utilization – billable rate 5095 )
ProjInventJournalTransMap ( Item journal 6077 )
ProjInventJournalTransUnpostedView ( Unposted item journal transactions 10083 )
ProjInvoiceCost ( Project - invoice lines, expense 589 )
ProjInvoiceCostDetail ( Project - invoice lines, expense 3011 )
ProjInvoiceCurrency ( Fixed rate agreements 717 )
ProjInvoiceEmpl ( Project - invoice lines, employee 590 )
ProjInvoiceEmplDetail ( Project - invoice lines, employee 3012 )
ProjInvoiceItem ( Project - invoice lines, items 591 )
ProjInvoiceItemDetail ( Project - invoice lines, items 3013 )
ProjInvoiceJour ( Project invoice 592 )
ProjInvoiceOnAcc ( Project invoice lines on-account 593 )
ProjInvoiceOnAccDetail ( Project invoice lines on-account 3014 )
ProjInvoiceParmTable ( Invoice posting 594 )
ProjInvoiceRevenue ( Project - invoice lines, fee 596 )
ProjInvoiceRevenueDetail ( Project - invoice lines, fee 3015 )
ProjInvoiceTable ( Project contracts 598 )
ProjInvoiceTmp ( Project invoice 10424 )
ProjInvoiceTransMap_MX ( Project invoice lines 11634 )
ProjItemTrans ( Items 1286 )
ProjItemTransCost ( Items - project expenses 1288 )
ProjItemTransSale ( Items 3016 )
ProjItemTransView ( Item transactions 100337 )
ProjJournalName ( Project journal names 599 )
ProjJournalStatusHistory ( History on status 600 )
ProjJournalStatusLine ( Journal approval setup 601 )
ProjJournalStatusTable ( Journal approval 602 )
ProjJournalTable ( Project journal table 603 )
ProjJournalTrans ( Project journal 604 )
ProjJournalTransFeeUnpostedView ( Unposted fee journal transactions 10086 )
ProjJournalTransHourUnpostedView ( Unposted hour journal transactions 10024 )
ProjJournalTransMap ( Hour journal 2888 )
ProjJournalTxt ( Project journal description 1368 )
ProjKPIDefaultManagerView ( KPI for project manager 100338 )
ProjLedgerJournalTransUnpostedView ( Unposted expense journal transactions 10078 )
ProjLineProperty ( Line property 597 )
ProjLinePropertySetup ( Line property setup 1208 )
ProjListBudgetTmp ( Transaction list 7870 )
ProjListEstimateTmp ( Estimate 5359 )
ProjListLedgerReconTmp ( Ledger reconciliation 5515 )
ProjListLedgerReconWIPAccountTmp ( Reconciliation - WIP accounts 5818 )
ProjListLedgerUpdates ( Ledger updates 5517 )
ProjListLinePropertyTmp ( Line property setup 4888 )
ProjListPostingReadyTmp ( Journal approval 4889 )
ProjListProjConsumptionTmp ( Project - consumption 4668 )
ProjListProjOnAccountTmp ( Project - on account 4671 )
ProjListProjPayrollTmp ( Payroll allocation 4670 )
ProjListProjPostingTmp ( Ledger posting setup 5096 )
ProjListProjProfitLossTmp ( Profit and loss 4646 )
ProjListProjWIPTmp ( WIP 4669 )
ProjListTransCommittedCostTmp ( Committed costs - items 10329 )
ProjListTransTmp ( Transaction list 10305 )
ProjNotStockedSalesOrderTransView ( Invoice proposal - items 100339 )
ProjOnAccTrans ( On-account 608 )
ProjOnAccTransSale ( On-account 3017 )
ProjOnAccTransUnpostedView ( Unposted on account journal transactions 10087 )
ProjOnAccTransView ( On-account transactions 1473 )
ProjParameters ( Project parameters 609 )
ProjPeriodEmpl ( Project periods - employee 611 )
ProjPeriodLine ( Project period lines 612 )
ProjPeriodPostingTmp ( Ledger posting setup 5356 )
ProjPeriodTable ( Project periods 610 )
ProjPeriodTimesheetWeek ( Timesheet weekly periods 4631 )
ProjPosting ( Ledger posting setup 606 )
ProjPostTransSaleView ( Project transactions 3565 )
ProjPostTransView ( Project transactions 2523 )
ProjProdJournalBOMUnpostedView ( Unposted production picking list transactions 10084 )
ProjProdJournalRouteUnpostedView ( Unposted production route transactions 10027 )
ProjProjectCategoryAssoc ( Project/category 5948 )
ProjProjectCategoryAssoc_ValidationGroup ( Project/category validation group 5949 )
ProjProjectEmployeeAssoc ( Project/employee 5946 )
ProjProjectEmployeeAssoc_ValidationGroup ( Employee/category validation group 5947 )
ProjProjectForecastsPart ( Forecast costs 100340 )
ProjProposalCost ( Invoice proposal - expense 614 )
ProjProposalCostDetail ( Invoice proposal - expense 3018 )
ProjProposalCostTrans ( Invoice proposal - expense 100341 )
ProjProposalEmpl ( Invoice proposal - employee 615 )
ProjProposalEmplDetail ( Invoice proposal - employee 3019 )
ProjProposalEmplTrans ( Invoice proposal - employee 100342 )
ProjProposalItem ( Invoice proposal - items 616 )
ProjProposalItemDetail ( Invoice proposal - items 3020 )
ProjProposalItemTrans ( Invoice proposal - items 100343 )
ProjProposalJour ( Invoice proposal 617 )
ProjProposalOnAcc ( Invoice proposal - on-account 618 )
ProjProposalOnAccDetail ( Invoice proposal - on-account 3021 )
ProjProposalOnAccTrans ( Invoice proposal - on-account 100344 )
ProjProposalRevenue ( Invoice proposal - fee 619 )
ProjProposalRevenueDetail ( Invoice proposal - fee 3022 )
ProjProposalRevenueTrans ( Invoice proposal - fee 100345 )
ProjProposalTransUnion ( Project transactions 100346 )
ProjResource ( Project resource 4312 )
ProjRevenueSalesPrice ( Project - fee sales price 1621 )
ProjRevenueTrans ( Fee 621 )
ProjRevenueTransSale ( Fee 3023 )
ProjRevenueTransView ( Fee transactions 1474 )
ProjSalesOrderTrans ( Invoice proposal - items 100347 )
ProjScrapSalesOrderTrans ( Invoice proposal - items 100348 )
ProjServerParameters ( Microsoft Project Server integration global settings 1138 )
ProjServerSettings ( Microsoft Project Server applications 2200 )
ProjSorting ( Sorting 613 )
ProjStatusTypeRule ( Project stage rule settings 307 )
ProjTable ( Projects 624 )
ProjTableCube ( Projects 100349 )
ProjTimesheetLineMap ( Timesheet line map 4685 )
ProjTmpBudgetDisplay ( Project budget status 7163 )
ProjTransBudget ( Budget updates 1929 )
ProjTransBudgetCube ( Budget updates 7675 )
ProjTransPosting ( Ledger updates 607 )
ProjTransPostingBudgetView ( All transactions 100519 )
ProjTransPostingCube ( Ledger updates 9760 )
ProjTrvExpTransDistsUnpostedView ( Unposted expense report distributions 10335 )
ProjUnpostedTransView ( Pending project transactions 10227 )
ProjUtilTypes ( Project type utilization settings 2348 )
ProjValEmplCategorySetUp ( Employee validation group lines 1241 )
ProjValEmplCategoryTable ( Employee/category validation group 1232 )
ProjValEmplProjSetup ( Project validation group lines 1242 )
ProjValEmplProjTable ( Worker/project validation group 1236 )
ProjValProjCategorySetUp ( Category validation group lines 1281 )
ProjValProjCategoryTable ( Project/category validation group 1280 )
ProjValProjectTmp ( Project validation 5743 )
projVendInvoiceInfoLineDistsUnpostedView ( Unposted vendor invoice distributions 10115 )
ProjWIPTable ( Estimate projects 1205 )
ProjWorkerSetup ( Project worker 5767 )
PurchAgreementHeader ( Purchase agreement 4902 )
PurchAgreementHeaderDefault ( Release purchase order defaulting policy 4906 )
PurchAgreementHeaderDefaultHistory ( Purchase agreement confirmation history 4909 )
PurchAgreementHeaderHistory ( Purchase agreement confirmation history 4718 )
PurchCommitmentLine_PSN ( Commitment 100160 )
PurchCORPolicyTable ( Confirmation of product receipt policies 5247 )
PurchCORRejectsTable ( Rejected lines 5513 )
PurchCostTransTmp ( Purchase cost transactions 5580 )
PurchDeliverySchedule ( Purchase delivery schedule 2374 )
PurchDeliveryScheduleHistory ( Purchase delivery schedule history 4480 )
PurchJournalAutoSummary ( Purchase summary update 930 )
PurchLine ( Purchase order lines 340 )
PurchLineAllVersions ( Purchase line versions 100350 )
PurchLineArchivedVersions ( Purchase line archived versions 100351 )
PurchLineBackOrder ( Backorder purchase lines 6498 )
PurchLineForeignTradeCategory ( Order line foreign trade category 3447 )
PurchLineForeignTradeCategoryHistory ( Order line foreign trade category history 4479 )
PurchLineForeignTradeCategoryMap ( PurchLineForeignTradeCategory and PurchLineForeignTradeCategoryHistory map 4487 )
PurchLineHistory ( Purchase lines history 4475 )
PurchLineMap ( PurchLine and PurchLineHistory map 4488 )
PurchLineMarkTmp ( Purchase order lines 100161 )
PurchLineNotArchivedVersions ( Purchase line not archived versions 100352 )
PurchLineOrigin ( PurchLineOrigin 100162 )
PurchOrderRFQLineReference ( Relation between purchase lines and request for quotation lines 9726 )
PurchOrderTmpPeriodSelection ( PO year-end selection table 7874 )
PurchPackingSlipHeaderTmp ( Show packing slip 10268 )
PurchPackingSlipTmp ( Show packing slip 10269 )
PurchParameters ( Purchase parameters 341 )
PurchParmLine ( Purchase order line - delivery address - update table 342 )
PurchParmLine_Asset ( Purchase order line - asset information 2626 )
PurchParmLine_Project ( Purchase order line - project information 2729 )
PurchParmSubLine ( Purchase order line - connection - update table 1456 )
PurchParmSubTable ( Purchase order header - updating table 1432 )
PurchParmTable ( Purchase order - update table 343 )
PurchParmTmpPeriodClose ( PO year-end close temporary table 7873 )
PurchParmUpdate ( Purchase order - update 1431 )
PurchPool ( Purchase pools 733 )
PurchPrepayTable ( Prepayment 4561 )
PurchPrepayTableHistory ( Prepayment history 6235 )
PurchPrepayTableMap ( PurchPrepayTable and PurchPrepayTableHistory map 6239 )
PurchPriceTolerance ( Price tolerance setup 2065 )
PurchPurchaseOrderHeader ( Show purchase order 100163 )
PurchPurchaseOrderTmp ( Show purchase order 5966 )
PurchRankingTmp ( Top 100 6214 )
PurchReceiptsListDetailsTmp ( Show receipts list 100164 )
PurchReceiptsListHeaderTmp ( Show receipts list 100165 )
PurchReceiptsListTmp ( Show receipts list 100166 )
PurchReqAuthorizationLegalEntity ( Purchase requisition authorization - legal entity 5977 )
PurchReqAuthorizationOperatingUnit ( Purchase requisition authorization - operating unit 5978 )
PurchReqAuthorizationOrigination ( Purchase requisition authorization - origination 5979 )
PurchReqBusinessJustificationCodes ( Business justification 2574 )
PurchReqBusJustification ( Purchase requisition business justification 1559 )
PurchReqBusJustificationHistory ( Purchase requisition business justification 7270 )
PurchReqConsolidation ( Purchase requisition consolidation table 3067 )
PurchReqConsolidationHoldByCategoryRule ( Purchase requisition to purchase order consolidation rule 7087 )
PurchReqConsolidationHoldByVendorRule ( Purchase requisition to purchase order consolidation rule 7088 )
PurchReqConsolidationLine ( Purchase requisition consolidation line 2381 )
PurchReqConsolidationRule ( Purchase requisition to purchase order consolidation rule 7086 )
PurchReqControlRFQCategoryCondition ( Purchase requisition RFQ rule conditions 5853 )
PurchReqControlRFQRule ( Purchase requisitions: Request for quotation control rules 5854 )
PurchReqControlRule ( Purchase requisition rules 5856 )
PurchReqControlSubmissionParameter ( Purchase requisition submission parameters 5857 )
PurchReqControlSubmsnParameterExpression ( Purchase requisition submission parameter expression 5858 )
PurchReqExternalSource ( Purchase requisition external source 5736 )
PurchReqLine ( Purchase requisition lines 1555 )
PurchReqLineExternalCatalogQuote ( Purchase requisition line external catalog quotation 5382 )
PurchReqLineHistory ( Purchase requisition lines 7356 )
PurchReqLineHistoryTotals ( Purchase requisition lines 100167 )
PurchReqLineKMCollection ( Purchase requisition line questionnaires 5859 )
PurchReqLineProcessingError ( Purchase requisition line processing error 100168 )
PurchReqLineQuestionnaireResponse ( Voucher series code is empty 5860 )
PurchReqLineQuestionnaireResponseHistory ( Response for purchase requisition line questions 6995 )
PurchReqLineTmpReviewAssignment ( Purchase requisition line review assignment 10368 )
PurchReqLineTmpReviewSummary ( Purchase requisition line review summary 10367 )
PurchReqLineVendorProposal ( Purchase requisition line new vendor proposal 6113 )
PurchReqLineVendorProposalHistory ( Purchase requisition line new vendor proposal history 6996 )
PurchReqLineVendorSuggestion ( Purchase requisition line new vendor proposal 6112 )
PurchReqLineVendorSuggestionHistory ( Purchase requisition line new vendor suggestion history 6997 )
PurchReqQuestionnaireAnswerLineHistory ( Lines on answered/planned questionnaires 7355 )
PurchReqQuestionnaireAnswerTableHistory ( Plan a questionnaire 7269 )
PurchReqRequisitionerFilter ( Purchase requester filter 2536 )
PurchReqSourcingHoldByCategoryRule ( Purchase requisition to purchase order hold rule 5089 )
PurchReqSourcingHoldByVendorRule ( Purchase requisition to purchase order hold rule 6216 )
PurchReqSourcingHoldRule ( Purchase requisition to purchase order hold rule 5088 )
PurchReqSourcingPolicyRule ( Purchase requisition to purchase order policy rule 6332 )
PurchReqSourcingPriceToleranceRule ( Purchase requisition to purchase order price tolerance rule 6217 )
PurchReqSourcingSplitRule ( Purchase requisition to purchase order split rule 6219 )
PurchReqStatisticsTmp ( Purchase requisition statistics (SSRS) 4074 )
PurchReqTable ( Purchase requisition 1551 )
PurchReqTableHistory ( Purchase requisition history 6580 )
PurchReqTableHistoryTotals ( Purchase requisition history totals 100169 )
PurchReqTableTmpReviewAssignment ( Purchase requisition review assignment 10366 )
PurchReqTableTmpReviewSummary ( Purchase requisition review summary 10365 )
PurchReqTableVersion ( Purchase requisition versions 6582 )
PurchReqTmp ( Purchase requisition (SSRS) 4018 )
PurchReqTmpAuthorizationLegalEntity ( Purchase requisition authorization - legal entity 6516 )
PurchReqTmpAuthorizationOperatingUnit ( Purchase requisition authorization - operating unit 6517 )
PurchReqTmpConsolidationPart ( Show consolidation 7009 )
PurchReqTmpCountByFilter ( Purchase requisition count by filter 100170 )
PurchReqTmpCountByStatus ( Purchase requisition count by status 100171 )
PurchReqTmpSourcingPolicyRule ( Purchase requisition to purchase order creation 6220 )
PurchRFQCaseLine ( Request for quotation case lines 2481 )
PurchRFQCaseTable ( Request for quotation cases 2477 )
PurchRFQCompareLineTMP ( Compare request for quotation reply lines 2831 )
PurchRFQCompareTMP ( Compare request for quotation replies 6076 )
PurchRFQLine ( Request for quotation lines 2341 )
PurchRFQLineMap ( Request for quotation lines 4 )
PurchRFQParameters ( Request for quotation parameters 2346 )
PurchRFQParmLine ( Request for quotation - update line table 2823 )
PurchRFQParmSubTable ( Request for quotation header - updating table 2824 )
PurchRFQParmTable ( Request for quotation - update table 2822 )
PurchRFQParmUpdate ( Request for quotation - update 2821 )
PurchRFQReplyLine ( Request for quotation vendor reply lines 2315 )
PurchRFQReplyTable ( Request for quotation vendor reply 2301 )
PurchRFQSendTmp ( Show request for quotation 4632 )
PurchRFQTable ( Requests for quotations 2287 )
PurchRFQTableMap ( Request for quotation 104 )
PurchRFQTableMap2LineParameters ( Request for quotation line update parameters 2478 )
PurchRFQVendLink ( Request for quotation vendor link table 2289 )
PurchRFQVendorPerformanceTmp ( Vendor performance 4019 )
PurchRFQVendPerformanceReasonCodeTMP ( Reason for accept/reject 2891 )
PurchRFQVendPerformanceTMP ( Request for quotation performance 2889 )
PurchRFQWorkerSetup ( Buyer groups 5737 )
PurchSummaryParameters ( Purchase summary update parameters 882 )
PurchSupplyPerformanceTmp ( Supply performance 4618 )
PurchTable ( Purchase orders 345 )
PurchTable2LineParameters ( Purchase line update parameters 1529 )
PurchTableAllVersions ( Purchase order header versions 100353 )
PurchTableArchivedVersions ( Purchase order header archived versions 100354 )
PurchTableHistory ( Purchase order history 4474 )
PurchTableLinks ( Interattached purchase orders 1582 )
PurchTableMap ( PurchTable and PurchTableHistory map 4489 )
PurchTableMarkTmp ( Purchase orders 100172 )
PurchTableNotArchivedVersions ( Purchase order header not archived versions 100355 )
PurchTableVersion ( Purchase order versions 4408 )
PurchVendItemStatistcsTmp ( Vendor/Item statistics 3796 )
QueueMap ( Queue 1354 )
RCSalesList_UK ( Reverse charge sales list 2520 )
RCSalesListTmp_UK ( Print - UK 7939 )
ReasonCodeMap ( Reason codes 2756 )
ReasonTable ( Reasons 2401 )
ReasonTableRef ( Reason references 2196 )
RecurrenceInvoice ( Recurrence ID 7636 )
ReleaseUpdateBulkCopyField ( Upgrade Bulk Copy field 3315 )
ReleaseUpdateBulkCopyField_GLS ( The ReleaseUpdateBulkCopyField_GLS table performs the bulk copy exception for GLS Cons columns 100174 )
ReleaseUpdateBulkCopyFieldErrors ( Upgrade Bulk Copy field 100173 )
ReleaseUpdateBulkCopyFieldOptions ( Bulk copy field options 3699 )
ReleaseUpdateBulkCopyLog ( Transformation script log 3316 )
ReleaseUpdateBulkCopyParameters ( Parameter 3317 )
ReleaseUpdateBulkCopyTable ( Upgrade Bulk Copy table 3318 )
ReleaseUpdateBulkCopyTable_GLS ( The ReleaseUpdateBulkCopyTable_GLS table performs the bulk copy exception for GLS Cons tables 100175 )
ReleaseUpdateBulkCopyTableExceptions ( Bulk copy table exceptions 3665 )
ReleaseUpdateBulkFlags ( Flags 5606 )
ReleaseUpdateBulkRefRecIdPatch ( RefRecId Patch 4597 )
ReleaseUpdateBulkTableInfo ( Bulk copy table info 5222 )
ReleaseUpdateConfigKey ( ReleaseUpdateConfigKey 6475 )
ReleaseUpdateConfiguration ( Upgrade configuration 7189 )
ReleaseUpdateDataAreaOffsets ( Data area offsets 5624 )
ReleaseUpdateDiscoveryStatus ( Release update discovery status 4383 )
ReleaseUpdateDynamicDependency ( Dynamic table dependencies 100176 )
ReleaseUpdateExtendedDataTypes ( Extended data types 4134 )
ReleaseUpdateJobStatus ( Release update job status 695 )
ReleaseUpdateLog ( Upgrade logging 100177 )
ReleaseUpdateMinorScripts ( Upgrade minor scripts 100178 )
ReleaseUpdatePrioritizedJobs ( Prioritized upgrade scripts 4877 )
ReleaseUpdateScriptDependency ( Release update script dependency 702 )
ReleaseUpdateScripts ( Release update scripts 712 )
ReleaseUpdateScriptsHistory ( Upgrade script history 9711 )
ReleaseUpdateScriptsUsedTables ( Tables used by upgrade scripts during upgrade 2812 )
ReleaseUpdateSpecialFieldMapping ( Bulk copy special field mapping 3319 )
ReleaseUpdateSpecialTableMapping ( Bulk copy special table mapping 3320 )
ReleaseUpdateSysDeleted ( Release update sys deleted objects 5079 )
ReleaseUpdateTableRelationType ( Table relation 10753 )
ReleaseUpdateTmpJobStatus ( Temporary job status 719 )
ReleaseUpdateTmpVersionInfo ( Release update version information 1679 )
ReleaseUpdateTransformSourceField ( Transformation source fields 3321 )
ReleaseUpdateTransformTable ( Transformation table 3322 )
ReleaseUpdateTransformTargetField ( Transformation target fields 3323 )
ReleaseUpdateValidation ( Compare data upgrade row counts 11625 )
RepomoReportTmp_MX ( Repomo report 6938 )
ReqCalcCapacityConflictOrders ( Capacity conflict orders 100179 )
ReqCalcTask ( Master planning tasks 7667 )
ReqCalcTaskTrace ( Process task duration 100180 )
ReqGroup ( Item coverage groups 165 )
ReqIntercompanyMasterPlanMapping ( Intercompany master plan mappings 100181 )
ReqIntercompanyOutboundDemand ( Outbound planned intercompany demand 100356 )
ReqIntercompanyPlanningGroup ( Intercompany planning groups 100182 )
ReqIntercompanyPlanningGroupMember ( Intercompany planning group member 100183 )
ReqIntercompanyProduct ( Intercompany product view 100357 )
ReqItemJournalName ( Item coverage journal names 1652 )
ReqItemJournalSafetyStockTmp ( Print 5366 )
ReqItemJournalTable ( Item coverage journal table 1651 )
ReqItemJournalTrans ( Item coverage journal lines 1653 )
ReqItemTable ( Item coverage 1211 )
ReqLog ( Session log 168 )
ReqParameters ( Master planning parameters 167 )
ReqPegging ( Requirements pegging 6824 )
ReqPeggingAssignment ( Pegging assignment 6823 )
ReqPeggingEvent ( Pegging events 6825 )
ReqPeggingTreeNodeDetails ( Pegged details 10192 )
ReqPlan ( Plans 170 )
ReqPlanForecast ( Forecast plan setup 166 )
ReqPlanSched ( Master plan setup 172 )
ReqPlanVersion ( Plan versions 3138 )
ReqPO ( Planned order 169 )
ReqProcessItem ( Scheduling process items 100184 )
ReqProcessItemDistinctLevelView ( Scheduling process items 6566 )
ReqProcessList ( Unfinished scheduling processes 1526 )
ReqProcessThreadList ( Scheduling process thread list 1528 )
ReqProcessTmpList ( Unfinished scheduling processes 1532 )
ReqProcessTransFilter ( Requirement transactions process filter 10977 )
ReqReduceKey ( Reduction keys 525 )
ReqReduceLine ( Reduction lines 526 )
ReqRoute ( Requirement route 171 )
ReqRouteJob ( Requirement job 574 )
ReqRouteSchedulingView ( Scheduling 3487 )
ReqSafetyKey ( Minimum/maximum keys 918 )
ReqSafetyLine ( Minimum/maximum key lines 919 )
ReqSitePolicy ( Master planning site policies 7524 )
ReqSupplyDemandScheduleItemSelectionTmp ( Item selection 7522 )
ReqTmpPeriodQty ( Quantities per period 3137 )
ReqTrans ( Net requirements 161 )
ReqTransCov ( Requirement coverage 162 )
ReqTransFirmLog ( Firming log 1279 )
ReqTransIntercompany ( Intercompany supply and demand 100358 )
ReqTransIntercompanyItemPlannedOrder ( Intercompany supply and demand for planned purchase orders 100359 )
ReqTransIntercompanyPlannedICDemand ( Intercompany supply and demand for planned intercompany demand 100360 )
ReqTransIntercompanyPurch ( Intercompany supply and demand for purchase orders 100361 )
ReqTransIntercompanyReqTrans ( Intercompany supply and demand 100362 )
ReqTransIntercompanyReqTransDynamic ( Intercompany supply and demand 100363 )
ReqTransIntercompanySales ( Intercompany supply and demand for sales orders 100364 )
ReqUnscheduledOrders ( Unscheduled orders 3507 )
ReqUpstreamIntercompanyDemand ( Upstream planned intercompany demand 100365 )
ReturnAcknowledgmentAndDocumentTmp ( ReturnAcknowledgmentAndDocumentTmp 10351 )
ReturnActionDefaults ( Return action 628 )
ReturnDispositionCode ( Disposition code 2592 )
ReturnReasonCode ( Return reason codes 2417 )
ReturnReasonCodeGroup ( Return reason code groups 2415 )
ReturnReplaceItemRef ( Return item replacement reference 2852 )
ReturnTmpStatRanking ( Return statistics ranking 109 )
ReverseChargeItemGroup_UK ( Reverse charge item group 2521 )
ReverseChargeParameters_UK ( Reverse charge parameter 2522 )
RFIDDeviceTable ( RFID device 938 )
RFIDExceptions ( RFID exceptions 1397 )
RFIDParameters ( RFID parameters 950 )
RFIDProcessStructureTmp ( RFID process structure 6 )
RFIDProcessTable ( RFID process 963 )
RFIDReadWriteMap ( RFID read/write map 788 )
RFIDServerTable ( RFID server 964 )
RFIDStatus ( RFID communication status 969 )
RFIDTrans ( RFID transactions 973 )
RFIDTransMatchTmp ( RFID transactions 95 )
Route ( Route 348 )
RouteCostCategory ( Cost categories 235 )
RouteCostCategoryPrice ( Cost category/version price 2480 )
RouteGroup ( Route groups 349 )
RouteJobMap ( Route job 2370 )
RouteJobSetup ( Route job types 350 )
RouteMap ( Route 351 )
RouteOpr ( Operation relation 352 )
RouteOprMap ( Operation 353 )
RouteOprTable ( Operations 354 )
RouteParameters ( Route parameters 355 )
RouteTable ( Routes 356 )
RouteVersion ( Route versions 357 )
SalesAgreementHeader ( Sales agreement 4903 )
SalesAgreementHeaderDefault ( Release sales order defaulting policy 4904 )
SalesAgreementHeaderDefaultHistory ( Sales agreement confirmation history 4915 )
SalesAgreementHeaderHistory ( Sales agreement confirmation history 4745 )
SalesATPSettingsMap ( ATP 3006 )
SalesAvailableDlvDatesTmp ( Available ship and receipt dates 374 )
SalesBasket ( Sales basket 954 )
SalesBasketLine ( Sales basket lines 955 )
SalesCarrier ( Carrier 1752 )
SalesCategoryItemTaxGroup ( Sales category item tax group 7445 )
SalesCODLabelTmp ( COD 5718 )
SalesConfirmDetailsTmp ( Show confirmation 100185 )
SalesConfirmHeaderTmp ( Show confirmation 100186 )
SalesCreateReleaseOrderLineTmp ( Order lines 995 )
SalesCreateReleaseOrderTableTmp ( Release order header 375 )
SalesDeliveryDateControlMap ( Delivery date control map 379 )
SalesDeliverySchedule ( Sales delivery schedule 2352 )
SalesInvoiceTmp ( Show invoice 10756 )
SalesJournalAutoSummary ( Sales summary update 883 )
SalesLine ( Order lines 359 )
SalesLineCube ( Order lines 7810 )
SalesLineDelete ( Voided sales order lines 966 )
SalesLineForeignTradeCategory ( Order line foreign trade category 3430 )
SalesLinesExtendedTmp ( Order lines 10044 )
SalesNotInvoicedTmp ( Order lines not invoiced 100187 )
SalesOrderEntryStatistics ( Order entry statistics 2187 )
SalesOrderEntryStatisticsTmp ( Order entry statistics 5699 )
SalesOrigin ( Order origin codes 946 )
SalesPackageAppearance ( Package appearance 1753 )
SalesPackingSlipDetailsTmp ( Show sales packing slip 100188 )
SalesPackingSlipHeaderTmp ( Show sales packing slip 100189 )
SalesParameters ( Sales parameters 367 )
SalesParmLine ( Sales order line - update table 361 )
SalesParmSubLine ( Sales order line - connection - update table 1549 )
SalesParmSubTable ( Sales order header - updating table 1293 )
SalesParmTable ( Sales order - update table 360 )
SalesParmUpdate ( Sales order - update 1428 )
SalesPool ( Order pools 732 )
SalesPurchCycle ( Sales purchase cycle 327 )
SalesPurchLine ( Sales and Purch line map 363 )
SalesPurchParmSubLineLinkTmp ( Temporary table 2396 )
SalesPurchTable ( Sales and Purch Table map 365 )
SalesPurchTableToLineParameters ( Purchase line update parameters 7301 )
SalesQuotationBasket ( Sales quotation basket 761 )
SalesQuotationBasketLine ( Sales quotation basket lines 2387 )
SalesQuotationDeliverySchedule ( Sales quotation delivery schedule 2375 )
SalesQuotationDetailsTmp ( Quotations 100190 )
SalesQuotationHeaderTmp ( Quotations 100191 )
SalesQuotationLine ( Quotation lines 1962 )
SalesQuotationLineForeignTradeCategory ( Quotation line foreign trade 3451 )
SalesQuotationParmLine ( Quotation line - update table 1963 )
SalesQuotationParmSubTable ( Quotation header - updating table 1964 )
SalesQuotationParmTable ( Quotation - update table 1965 )
SalesQuotationParmUpdate ( Quotation - update 1966 )
SalesQuotationPriceSimTable ( Price simulations 1113 )
SalesQuotationTable ( Sales quotation 1967 )
SalesQuotationTemplateGroup ( Quotation template groups 1968 )
SalesQuotationTmp ( Quotations 10228 )
SalesQuotationTypeGroup ( Quotation type 8293 )
SalesShipCarrierMap ( Ship carrier map 100278 )
SalesShippingLabelTmp ( Print shipment 5965 )
SalesShippingStat ( Shipping specification 718 )
SalesShippingStatHistory ( Shipping specification 100192 )
SalesSummaryParameters ( Sales summary update parameters 879 )
SalesTable ( Sales orders 366 )
SalesTable2LineParameters ( Order line update parameters 1210 )
SalesTableDelete ( Voided sales orders 965 )
SalesTableLinks ( Linked sales orders 991 )
SalesTmpATP ( Available to promise 2030 )
SATAuthorizationNumber_MX ( Authorization numbers 11204 )
SecurableObject ( Securable object 65487 )
SecurityEntryPointLink ( Security entry point link 65470 )
SecurityFieldsDeniedAccesssSomeRoleView ( Table fields to which some role has no access 7670 )
SecurityPermission ( Security permission 65468 )
SecurityRole ( Security role 65491 )
SecurityRoleAllTasksView ( Maps between roles and all duties or privileges granted either directly to them or indirectly to any of their subroles 7371 )
SecurityRoleAssignmentRule ( Role assignment rule 65466 )
SecurityRoleExplodedGraph ( Security role exploded graph 65485 )
SecurityRolePermissionOverride ( Security role permission override 65477 )
SecurityRoleTaskGrant ( Security role task grant 65490 )
SecuritySegregationOfDutiesConflict ( Segregation of duties conflict 65464 )
SecuritySegregationOfDutiesRule ( Segregation of duties rule 65465 )
SecuritySubRole ( Security sub role 65486 )
SecuritySubTask ( Security sub task 65481 )
SecurityTask ( Security task 65489 )
SecurityTaskEntryPoint ( Security task entry point 65469 )
SecurityTaskExplodedGraph ( Security task exploded graph 65480 )
SecurityTaskPermission ( Security task permission 65488 )
SecurityTaskPermissionOverride ( Security task permission override 65478 )
SecurityUserRole ( Security user role 65492 )
SecurityUserRoleCondition ( Security user role condition 65484 )
SecurityUserRoleDBTempTable ( The SecurityUserRoleDBTempTable temporary table that is used by the automatic role assignment job for storing temporary assignments of users to roles. 7807 )
SharedCategory ( Shared  category 100193 )
SharedCategoryRoles ( Category roles 4259 )
SharedCategoryRoleType ( Category role type 4260 )
ShipCarrierAddress ( Shipping carrier 3554 )
ShipCarrierCODPackage ( COD 2354 )
ShipCarrierCompany ( Carrier company 2336 )
ShipCarrierCompanyAccounts ( Carrier accounts 2335 )
ShipCarrierEmailAddress ( Additional order e-mail addresses 193 )
ShipCarrierInterface ( Carrier interface 2355 )
ShipCarrierPackage ( Shipping charges 2356 )
ShipCarrierShipmentInvoice ( Shipment and invoice relation 131 )
ShipCarrierShipmentPackingSlip ( Shipment and packing slip relation 125 )
ShipCarrierShippingRequest ( Shipping request 2357 )
ShipCarrierSQLRoleUser ( Carrier staging information 1544 )
ShipCarrierStaging ( Shipping charges 1510 )
ShipCarrierTable ( Carrier 2358 )
ShipCarrierTracking ( Tracking 2359 )
SIGCertificateUsage ( Certificate usage marker 2621 )
SIGParameters ( Electronic signature parameters 2623 )
SIGProcSetup ( Signature procedure 2625 )
SIGProcSetupField ( Signature procedure fields 2628 )
SIGProdStatusChange ( Production order status change 2629 )
SIGReasonCode ( Electronic signature reason codes 2630 )
SIGReportFinished ( Report as finished 2631 )
SIGSignatureDelegation ( Designate approver 2632 )
SIGSignatureFailure ( Signature failure 2633 )
SIGSignatureLog ( Signature log 2634 )
SitesSvcEntitySecurity ( Sites service page 100194 )
SitesSvcPage ( Sites service page 100195 )
SitesSvcRelatedDocsTmp ( Related documents 100196 )
SitesSvcUser ( Sites service page 100197 )
SMAAccruePeriodLine ( Subscription accrual periods 1957 )
SMAAgreementGroup ( Service agreement groups 1717 )
SMAAgreementInterval ( Service intervals 1718 )
SMAAgreementLine ( Service agreement lines 1719 )
SMAAgreementTable ( Service agreements 1720 )
SMAConditionTable ( Service repair conditions 888 )
SMADiagnosisArea ( Diagnosis areas 2181 )
SMADiagnosisCode ( Service diagnosis codes 908 )
SMADispatchTeamTable ( Dispatch teams 6102 )
SMADispatchWorkerSetup ( Dispatch workers 5745 )
SMAParameters ( Service management parameters 1728 )
SMAParametersSubscription ( Subscription parameters 2028 )
SMAPreServiceOrderLine ( Pre-ServiceOrder Lines 309 )
SMAReasonTable ( Stage reason codes 1731 )
SMARepairLine ( Repair lines 910 )
SMARepairStage ( Repair stages 917 )
SMAResolutionTable ( Resolutions 923 )
SMASalesPriceSubscription ( Sales price - subscription 1958 )
SMAServiceBOMChange ( Template BOM history 782 )
SMAServiceBOMTable ( Template BOM lines 779 )
SMAServiceLevelAgreementLog ( SLA time recording 2343 )
SMAServiceLevelAgreementLogTable ( SLA time recording 3258 )
SMAServiceLevelAgreementReason ( Stage reasons 3286 )
SMAServiceLevelAgreementTable ( Service level agreement 2344 )
SMAServiceLineMap ( Service line 874 )
SMAServiceObjectGroup ( Service object groups 1724 )
SMAServiceObjectRelation ( Service objects 286 )
SMAServiceObjectTable ( Service objects 1727 )
SMAServiceOrderLine ( Service order line 1732 )
SMAServiceOrderReason ( Stage reasons 836 )
SMAServiceOrderTable ( Service orders 287 )
SMAServiceTask ( Service tasks 281 )
SMAServiceTaskRelation ( Service task relations 282 )
SMAStageTable ( Service stages 638 )
SMASubscriptionGroup ( Subscription group 1959 )
SMASubscriptionTable ( Subscription 1960 )
SMASymptomArea ( Symptom areas 924 )
SMASymptomCode ( Symptom codes 925 )
SMATemplateBOMTable ( Template BOMs 2182 )
SMATemplateGroup ( Service template groups 1734 )
SMATimeAgreement ( Time window 1737 )
SMATmpKeyPerformanceIndicators ( Service management key performance indicators 7527 )
SMATmpServiceOrdersActivity ( # of service orders 9810 )
SMAWorkNoteTmp ( Work description 10451 )
smmActivities ( Activities 8142 )
smmActivitiesCube ( Activity 100366 )
smmActivityAssociationView ( Activity parent links 2489 )
smmActivityParentLinkTable ( Activity parent links 2262 )
smmActivityPhaseGroup ( Phase for quotation 8143 )
smmActivityPlanGroup ( Activity plan table 8144 )
smmActivityTypeGroup ( Activity type 8145 )
smmAttendeeTable ( Attendees 1151 )
smmAxaptaOutlookMapping ( Microsoft Dynamics AX to Microsoft Outlook mapping 1943 )
smmBusRelChainGroup ( Company chains 8146 )
smmBusRelDefaultLocation ( Prospect default locations 4781 )
smmBusRelRevenue ( Revenue for prospect 1979 )
smmBusRelRevenueTrans ( Revenue transactions for prospect 1028 )
smmBusRelSalesDistrictGroup ( Sales districts 8147 )
smmBusRelSectorTable ( Prospect sector table 8148 )
smmBusRelSegmentGroup ( Segment table 8149 )
smmBusRelStatusGroup ( Status table 8150 )
smmBusRelSubSegmentGroup ( Subsegment table 8151 )
smmBusRelTable ( Prospects 8152 )
smmBusRelTypeGroup ( Type table 8264 )
smmBusRelView ( Prospects 5581 )
smmBusSectorGroup ( Business classification table 8153 )
smmCampaignEmailTemplate ( Campaign e-mail template 8380 )
smmCampaignGroup ( Campaign group 8381 )
smmCampaignMailMergeFile ( Campaign mail merge file 8382 )
smmCampaignMediaType ( Media type 8383 )
smmCampaignMediaTypeGroup ( Media type 8384 )
smmCampaignQuery ( Campaign queries 8385 )
smmCampaignQueryExpression ( Campaign query expression 8386 )
smmCampaignReasonGroup ( Campaign reason 8387 )
smmCampaignResponsesQuest ( Campaign response quest 8388 )
smmCampaignSelection ( Campaign selections 8391 )
smmCampaignSelectionResult ( Campaign temporary selections 8392 )
smmCampaignTable ( Campaigns 8393 )
smmCampaignTargetTable ( Campaign target 8394 )
smmCampaignTempSelection ( Campaign temporary selections 8395 )
smmCampaignTypeGroup ( Type 8396 )
smmCampaignView ( Campaign 5562 )
smmCharacterGroup ( Contact characters 8154 )
smmContactGreetingsGroup ( Complimentary close 8266 )
smmContactInterest ( Contact interests 8155 )
smmContactIntroGroup ( Complimentary close 8267 )
smmContactPersonSynchronize ( Contact synchronize 8412 )
smmContactPersonSynchronizeFieldMapping ( Contact synchronize field mapping 9957 )
smmContactTitleGroup ( Title 8268 )
smmConvertedBusRel ( Converted prospects 1166 )
smmCustBusRelView ( Customers - prospects 5583 )
smmCustInvoiceJourSalesView ( Sales 6575 )
smmCustomerView ( Customer table 5582 )
smmCustRevenueTmp ( Customer turnover 100198 )
smmCustVendView ( Customer or vendor 100367 )
smmDecisionGroup ( Decision table 8157 )
smmDeletedActivities ( Deleted activities 8158 )
smmEmailCategoryGroup ( E-mail category 8306 )
smmEmailGroups ( E-mail groups 8307 )
smmEmailMembers ( Group members 8308 )
smmEncyclopediaItems ( Knowledge article 8414 )
smmFunctionGroup ( Function 8159 )
smmImportBusSectorFileFields ( Import business classification codes 8269 )
smmImportBusSectorJournal ( Business classifications 8270 )
smmImportContactPersonFileFields ( Import format 8271 )
smmImportContactPersonJournal ( Contact import journal 8272 )
smmImportFileFormat ( File format 8273 )
smmImportRecordGroup ( Record group 8274 )
smmImportRelationJournal ( Relation/Prospect journal 8275 )
smmImportRelationJournalFileFields ( Relation journal file fields 8276 )
smmInterestGroup ( Interests 8160 )
smmKACaseActivity ( Knowledge article case activity 3163 )
smmKACaseRelation ( Knowledge article case relationship 3162 )
smmKACategoryRelation ( Knowledge article category relationship 3160 )
smmLatestCustQuotationSalesLinkView ( Latest sales quotation sales link 5647 )
smmLeadByCampaignView ( Leads by campaigns 6557 )
smmLeadPriorityTable ( Lead priority 285 )
smmLeadRatingTable ( Lead rating 298 )
smmLeadRelTable ( Lead relations table 2613 )
smmLeadTable ( Leads 2277 )
smmLeadTypeTable ( Lead type 283 )
smmLeadView ( Lead 5622 )
smmLoyaltyGroup ( Loyalties 8161 )
smmMailingCategoryGroup ( Mailing category 8162 )
smmMailingGroup ( Mailing 8163 )
smmMailingHistory ( Mailing history 8277 )
smmMailingMergeFile ( Mailing merge file 8278 )
smmMailings ( Mailings 8164 )
smmNoteItTable ( Note it 8310 )
smmOpportunityActualRevenueView ( Opportunity actual revenue 5654 )
smmOpportunityByCampaignView ( Opportunities by campaigns 6562 )
smmOpportunityByCompetitorView ( Opportunities by competitor group 6564 )
smmOpportunityEstRevenueView ( Opportunity estimated revenue 5648 )
smmOpportunityRelTable ( Opportunity relations table 2437 )
smmOpportunityTable ( Opportunities 2438 )
smmOpportunityView ( Opportunity 5655 )
smmOutlookLastSync ( Last Microsoft Outlook synchronization 1019 )
smmOutlookRecurrencePattern ( Recurrence pattern 178 )
smmParametersTable ( Sales and marketing parameters 8279 )
smmPhoneLog ( Calls 8312 )
smmPhoneParameters ( Phone parameters 8313 )
smmProcessStage ( Process stage 1168 )
smmProcessStageTemplateView ( Process stage 5642 )
smmProcessStageTransView ( Process stage transaction 5623 )
smmProjectSalesView ( Sales 6576 )
smmProjTransPostingSalesView ( Sales 6574 )
smmQuotationAlternativeQuotations ( Alternative quotations 1096 )
smmQuotationCompetitorGroup ( Competitor 8280 )
smmQuotationCompetitors ( Competitors 8281 )
smmQuotationDocuConclusionGroup ( Document conclusions 8282 )
smmQuotationDocuIntroGroup ( Document introductions 8283 )
smmQuotationDocuTitleGroup ( Document titles 8284 )
smmQuotationPhaseGroup ( Quotation phase 8286 )
smmQuotationProbabilityGroup ( Quotation probability 8288 )
smmQuotationPrognosisGroup ( Quotation prognosis 8289 )
smmQuotationReasonGroup ( Quotation reason 8290 )
smmResponsibilitiesEmplTable ( Responsibility assignments 2170 )
smmResponsibilitiesTable ( Responsibilities 2171 )
smmResponsibilityGroup ( Responsibility table 8167 )
smmSalesManagementAllowedFields ( Allowed fields / methods 1399 )
smmSalesManagementAllowedTables ( Query administration 1401 )
smmSalesManagementGraphLines ( Graph lines 1406 )
smmSalesManagementGraphOptions ( Sales management graph options 8297 )
smmSalesManagementGraphTable ( Graph table 1407 )
smmSalesManagementQueriesTable ( Queries 1411 )
smmSalesPersonCurrent ( Sales person 100368 )
smmSalesRankingTmp ( Customer top 100 100199 )
smmSalesTarget ( Sales targets 8298 )
smmSalesTargetTrans ( Sales targets transactions 1031 )
smmSalesTargetTransView ( Sales targets transactions 5544 )
smmSalesUnit ( Sales management units 8299 )
smmSalesUnitMembers ( Sales unit members 8300 )
smmSourceTypeOptions ( Source type option 1630 )
smmSourceTypeTable ( Source type 2230 )
smmSwotTable ( SWOT analysis 2439 )
smmTMCallListGroup ( Call list group table 8315 )
smmTMCallListTable ( Call lists 8317 )
smmTMContactResponses ( Telemarketing response 8376 )
smmTmpOutlookContacts ( Synchronize contacts from Microsoft Outlook 8416 )
smmTMReasonGroup ( Telemarketing reason 8318 )
smmTransLog ( Transaction log 8303 )
smmVendView ( Vendors 100369 )
SourceDocumentHeader ( Source document header 7457 )
SourceDocumentHeaderImplementation ( SourceDocumentHeaderImplementation 100279 )
SourceDocumentLine ( Source document line 3126 )
SourceDocumentLineImplementation ( SourceDocumentLineImplementation 100280 )
SourceDocumentLineItemTmp ( SourceDocumentLineItemTmp 100200 )
SourceDocumentLineRelieving ( SourceDocumentLineRelieving 100201 )
SourceDocumentLineRelievingAmount ( SourceDocumentLineRelievingAmount 100202 )
SourceDocumentLineSubledgerJourErrorLog ( SourceDocumentLine error log relationship 100203 )
SourceDocumentLineTmpJournalize ( Source document line 100204 )
SourceDocumentTmpAmount ( Source document 100205 )
SourceDocumentTmpTypeInformation ( Source document type information 100206 )
SpecTrans ( Specification 417 )
SqlDescribe ( Metadata table 65527 )
SqlDictionary ( Table list 65518 )
SqlParameters ( Database parameters 65517 )
SqlStatistics ( Database statistics 65513 )
SqlStorage ( Database storage parameters 65515 )
SqlSyncInfo ( Database sync information 65493 )
SRSAnalysisEnums ( Analysis Services enum cache 413 )
SRSEnabledLanguages ( Enabled languages 458 )
SRSFrameworkDimensionUsage ( Table that holds the framework dimension usage for measure group entities 3886 )
SRSModelEntityCache ( Reporting Services entity cache 1033 )
SRSModelFieldCache ( Reporting Services field cache 1034 )
SRSModelFieldRoleSortCache ( Model field role sort cache 358 )
SRSModelForeignKeyCache ( Reporting Services foreign key cache 1043 )
SRSModelIndexCache ( Reporting Services index cache 1039 )
SRSModelPerspectiveCache ( Table to cache perspectives for model generation 336 )
SRSModelPerspectiveEntityCache ( Table to cache entities in a perspective 337 )
SRSModelPerspectiveFieldCache ( Table to cache fields in a table perspective 338 )
SRSModelPerspectiveForeignKeyCache ( Table to cache foreign keys in a perspective 339 )
SRSModelPerspectiveRoleCache ( Table to cache roles in a perspective 344 )
SRSModelRoleCache ( Reporting Services role cache 1037 )
SRSModelRoleGroupsCache ( Reporting Services role cache 1292 )
SRSParameterMultiselectTmp ( Select multiselect lookup value 100207 )
SRSReportDeploymentSettings ( The SRSReportDeploymentSettings table contains report deployment settings 100208 )
SRSReportParameters ( Report parameters 2997 )
SrsReportPreProcessedDetails ( Pre-Processed report details 10396 )
SRSReportPrintDestinationSettings ( Report print destination settings 2994 )
SRSReportQuery ( Report query 2995 )
SRSServers ( Business intelligence report servers 404 )
SRSTmpDataStore ( SRS temp-table marshaller 4886 )
SRSUpdateOptions ( Manual update options 403 )
SRSUserConfiguration ( User configuration 457 )
StatRepInterval ( Statistics 86 )
StatRepIntervalLine ( Aging periods 87 )
SubledgerJournalAccountEntry ( Subledger journal account entry 7459 )
SubledgerJournalAccountEntryDistribution ( Subledger journal account entry distribution 7460 )
SubledgerJournalAccountEntryTmpDetail ( Subledger journal line temporary detail 7461 )
SubledgerJournalAccountEntryTmpSummary ( Subledger journal line temporary summary 7462 )
SubLedgerJournalAccountEntryView ( Subledger journal account entry 7967 )
SubledgerJournalEntry ( Subledger journal entry 7458 )
SubledgerJournalEntryNotTransferred ( Subledger journal entries not yet transferred 7625 )
SubLedgerJournalEntryView ( Subledger journal entry 7968 )
SubledgerJournalErrorLog ( Journalization error log 100209 )
SubLedgerJournalTransferNumberSeqTmp ( Subledger journal transfer temporary data 7377 )
SubledgerJournalTransferRule ( Subledger journal transfer rule 7621 )
SubledgerVoucherGeneralJournalEntry ( Subledger voucher to general journal entry association 7622 )
Subquery ( Sub Query 65494 )
SuppItemGroup ( Supplementary item groups 940 )
SuppItemTable ( Supplementary items 941 )
SyncActivityCategoryLookup ( Integrated activity categories 2408 )
SyncApp ( Integrated applications 2663 )
SyncAppCompany ( Companies associated to an integrated application 2446 )
SyncCompanyLookup ( Integrated companies 6084 )
SyncCompoundDataTrans ( Compound entity transactions 2666 )
SyncCompoundDependTrans ( Dependent compound entity transactions 1098 )
SyncCompoundTrans ( Integrated compound entities 2667 )
SyncCompoundType ( Compound entity types 2668 )
SyncCustTableLookup ( Integrated customers 6085 )
SyncErrorDataTrans ( Entity transaction error message 2305 )
SyncHierarchyTreeTable ( Integrated hierarchical activities 2672 )
SyncIntegratedFields ( Integrated field mapping 6086 )
SyncParameters ( Synchronization parameters 2673 )
SyncProjActivityAssignment ( Integrated activity assignments 7291 )
SyncProjDailyTransaction ( Calculated earnings for projects that are integrated with Microsoft Project Server 100210 )
SyncProjGroupLookup ( Integrated project groups 6087 )
SyncProjInvoiceTableLookup ( Integrated project contracts 6088 )
SyncProjResource ( Integrated project resources 6808 )
SyncProjStatusLookup ( Integrated project stages 6089 )
SyncProjTable ( Integrated projects 2676 )
SyncProjTransaction ( Calculated earnings for projects that are integrated with Microsoft Project Server 1103 )
SyncProjTypeLookup ( Integrated project types 6090 )
SyncSimpleTrans ( Integrated simple entities 2678 )
SyncSimpleType ( Simple entity types 2679 )
SyncSimpleTypeKey ( Simple entity table keys 6091 )
SyncSimpleTypeTable ( Simple entity tables 6092 )
SyncSolutionInfoTmp ( Synchronization solution information 100211 )
SyncSolutionInstance ( Solution instance 100212 )
SyncWrkCtrTable ( Integrated resources 6795 )
SysActiveTempTable ( Active temp table 65473 )
SysAOSMeasurement ( AOS measurements 1311 )
SysBCProxyUserAccount ( Business connector proxy 65504 )
SysBPParameters ( Best practice parameters 1392 )
SysBPStyleCheckTmpViolations ( Form style violations 100213 )
SysBPStyleCheckTmpViolationsNotRun ( Form style violations 100214 )
SysBreakpointList ( Clients set to use breakpoints       65503 )
SysBreakpoints ( All breakpoints 65502 )
SysCacheFlush ( System cache flush 65459 )
SysCheckListItemTable ( Checklist item 1304 )
SysCheckListTable ( Checklists 1303 )
SysClientAccessLog ( SysClientAccessLog 65419 )
SysClientPerf ( Client performance options 5300 )
SysClientSessions ( Current client sessions 65500 )
SysClusterConfig ( SysClusterConfig 2203 )
SysCodeProfilerChildLineSum ( Code profiler totals for called lines 1182 )
SysCodeProfilerChildMethodSum ( Code profiler totals for the called methods 1183 )
SysCodeProfilerChildObjectSum ( Code profiler totals for the called objects 1184 )
SysCodeProfilerLineSum ( (None) 1185 )
SysCodeProfilerMethodSum ( (None) 1186 )
SysCodeProfilerObjectSum ( (None) 1187 )
SysCodeProfilerObjectTable ( Object-derived 1188 )
SysCodeProfilerParameters ( Profiler parameters 1189 )
SysCodeProfilerPathTable ( Path derived 1191 )
SysCodeProfilerRunLine ( Run entries 1192 )
SysCodeProfilerRunSum ( SysCodeProfilerRunSum 1193 )
SysCodeProfilerRunTable ( Profiler runs 1194 )
SysCodeProfilerSumMap ( SysCodeProfilerSumMap 1195 )
SysCompanyGUIDUsers ( Web GUID users 441 )
SysCompanySizeTmp ( Size of company accounts 10477 )
SysComparableTmpText ( SysComparableTmpText 1985 )
SysCompileILProjectTmp ( SysCompileILProjectTmp 100215 )
SysCompileILTable ( SysCompileILTable 100216 )
SysConfig ( Configuration keys 65514 )
SysCue ( Cues 4814 )
SysCueGroup ( Cue group 4815 )
SysCueGroupMembership ( Cue group membership 4816 )
SysCuePersonalization ( Cue personalization 4817 )
SysCueVisibility ( Cue visibility 4818 )
SysDataAreaPrintCollectionsTmp ( Company accounts relations 10471 )
SysDataBaseLog ( Database log 943 )
SysDatabaseLogTmp ( Database log 10498 )
SysDataImpLog ( Import log 1820 )
SysDataImpLogRef ( Missing references 1821 )
SysDataSearch ( Search parameters 1647 )
SysDataSearchDaemonTable ( Data crawler engine setup 1646 )
SysDateEffectiveVersion ( A calculation factor for %1 in costing version %2 with effective date from %3 exists. Are you sure you want to proceed with the activation of the selected price effective as per %4? 7360 )
SysEDTMigrationEDT ( Extended data types 100217 )
SysEDTMigrationRelation ( EDT relations 100218 )
SysEDTMigrationTable ( All tables 100219 )
SysEDTMigrationTestArtifact ( Test artifacts 100220 )
SysEmailMessageMap ( SysEmailMessageMap 1656 )
SysEmailMessageSystemTable ( System e-mail messages 1657 )
SysEmailMessageTable ( E-mail messages 1642 )
SysEmailParameters ( E-mail parameters 1686 )
SysEmailRetrySchedule ( Retry schedule for sending e-mail messages 268 )
SysEmailSMTPPassword ( E-mail - SMTP password 722 )
SysEmailSystemTable ( System e-mails 1655 )
SysEmailTable ( E-mails 1641 )
SysEncryptionKey ( Encryption key 65497 )
SysEntryPointLicenseType ( Entry point to license type mapping table 100221 )
SysEvent ( System events 1537 )
SysExceptionTable ( Exceptions 1359 )
SysExpImpField ( Field setup 762 )
SysExpImpGroup ( Define import/export groups 422 )
SysExpImpRecords ( Map 7814 )
SysExpImpRelatedTable ( Data export table selection 100222 )
SysExpImpTable ( Definition of import/export tables 421 )
SysExpImpTableQuery ( Query setup 1381 )
SysFileStore ( Collection of generated files 10053 )
SysFileStoreFile ( Generated files 10054 )
SysFileStoreParameters ( File store parameters 10063 )
SysFillUtilityLog ( System fill utility log 2488 )
SysFillUtilityLogLine ( System fill utility log line 2487 )
SysGlobalConfiguration ( System level configurations 65472 )
SysImageTable ( Images 843 )
SysImportDocument ( Documents 2657 )
SysImportDocumentLookup ( SysImport lookup table 2860 )
SysImportFormat ( Formats 2658 )
SysImportFormatTransformation ( Transformations 2659 )
SysImportSetup ( Import configuration 2202 )
SysImportTransformation ( Transformations 2661 )
SysImportTransformationParameter ( Parameters 2662 )
SysInetCSS ( Cascading style sheets 829 )
SysINetTable ( Internet 629 )
SysInetThemeTable ( Themes 841 )
SysInfolog ( SysInfolog 853 )
SysInfoLogTmp ( SysInfoLog data 100223 )
SysInheritanceRelations ( Inheritance relation 65479 )
SysLabelInterval ( Label intervals 1265 )
SysLabelLog ( Changed labels 933 )
SysLanguageList ( Language list 570 )
SysLastMinuteCheck ( SysLastMinuteCheck 1825 )
SysLastValue ( LastValue 65528 )
SysLicenseCodeSort ( SysLicenseCodeSort 1627 )
SysMapParameters ( Map parameters 1999 )
SysModel ( SysModel 65439 )
SysModelElement ( SysModelElement 65437 )
SysModelElementData ( SysModelElementData 65436 )
SysModelElementDataOld ( SysModelElementDataOld 65426 )
SysModelElementLabel ( SysModelElementLabel 65434 )
SysModelElementLabelOld ( SysModelElementLabelOld 65424 )
SysModelElementModificationHelper ( Model element modification helper table 100224 )
SysModelElementOld ( SysModelElementOld 65427 )
SysModelElementSource ( SysModelElementSource 65435 )
SysModelElementSourceOld ( SysModelElementSourceOld 65425 )
SysModelElementType ( SysModelElementType 65433 )
SysModelElementTypeOld ( SysModelElementTypeOld 65423 )
SysModelLayer ( SysModelLayer 65432 )
SysModelLayerOld ( SysModelLayerOld 65422 )
SysModelManifest ( SysModelManifest 65438 )
SysModelManifestCategory ( Model manifest category 65421 )
SysModelManifestCategoryOld ( Model manifest category (baseline) 65420 )
SysModelManifestOld ( SysModelManifestOld 65428 )
SysModelOld ( SysModelOld 65429 )
SysOccConfiguration ( Concurrency configuration 65499 )
SysOld2NewRecId ( Map 2318 )
SysOperationMultiSelectTmp ( SysOperation multi select control temporary table 100225 )
SysOutgoingEmailData ( Data contained in outgoing e-mail 231 )
SysOutgoingEmailTable ( Outgoing e-mail 213 )
SysPerimeterNetworkParams ( Perimeter network parameters 546 )
SysPersonalization ( Personalization data 1701 )
SysPolicy ( Policy 3068 )
SysPolicyOrganization ( Policy organization 3114 )
SysPolicyOrganizationTypeSequence ( Organization type sequence 3070 )
SysPolicyRule ( Policy rules 3113 )
SysPolicyRuleType ( Policy rule type: 3066 )
SysPolicyRuleTypeSequence ( Policy type sequence 4952 )
SysPolicySequenceGroup ( Sequence 100226 )
SysPolicySourceDocumentRule ( Policy source document rule 7508 )
SysPolicySourceDocumentRuleTranslation ( Policy source document message translation 7507 )
SysPolicySourceDocumentRuleType ( Policy source document rule type 7509 )
SysPolicySourceDocumentRuleViolation ( Policy source document rule violation 7510 )
SysPolicyType ( Policy type 3064 )
SysPolicyTypeSequence ( Policy type sequence 3112 )
SysPolicyTypeSourceDocumentQuery ( Policy type source document query 7511 )
SysProfiles ( User profiles 308 )
SysProgress ( Operation progress 6075 )
SysQuickLinks ( Quick links 2873 )
SysQuickLinksOrder ( Quick links order 2135 )
SysRecordLevelSecurity ( Record level security 65505 )
SysRecordLevelSecurityTmp ( Record level security 100227 )
SysRecordTemplateSystemTable ( System record templates 1519 )
SysRecordTemplateTable ( Record templates 1369 )
SysRecordTmpTemplate ( Record templates 1370 )
SysRemoveConfig ( Disabled configuration keys: 2865 )
SysRemoveFields ( Fields in other tables that will be removed: 2866 )
SysRemoveLicense ( Removed license codes: 2867 )
SysRemoveTables ( Tables that will be removed: 2868 )
SysRolesList ( WSS Site Groups list 573 )
SysSearchEvent ( Global search events 1980 )
SysSearchName ( Search name 1144 )
SysSearchPath ( Search text 1145 )
SysSearchRef ( Search indexes 1146 )
SysSecClipboard ( Copy highlighted document to the Clipboard 5925 )
SysSecFlatDataTable ( Security debugging tool data table 100228 )
SysSecObjectsTmp ( Security debugging tool table for entry point securable objects 100229 )
SysSecOverrideTemp ( Role overrides temporary table 100230 )
SysSecRoleAssignQueryTemp ( Role assignment rule queries 100231 )
SysSecRoleEntryPointsTmp ( Security roles to entry points mapping table 100232 )
SysSecurityFormControlTable ( Layout security control setup 1650 )
SysSecurityFormTable ( Layout security setups 1649 )
SysSecurityUserRoleConditionTemp ( User role organization assignment 100233 )
SysServerConfig ( Server configuration 2445 )
SysServerSessions ( Current AOS instances 65501 )
SysSetbasedHelper ( Security set based helper 65460 )
SysSetupCompanyLog ( Company specific installation information 1393 )
SysSetupLog ( Installation information 1518 )
SysSignatureSetup ( Electronic signature 745 )
SysSortOrder ( SysSortOrder 537 )
SysSQLBlockingTmpMSSQLTable ( Locking database users 1587 )
SysSQMDeployment ( Customer feedback options 119 )
SysSQMFormOpen ( Form data for Customer Improvement Program 10340 )
SysSQMSettings ( Customer feedback options 2833 )
SysTaskRecorderSavedTasks ( Recorded tasks 1099 )
SystemParameters ( System parameters 6924 )
SystemSequences ( Record ID generation 65516 )
SysTestJobTable ( Test jobs 237 )
SysTestLine ( Test lines 530 )
SysTestLineLog ( Test log 256 )
SysTestParameters ( Unit test parameters 390 )
SysTestRecordCleanUp ( SysTestRecordCleanUp 1998 )
SysTestRecordCountTable ( Test inserted records details 10474 )
SysTestTable ( Tests 267 )
SysTmpGac ( Assemblies 2403 )
SysTmpManagedControlHostAssemblyList ( Managed control host assemblies 3618 )
SysTmpManagedControlHostControlList ( Managed control host control list 3619 )
SysTmpManagedControlHostEvent ( Managed control host events 3376 )
SysTmpManagedControlHostMethod ( Managed control host methods 3394 )
SysTraceFiles ( Trace files 100234 )
SysTraceTable ( Trace details 1061 )
SysTraceTableSQL ( SQL statement trace log 1608 )
SysTraceTableSQLExecPlan ( Statement execution plan 1610 )
SysTraceTableSQLTabRef ( Referenced tables 1609 )
SysUpgradeOverriddenEstimates ( Overridden code upgrade estimates 2805 )
SysUpgradeParameters ( Upgrade parameters 2803 )
SysUpgradeTmpEstimate ( Upgrade estimate 100235 )
SysUpgradeTreeNodeConflictIconsTmp ( Overlay icons to show on nodes in upgrade projects 2890 )
SysUpgradeTreeNodeConflictInfo ( Conflicts on treenode 2339 )
SysUserInfo ( User information 956 )
SysUserLicenseCount ( User count by access license type table 100236 )
SysUserLicenseCountTmp ( Named User License Counts temporary table 100237 )
SysUserLicenseMetadataTmp ( Access license metadata table 100238 )
SysUserLog ( User log 855 )
SysUserProfiles ( User associated profiles 323 )
SysUserRoleEffectiveLicenseTypeTmp ( User roles effective license types table 100239 )
SysUtilElementsLog ( Element usage log 2268 )
SysVersionControlMorphXItemTable ( SysVersionControlMorphXItemTable 2541 )
SysVersionControlMorphXLockTable ( SysVersionControlMorphXLockTable 2542 )
SysVersionControlMorphXRevisionTable ( SysVersionControlMorphXRevisionTable 2543 )
SysVersionControlParameters ( Version control parameters 1981 )
SysVersionControlPendingChangeList ( Change list 1761 )
SysVersionControlSynchronizeLog ( Version control synchronization log 1982 )
SysVersionControlTmpAdditionalFolders ( Additional subfolders 2217 )
SysVersionControlTmpChange ( Version control changes 1983 )
SysVersionControlTmpItem ( Version control objects 1984 )
SysVersionControlTmpUnwantedNames ( Unwanted object names 272 )
SysVersionControlTmpUnwantedTypes ( Unwanted object types 274 )
SysVersionControlTmpWorkItems ( Work items 100240 )
SysWorkflowElementTable ( Workflow element due dates 304 )
SysWorkflowFaultTable ( Workflow fault messages 347 )
SysWorkflowInstanceTable ( SysWorkflowInstanceTable 1426 )
SysWorkflowMessageTable ( Workflow messages table 2485 )
SysWorkflowParameters ( Settings for workflow 2844 )
SysWorkflowTable ( SysWorkflowTable 2238 )
SysWorkflowTrackingEntry ( Workflow tracking entry table 6493 )
SysXppAssembly ( SysXppAssembly 6640 )
TableCollectionList ( Table collections 65532 )
Tax1099BoxDetail ( Tax 1099 detail 100241 )
Tax1099Detail ( Vendors 5635 )
Tax1099DupTINTmp ( Duplicate Taxpayer Identification report 5700 )
Tax1099Fields ( 1099 fields 424 )
Tax1099IRSPayerRec ( IRS payer record 1969 )
Tax1099Reports ( Reporting on 1099 forms 426 )
Tax1099SoftwareVendParameters ( 1099 software vendor 1977 )
Tax1099StateSummary ( Vendor state tax IDs 1970 )
Tax1099Summary ( Vendor settlement for 1099s 1971 )
Tax1099SummaryBase ( Vendors 5636 )
Tax1099TransmitterParameters ( Transmitter 1972 )
Tax1099ValidationErrors ( Tax 1099 validation errors 1973 )
TaxAmountByCustomer_BE ( Belgian sales tax by customer 5637 )
TaxAmountByVendorTmp_BE ( Belgian sales tax by vendor 5701 )
TaxAuthorityAddress ( Authority 427 )
TaxBook ( Posting journals register 1743 )
TaxBookSection ( Sales tax book sections 1744 )
TaxBookStatus ( Sales tax book status 1748 )
TaxBookTable ( Spanish VAT books 1442 )
TaxBookTaxCodes ( Spanish VAT book codes 1453 )
TaxCollectLimit ( Sales tax limits 428 )
TaxCorrectionsBE ( Sales tax corrections 1685 )
TaxCountryRegionParameters ( Sales tax parameters 4397 )
TaxData ( Sales tax details 429 )
TaxEdivatConfiguration ( EDIVAT setup 1032 )
TaxEdivatDetail ( EDIVAT detail 1038 )
TaxEdivatErrors ( EDIVAT errors 1042 )
TaxEdivatGeneral ( EDIVAT tax declaration 1044 )
TaxEdivatReturnedErrors ( EDIVAT returned errors 1047 )
TaxElectronicCertificatesTable ( Electronic tax certificates 1604 )
TaxElectronicDeclaration ( Electronic tax declaration log 1605 )
TaxElectronicDeclarationSetup ( Electronic tax declaration setup 1606 )
TaxElectronicDeclarationTrans ( Electronic document - file transactions 1611 )
TaxEvatError_NL ( Electronic tax error messages 987 )
TaxEvatParameters_NL ( Electronic tax declaration parameters 990 )
TaxExchRateAdjustment ( Sales tax exchange rate adjustments 1117 )
TaxExemptCodeTable ( Sales tax exempt code 373 )
TaxFringeVariationTable ( BAS fringe benefit reason codes 1095 )
TaxGroupData ( Sales tax group 430 )
TaxGroupHeading ( Sales tax group description 431 )
TaxGroupTaxJurisdiction ( Sales tax group jurisdictions 414 )
TaxIntervatConfiguration ( INTERVAT setup 2151 )
TaxIntervatDetail ( INTERVAT details 2152 )
TaxIntervatGeneral ( INTERVAT tax declaration 2153 )
TaxIntraCommCorrection_NL ( Electronic ICP declaration corrections 1017 )
TaxIntraCommDelivery_NL ( Electronic ICP declaration deliveries 1018 )
TaxIntraCommTable_NL ( Electronic ICP declaration 1023 )
TaxItemGroupHeading ( Item sales tax group 432 )
TaxJournalTrans ( Journalized, unposted sales tax 1035 )
TaxJurisdiction ( Sales tax jurisdictions 1272 )
TaxLedgerAccountGroup ( Ledger posting groups 433 )
TaxLedgerReconciliationTmp ( Sales tax 10760 )
TaxListTmp ( Posted sales tax 11020 )
TaxListTmp_BE ( Sales tax list 5702 )
TaxMap ( TaxMap 100281 )
TaxOnItem ( Item sales tax group setup 434 )
TaxParameters ( Sales tax parameters 435 )
TaxPAYGVariationTable ( BAS PAYG reason codes 1077 )
TaxPeriodHead ( Sales tax period description 436 )
TaxPurchaseTaxReportTmp ( Purchase duty report 9859 )
TaxPurchaseTaxTable ( Purchase duty 957 )
TaxPurchaseTaxTrans ( Purchase duty transactions 959 )
TaxPurchaseTaxValue ( Purchase duty value 958 )
TaxPurchLedgerTmp ( Purchase sales tax transactions 10015 )
TaxReconciliationReportTmp ( Tax reconciliation data 10358 )
TaxRegistration_CA ( Company account identifiers 6008 )
TaxRep347AddressAbbrev ( Address abbreviation 783 )
TaxReport347Account ( Cash ledger accounts 3604 )
TaxReport347ReportTmp ( Temporary table for storing Tax Report 347 data which will be displayed in the SSRS report 7683 )
TaxReport347Table ( Declaration 347 750 )
TaxReport347Tenants ( Declaration 347 tenants 755 )
TaxReport347Trans ( Declaration 347 declarations 751 )
TaxReport347Validation ( Validation list for tax report 347 1485 )
TaxReport770Table_IT ( Modello 770 table 11043 )
TaxReport770TaxPayments_IT ( Modello 770 Monthly Tax Payments Table 12210 )
TaxReport770Trans_IT ( Withholding transaction - Modello 770 11242 )
TaxReport770VendTotal_IT ( Vendor total - Modello 770 11243 )
TaxReportAdjustmentTrans ( Posted sales tax corrections 1080 )
TaxReportAlandImportTmp_FI ( Tax declaration of import 10390 )
TaxReportByIdTmp ( Sales tax payment by code 10294 )
TaxReportCollection ( Sales tax reporting codes 710 )
TaxReportExtraFields ( Additional BAS report boxes 1078 )
TaxReportExtraFieldsBE ( Additional sales tax report boxes in Belgium 1136 )
TaxReportInclAdjustmentTmp ( Sales tax report incl. corrections 10591 )
TaxReportingTmp ( Sales tax payment 9715 )
TaxReportLedgerAccounts ( Additional BAS reconciliation account 1079 )
TaxReportLines ( VAT report lines 1454 )
TaxReportLinesTaxTrans_ES ( Posted tax transactions which are source for tax report 340 lines 100242 )
TaxReportPayment_IT ( Italian sales tax payment 1749 )
TaxReportPeriod ( Sales tax period setup 437 )
TaxReportTable ( VAT reports 1455 )
TaxReportTmp ( Sales tax reporting 5849 )
TaxReportTmp_AU ( Australian BAS 5621 )
TaxReportTmp_BE ( Belgian sales tax reporting 5626 )
TaxReportTmp_DE ( German sales tax report 5625 )
TaxReportTmp_IT ( Italian sales tax report 9798 )
TaxReportTmp_NL ( Sales tax reporting 6105 )
TaxReportTmp_NO ( Sales tax reporting 6329 )
TaxReportTmp_SE ( Swedish sales tax report 5227 )
TaxReportTmp_SG ( Print the sales tax report for Singapore 5228 )
TaxReportTmp_UK ( Sales tax reporting 6110 )
TaxReportTmp_US ( Reporting US sales tax 5229 )
TaxReportUnrealizedInputOutputTmp ( Output sales tax report 7235 )
TaxReportVoucher ( Sales tax payments 438 )
TaxReturnedError_NL ( Electronic declaration returned errors 1024 )
TaxSalesLedgerTmp ( Sales tax transactions re sales 5921 )
TaxSpecPerLedgerTransTmp ( Sales tax specification by ledger transaction 100243 )
TaxSpecTmp ( Sales tax specification 642 )
TaxTable ( Sales tax codes 439 )
TaxTexts_FI ( Tax code description text 2108 )
TaxTmpImportAland_FI ( Tax declaration of import 2018 )
TaxTrans ( Posted sales tax 440 )
TaxTransDetail_BE ( Sales tax transactions - details 7247 )
TaxTransGeneralJournalAccountEntry ( Tax trans general journal account entry association 7623 )
TaxTransTmp_BE ( Sales tax list 5703 )
TaxTransTransactionLineLedgerDimension ( Tax trans transaction line ledger dimension 10687 )
TaxTurnOverLine_NL ( Electronic OB declaration details 1026 )
TaxTurnOverTable_NL ( Electronic OB declaration 1027 )
TaxUncommitted ( Uncommitted sales tax 2757 )
TaxVatDetailedReportTmp_MX ( VAT transactions 6968 )
TaxVATNumTable ( Tax exempt number table 791 )
TaxVatReportCategory_MX ( Tax category codes 6817 )
TaxVatSummaryReportTmp_MX ( VAT summary 6818 )
TaxWithholdCertificationTmp_IT ( Withholding tax - yearly report 5909 )
TaxWithholdData ( Withholding tax values 1805 )
TaxWithholdGroupData ( Withholding tax group with code 1812 )
TaxWithholdGroupHeading ( Withholding tax groups 1813 )
TaxWithholdItemGroupHeading_TH ( Item withholding tax group 8873 )
TaxWithholdLedgerAccountGroup_TH ( Withholding tax ledger posting groups 8874 )
TaxWithholdLimit ( Withholding tax limits 1814 )
TaxWithholdMonthlyReportTmp_IT ( Withholding tax - monthly report 7296 )
TaxWithholdOnItem_TH ( Item withholding tax group 8875 )
TaxWithholdPeriodHead_TH ( Withholding tax period description 8876 )
TaxWithholdReportPeriod_TH ( Withholding tax period setup 8877 )
TaxWithholdReportPNDTmp_TH ( Withholding tax report data 10293 )
TaxWithholdReportSetup_TH ( Withholding tax report setup 8878 )
TaxWithholdReportVoucher_TH ( Withholding tax payments 8879 )
TaxWithholdRevenueTable_TH ( Withholding tax revenue types 8880 )
TaxWithholdSlipTmp_TH ( Withholding tax slip 10256 )
TaxWithholdTable ( Withholding tax codes 1815 )
TaxWithholdTrans ( Withholding tax transaction 1816 )
TaxWithholdYearlyReportTmp_IT ( Withholding tax - yearly report 5861 )
TaxWorkRegulation ( Adjusted sales tax amounts 827 )
TaxYearlyCom_IT ( Yearly tax communication 6130 )
TaxYearlyComReport_IT ( Yearly tax communication 6131 )
TaxYearlyComSetupExclude_IT ( Account interval to exclude 6132 )
TimezoneInfo ( TimezoneInfo 2837 )
TimeZonesList ( Time zones list 65496 )
TimeZonesRulesData ( Time zone rules 65495 )
TmpABC ( ABC classification 443 )
TmpAccountSum ( Account totals 444 )
TmpAccountTotalsBE ( Account totals 1786 )
TmpAddOperations ( Add service operations 2184 )
TmpAnalysis ( Activities for analysis 445 )
TmpAotImport ( Application objects to be imported 1278 )
TmpAotLabelImport ( Application objects and the labels they use 1277 )
TmpAssetBookCompare ( Fixed asset book compare temp 2021 )
TmpAssetConsumptionProposal ( Consumption proposal for fixed asset 1339 )
TmpAssetDepBookTransBase ( Transaction origin 2412 )
TmpAssetFixedBook ( Italian fixed asset book 1467 )
TmpAssetGroupCOT ( Asset group selection 1389 )
tmpAssetTableCOT ( Asset table selection 1390 )
TmpAssetTrans ( Fixed asset transactions 1391 )
TmpBankBillOfExchangePrintout ( Print bill of exchange documents 1763 )
TmpBankPaym2Invoice ( Invoices 794 )
TmpBankPromissoryNotePrintout ( Print promissory note documents 1638 )
TmpBankTotal ( Bank totals 447 )
TmpBankTransTypeSum ( Account reconciliation 653 )
TmpBarcodeEAN128 ( Barcode EAN 128 697 )
TmpBIConfigImpact ( Temporary table - do not document 10460 )
TmpBillOfExchangeStatistics ( Bill of exchange statistics 1569 )
TmpBIOlapDatabases ( Temp BI OLAP databases 2286 )
TmpBlackListReport_IT ( Black list transaction report table 11438 )
TmpBOM ( BOM lines 713 )
TmpBOMCalcSumCost ( Cost rollup by cost group 1572 )
TmpBOMRouteTree ( BOM setup 1135 )
TmpBudgetBalance ( Budget balances 448 )
TmpCashDiscMulti ( Cash discount 985 )
TmpCatCartCategoryLine ( Category line 5554 )
TmpCentralisationBE ( Overview journal totals Belgium 1787 )
TmpChequePrintout ( Print checks 449 )
TmpCollabSiteTemplates ( Collaboration workspace templates 100244 )
TmpCompanyLookup ( Select company 6073 )
TmpCompareText ( TmpCompareText 1147 )
TmpCompilerOutput ( Compiler information 1298 )
TmpConfigId ( Selected configurations 450 )
TmpConfigValue ( Configuration 451 )
TmpCountryRegion ( Country/region 821 )
TmpCurrencyLedgerGainLossAccount ( Currency ledger revaluation account 7062 )
TmpCustInPaymBGMax_SE ( Temporary payment file 2442 )
TmpCustInterestTrans ( Interest lines 6166 )
TmpCustLedger ( Reconcile with ledger 522 )
TmpCustOutPaymAdviceCH_LSV ( Temporary table 2429 )
TmpCustVendAccountStatement_FR ( Customer transactions 102 )
TmpCustVendLedgerReconciliation ( Ledger reconciliation 1030 )
TmpCustVendOutPaymBatch ( Temporary payment batch 1670 )
TmpCustVendOutPaymFile ( Temporary payment file 1671 )
TmpCustVendTrans ( Transactions 699 )
TmpCustVendTransOpen ( Open transactions 951 )
TmpCustVendTransReorg ( Transaction reorganizing 945 )
TmpCustVendVolume ( Extent of sales and purchase 787 )
TmpDatabaseLogWizard ( Database Log Wizard 934 )
TmpDatabaseNames ( Database name 1067 )
TmpDateSum ( Date totals 532 )
TmpDateSumCode ( Date totals 533 )
TmpDefaultDataSetup ( Default data setup 1235 )
TmpDimension ( Dimension 1483 )
TmpDimensionAttribute ( Dimension 100245 )
TmpDimensionRelationshipConstraint ( Select relationships 7718 )
TmpDimensionRuleAppliedHierarchy ( Dimension rule applied hierarchy 6014 )
TmpDimensionValueDates ( Update dimension value dates 7489 )
TmpDimensionValueDetails ( Dimension 10071 )
TmpDimTransExtract ( Transactions table 1936 )
TmpEmailBody ( Send mail 2052 )
TmpEventAlertField ( Valid alert fields 305 )
TmpEventType ( Valid event types 306 )
TmpExcelColumn ( Columns 774 )
TmpExcelImport ( Microsoft Excel import 980 )
TmpExcelLookup ( Lookups 1334 )
TmpExcelLookupEnum ( Lookup enums 778 )
TmpExcelWorkbook ( Workbooks 784 )
TmpExcelWorksheet ( Worksheets 795 )
TmpExchangeRate ( Exchange rate 7254 )
TmpExchRates ( Foreign currency revaluation 548 )
TmpExchRateTxt ( Exchange rates 1137 )
TmpFastTabHelper ( Helper data 7054 )
TmpFontName ( Fonts 1215 )
TmpFormLookUp ( Temporary table 455 )
TmpFrmVirtual ( Temporary table 456 )
TmpHelpIndex ( Temporary help index 845 )
TmpHRPActiveLimits ( Signing limit agreement 5819 )
TmpIdRef ( Reference ID 137 )
TmpInfolog ( TmpInfolog 561 )
TmpIntrastatExportHeader_IT ( Intrastat ASCII file header data 100246 )
TmpIntrastatExportLine_IT ( Intrastat ASCII file line data 100247 )
TmpInventAge ( Inventory value and quantity by age 880 )
TmpInventCountStatistics ( Counting statistics 994 )
TmpInventModel ( Inventory model 1697 )
TmpInventTableModule ( Items with prices converted to zero 1365 )
TmpInventTransMark ( Marking 1612 )
TmpInventTransWMS ( Registration/picking 706 )
TmpJobSelect ( Batch-journal jobs 460 )
TmpJoinDetail ( Join detail 801 )
TmpJoinMaster ( Join master 800 )
TmpJournalizingDefinitionTestResult ( Ledger posting definition test result 3564 )
TmpLabelImport ( Labels to be imported 1276 )
TmpLeanDocumentKanbanRuleLookup ( Kanban rules 100248 )
TmpLeanProductionFlowCost ( Lean production flow cost transactions 5487 )
TmpLeanProductionFlowVariances ( Lean production variances 5717 )
TmpLedgerAllocation ( Allocation 1121 )
TmpLedgerBalanceControl ( Balance control 461 )
TmpLedgerBalanceSheetDimCol ( Ledger balance sheet 1939 )
TmpLedgerBase ( Transaction origin 462 )
TmpLedgerBaseDimensions ( Financial dimensions 10582 )
TmpLedgerConsCompany ( Ledger - consolidation 465 )
TmpLedgerConsDimension ( Ledger - consolidation 756 )
TmpLedgerConsDimensionAttribute ( Consolidations dimension attributes 5258 )
TmpLedgerConsDimensionValueItem ( Consolidations dimension values 5257 )
TmpLedgerConsElimination ( Ledger - consolidation 1416 )
TmpLedgerConsQuery ( Ledger - consolidation 1691 )
TmpLedgerConsTrans ( Consolidations 466 )
TmpLedgerFiscalYr_SA ( Fiscal year 4117 )
TmpLedgerJournalAccountMovement ( Balances 851 )
TmpLedgerJournalControlDetail ( Journal control 6079 )
TmpLedgerJournalSplitHeader ( Breakdown of voucher 982 )
TmpLedgerJournalSplitLines ( Breakdown of voucher 983 )
TmpLedgerPaymentControl ( Payment control 703 )
TmpLedgerPaymentControlCur ( Currency distribution 705 )
TmpLedgerTable ( Chart of accounts 571 )
TmpLedgerTrans ( Ledger transaction 468 )
TmpLedgerTransaction ( Ledger reconciliation 10450 )
TmpMarkupTransConnection ( Markup connections 2548 )
TmpNumberSeq ( Temporary number sequence table 7679 )
TmpNumberSeqCreate ( Temporary table used by Number Sequence Wizard 811 )
TmpNumberSequence ( Temporary table used by Number Sequence Wizard 1745 )
TmpOrgListData ( Organizations 3454 )
TmpOrgProperties ( Organization attributes 3455 )
TmpPackMaterialFeeSum ( Packing material fee 1568 )
TmpPaymDistribution ( Payment distribution 1673 )
TmpPaymManOutputReport ( Transactions 911 )
TmpPaymManOutputTotals ( Totals 1264 )
TmpPBAReference ( Reference 8545 )
TmpPriceDiscAdmSearch ( Search lines for trade agreements 3428 )
TmpProdBalance ( Production posting 557 )
TmpProdEfficiency ( Efficiency 560 )
TmpProdRouteJobSched ( Route jobs 260 )
TmpProdRouteReporting ( Route consumption 822 )
TmpProdStandardVariance ( Production variance 2211 )
TmpProjAdjustment ( Project adjustments 734 )
TmpProjAdjustmentCost ( Project adjustments 3024 )
TmpProjAdjustmentCreate ( Project adjustments to create 748 )
TmpProjAdjustmentCreateCost ( Project adjustments to create 3025 )
TmpProjAdjustmentCreateSale ( Project adjustments to create 3026 )
TmpProjAdjustmentSale ( Project adjustments 3027 )
tmpProjBudgetBalances ( Project budget balances 5638 )
TmpProjBudgetRevisionLine ( Project budget revision lines 9728 )
TmpProjCashFlow ( Cash flow 2776 )
TmpProjCashFlowExcelPivot ( Microsoft Excel Pivot report - Cash flow 2138 )
TmpProjCashFlowLink ( Cash flow 2777 )
TmpProjCashFlowReport ( Cash flow 2778 )
TmpProjControlActual ( Project - control current, temporary 826 )
TmpProjControlActualCost ( Project - control current, temporary 3028 )
TmpProjCostControl ( Cost control 2773 )
TmpProjCostControlExcelPivot ( Microsoft Excel Pivot report - Cost control 2163 )
TmpProjExportToExcelPivotDimension ( Export to Microsoft Excel PivotTable report dimension 1233 )
TmpProjGrantFundingSource ( Project funding source 6565 )
TmpProjHourUtilExcelPivot ( Microsoft Excel Pivot report - Hour utilization 2092 )
TmpProjInvoiceControl ( Project view 1990 )
TmpProjInvoiceControlExcelPivot ( Microsoft Excel Pivot report - Invoice control 1767 )
TmpProjInvoiceLine ( Invoice lines 480 )
TmpProjInvoiceLineSettleBy ( Invoice lines 3366 )
TmpProjMissingHourReg ( Employee missing timesheet 7177 )
TmpProjOnAccountInvoicePlan ( On-account invoice schedule 5746 )
TmpProjPeriodic ( Project - periodic, temporary 1131 )
TmpProjPeriodicCost ( Project - periodic, temporary 3029 )
TmpProjPeriodicLedger ( Project - periodic ledger, temporary 1132 )
TmpProjPeriodicSale ( Project - periodic, temporary 3030 )
TmpProjPriceGroupList ( Price group list 2404 )
TmpProjPriceList ( Price list 2405 )
TmpProjProposalJour ( Customer invoice 626 )
TmpProjStatistic ( Project statements 1713 )
TmpProjStatisticExcelPivot ( Project statements for Microsoft Excel Pivot report 2883 )
TmpProjStatisticLink ( Statistics 1931 )
TmpProjStatusSetup ( Project stage setup 328 )
TmpProjTransId ( Temporary transaction 1119 )
TmpProjTransLedger ( Transaction list 852 )
TmpProjTransList ( Transaction list 828 )
TmpProjTransListLedger ( Transaction list 1716 )
TmpProjTransWIP ( Operations transactions 976 )
TmpProjTransWIPOperation ( Balance - transactions 1001 )
tmpProjUtil ( Project identification 2917 )
TmpPromissoryNoteStatistics ( Promissory note statistics 1659 )
TmpPropertySelection ( Property selection 1150 )
TmpPurchLine ( Purchase order lines 1583 )
TmpPurchLinePrice ( Purchase prices and discounts 2086 )
TmpPurchTable ( Purchase order 3465 )
TmpQueryRangeValue ( TmpQueryRangeValue 555 )
TmpRecId ( Record ID 645 )
TmpRecIdMap ( Map 1435 )
TmpReqExplosionOnHand ( Master schedule explosion, on-hand 164 )
TmpReqExplosionTree ( Display options 568 )
TmpReqInventDim ( Item requirement statistics 1217 )
TmpRoleCenterMenuItems ( Role centers 325 )
TmpSalesItemReq ( Item requirements 1297 )
TmpSalesQuotationMassUpdate ( Sales quotation mass update 2842 )
TmpSearchResult ( Temporary search result 1143 )
tmpSecTaskClasses ( Temp table for selecting class methods and service operations for security task node 3071 )
TmpSecurityTree ( Temporary security tree 1447 )
TmpSettleOverUnderReverseTax ( Tax overpayment and underpayment 993 )
TmpSIGFieldLookup ( Field lookup 2635 )
TmpSignDocument ( Sign document 2636 )
TmpSIGTableLookup ( Table lookup 100249 )
tmpSMAAgreementObjects ( Selection of service objects 2235 )
TmpSMABOMDesignerSetup ( BOM setup 1915 )
TmpSMAHourConsumption ( Hour consumption 2205 )
TmpSMARepOrderCounter ( Service order count 2206 )
tmpSmmCustRevenuePeriod ( - Temporary tables 2885 )
TmpSmmKACaseRelation ( Knowledge article case relationship 3377 )
tmpSmmResponsibilityDistribute ( Responsibilities distribution 1921 )
tmpSmmSalesCustItemStatistics ( - Temporary tables 2813 )
TmpSrsReportDesignName ( The TmpSrsReportDesignName table stores SQL Reporting Services report design names 100250 )
TmpStatPer ( Statistics periods 476 )
TmpSum ( Totals 477 )
TmpSuppItem ( Supplementary items 960 )
TmpSysAxUserImportDetail ( User details 2265 )
TmpSysClass ( Classes 1275 )
TmpSysConsistencyCheck ( TmpSysConsistencyCheck 1380 )
TmpSysFillUtility ( Fill utility 2493 )
TmpSysLabel ( Label 999 )
TmpSysQuery ( Criteria 754 )
TmpSysQueryCompanyRange ( Company range 2071 )
TmpSysQueryValidTimeRange ( Date effective 4940 )
TmpSysTableField ( Field: 1520 )
TmpSysTraceMarker ( XppMarker 100251 )
TmpTableFieldLookup ( Table/field lookup 1412 )
TmpTableIdMap ( Map 5872 )
TmpTableName ( Table lookup 1179 )
TmpTax ( Sales tax 479 )
TmpTaxJournalReport_BE ( Sales tax for posting 1694 )
TmpTaxPeriodAmount ( Tax period amounts 785 )
TmpTaxPurchLedger ( Tax transactions 1153 )
TmpTaxReconciliationNoVat ( Tax reconciliation transactions without VAT 279 )
TmpTaxReconciliationReport ( Tax reconciliation data 280 )
TmpTaxRegulation ( Tax regulation 657 )
TmpTaxReport_IT ( Tax report table for Italy 1750 )
TmpTaxReport_ITSummary ( Tax report table for Italy 1751 )
TmpTaxReport770Total_IT ( Company total - Modello 770 11245 )
TmpTaxReportById ( Tax report fields 792 )
TmpTaxSalesLedger ( Sales tax transactions re sales 1140 )
TmpTaxTotals ( Sales tax totals 1029 )
TmpTaxTrans ( Tax transactions 1118 )
TmpTaxTransTotalsBE ( Tax journal report Belgium 1790 )
TmpTaxWithhold ( Withholding tax transaction 1817 )
TmpTaxWithholdReportData_TH ( Withholding tax report data 8881 )
TmpTaxWorkTrans ( Temporary sales tax transactions (work table) 550 )
TmpTaxYearlyComLookup_IT ( Tax yearly communication lookup 6133 )
TmpTransactionIdMap ( Transaction ID 1690 )
TmpTree ( TmpTree 1112 )
TmpTSTimesheetSignOff ( Customer timesheet approval report 7197 )
TmpUnifiedWorkList ( Unified work list 757 )
tmpUserActiveDirectory ( Temporary user Active Directory 2321 )
tmpUserErrorNotification ( Temporary user error notification 2385 )
tmpUserRequest ( Temporary user request 2422 )
TmpUtil ( Application objects 1203 )
tmpVendAdvanceInvoice ( Select prepayments to apply 100252 )
TmpVendLookup ( Temporary lookup table 3325 )
tmpVendStandardInvoice ( Select the invoice to apply the prepayments to 100253 )
TmpVoucherSum ( Total by voucher 1174 )
TmpWizardLink ( TmpWizardLink 927 )
TmpWMSAreaSetup ( Store area 830 )
TmpWMSAreaSetupBase ( Store area selection 840 )
TmpWMSAreaSetupChanges ( Store area changes 831 )
TmpWMSJournalCheck ( Temporary table used during posting of item arrival journal 691 )
TmpWMSLocation ( Locations 692 )
TmpWMSOnlineCounting ( Online counting journal 1000 )
TmpWMSOrder ( Summary order 694 )
TmpWMSPalletTransport ( Selected pallet transports 854 )
TmpWrkCtrCapacity ( Resource capacity 564 )
TmpWrkCtrReservedSum ( Capacity reservations 572 )
TmpXBRLTaxonomyDetailsReferences ( References 1978 )
TradeBLWIJournalPurposeCodes ( Journals linked with BLWI codes 1052 )
TradeBLWILines ( BLWI transaction 1053 )
TradeBLWIParameters ( BLWI parameters 1055 )
TradeLineNumbering ( TradeLineNumbering 7099 )
TradeNonStockedConversion ( Not stocked product conversion 7841 )
TradeNonStockedConversionChangeLog ( Conversion change log for products not stocked 9902 )
TradeNonStockedConversionChangeTaskLog ( Conversion task log for products not stocked  9901 )
TradeNonStockedConversionCheckLog ( Conversion check log for products not stocked  9697 )
TradeNonStockedConversionCheckTaskLog ( Conversion check task log for products not stocked  9695 )
TradeNonStockedConversionItem ( Not stocked product conversion item 7842 )
TradeNonStockedConversionLog ( Conversion log for products not stocked 9696 )
TradeNonStockedConversionLogParent ( Conversion parent log for products not stocked 9709 )
TradeNonStockedConversionTmpCompanies ( Not stocked product company selection 7941 )
TradeNonStockedConversionTmpProducts ( Not stocked product selection 9740 )
TradeNonStockedConversionTmpSummary ( Not stocked product conversion summary 7969 )
TradeNonStockedRegisterTmp ( Non stocked lines pending registration or pending receipt 7523 )
TradePackingSlipJourChain ( Packing slip header relations 4905 )
TradePackingSlipTransChain ( Packing slip line relations 4914 )
TradePostalAddress ( TradePostalAddress 100282 )
TradeTmpBLWIReport ( BLWI report transactions 1056 )
TradeTmpLineRenumbering ( TradeTmpLineRenumbering 7027 )
TransactionLog ( Audit trail 482 )
TransactionReversalTrans ( Transaction reversal 565 )
TransactTxt ( Ledger transaction text 483 )
TransportationAllParty ( The information about transportation parties 100370 )
TransportationCarrierPartyLocation ( The information about carrier as transportation party 100371 )
TransportationDeliveryParty ( Store transportation delivery party relation information 100254 )
TransportationOtherParty ( The basic information about other transportation parties 100372 )
TransportationOtherPartyLocation ( The information about other transportation parties 100373 )
TrvAdminCustomFields ( Display fields 2069 )
TrvAirlinePolicyExpBuildView ( Expense line 5084 )
TrvAllowanceRate ( Allowance rate 391 )
TrvAppEmplSub ( Delegate 392 )
TrvBarcodeInstructionsLanguageTxt ( Translations 100255 )
TrvCardTypes ( Card types 1553 )
TrvCarRentalCharge ( Car rental charge 2652 )
TrvCarRentalPolicyExpBuildView ( Expense line 5086 )
TrvCashAdvance ( Cash advance request 1995 )
TrvCostType ( Expense category 411 )
TrvCostTypeRates ( Mileage rate tiers 412 )
TrvCostTypeStatistics ( Statistics groups 415 )
TrvCreditCards ( Credit card numbers 2364 )
TrvDestinations ( Travel locations 446 )
TrvDisputeReasonCodeMaster ( Dispute reason codes 1088 )
TrvDisputes ( Disputes 1094 )
TrvDisputesCube ( Disputes 5607 )
TrvEmpPaymethod ( Employee payment method 453 )
TrvEnhancedCarRentalData ( Enhanced car rental data 6139 )
TrvEnhancedData ( Enhanced data 4120 )
TrvEnhancedHotelData ( Enhanced hotel data 2051 )
TrvEnhancedItineraryData ( Enhanced itinerary  data 6138 )
TrvEnhancedTaxInfo ( Enhanced tax information 2653 )
TrvEnhancedTripLegDetail ( Enhanced trip leg detail 6140 )
TrvExchSetup ( Cash advance accounts 459 )
TrvExpenseTaxConfiguration ( Expense tax recovery configuration 3032 )
TrvExpenseTaxRecovery ( Recoverable taxes 3033 )
TrvExpGuest ( Guest 2713 )
TrvExpMerchant ( Merchant 2714 )
TrvExpressionBuilderGuestView ( Expense guests 5292 )
TrvExpressionBuilderHCMEmploymentView ( Employee dates 11038 )
TrvExpressionBuilderHCMPositionView ( Positions 11037 )
TrvExpressionWorkerPositionHierarchyView ( Reports to 100374 )
TrvExprProjectAccountingDistributionView ( Project 100375 )
TrvExpSubCategoriesView ( Days sales outstanding 4431 )
TrvExpSubCategory ( Expense subcategory 6141 )
TrvExpTable ( Expense report 484 )
TrvExpTableCube ( Expense report 7207 )
TrvExpTableTrvRequisitionTable ( Expense header associations to travel requisition header 4035 )
TrvExpTrans ( Expense lines 487 )
TrvExpTransCube ( Expense lines 5306 )
TrvExpTransGuest ( Expense line details 2715 )
TrvExpTransLinkReceipts ( Receipts linked to expense lines 2350 )
TrvHotelCharge ( Hotel charge 2654 )
TrvHotelPolicyExpBuildView ( Expense line 5085 )
TrvItineraryCharge ( Itinerary  charge 2655 )
TrvKmSum ( Mileage accounts 512 )
TrvLinePurpose ( Expense purpose for transactions 100256 )
TrvLocations ( Travel locations 2285 )
TrvMileageExpressionBuildView ( Expense line 6356 )
TrvParameters ( Parameters 514 )
TrvPartyEmployeeRelationship ( Employee expenses 2001 )
TrvPayMethod ( Payment method 523 )
TrvPBSCatCodes ( Credit card codes 539 )
TrvPBSMaindata ( Credit card 551 )
TrvPerDiems ( Per diems 2288 )
TrvPersonalExpressionBuildView ( Expense report 100376 )
TrvPolicyExpBuildView ( Expense line 5080 )
TrvPolicyExpressionHCMEmploymentView ( Employee dates 11060 )
TrvPolicyLanguageTxt ( Translations 6228 )
TrvPolicyRule ( Expense and travel policy rule 4704 )
TrvPolicyRuleCube ( Policy 7614 )
TrvPolicyViolationJustification ( Policy violation justifications 4936 )
TrvPolicyViolationsCache ( Cache table for policy violations on an expense line 2371 )
TrvPolicyViolationsLog ( Policy violations log 2125 )
TrvPolicyViolationsLogCube ( Policy violations log 7211 )
TrvReqMileageExpressionBuilderView ( Travel requisition 6405 )
TrvReqProjectAccountingDistributionView ( Project 100377 )
TrvRequisitionExpressionBuilderView ( Travel requisition 5295 )
TrvRequisitionLine ( Travel requisition lines 4024 )
TrvRequisitionLineCube ( Travel requisition lines 5166 )
TrvRequisitionTable ( Travel requisition 4007 )
TrvSharedSubCategory ( Shared expense subcategory 4262 )
TrvTaxCharge ( Tax charge 2656 )
TrvTravelTxt ( Expense purposes 639 )
TrvUnreconciledCreditCardTrans ( Unreconciled credit card transactions 100378 )
TrvUnreconciledExpenseTrans ( Expense transactions sent by employee with receipts 100379 )
TrvUnreconciledExpenseTransaction ( Unreconciled expense receipt data 100257 )
TrvUnreconciledExpenseTransUnion ( Credit card expense transactions and expense transactions sent by employee with receipts 100380 )
TrvValidatePayment ( Valid payment methods 641 )
TrvWorkerBarcodeTmp ( Worker barcode cover page 100258 )
TrvWorkflowExpProviderCache ( Expense expenditure provider cache 100259 )
TrvWorkflowLog ( Work items 2432 )
TSAppEmplSub ( Delegate 4620 )
TSEntryWeekTotals ( Timesheet weekly totals to date 100381 )
TSTimesheetApprovalSummary ( Timesheet weekly totals to date 100382 )
TSTimesheetEmployeeFilter ( Timesheet employee filter 4621 )
TSTimesheetEntryTotalsPart ( Timesheet weekly totals to date 100383 )
TSTimesheetFavorites ( Timesheet favorites 4622 )
TSTimesheetLine ( Timesheet line 4624 )
TSTimesheetLineComments ( Timesheet comments table 4625 )
TSTimesheetLineWeek ( Timesheet weekly hours 4626 )
TSTimesheetSummaryLine ( Timesheet line summary 4686 )
TSTimesheetSummaryWeek ( Timesheet summary week 4687 )
TSTimesheetTable ( Timesheet 4627 )
TSTimesheetTrans ( Timesheet transactions 4628 )
TSTimesheetTransSummary ( Timesheet transactions summary view 4688 )
TSWorkflowLog ( Work items 4629 )
TSWorkflowTable ( Work items 4630 )
TutorialDefData ( Tutorial default data 1429 )
TutorialJournalName ( TutorialJournalName 1220 )
TutorialJournalTable ( TutorialJournalTable 1221 )
TutorialJournalTrans ( TutorialJournalTrans 1222 )
UnitOfMeasure ( Units 4436 )
UnitOfMeasureBaseUnit ( Base unit 4437 )
UnitOfMeasureConversion ( Unit conversions 4438 )
UnitOfMeasureConversionCache ( UnitOfMeasureConversionCache 4439 )
UnitOfMeasureInternalCode ( Fixed units 10198 )
UnitOfMeasureReportingTranslation ( Reporting texts 4440 )
UnitOfMeasureSystemUnit ( System unit 4441 )
UnitOfMeasureTranslation ( Localized descriptions 4442 )
UserAddHistoryInfo ( User add history table info 2302 )
UserAddHistoryList ( User Add History List table 2304 )
UserDataAreaFilter ( Securing data area 65482 )
UserDomainNamesTmp ( Temporary User Domain Names 2919 )
UserExternalParty ( External relations 100260 )
UserGroupInfo ( User group information 10430 )
UserGroupList ( User group list 10431 )
UserInfo ( User Information 65531 )
UserInfoStartupModel ( User information startup model 65467 )
UserRequest ( User requests 100261 )
UserRequestParameters ( User request management parameters 100262 )
UtilElements ( Application Model 65523 )
UtilElementsOld ( Old Application Model 65512 )
UtilIdElements ( Application Model 65522 )
UtilIdElementsOld ( Old Application Model 65511 )
UtilModels ( Util model 65474 )
Vend1099OIDDetail ( Vendor 1099 OID information 9805 )
VendAccruedPurchasesTmp_NA ( Accrued purchases 5766 )
VendAdvanceApplicationTrans ( Prepayment application 100263 )
VendAgingReportTmp ( Vendor aging report 10602 )
VendBankAccount ( Vendor bank accounts 489 )
VendBaseDataView ( Vendors 100384 )
VendCategory ( Procurement category 3494 )
VendCategoryInvoiceJournal ( Vendor invoice journal category 10183 )
VendCertification ( Set up certifications 4069 )
VendContractZakat_SA ( Contractor 4118 )
VendDefaultAccounts ( Default ledger accounts for vendors 1702 )
VendDefaultLocation ( The VendDefaultLocation contains the default locations by purpose for a vendor 4782 )
VendDirPartyTableView ( DirPartyTable view used for the vendor list page form 6515 )
VendDocumentLineAssetMap ( Vendor invoice lines - asset information 3675 )
VendDocumentLineMap ( Vendor document lines map 2687 )
VendDocumentLineProjectMap ( Vendor invoice lines - project information 3676 )
VendDocumentSubTableMap ( Vendor invoice - purchase order relation table 3661 )
VendDocumentTableMap ( Vendor documents map 2689 )
VendEUVatInvoiceTmp ( View Intra-Community invoice 10444 )
VendExceptionGroup ( Vendor exception groups 3300 )
VendExchRateAdjSimulationTmp ( Simulation 5941 )
VendExchRateAdjustment ( Foreign currency revaluation 1127 )
VendExchRateAdjustmentTmp ( Foreign currency revaluation 6123 )
VendFieldMetadata ( Field metadata profile 2639 )
VendFieldMetadataGroup ( Field configuration profile 2640 )
VendFormletterDocument ( Vendor, form setup 1308 )
VendFormletterParameters ( Vendor, form parameters 1309 )
VendGroup ( Vendor groups 490 )
VendInfoZakat_SA ( Vendors 7929 )
VendInvoiceDeclaration_IS ( Vendor invoice declaration 3908 )
VendInvoiceDeclarationTmp_IS ( Vendor invoice declaration 6282 )
VendInvoiceDocumentTmp ( Vendor invoice journal 10009 )
VendInvoiceInfo ( Invoice information for approving invoice journals 681 )
VendInvoiceInfoLine ( Vendor invoice lines 1430 )
VendInvoiceInfoLine_Asset ( Vendor invoice lines - asset information 2627 )
VendInvoiceInfoLine_Project ( Vendor invoice lines - project information 2730 )
VendInvoiceInfoLineMarkupMatchingTrans ( Vendor invoice line expected purchase order line charges 3581 )
VendInvoiceInfoMarkupMatchingTolerance ( Vendor invoice expected purchase order charges 3561 )
VendInvoiceInfoSubLine ( Vendor invoice - product receipt line connections 1462 )
VendInvoiceInfoSubMarkupMatchingTrans ( Vendor invoice expected purchase order charges 3580 )
VendInvoiceInfoSubTable ( Vendor invoice - purchase order relation table 2249 )
VendInvoiceInfoTable ( Vendor invoices 1425 )
VendInvoiceIntrastat ( Intrastat information of vendor invoices 6135 )
VendInvoiceJour ( Vendor invoice journal 491 )
VendInvoiceJourJoinVendtrans ( Vendor InvoiceJournal joined with VendTrans 4111 )
VendInvoiceJourTmp ( Vendor invoice journal 7895 )
VendInvoiceLineForeignTradeCategory ( Vendor invoice line foreign trade category 6965 )
VendInvoiceLineMap ( Vendor invoice lines 100283 )
VendInvoiceMap ( Vendor invoices 100284 )
VendInvoiceMatching ( Vendor invoice expected purchase order totals 3034 )
VendInvoiceMatchingLine ( Vendor invoice expected PO details 2231 )
VendInvoicePackingSlipQuantityMatch ( Vendor invoice - product receipt line connections 7311 )
VendInvoicePurchLink ( Posted vendor invoice - purchase order relation table 1509 )
VendInvoiceSettled_TransDateTmp_ES ( Payment documents-invoices relation by transaction date 7766 )
VendInvoiceSpecTmp ( Invoice specification 10715 )
VendInvoiceSubLineSum ( Vendor invoice - packing slip line summarized connections 100385 )
VendInvoiceTmp ( Open invoice transactions 5603 )
VendInvoiceTrans ( Posted vendor invoice lines 492 )
VendInvoiceTransExpanded ( Vendor invoice lines 6635 )
VendInvoiceVolumeTmp ( Invoice turnover report 5604 )
VendItemMatchingPolicy ( Item vendor matching policy 2252 )
VendLedger ( Vendor posting profile 493 )
VendLedgerAccounts ( Vendor ledger accounts 494 )
VendLedgerReconciliationTmp ( Vendor 10799 )
VendLedgerTransTmp ( History by transaction 10588 )
VendNotification ( Vendor notifications 4148 )
VendNotificationTemplate ( Vendor notifications template 4149 )
VendNotificationTemplateCategory ( Vendor notifications template category 4150 )
VendNotificationTemplateTranslation ( Vendor notification message 4151 )
VendOnHoldHistory ( On hold 4070 )
VendorListBasicTmp ( Vendors 3727 )
VendorListPhoneTmp ( Vendor phone list 3726 )
VendOutAttendingNote_PNRemittanceTmp ( Promissory note 5943 )
VendOutAttendingNoteTmp_ATEDIFACT ( Diskette accompanying note 7774 )
VendOutAttendingNoteTmp_DEDTAZV ( Diskette accompanying note 7786 )
VendOutAttendingNoteTmpDE_DTAUS ( Diskette accompanying note 100264 )
VendOutCoveringLetterTmp_DEDTAZV ( Covering letter 7787 )
VendOutPaymAdviceTmp_FRAFB ( Option/Notification 7572 )
VendOutPaymForParams_FI ( Foreign export parameters 1916 )
VendOutPaymLM02Params_FI ( LM02 export parameters 1917 )
VendOutPaymOrderTmp_CHDTA ( Bank payment order 5851 )
VendPackingSlipJour ( Vendor product receipts 500 )
VendPackingSlipPurchLink ( Vendor product receipt - purchase order relation table 1508 )
VendPackingSlipTrans ( Vendor - product receipt lines 501 )
VendPackingSlipTransExpanded ( Vendor product receipt lines 7072 )
VendPackingSlipTransHistory ( Vendor product receipt line history 6545 )
VendPackingSlipTransHistoryFiltered ( Currently active vendor packing slip versions 100386 )
VendPackingSlipVersion ( Vendor product receipt versions 6544 )
VendParameters ( Vendor parameters 495 )
VendPaymentGroupLookup ( Vendor payment groups lookup 3364 )
VendPaymentJournalTmp_NA ( Vendor payment journal 4865 )
VendPaymFee ( Vendor payment fee 1552 )
VendPaymFormat ( File formats for methods of payment (vendors) 1172 )
VendPaymMethodAttribute ( Payment attributes in payment proposal 387 )
VendPaymMethodVal ( Payment control in vendor journals 780 )
VendPaymModeFee ( Vendor payment fee setup 1554 )
VendPaymModeFeeInterval ( Vendor payment fee intervals 1614 )
VendPaymModeSpec ( Vendor specifications 496 )
VendPaymModeTable ( Methods of payment - vendors 497 )
VendPaymSched ( Vendor payment schedule 498 )
VendPaymSchedHistory ( Payment schedule (vendor) history 4483 )
VendPaymSchedLine ( Vendor payment schedule lines 499 )
VendPaymSchedLineHistory ( Payment schedule lines (vendor) history 4484 )
VendPaymSchedLineMap ( VendPaymSchedLine and VendPaymSchedLineHistory map 4490 )
VendPaymSchedMap ( VendPaymSched and VendPaymSchedHistory map 4491 )
VendPostedUnionUnpostedInvoice ( Un-Posted and posted invoices 4331 )
VendPostPaymJournalTmp_NA ( Vendor posted payment journal 4880 )
VendPrenote ( Vendor prenotes 2914 )
VendPriceToleranceGroup ( Vendor price tolerance groups 2063 )
VendProcurementCategoryStatus ( Category change status 4382 )
VendPromissoryNoteInvoice ( Promissory note invoices 1590 )
VendPromissoryNoteJour ( Promissory note journal 1478 )
VendPromissoryNoteOpenTrans_FR ( Vendor transactions 5568 )
VendPromissoryNoteOpenTransTmp_ES ( Open promissory notes 5631 )
VendPromissoryNoteReportTmp ( Promissory note journal 10636 )
VendPromissoryNoteTrans ( Promissory note lines 1504 )
VendProvisionalBalanceTmp ( Vendors 7902 )
VendPurchOpenLines ( Purchase order lines 5569 )
VendPurchOrderJour ( Purchase order confirmations 502 )
VendPurchReceivingLog_NA ( Vendor product receipts 5570 )
VendQuestionnaire ( Vendor request questionnaire 4446 )
VendReceiptsListJour ( Receipts list journal 650 )
VendReceiptsListPurchLink ( Vendor receipts list - purchase order relation table 1507 )
VendReceiptsListTrans ( Receipts list lines 651 )
VendReportApproveCollection ( Invoices not approved 100387 )
VendRequest ( Vendor requests 2428 )
VendRequestAddVendor ( Additional vendor 5120 )
VendRequestAuditTmp ( Vendor request 10099 )
VendRequestBusinessJustification ( Business justification 4867 )
VendRequestCategory ( Vendor request category 3406 )
VendRequestCategoryExtension ( Category extension 4445 )
VendRequestCompany ( Vendor request 2430 )
VendRequestContactAddressMap ( Vendor request contact address map 6147 )
VendRequestDisallowedVendor ( Disallowed vendors 2644 )
VendRequestDisallowedVendorLegalEntity ( Legal entity for disallowed vendor 2646 )
VendRequestDisallowedVendorView ( Disallowed vendors 100388 )
VendRequestEmbargoCountry ( Embargoed country/region for legal entities 4868 )
VendRequestManagementParameters ( Vendor request management parameters 2647 )
VendRequestProcureAuditTmp ( Vendor request 10206 )
VendRequestProfile ( Vendor configuration profile 2641 )
VendRequestProfileCompany ( Profile company 4870 )
VendRequestProfileCountry ( Vendor request profile country/region 2642 )
VendRequestProfileQuestionnaire ( Vendor configuration profile 4871 )
VendRequestProspectiveProfile ( Vendor registration profile 4872 )
VendRequestSignup ( Unsolicited vendor registration 3166 )
VendRequestSignupCategory ( Unsolicited vendor category 3333 )
VendRequestStatusChange ( Status change request 5008 )
VendRequestUserRequest ( Prospective vendor user requests 100265 )
VendReviewCategoryCriterionGroup ( Category vendor evaluation criterion group 6636 )
VendReviewCategoryCriterionLookup ( Category vendor evaluation criterion group 6927 )
VendReviewCriterion ( Vendor evaluation criterion 6633 )
VendReviewCriterionGroup ( Vendor evaluation criteria group 6631 )
VendReviewCriterionGroupRating ( Vendor evaluation criterion group rating 6656 )
VendReviewCriterionGroupTranslation ( Vendor evaluation criteria group translation 6632 )
VendReviewCriterionRating ( Vendor evaluation criterion rating 6641 )
VendReviewCriterionTranslation ( Vendor evaluation criteria translation 6634 )
VendRFQJour ( Request for quotation journal 2386 )
VendRFQTrans ( Vendor - request for quotation lines 2388 )
VendSettlement ( Vendor settlement 504 )
VendSettlementTax1099 ( Vendor settlement for 1099s 1975 )
VendSpendCountryRegionTmp ( Country/region 10342 )
VendSpendCurrencyTmp ( Currency 10343 )
VendSpendDepartmentTmp ( Organization unit 10341 )
VendSpendShipToLocationSumTmp ( Spend by requester per ship to country/region 10331 )
VendSpendShipToLocationTmp ( Spend by requester per ship to country/region 10291 )
VendStateTaxID ( Vendor state tax IDs 1976 )
VendSubcontractorZakatTmp_SA ( Zakat information 10525 )
VendTable ( Vendors 505 )
VendTableCube ( Vendors 5314 )
VendTmpAccountSum ( Account totals 1375 )
VendTmpCompanyInfo ( Companies 10928 )
VendTmpCurrentVendorResult ( Current vendor search results 7249 )
VendTmpInvoiceInfoLine ( Vendor invoice lines 2395 )
VendTmpInvoiceInfoTable ( Vendor invoices 2394 )
VendTmpOpenPaymDocu_ES ( Open cartera transactions 2167 )
VendTmpPaymRef_BE ( Isabel and SWIFT payment reference 1216 )
VendTmpProcurementCategory ( Vendor procurement category 100266 )
VendTmpProspectiveVendorResult ( Prospective vendor search results 6830 )
VendTmpRequest ( Vendor request 7952 )
VendTmpSearchCreateVendor ( Copy vendor 10231 )
VendTmpSearchCreateVendorCategory ( Procurement category vendor 10233 )
VendTmpSearchCriteriaProcCategories ( Vendor search procurement categories 7693 )
VendTmpUnsolicitedVendorResult ( Unsolicited vendor search results 6831 )
VendTop10VendorsByPurchase ( Top 10 vendors by purchase YTD 4854 )
VendTotalPriceTolerance ( Invoice totals tolerance setup 2501 )
VendTrans ( Vendor transactions 506 )
VendTransCashDisc ( Vendor cash discount 1046 )
VendTransListTmp ( Vendor transactions 7758 )
VendTransOpen ( Open vendor transactions 866 )
VendTransOpen_PaymMode_TmpES ( Open transactions by method of payment 5108 )
VendTransTotalPurchases ( Total vendor purchases 5315 )
VendUserRequest ( Vendor user requests 100267 )
VersioningTmpField ( Versioning field 5005 )
VersioningTmpTrans ( Versioning transaction 5006 )
VersioningVersionMap ( Versioning map 4834 )
VirtualDataAreaList ( Virtual companies 65534 )
VSAssembly ( Visual Studio project assembly 65458 )
WebTmpWebMenuItem ( Web menu item temporary table 7602 )
WMSAisle ( Inventory aisle 661 )
WMSArrivalDetailTmp ( Arrival details 2708 )
WMSArrivalOverviewTmp ( Arrival overview 2707 )
WMSBillOfLading ( Bill of lading 662 )
WMSBillOfLadingCarrier ( Bill of lading items 663 )
WMSBillOfLadingOrder ( Bill of lading orders 664 )
WMSBillOfLadingTmp ( Bill of lading 5694 )
WMSBlockingCause ( Cause of blocking 665 )
WMSCheckABCZonesTmp ( ABC classification, locations 5895 )
WMSForkLift ( Forklift 667 )
WMSForkliftOperator ( Forklift operator 10978 )
WMSJournalName ( Journal names 669 )
WMSJournalTable ( Location journal table 670 )
WMSJournalTrans ( Location journal lines 671 )
WMSLocation ( Locations 672 )
WMSLocationLabelTmp ( Location label 5836 )
WMSLocationLoad ( Location load 10093 )
WMSOrder ( Inventory order 666 )
WMSOrderTrans ( Inventory order transaction 716 )
WMSOutboundRule ( Outbound rules 2094 )
WMSPallet ( Labels 673 )
WMSPalletListTmp ( Pallet list 6982 )
WMSPalletNumberTmp ( Pallet label 5363 )
WMSPalletType ( Pallet type 674 )
WMSPalletTypeGroup ( Pallet type group 675 )
WMSPalletTypeGroupMember ( Pallet types in the pallet group 676 )
WMSParameters ( Location parameters 677 )
WMSPickingList_OrderPickTmp ( Show picking list 5917 )
WMSPickingListReportHeaderTmp ( Consolidated picking list 5333 )
WMSPickingListReportTmp ( Consolidated picking list 5283 )
WMSPickingLocationsTmp ( Picking locations 5364 )
WMSPickingRoute ( Picking route 680 )
WMSPickingRouteLink ( Picking routes - order relation table 2747 )
WMSReservationCombinationLine ( Reservation combination methods 1680 )
WMSReservationCombinationTable ( Shipment reservation combinations 1672 )
WMSReservationSequenceLine ( Shipment reservation sequences 1482 )
WMSReservationSequenceTable ( Shipment reservation sequence header 1487 )
WMSShipment ( Shipment 682 )
WMSShipmentTemplate ( Shipment template 1212 )
WMSStoreArea ( Store area 686 )
WMSStoreZone ( Store zone 687 )
WMSStoreZoneArea ( Store zone area 688 )
WMSTransport ( Pallet transports 689 )
WorkCalendarDate ( Working times 507 )
WorkCalendarDateLine ( Working time 508 )
WorkCalendarEmployment ( Worker calendar assignment 7295 )
WorkCalendarTable ( Calendar 509 )
WorkflowActionTable ( Allowed actions 721 )
WorkflowAOTTmp ( Workflow AOT lookup 1735 )
WorkflowAssignmentTable ( Assignment 723 )
WorkflowAssociation ( Workflow association 4837 )
WorkflowCubeElementLookup ( Workflow cube element lookup 7908 )
WorkflowCubeLookup ( Workflow cube lookup 7909 )
WorkflowCubeTransaction ( Workflow transactions 7910 )
WorkflowDocumentFieldTmp ( Document fields 1109 )
WorkflowElementLinkTable ( Element link 735 )
WorkflowElementNotificationTable ( Element notifications 753 )
WorkflowElementOutcomeTable ( Workflow element choices 2893 )
WorkflowElementTable ( Workflow elements 2849 )
WorkflowElementViewState ( Workflow element layout 5305 )
WorkflowEscalationPathTable ( Escalation path settings 759 )
WorkflowEscalationTable ( Escalation settings 760 )
WorkflowHistoryTmp ( Workflow history 2622 )
WorkflowIdRelationshipMapping ( Workflow relationship mapping 4823 )
WorkflowMaxRuntimeTable ( Max runtime 763 )
WorkflowMessageText ( Message texts 1116 )
WorkflowNotificationStaging ( Workflow notification staging 100268 )
WorkflowParallelBranchTable ( Parallel 3048 )
WorkflowParameters ( Settings for workflow 2726 )
WorkflowParticipantExpenToken ( Workflow participant expenditure token 7187 )
WorkflowParticipantExpenTokenLine ( Workflow participant expenditure token legal entity 7188 )
WorkflowQueueDocumentCommonFields ( Work item queue common fields 4131 )
WorkflowStatusTreeTmp ( Workflow status tree lookup 2212 )
WorkflowStepMap ( Workflow steps 2191 )
WorkflowStepTable ( Workflow steps 2767 )
WorkflowSubWorkflow ( Subworkflows 4286 )
WorkflowSubWorkflowItem ( Subworkflow items 4288 )
WorkflowSubWorkflowTable ( Subworkflows 2091 )
WorkflowTable ( Workflow configurations 2701 )
WorkflowTimeSpanTable ( Time span 764 )
WorkflowTmpTrackingReport ( Workflow tracking report 100269 )
WorkflowTmpWorkList ( Work list 6864 )
WorkflowTmpWorkListSummary ( All - summary 7204 )
WorkflowTrackingArgumentTable ( Workflow tracking arguments table 1733 )
WorkflowTrackingCommentTable ( Workflow tracking comment table 2131 )
WorkflowTrackingStatusTable ( Workflow tracking status table 2132 )
WorkflowTrackingTable ( Workflow tracking table 2134 )
WorkflowTrackingUserView ( Workflow tracking user 100389 )
WorkflowTrackingWorkItem ( Workflow tracking work item 7120 )
WorkflowVersionNotificationTable ( Workflow notifications 724 )
WorkflowVersionTable ( Workflow configurations 4085 )
WorkflowVersionTableNotes ( Workflow configuration notes 2825 )
WorkflowWorkItemCommentTable ( Work item comment 1723 )
WorkflowWorkItemDelegationParameters ( Workflow delegation 1721 )
WorkflowWorkItemQueue ( Workflow work item queue 6189 )
WorkflowWorkItemQueueAssignee ( Workflow work item queue assignee 6190 )
WorkflowWorkItemQueueExpression ( Work item queue assignment rules 6946 )
WorkflowWorkItemQueueExpressionDef ( Workflow work item default queue definition 6947 )
WorkflowWorkItemQueueGroup ( Workflow work item queue group 6191 )
WorkflowWorkItemQueueGroupRelation ( Workflow work item queue relation table 4133 )
WorkflowWorkItemQueueTypeTmp ( Workflow Work item type lookup 6193 )
WorkflowWorkItemTable ( Work items 2725 )
WorkPeriodTemplate ( Period templates 2373 )
WorkPeriodTemplateLine ( Period template lines 2448 )
WorkPeriodTemplateTmpLine ( Period template lines 2717 )
WorkTimeLine ( Time transactions 510 )
WorkTimeTable ( Working time templates 511 )
WrkCtrAbility ( Resource abilities 7030 )
WrkCtrAbilityCapability ( Capability membership 7031 )
WrkCtrAbilityCertificate ( Certificate competency 7032 )
WrkCtrAbilityCourse ( Course competency 7033 )
WrkCtrAbilityPersonTitle ( Title 7034 )
WrkCtrAbilityResource ( Resources 7035 )
WrkCtrAbilityResourceGroup ( Resource group membership 7036 )
WrkCtrAbilityResourceType ( Resource type 7037 )
WrkCtrAbilitySkill ( Skill competency 7038 )
WrkCtrActivity ( Activity 3177 )
WrkCtrActivityCapabilityRequirement ( Capability requirement 3188 )
WrkCtrActivityCapabilityRequirementView ( Capability requirement 7039 )
WrkCtrActivityCertificateRequirement ( Certificate requirement 3190 )
WrkCtrActivityCertificateRequirementView ( Certificate requirement 7040 )
WrkCtrActivityCourseRequirement ( Course requirement 3191 )
WrkCtrActivityCourseRequirementView ( Course requirement 7041 )
WrkCtrActivityPersonTitleRequirement ( Title requirements 4678 )
WrkCtrActivityPersonTitleRequirementView ( Title requirements 7042 )
WrkCtrActivityRequirement ( Resource requirements 3187 )
WrkCtrActivityRequirementSet ( Resource requirement set 3182 )
WrkCtrActivityRequirementView ( Resource requirements 7043 )
WrkCtrActivityResourceFilter ( Activity resource filter 7029 )
WrkCtrActivityResourceGroupRequirement ( Resource group requirement 3205 )
WrkCtrActivityResourceGroupReqView ( Resource group requirement 7044 )
WrkCtrActivityResourceRequirement ( Resource requirement 3189 )
WrkCtrActivityResourceRequirementView ( Resource requirement 7045 )
WrkCtrActivityResourceTypeRequirement ( Resource type requirements 4677 )
WrkCtrActivityResourceTypeReqView ( Resource type requirements 7046 )
WrkCtrActivitySkillRequirement ( Skill requirement 3202 )
WrkCtrActivitySkillRequirementView ( Skill requirement 7047 )
WrkCtrCapability ( Capabilities 2895 )
WrkCtrCapabilityResource ( Capability membership 2928 )
WrkCtrCapRes ( Capacity reservations 234 )
WrkCtrCapResConflictCheck ( Capacity reservation conflict check intervals 100270 )
WrkCtrCapResPeriodTmp ( Capacity load per period 100271 )
WrkCtrCapResPlanView ( Capacity reservations 9744 )
WrkCtrCapResProperty ( Capacity reservation requirements 7611 )
WrkCtrJobs ( Job list 6237 )
WrkCtrParameters ( Resource parameters 655 )
WrkCtrParametersDim ( Resource parameters by site 1149 )
WrkCtrPBATreeRouteOprActivity ( Activity 3575 )
WrkCtrPCRouteOperationActivity ( Activity 5003 )
WrkCtrProdRouteActivity ( Production route activity 3178 )
WrkCtrProjForecastEmplActivity ( Hour forecast activity 3180 )
WrkCtrProperty ( Properties 558 )
WrkCtrPropertyLine ( Property 559 )
WrkCtrRequirementWizardFilterTmp ( Maintain resource requirements 100272 )
WrkCtrRequirementWizardNewReqTmp ( Maintain resource requirements 100273 )
WrkCtrRequirementWizardSearchCriteriaTmp ( Maintain resource requirements 100274 )
WrkCtrResourceAndGroupView ( Resources 5470 )
WrkCtrResourceGroup ( Resource groups 3037 )
WrkCtrResourceGroupCalendar ( Resource group calendar assignments 4132 )
WrkCtrResourceGroupPrinterSettings ( Resource group printer settings 4308 )
WrkCtrResourceGroupResource ( Resource group membership 3038 )
WrkCtrRouteOprActivity ( Operation relation activity 3179 )
WrkCtrSchedulerLock ( Resource scheduling engine lock table 7309 )
WrkCtrSchedulerOrder ( Resource scheduling order 100285 )
WrkCtrSchedulerRuntimeTable ( Resource scheduling runtime log table 3456 )
WrkCtrTable ( Resources 266 )
WrkCtrTableExpanded ( Resources 7172 )
WrkCtrTableGroupView ( Resource groups 5412 )
WrkCtrTableIndividualView ( Resources 5411 )
XBRLTaxonomy ( Taxonomy table 1945 )
XBRLTaxonomyArc ( Taxonomy arc table 1946 )
XBRLTaxonomyComplexType ( Complex type table 1951 )
XBRLTaxonomyComplexTypeValue ( Complex type value name 1952 )
XBRLTaxonomyElement ( Taxonomy element table 1947 )
XBRLTaxonomyElementValue ( Taxonomy element values table 1742 )
XBRLTaxonomyExtendedLink ( XBRL extended link 2097 )
XBRLTaxonomyFile ( Taxonomy files 2041 )
XBRLTaxonomyLabelElement ( Taxonomy label element table 1948 )
XBRLTaxonomyLines ( XBRL taxonomy schema setup - lines 1514 )
XBRLTaxonomyLocator ( Taxonomy locator table 1949 )
XBRLTaxonomyReferenceElement ( Taxonomy reference table 1950 )
XBRLTaxonomyTable ( XBRL taxonomy schema setup 1515 )
XBRLTaxonomyTargetNamespace ( Target namespace for the element 1986 )
xRefNames ( Name register of the cross-reference 513 )
xRefPaths ( Cross-referenced AOT paths 515 )
xRefReferences ( Cross-reference 516 )
xRefTableRelation ( Table relations 535 )
xRefTmpReferences ( Cross-reference 481 )


Ref:  http://blogs.msdn.com/b/dynamics_latam/archive/2012/11/01/tablas-de-dynamics-ax-2012-ids-amp-descripciones.aspx
Regards,

How find size of recordsortedlist in D365/AX 2012

Hi, This is the continuity of the previous article where we are now getting the size of recordsortedlist . if(recordsortedlist.len() >1) ...