Ansicht
Dokumentation

BSV_HELP_STATUS_LINE - F1 Help for a Status in a Status Bar

BSV_HELP_STATUS_LINE - F1 Help for a Status in a Status Bar

Vendor Master (General Section)   Vendor Master (General Section)  
This documentation is copyright by SAP AG.
SAP E-Book

Functionality

This function module can be used to program F1 help for status bars.

If you press F1 on a status abbreviation, the documentation to the underlying system or user status is displayed.

If you press F1 over a BLANK in the status bar or over a field text, the general F1 help for the status bar is displayed.

Example

Screen fields:

MKAUF-SYSST: System status line
MKAUF-ANWST: User status line

In the screen flow logic:

field mkauf-sysst module help_status on help-request.
field mkauf-anwst module help_status on help-request.

module help_status input.

data: fn like screen-name,
offs like sy-tabix,
text like mkauf-sysst.
get cursor field fn offset offs value text.
case fn.
when 'MKAUF-SYSST'.
call function 'BSV_HELP_STATUS_LINE'
exporting
i_line = text
i_offset = offs
i_mode = 'I'
i_stsma = ' '.
when 'MKAUF-ANWST'.
call function 'BSV_HELP_STATUS_LINE'
exporting
i_line = text
i_offset = offs
i_mode = 'E'
i_stsma = kauf-par_stsma.

endcase.
endmodule. " HELP_STATUS INPUT

Notes

Further information





Parameters

I_LINE
I_MODE
I_OFFSET
I_STSMA

Exceptions

Function Group

BSVD

ROGBILLS - Synchronize billing plans   BAL_S_LOG - Application Log: Log header data  
This documentation is copyright by SAP AG.

Length: 1895 Date: 20240523 Time: 161724     sap01-206 ( 28 ms )