PdcAllocation.AllocationID: Difference between revisions

From External Bemet Wiki
Jump to navigation Jump to search
Created page with "== Declaration == ReservationID as Integer == Description == Sets or returns the reservation id(RS_ID) of an allocation. == Notes == This property can set or return the rese..."
 
No edit summary
 
Line 1: Line 1:
== Declaration ==
== Declaration ==
ReservationID as Integer
AllocationID as Integer


== Description ==
== Description ==
Sets or returns the reservation id(RS_ID) of an allocation.
Returns the allocation id(SA_ID) of an allocation.


== Notes ==
== Notes ==
This property can set or return the reservation id of an allocation. The set is mostly used for when creating a new allocation.
This property returns the allocation id of an allocation. READ ONLY


== Code example ==
== Code example ==
Line 12: Line 12:
dim alloc
dim alloc
Set alloc = PDC.Logistics.Allocations.New
Set alloc = PDC.Logistics.Allocations.New
alloc.ReservationID = 223
Label1.Caption = alloc.AllocationID
</source>
</source>
   
   
== Availability ==
== Availability ==
Available since May 2017 (from version 5.4)
Available since May 2017 (from version 5.4)

Latest revision as of 14:05, 25 April 2017

Declaration

AllocationID as Integer

Description

Returns the allocation id(SA_ID) of an allocation.

Notes

This property returns the allocation id of an allocation. READ ONLY

Code example

dim alloc
Set alloc = PDC.Logistics.Allocations.New
Label1.Caption = alloc.AllocationID

Availability

Available since May 2017 (from version 5.4)