brugmanrad
4th March 2003, 12:29
I have made a new session which I want to start from the zoom-menu in the sales order line entry.

In this session some additional data is written into a selfmade table. The index of this table exists of the order number, order line number and a sequence number.

Now I need the sales order number and sales order line number (tdsls041.orno, tdsls041.pono) to be imported into this session to fill the table.

How can I do that?

anch1974
4th March 2003, 13:06
Use export() and Import() functions.

kammie
4th March 2003, 13:19
In the program script of the new session, you have to introduce a zoom.from section, and in this section you can import those fields.

decalaration:
table ttdsls041

zoom.from.all: | Instead of 'all' you can specify a sessioncode
import("tdsls041.orno", tdsls041.orno)
import("tdsls041.pono", tdsls041.pono)

brugmanrad
4th March 2003, 15:06
thanks for your quick response

it works fine