cancel
Showing results for 
Search instead for 
Did you mean: 

No "New Entry" button in SCC4

tsenol
Active Participant
0 Kudos

Hello All,

I've installed S4HANA 1511 version with NW 7.5 and updated to lastest level (NW 750 SP3 + SCORE SP2)

When I try to install new client, I saw that there is no New Entry button. I have full authorisation (SAP_ALL + SAP_NEW) . There is no SAP Notes.

Do you have any idea?

And one more point, in S/4HANA FPS2 Administration Guide, It is written that I need to choose New Entries in SCC4.

https://websmp207.sap-ag.de/~sapidb/012002523100003713492016E/frameset.htm?eed01a68410a406bacc5d1fd4...

Accepted Solutions (1)

Accepted Solutions (1)

tsenol
Active Participant
0 Kudos

2140167 - SCC4 "New Entries" button missing in order to create new client(s)


Cause

  • This issue is because table T000 has only one entry. If the table T000 has more than one entry then it’s maintainable in SCC4/SM30 and new entries can be created.

Resolution

  1. You can create one dummy entry directly in table T000 in addition to the existing entry, and the "New Entries" button will start appearing in SCC4/SM30.

See Also

  • If entries are manually created in T000 and are not appearing in SCC4 then try activating the Data Dictionary for table T000 in SE11.
Former Member
0 Kudos

Hi!

like Tutku Senol.

I have same problem for S/4 1511 and FPS2

Tell me, please, which way I can do it - "create one dummy entry directly in table T000'?

(ABAP, HANA STUDIO can be used?)

Activation for T000 in SE11 does not help.

Thanks

Serg.

joachimrees1
Active Contributor
0 Kudos

I would guess you can create the dummy entry with SE16/SE16n?

Former Member
0 Kudos

Joachim, no.

I dont know as create "dummy" in SE16N,  for example.

tsenol
Active Participant
0 Kudos

Hello All,

I didn't find a way to import a dummy record in SAP level (se16n, sm30 etc.)

I've imported that dummy record with HANA Studio.

You can use that command. Please delete that dummy record after you can create new client entry in SCC4.

INSERT into SAPABAP1.T000 (MANDT, MTEXT, LOGSYS) VALUES ('333', 'Turkey', 'CEDCLNT333')

Former Member
0 Kudos

like Tutku Senol,

thank,

but it doew not work, i had tried like it.

Really, there is the record in SE16 for T000 -

but SCC4 does not show the record.

I think this is an error  code and somewhere there is "....where client =000"

Former Member
0 Kudos

Hello Sergei,

You need to activate the T000 table from SE11 tcode, Below is procedure from initial to get the "New Entries" Button-

1) Login to HANA Studio using SAP Schema user (SAPABAP1 or SAP<SID> (in case you changed the Schema during installation))

2) Launch SQL Prompt and execute below query-

INSERT into SAP<SID>.T000 (MANDT, MTEXT, LOGSYS) VALUES ('100', 'INDIA', 'SIDCLNT100')

3) Login to SAP and execute SE11 Tcode and activate dictionary.

4) Verify SCC4 and you will have the new entries button.

Saurabh Mishra

Former Member
0 Kudos

Saurabh,

thanks.

It works in this  sequence!

Sergei

former_member241086
Discoverer
0 Kudos

This solution was very helpful.

Thank you.

Regards,

Shruthi

MvW
Participant
0 Kudos

Editing a table with SE16(N) is disabled in standard.

Instead, you can use function module se16n_interface via tx se37.

Enter the table you want to edit in parameter i_tab and enter 'X' in parameter i_edit.

Execute the FM -> you'll get the screen with every field editable, delete or add rows.

Answers (0)