order by BeginTime
where salesShipLoadingWindows.BeginTime >= begginigTime
{
loadingWindows.insert(salesShipLoadingWindows.BeginTime, salesShipLoadingWindows.LoadingWindowId);
}
Hi,
Is your issue resolved? If yes, mark the answers that helped you as verified.
Thanks,
Waed Ayyad
Hi,
Is your issue resolved? If yes, mark the answers that helped you as verified.
Thanks,
Waed Ayyad
Hi,
Is your issue resolved? If yes, mark the answers that helped you as verified.
Thanks,
Waed Ayyad
Hi,
Is your issue resolved? If yes, mark the answers that helped you as verified.
Thanks,
Waed Ayyad
Map map = new Map(Types::Time, Types::String);
map.insert(1*60, "x");
map.insert(2*60, "y");
MapEnumerator enumerator = map.getEnumerator();
while (enumerator.moveNext())
{
info(strFmt("%1: %2", enumerator.currentKey(), enumerator.currentValue()));
}
public static void main(Args _args)
{
Map map = new Map (Types::Integer, Types::String);
// inserting key and values
map.insert (1,"A");
map.insert (1,"B");
map.insert (3,"C");
map.insert (4,"D");
map.insert (5,"F");
if (! map.empty ())
{
Info(map.lookup(1)); // It will return B
}
}
Thanks,
Waed Ayyad
If this helped, please mark it as "Verified" for others facing the same issue
André Arnaud de Cal...
293,245
Super User 2025 Season 1
Martin Dráb
231,923
Most Valuable Professional
nmaenpaa
101,156
Moderator