cancel
Showing results for 
Search instead for 
Did you mean: 

How to add entry to MEMSD_DEP (Packagesize for T51)?

Former Member
0 Kudos

Hi,

I would like to add an entry to the table MEMSD_DEP to configure the package size - descriped in "help.sap.com" - search for "T51 MEMSD_DEP".

But how can I do that? In the sm30 I get the message "The maintenance dialog for MEMSD_DEP ist incomplete or not defined"

We have installed SP16 without any SAP Notes. And I haven't find a SAP Note related to my problem.

Thanks,

Kai

Accepted Solutions (1)

Accepted Solutions (1)

kishorg
Advisor
Advisor
0 Kudos

Hi Kai Meyer-Spradow ,

just create a view for MEMSD_DEP table.

while creation , u can specify the required fields.

after activation , u can insert values into MEMSD_DEP.

steps ...

-


1) run the se11 transaction

2) put ur own name for ur view(starting with Z or Y) nd press create.

3)select Database View as view type

4)fill the mandatory fields like description

5)In the Table/Join condition tab fill the row with MEMSD_DEP table name

6)U can specify the required fields in the View Fields tab

7)Then in the Maint.Status tab .. , select "read and change" as access permission

8)Data Browser/Table View Main. select "X Display/Maintenance Allowed" from the dropdown

9)then just activate the view

Then u can insert new values in that table using this view.

Regards

Kishor Gopinathan

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi spradow...

I tried as u said its true..

And this is how i overcame it.

Create a report

REPORT  ZModifyTable.
data: MEMSD_DEP_WA like MEMSD_DEP.
MEMSD_DEP_WA-NAMESPACE = ''.
MEMSD_DEP_WA-NAME = 'test1'.
MEMSD_DEP_WA-version = '00'.
MEMSD_DEP_WA-TYPE = 'synbo'.
MEMSD_DEP_WA-TYPE_INDEX = '1'.
MEMSD_DEP_WA-DEPENDENCY_VALUE = '5'.
MEMSD_DEP_WA-DEPENDENCY_NAME = 'version'.

insert MEMSD_DEP from MEMSD_DEP_WA .
write: sy-subrc.

jus use this piece of code but remember to give ur values.

Regards,

Vijay,

Get back for more help..