‎2009 May 25 3:44 PM
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,
‎2009 May 25 4:03 PM
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
‎2009 May 25 4:03 PM
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
‎2009 May 25 4:23 PM
Well, is not the answer i would have liked to read, but it is better to know....hehe.
Thanks, and regards.