Get Description (Programming)

adeel

VIP Member
Hello there

I want to know how to display work order number description to other GC or variable. This will be based on when user type the work order column (WADOCO) in grid and I want the result based on the order number.

Here is the select statement in SQL.

SELECT [WADOCO]
,[WADL01]
FROM F4801]
where wasrst = 'MD'


Thanks
 
I guess i can do something like that below but dont know if this is good for performance point of view.

F4801.Select
--------
F4801.Fetch Next


Thanks
 
Adeel,

When you find a solution - it's customary to reply with the solution =D

(db)
 
I hear you, it was not really rocket science.

I found (F4801 Get S/WM Order Information) function available and pass the order number and I get description which I needed for my requirement. very neat thing is that if user type wrong order number E1 gives an error which I also want so 1 line code does many things for me :)

Thanks
AD
 
Back
Top