ProjBudgetManager.insertProjBudgetLine Method [AX 2012]

Inserts a record into the ProjBudgetLine table.

NoteNote

The syntax of this method varies based on the version of Microsoft Dynamics AX that you are using.


  Microsoft Dynamics AX 2012 R3
          private RefRecId insertProjBudgetLine(
            CategoryId _categoryId, 
            ProjTransType _projTransType, 
            AmountCur _originalAmount, 
            ProjBudgetLineType _projBudgetLineType, 
            RecId _projBudget, 
            ProjId _projId, 
            ProjActivityNumber _activityNumber)

  Microsoft Dynamics AX 2012 R2 (SYS)
          private RefRecId insertProjBudgetLine(
            CategoryId _categoryId, 
            ProjTransType _projTransType, 
            AmountCur _originalAmount, 
            ProjBudgetLineType _projBudgetLineType, 
            RecId _projBudget, 
            ProjId _projId, 
            ProjActivityNumber _activityNumber)

  Microsoft Dynamics AX 2012 Feature Pack (SYS)
          private void insertProjBudgetLine(
            CategoryId _categoryId, 
            ProjTransType _projTransType, 
            AmountCur _originalAmount, 
            ProjBudgetLineType _projBudgetLineType, 
            RecId _projBudget, 
            ProjId _projId, 
            ProjActivityNumber _activityNumber)

  Microsoft Dynamics AX 2012 (FPK)
          private void insertProjBudgetLine(
            CategoryId _categoryId, 
            ProjTransType _projTransType, 
            AmountCur _originalAmount, 
            ProjBudgetLineType _projBudgetLineType, 
            RecId _projBudget, 
            ProjId _projId, 
            ProjActivityNumber _activityNumber)

  Microsoft Dynamics AX 2012 (SYS)
          private void insertProjBudgetLine(
            CategoryId _categoryId, 
            ProjTransType _projTransType, 
            AmountCur _originalAmount, 
            ProjBudgetLineType _projBudgetLineType, 
            RecId _projBudget, 
            ProjId _projId, 
            ProjActivityNumber _activityNumber)

Run On

Called

Parameters

_categoryId
Type: CategoryId Extended Data Type
A CategoryId value that determines the category ID of the new ProjBudgetLine record.
_projTransType
Type: ProjTransType Enumeration
A ProjTransType value that determines the transaction type of the new ProjBudgetLine record.
_originalAmount
Type: AmountCur Extended Data Type
A AmountCur value that determines the original amount of the new ProjBudgetLine record.
_projBudgetLineType
Type: ProjBudgetLineType Enumeration
A ProjBudgetLineType value that determines the line type of the new ProjBudgetLine record.
_projBudget
Type: RecId Extended Data Type
A RecID value that determines the project budget ID of the new ProjBudgetLine record..
_projId
Type: ProjId Extended Data Type
A ProjId value that determines the project ID.
_activityNumber
Type: ProjActivityNumber Extended Data Type
A activityNumber value that determines the activity.

Return Value

Type: RefRecId Extended Data Type
The record ID of the inserted ProjBudgetLine record.

Community Additions

ADD
Show: