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

Batch Input: Get value from a screen field.

Former Member
0 Likes
785

Hi Gurus,

We are doing a batch input and we need to get the value of a screen field during the process, and then assign this value to another field in a different screen. Does anybody knows how to do it?

example:

screen 2000; field pernr: value XXXX -


> we don't know how to get this value during the batch input.

screen 2004; field pernr value: (empty) -


> we want to put the previous value into this field.

Thanks in advance,

1 ACCEPTED SOLUTION
Read only

andrea_galluccio2
Contributor
0 Likes
498

Hi,

probably you cannot do that.

You should select or calculate that value before starting the trasaction.

If you need the pernr generated by the system, probably you can do something like this :

1. Batch that create the PERNR

2. "Get parameter id" to get the last pernr generated by the system (or use the number range FMs to get it)

3. A new batch to modify the requested field.

Just a suggestions, but hope it helps.

Best Regards

Andrea

2 REPLIES 2
Read only

andrea_galluccio2
Contributor
0 Likes
499

Hi,

probably you cannot do that.

You should select or calculate that value before starting the trasaction.

If you need the pernr generated by the system, probably you can do something like this :

1. Batch that create the PERNR

2. "Get parameter id" to get the last pernr generated by the system (or use the number range FMs to get it)

3. A new batch to modify the requested field.

Just a suggestions, but hope it helps.

Best Regards

Andrea

Read only

0 Likes
498

Well, is not the answer i would have liked to read, but it is better to know....hehe.

Thanks, and regards.