cancel
Showing results for 
Search instead for 
Did you mean: 

GET_FRAME_TITLE

Former Member
0 Kudos

I ran across a command called "GET_FRAME_TITLE" in the initialization section of an SAP supplied program called RFDOFW00 (Open Items - Customer Due Date Forecast).

I've never seen this before and wondered if anyone knew what it meant.

This program uses logical database DDF. But, I can't find any reference to this command in either the program or the DDF code.

Accepted Solutions (0)

Answers (1)

Answers (1)

RichHeilman
Developer Advocate
Developer Advocate
0 Kudos

It looks like a macro.

Macros are pieces of code which does something that you want to do a number of times.



DEFINE MY_MACRO.
new_date = sy-datum + 1.
END-OF-DEFINITION.


Regards,

Rich Heilman

RichHeilman
Developer Advocate
Developer Advocate
0 Kudos

It is located in the source code of the SELECTIONs button in the logical database in the RFDBRMAC include program.

DEFINE GET_FRAME_TITLE.
  PERFORM GET_FRAME_TITLE(SAPDBBRF) USING &1 _TEXT_&1.
END-OF-DEFINITION.

Regards,

Rich Heilman

Former Member
0 Kudos

Thanks.

RichHeilman
Developer Advocate
Developer Advocate
0 Kudos

If this has answered your question, could you please awared points accordingly. Thanks.

Regards,

Rich Heilman