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: 

FBL1N issue Paymenet block and unblock option not coming

Former Member
0 Kudos

Hello Gurus,

We have an issue where user is not able to get the block and unblock option in FBL1N.After login into FBL1N user is also not getting edit option.

Please help if some have seen this issue before.

Attaching the error as well.

Regards,

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi,

maybe authorization for transaction FB02 is necessary, because:

Program RFITEMAP Line 314:

* authority display or change

  perform authority_tcode using 'FB02' subrc.

  if subrc eq 0.

    x_change = 'X'.

  else.

    x_change = space.

  endif.

Programm SAPLFI_ITEMS Line 394:

* call mode = display only? -> disable change functions:
   IF x_change = space.
     wa_extab-fcode = 'CHNG'.
     APPEND wa_extab TO rt_extab.
     wa_extab-fcode = 'MASS'.
     APPEND wa_extab TO rt_extab.
   ENDIF.

confer Note 497334 - FB02: Authority Check is missing

7 REPLIES 7

moazzam_ali
Active Contributor
0 Kudos

Hi

You mean to say user is not able to change layout, add or remove columns in report after execution? If yes then ask your BASIS guy to give authorization of create change activity in F_IT_ALV authorization object.

Thank$

Former Member
0 Kudos

Hi,

maybe authorization for transaction FB02 is necessary, because:

Program RFITEMAP Line 314:

* authority display or change

  perform authority_tcode using 'FB02' subrc.

  if subrc eq 0.

    x_change = 'X'.

  else.

    x_change = space.

  endif.

Programm SAPLFI_ITEMS Line 394:

* call mode = display only? -> disable change functions:
   IF x_change = space.
     wa_extab-fcode = 'CHNG'.
     APPEND wa_extab TO rt_extab.
     wa_extab-fcode = 'MASS'.
     APPEND wa_extab TO rt_extab.
   ENDIF.

confer Note 497334 - FB02: Authority Check is missing

0 Kudos

Hello Wolfard,

This is regarding FBL1N issue, you mentioned FB02 . do you think it is same authority issue.

0 Kudos

Note 497334:

You select a document via the line item list. - The system hides the 'change' function if you do not have authorization for Transaction FB02.

. . . and the MASS-function, whatever that might be.

0 Kudos

Thanks for the reply

so if the user have FB02 access , does it work?

0 Kudos

Thanks Wolfard its working with FB02, just want to know how you find the solution

0 Kudos

Hi Raghav,

how I found the information:

FBL1N , set up a vendor_line_item_display-list

system -> status -> double-click on GUI status ALV_ITEMS_AR to see which characters are used for edit-option = CHNG.

system -> status -> double-click on Program (GUI) SAPLFI_ITEMS and search for (binoculars buttom! at the top, not Ctrl+F) 'CHNG'. The first place shows the dependence of the switch x_change.

Started FB1LN again in debug mode and created a watchpoint for x_change.

Much easier: SAP notes, search for fbl1N and authorization.