Peter
Peter

Reputation: 48958

Returning a range table. How?

I would like to write a function module that returns a range table. Is that possible and if so, how?

Upvotes: 5

Views: 9362

Answers (1)

PATRY Guillaume
PATRY Guillaume

Reputation: 4337

The structure of a typed range is like this :

**Name**  **Type**
SIGNT      VARV_SIGN
OPTION     TVARV_OPTI
LOW        your-type
HIGH       your-type

You can create this structure in the dictionary, as well as a table of those, and then use it in the FM signature.

Also, a generic structure already exists : RSDSSELOPT (along with a table type RSELOPTION).

Upvotes: 7

Related Questions