‎2006 Nov 15 1:36 PM
I am trying to use import and export statements in two different programs . The control from one program goes to another program with the function modules they have . I dont see the value while importing.
export i_field1 to memory id 'bus_ind'
import val1 to memory id 'bus_ind'
i gave only the memory id as common name
‎2006 Nov 15 1:56 PM
Use as
export i_field1 to memory id 'BUS_IND'
import val1 from memory id 'BUS_IND'
‎2006 Nov 15 1:52 PM
Hi Priyanka,
Try to use Capital letters for the memory id and check.
Regards,
ravi
‎2006 Nov 15 1:56 PM
Use as
export i_field1 to memory id 'BUS_IND'
import val1 from memory id 'BUS_IND'
‎2006 Nov 15 2:00 PM
‎2006 Nov 15 2:19 PM
BUSIND = I_ZMNETDTL-ZBUSINESS_IND.
EXPORT BUSIND TO MEMORY ID 'BANIN'.
IMPORT BUS_IND FROM MEMORY ID 'BAN'.
can i give like this ? i have to check this program in test and want to make sure before transporting. bus_ind are the local variables in two different function modules.
‎2006 Nov 15 2:22 PM
‎2006 Nov 15 2:24 PM
‎2006 Nov 15 2:25 PM