![]() |
#1 |
Участник
|
call a function
I'm very new with Axapta. How do you call a function that return a dataset? Thanks!
![]() |
|
![]() |
#2 |
Участник
|
X++: InventTable inventTable; InventTable testFunction() { InventTable ret; select ret where itemID>'1'; return ret; } ; inventTable=testFunction(); while(inventTable) { info(inventTable.itemID); next inventTable; } |
|
![]() |
#3 |
Moderator
|
Refinement
PHP код:
|
|