Query 302 Item Application Entries
- App
- Base Application
- Namespace
- Microsoft.Inventory.Ledger
- Versions
- 27-28
Versions171819202122232425262728
Source29
Source in 29
src/Layers/W1/BaseApp/Inventory/Ledger/ItemApplicationEntries.Query.al27 lines, Copyright (c) Microsoft Corporation. MIT
namespace Microsoft.Inventory.Ledger;
query 302 "Item Application Entries"
{
QueryType = Normal;
DataAccessIntent = ReadOnly;
Caption = 'Item Application Entries';
Description = 'Item application entries retrieved for inbound transfer entries check.';
OrderBy = ascending(Transferred_from_Entry_No, Cost_Application);
elements
{
dataitem(Item_Application_Entry; "Item Application Entry")
{
column(Entry_No_; "Entry No.") { }
column(Item_Ledger_Entry_No; "Item Ledger Entry No.") { }
column(Inbound_Item_Entry_No; "Inbound Item Entry No.") { }
column(Outbound_Item_Entry_No; "Outbound Item Entry No.") { }
column(Quantity; Quantity) { }
column(Posting_Date; "Posting Date") { }
column(Transferred_from_Entry_No; "Transferred-from Entry No.") { }
column(Cost_Application; "Cost Application") { }
column(Output_Completely_Invd__Date; "Output Completely Invd. Date") { }
column(Outbound_Entry_is_Updated; "Outbound Entry is Updated") { }
}
}
}