Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

Export Field XBLNR

Former Member
0 Kudos
130

Hi,

I need to export the field XBLNR from de program of trx YVF04 which is a copy of trx VF04. I need to import that field into the program that lift messages generated in costumizing. I´ve been debugging for a while but I cant find XBLNR in the program, and I need to, so that I can put the Export under it.

Please help, I don´t know if I´m being clear.

Regards,

Lucila

Message was edited by:

Lucila Seri

2 REPLIES 2

former_member194669
Active Contributor
0 Kudos
85

Hi,

Check this


data: this_field(20) type c.
 
export  your_field to memory id 'YOUR_MEM_ID'.

Program two.

data: this_field(20) type c.
 
import  your_field from memory id 'YOUR_MEM_ID

aRs

Former Member
0 Kudos
85

within VF04 there doesnot exist a field called XBLNR. so, ur unable to find the field within YVF04 transaction which u copied using VF04.