Skip to main content

Access Variables from foreign module

ABAP Tricks

You can access a variable from another loaded block even if there is no direct interface exposed.

 

  ASSIGN ('(RSNASTED)RECIPIENT_GET') TO <lv_fs>.

It is RECIPIENT_GET in Program RSNASTED provided that RSNASTED is loaded.

Example:

ALE_PROCESSING in RCOD_OUTPUT_COD4.

Good luck.