Application Development 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: 

SAPMF05A (FB60) - Screen variants

Former Member
0 Kudos
332

Hi,

is it possible to move INVFO-XREF2 from "Details" into "Basic data",

e.g. after "Text" (INVFO-SGTXT)?

Thank you

Manfred

3 REPLIES 3

former_member182371
Active Contributor
0 Kudos
113

Hi,

this worked for MIRO (maybe could work for FB60):

Default value for Text Field Under Basic Tab in MIRO

In badi MRM_HEADER_DEFAULT BADI you could do something

via field-symbols e.g.:


  CONSTANTS: c_sgtxt(21) TYPE c VALUE '(SAPLFDCB)INVFO-SGTXT',

c_xref2(21) TYPE c VALUE '(SAPLFDCB)INVFO-XREF2'.

  FIELD-SYMBOLS: <fs_sgtxt> TYPE ANY,

<fs_xref2> TYPE ANY.

  ASSIGN (c_sgtxt) TO <fs_sgtxt>.

ASSIGN (c_xref2) TO <fs_xref2>.

IF NOT <fs_xref2> IS INITIAL.

  <fs_sgtxt> = <fs_xref2>.

ENDIF.


Best regards,

Pablo

Message was edited by: Pablo Casamayor

former_member230215
Participant
0 Kudos
113

It is possible through spro

0 Kudos
113

please show me the path in SPRO