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: 

How to show F4 help on the selection-screen for clearing documentBSAK-AUGBL

Former Member
0 Kudos

I want to show F4 help on the selection-screen for clearing document(BSAK-AUGBL).

I have declared s_augbl for bsak-augbl.

but it's not showing F4 help.

Can anybody tell me how should I declare this s_augbl so that I can get F4 help?

I have tried with BSAK, BSIK, BSAD, BSEG table but it's not help.

Is there any function module available for this?

Please help me..........

3 REPLIES 3

Former Member
0 Kudos

Hi

BSAK-AUGBL is the clearing document, so it can be a FI document and it usually doesn't use an F4.

Anyway u can create a your own F4 using the FM F4IF_INT_TABLE_VALUE_REQUEST based on table BKPF.

Max

Former Member
0 Kudos

TABLES bsak.
TYPES: BEGIN OF y_augbl,
        augbl TYPE bsak-augbl,
       END OF y_augbl.
DATA t_augbl TYPE STANDARD TABLE OF y_augbl.

SELECT-OPTIONS:s_augbl FOR bsak-augbl.

AT SELECTION-SCREEN ON VALUE-REQUEST FOR s_augbl-LOW.

  CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
    EXPORTING
      retfield               = 'AUGBL'
      DYNPPROG               = SY-CPROG
      DYNPNR                 = SY-DYNNR
      DYNPROFIELD            = 'S_AUGBL'
      VALUE_ORG              = 'S'
    tables
      value_tab              = t_augbl.


INITIALIZATION.

  SELECT augbl FROM bsak INTO TABLE t_augbl.

Former Member
0 Kudos

Hi,

i think there is no help available for bsak-augbl.

just create the search help for that in se11.

then use select-option as below.

it will solve ur prob.

select-options s_augbl for bsak-augbl MATCHCODE OBJECT <search-help>.

regards