cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Where SAP store "default layout" of MIR7 ??

Former Member
0 Kudos
1,276

Hi...

I have a problem about "default layout" of MIR7, as you know, in MIR7, the default layout will be the last "layout" which user used.

Now we have a situation - hard to explain it - anyway, the user can't change the layout in MIR7 because it's was hide.

So we/MIS tried to help user to change the "default layout" , but all failed...

We have tried to :

1. "clear history" of user's history record.

2. delete .MDB file under directory sapworkdir

3. Delete User's account and re-create it.

But all the way can't change "default layout" of this user account.

so, I need to know where SAP store "default layout" of MIR7?? any idea??

Thanks,

View Entire Topic
former_member182371
Active Contributor
0 Kudos

Hi,

maybe you can try something with transactions OLMRLIST or SHD0.

execute fm ES_READ_USER_SETTINGS with:

IACTION = MIRO

IUNAME = USERNAME

have a look at resulting table IESDUS

you can put a break-point in:

program -> SAPLMR1M

include -> LMR1MF5D

FORM -> user_defaults_set.

precisely in CALL FUNCTION 'ES_READ_USER_SETTINGS

then execute MIR7 transaction and have a look at table tab_user_settings

pay attention to this piece of code:


* Version für das Table Control der Items
  READ TABLE tab_user_settings WITH KEY action  = c_action_miro
                                      element = 'ITEM_LIST_VERSION'.
  IF sy-subrc IS INITIAL.
    MOVE tab_user_settings-active TO rm08m-item_list_version.
  ELSE.
    rm08m-item_list_version = '7_6310'.    " Alle Informationen
  ENDIF.

Best regards.

Edited by: Pablo Casamayor on Jul 21, 2011 11:37 AM

Edited by: Pablo Casamayor on Jul 21, 2011 11:41 AM

Former Member
0 Kudos

Dear Pablo Casamayor :

Thanks a lot, it really resolve my issue.

I would use SE16N to update the setting if I can't find any other "standard" way to update it.

Thanks again.

Akash
Participant
0 Kudos

I can't see any spot in this Exit 'LMR1MF5D'.. please help