Site Search:
Sign in | Join | Help

Dynamics GP

Notes, Tips and Tricks on Developing in Dynamics GP

March 2009 - Posts

  • Olympic Project Cost Tables

    pcSystemMaster               pcSystemMaster               pc00100
    pcPeriodMaster               pcPeriodMaster               pc00110
    pcPeriodMasterTemp           pcPeriodMasterTemp           pc00119
    pcPeriodYear                 pcPeriodYear                 pc00120
    pcProjectTypeMaster          pcProjectTypeMaster          pc00130
    pcProjectSubTypeMaster       pcProjectSubTypeMaster       pc00135
    pcTaskTypeMaster             pcTaskTypeMaster             pc00140
    pcTaskSubTypeMaster          pcTaskSubTypeMaster          pc00145
    pcCostCategoryMaster         pcCostCategoryMaster         pc00150
    pcCodeMaster                 pcCodeMaster                 pc00160
    pcOverheadCategoryMaster     pcOverheadCategoryMaster     pc00170
    pcOverheadDepartmentMaster   pcOverheadDepartmentMaster   pc00180
    pcValuationClassMaster       pcValuationClassMaster       pc00190
    pcProjectMaster              pcProjectMaster              pc00200
    pcProjectRates               pcProjectRates               pc00210
    pcBudgetMaster               pcBudgetMaster               pc00250
    pcAssemblyMaster             pcAssemblyMaster             pc00260
    pcAssemblyUofMMaster         pcAssemblyUofMMaster         pc00270
    pcAssemblyClassMaster        pcAssemblyClassMaster        pc00280
    pcTaskMaster                 pcTaskMaster                 pc00300
    pcTaskMoveActivity           pcTaskMoveActivity           pc00380
    pcTaskMoveTemp               pcTaskMoveTemp               pc00390
    pcEmployeeMaster             pcEmployeeMaster             pc00400
    pcEmployeeClassMaster        pcEmployeeClassMaster        pc00420
    pcCrewMaster                 pcCrewMaster                 pc00430
    pcMinimumWageGroupMaster     pcMinimumWageGroupMaster     pc00440
    pcPayCodeDetail              pcPayCodeDetail              pc00450
    pcMinimumWagePayCodeSetup    pcMinimumWagePayCodeSetup    pc00460
    pcCrewMembers                pcCrewMembers                pc00470
    pcExplorerNodes              pcExplorerNodes              pc00500
    pcDepartmentMaster           pcDepartmentMaster           pc00600
    pcPayGroupMaster             pcPayGroupMaster             pc00620
    pcPayGroupPeriod             pcPayGroupPeriod             pc00625
    pcImportMaster               pcImportMaster               pc00700
    pcImportFieldMapping         pcImportFieldMapping         pc00710
    pcImportFieldMappingTemp     pcImportFieldMappingTemp     pc00711
    pcImportFieldTranslation     pcImportFieldTranslation     pc00720
    pcImportFieldTranslationTemp pcImportFieldTranslationTemp pc00721
    pcbProjectTemp               pcbProjectTemp               pc00751
    pcbTaskTemp                  pcbTaskTemp                  pc00752
    pcbCostCategoryTemp          pcbCostCategoryTemp          pc00753
    pcbSubCostCategoryTemp       pcbSubCostCategoryTemp       pc00754
    pcbTransactionTemp           pcbTransactionTemp           pc00755
    pcProjectModel               pcProjectModel               pc00841
    pcProjectModelDetail         pcProjectModelDetail         pc00851
    pcPayCodeMaster              pcPayCodeMaster              pc00900
    pcPayCodeUofMMaster          pcPayCodeUofMMaster          pc00910
    pcTransaction                pcTransaction                pc10000
    pcTransactionTemp            pcTransactionTemp            pc10001
    pcTransactionImport          pcTransactionImport          pc10005
    pcCrewTransactionTemp        pcCrewTransactionTemp        pc11000
    pcCrewTransactionHist        pcCrewTransactionHist        pc12000
    pcBurdenTransactionTemp      pcBurdenTransactionTemp      pc15000
    pcBurdenPostingRatesTemp     pcBurdenPostingRatesTemp     pc15200
    pcBurdenPostingAccountsTemp  pcBurdenPostingAccountsTemp  pc15400
    pcBurdenGLTransactionTemp    pcBurdenGLTransactionTemp    pc15600
    pcBurdenTransactionHist      pcBurdenTransactionHist      pc16000
    pcValuationHist              pcValuationHist              pc20000
    pcValuationTemp              pcValuationTemp              pc20001
    pcValuationDetailHist        pcValuationDetailHist        pc20100
    pcValuationDetailTemp        pcValuationDetailTemp        pc20101
    pcValuationGLTemp            pcValuationGLTemp            pc20201
    pcBudgetTransaction          pcBudgetTransaction          pc25000
    pcBudgetTransactionTemp      pcBudgetTransactionTemp      pc25001
    pcBudgetBillingDetails       pcBudgetBillingDetails       pc25100
    pcAssemblyTransaction        pcAssemblyTransaction        pc26000
    pcAssemblyTransactionTemp    pcAssemblyTransactionTemp    pc26001
    pcPOTransaction              pcPOTransaction              pc30000
    pcPOTransactionTemp          pcPOTransactionTemp          pc30001
    pcPOReceiptTransaction       pcPOReceiptTransaction       pc30100
    pcPOReceiptTransactionTemp   pcPOReceiptTransactionTemp   pc30101
    pcSOPTransaction             pcSOPTransaction             pc35000
    pcGLReconciliation           pcGLReconciliation           pc39000
    pcGLReconciliationDetail     pcGLReconciliationDetail     pc39001
    pcCreateSOP_Trx              pcCreateSOP_Trx              pc90100
    pcCreatePM_Trx               pcCreatePM_Trx               pc90200
    pcCreateUPR_Trx              pcCreateUPR_Trx              pc90300
    pcPMTransactionWork          pcPMTransactionWork          pc90410

     


     

  • SQL for Security Details in Dynamics GP

     

     I copied this from Victoria Yudin's blog, because it's too important to not to be able to find again. If you work on/in/under Dynamics GP, you need to subscribe to this.

     
    
    
     CREATE VIEW view_Security_Details
    AS
    
    
    /**
    view_Security_Details
    Created Mar 20 2009 by Victoria Yudin - Flexible Solutions, Inc.
    For updates see <a href="http://victoriayudin.com/gp-reports/">http://victoriayudin.com/gp-reports/</a>
    Shows all security roles, tasks and detailed resource descriptions
    by user by company
    **/
    
    
    SELECT DISTINCT
     S.USERID UserID, S.CMPANYID CompanyID,
     C.CMPNYNAM CompanyName, S.SecurityRoleID,
     coalesce(T.SECURITYTASKID,'') SecurityTaskID,
     coalesce(TM.SECURITYTASKNAME,'') SecurityTaskName,
     coalesce(TM.SECURITYTASKDESC,'') SecurityTaskDescription,
     coalesce(R.DICTID,'') DictionaryID,
     coalesce(R.PRODNAME,'') ProductName,
     coalesce(R.TYPESTR,'') ResourceType,
     coalesce(R.DSPLNAME,'') ResourceDisplayName,
     coalesce(R.RESTECHNAME,'') ResourceTechnicalName,
     coalesce(R.Series_Name,'') ResourceSeries
    
    
    FROM SY10500 S   -- security assignment user role
    
    
    LEFT OUTER JOIN
     SY01500 C   -- company master
     ON S.CMPANYID = C.CMPANYID
    
    
    LEFT OUTER JOIN
     SY10600 T  -- tasks in roles
     ON S.SECURITYROLEID = T.SECURITYROLEID 
    
    
    LEFT OUTER JOIN
     SY09000 TM  -- tasks master
     ON T.SECURITYTASKID = TM.SECURITYTASKID 
    
    
    LEFT OUTER JOIN
     SY10700 O  -- operations in tasks
     ON T.SECURITYTASKID = O.SECURITYTASKID 
    
    
    LEFT OUTER JOIN
     SY09400 R  -- resource descriptions
     ON R.DICTID = O.DICTID AND O.SECRESTYPE = R.SECRESTYPE
     AND O.SECURITYID = R.SECURITYID 
    
    
    /** the following will grant permissions to this view to DYNGRP,
    leave this section off if you do not want to grant permissions **/
    GO
    GRANT SELECT ON view_Security_Details TO DYNGRP

  • Dynamics GP 10 Company Tables

    dsFilterJoinView                            dsFilterJoinView               DS10000
    dsUnassignedAcctsView                       dsUnassignedAcctsView          DS10100
    Multicurrency Posting Definitions Master    MC_Batch_Headers               MC00500
    Account Format Setup                        SY_Account_Format_Setup        SY00300
    Work Menu Master                            SY_Work_Maintenance_MSTR       SY00400
    Posting Definitions Master                  Batch_Headers                  SY00500
    Company Location Master                     SY_Location_MSTR               SY00600
    Window Notes Master                         SY_Notes_MSTR                  SY00700
    Source Document Master                      SY_Source_Document_MSTR        SY00900
    Audit Trail Codes                           SY_Transaction_Source_MSTR     SY01000
    Posting Account Master                      SY_Posting_Account_MSTR        SY01100
    Internet Addresses                          coINetAddrs                    SY01200
    Custom Links                                coCustomLinks                  SY01201
    Process Monitor Information                 coProcess                      SY01300
    User Defaults                               coUserDefaults                 SY01401
    Posting Journal Destinations                SY_Posting_Journal_Destination SY02200
    Posting Settings                            SY_Posting_Journal_Settings    SY02300
    Routines Master                             SY_End_Routines_MSTR           SY02500
    End Routines Check Master                   SY_End_Routines_Check_MSTR     SY02800
    Shipping Methods Master                     SY_Shipping_Methods_MSTR       SY03000
    Credit Card Master                          SY_Credit_Card_MSTR            SY03100
    Payment Terms Master                        SY_Payment_Terms_MSTR          SY03300
    File Maintenance Error Log                  SY_File_Maintenance_Error_Log  SY03400
    Record Notes Master                         SY_Record_Notes_MSTR           SY03900
    Comment Master                              SY_Comment_MSTR                SY04200
    Internet Address Prompts                    coINetPrompts                  SY04800
    Extended Pricing Locks                      coExtPricingLocks              SY05500
    Address Electronic Funds Transfer Master    AddressEFT                     SY06000
    List Action Status Header                   syListActionStatusHdr          SY07250
    List Action Status Line                     syListActionStatusLine         SY07255
    Period Setup                                SY_Period_SETP                 SY40100
    Period Header                               SY_Period_HDR                  SY40101
    Tax Period Setup                            SY_Tax_Period_SETP             SY40102
    Tax Period Header                           SY_Tax_Period_HDR              SY40103
    Report Group Master                         SY_Group_List_ROPT             SY70100
    Series Report Groups                        SY_Group_Names_ROPT            SY70200
    Report Option Names                         SY_Report_Names_ROPT           SY70300
    Combined Report Groups                      SY_Master_Group_Names_ROPT     SY70400
    System Report Options                       SY_Options_ROPT                SY70500
    Company Report Options                      SY_Comp_Options_ROPT           SY70501
    Report Destination                          SY_Report_Destination          SY70600
    SY_User_Object_Store                        SY_User_Object_Store           SY90000
    Sales/Purchases Tax Schedule Header Master  TX_Schedule_MSTR_HDR           TX00101
    Sales/Purchases Tax Schedule Master         TX_Schedule_MSTR               TX00102
    Sales/Purchases Tax Master                  TX_Detail_MSTR                 TX00201
    Sales/Purchases Tax Summary Master          TX_Detail_MSTR_SUM             TX00202
    Sales/Purchases Tax Period Summary          TX_Detail_Period_SUM           TX00203
    Tax Rebate                                  taxRebate                      TX20500
    Tax History                                 taxHistory                     TX30000
    Tax Module Setup                            TX_Module_SETP                 TX40101
    VAT_IV_Comm_Code                            VAT_IV_Comm_Code               VAT00200
    VAT_ADDR_MSTR                               VAT_ADDR_MSTR                  VAT00300
    VAT Tax Comm Code MSTR                      VAT Tax Comm Code MSTR         VAT10000
    VAT Country Code MSTR                       VAT Country Code MSTR          VAT10001
    VAT Transport Mode MSTR                     VAT Transport Mode MSTR        VAT10002
    VAT Transaction Nature MSTR                 VAT Transaction Nature MSTR    VAT10003
    Intrastat Maintenance                       syIntrastatMstr                VAT10007
    VAT_INTRA_WORK                              VAT_INTRA_WORK                 VAT10302
    Account Cache                               coAccountCache                 coAccoun
    Period Cache                                coPeriodCache                  coPeriod