Hi everyone im looking for help for creating a record in Item Journal Lines using a PowerApp, ive created an API for exposing the table but i cant manage to create the record because of the Journal template Name , Journal Batch Name and Line No.
On the other hand i tried creating a record through PowerAutomate but i cant see the requested values (Journal template Name , Journal Batch Name and Line No.) on the custom API in PowerAutomate.
Here are the values for the Item Journal Lines API:
Here are the values for the Item Journal Lines API:
layout
{
area(Content)
{
repeater(General)
{
field(systemId; Rec.SystemId)
{
Caption = 'SystemId';
}
field(journalTemplateName; Rec."Journal Template Name")
{
Caption = 'Journal Template Name';
}
field(journalBatchName; Rec."Journal Batch Name")
{
Caption = 'Journal Batch Name';
}
field(documentNo; Rec."Document No.")
{
Caption = 'Document No.';
}
field(itemNo; Rec."Item No.")
{
Caption = 'Item No.';
}
field(lotNo; Rec."Lot No.")
{
Caption = 'Lot No.';
}
field(no; Rec."No.")
{
Caption = 'No.';
}
field(orderDate; Rec."Order Date")
{
Caption = 'Order Date';
}
field(entryType; Rec."Entry Type")
{
Caption = 'Entry Type';
}
field(description; Rec.Description)
{
Caption = 'Description';
}
field(locationCode; Rec."Location Code")
{
Caption = 'Location Code';
}
field(quantity; Rec.Quantity)
{
Caption = 'Quantity';
}
field(unitOfMeasureCode; Rec."Unit of Measure Code")
{
Caption = 'Unit of Measure Code';
}
}
}
}
}
Categories: