Application Development and Automation 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: 
Read only

Badi

Former Member
0 Likes
645

Hi,

Iam working on a badi.I want to populate a field which is not present in the table fields of badi signature.How can i populate this .Please help me to solve this.

Thanks,

satish.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
611

If you know the name of the main program and the variable that has the value then do as below.

Example :

FIELD-SYMBOLS: <FS_VALUE> TYPE ANY.

ASSIGN ('(SAPLMEPO)VB_UPDKZ') TO <FS_VALUE>.

REgards,

Ravi

3 REPLIES 3
Read only

Former Member
0 Likes
612

If you know the name of the main program and the variable that has the value then do as below.

Example :

FIELD-SYMBOLS: <FS_VALUE> TYPE ANY.

ASSIGN ('(SAPLMEPO)VB_UPDKZ') TO <FS_VALUE>.

REgards,

Ravi

Read only

0 Likes
611

Hi ravi,

The field is not present even in the main program .

Read only

0 Likes
611

Hi,

can i use this logic for the functional group also and can i send data from any varable to the screen field,

i have an varable which exit in badi and now i want to send this varable to the starandard screen value and save it how to do it