Fist login to SAP and goto SE16
Enter table name and execute.
Click on Continue button
It will take you back to SE16 in Editable mode.
Once you enter or modify the value, click on save. It wll give message: Database record created successfully.
Some Activities which i gone through are trying to share with you...
Fist login to SAP and goto SE16
Enter table name and execute.
getting above dump while opening a screen with graphical editor.
solution:
Edit the TCP/IP RFC EU_SCRP_WN32 in SM59 and goto Logon & Security:
check the box Positive List Actv
and add take the Called funiton module from dump and put * for callback Function Module.
2952974 - Change of BW client in ERP or SAP S/4HANA system
1. Configure Webdispatcher
2. finalize the hostname name to use in the public URL, i.e https://<name>.domain.com
3. request RISE team to get a Public IP for Public URL.
4. Request customer to create A-records in your public DNS with the public IP addresses (share hostname and public IP to network team)
If we want analyze SM20 logs for ABAP user or background user or Fiori login. Below are few details which can help.
In SAP SM20 logs, Type and Method define the nature and technical approach of a security event (like a logon or report execution). Type commonly indicates the session category (e.g., Dialog, RFC), while Method specifies how that interaction occurred (e.g., Password, Certificate), often appearing as pairs like type=E, method=A
Type=A (Dialog Logon)
Type=B (Background Job Start): Indicates the session is for a background process, not a manual dialog login.
Type E (Establishment): Indicates the establishment of a shared memory area or an internal call. (Mostly for Fiori login)
type=H: HTTP/HTTPS session (Web-based logon)
Method=P (Password) Password authentication (user explicitly entered credentials)
Method=A (Authorized/Internal): Signifies an internal system call, such as background processing, rather than an interactive user session.
We have performed client copy, after copy search connectors not working in fiori apps of target client.
in fiori app Create Maintenance Notification getting error "No results have been found for search '*' in 'Technical Object'"
So we thought to run the task list in target client: SAP_ESH_INITIAL_SETUP_WRK_CLIENT for component: SAPAPPLH
Got below error in step Update Software components.
then i ran the program : ESH_REFRESH_RUNTIME_BUFFER
then it worked.
Check the report: FP_TEST_00
In this link document, below steps need to perform in all clients: https://help.sap.com/docs/forms-service-by-adobe/sap-forms-service-cf/create-oauth-2-0-profile?q=location
After we configure Fiori to access from public network, the myinbox attachments like PO & PR.. are opening with internal or webdispatcher URL which willnot work from public network.
Tha Attachments also should use the Public URL to access form public network.
We will below tcodes to setup workflow visualization realted parameters:
SWFVISU
SWFVMD1
SWPA - for to furthe settings and maintain the public URL like below:
first parameter is the public URL:
Below SAP note solution section will help 2009417 - Service class for generation of URLs
In the standard system, the protocol, host address, and port are taken from the configuration of the relevant application type (BSP, Web Dynpro ABAP, for example). If you need to deviate from the standard system, you can set three configuration parameters for each application type. You must create these parameters by choosing "Create Parameters" in transaction SWPA. The names of the parameters are as follows:
| Parameter | Subparameter | Default value | Documentation object |
| SWF_URL | BSP_STD_HOST | SWF_URL_BSP_STD_HOST | |
| SWF_URL | BSP_STD_PORT | SWF_URL_BSP_STD_PORT | |
| SWF_URL | BSP_STD_PROTOCOL | SWF_URL_BSP_STD_PROTOCOL | |
| SWF_URL | WD_ABAP_HOST | SWF_URL_WD_ABAP_HOST | |
| SWF_URL | WD_ABAP_PORT | SWF_URL_WD_ABAP_PORT | |
| SWF_URL | WD_ABAP_PROTOCOL | SWF_URL_WD_ABAP_PROTOCOL | |
| SWF_URL | WEBGUI_HOST | SWF_URL_WEBGUI_HOST | |
| SWF_URL | WEBGUI_PORT | SWF_URL_WEBGUI_PORT | |
| SWF_URL | WEBGUI_PROTOCOL | SWF_URL_WEBGUI_PROTOCOL |
To download cloud connector, it is available at: https://tools.hana.ondemand.com/#cloud
In SAP S/4HANA, user name is usually used to access the system and user name is unique. In BTP, email is used to access the system and email address is unique for each user. When configuring SSO between BTP and S/4HANA system, we need a common identifier across the landscape. Usually, email or Global User ID(UUID) are used to uniquely identify a user. For Task Center integration, only Global User ID is supported. The UUID is automatically generated for every newly created, imported or provisioned user in the Identity Authentication Service. So, We need to connect the Identity Authentication Service to the SAP S/4HANA system to update the Global User ID in SAP S/4HANA system. When updating the UUID from IAS to S/4HANA, the email address is used to map the users. So, the users must have email address maintained in transaction code SU01.
Firstly, we need to sync the users from the S/4HANA to IAS, if user with same email address exist in the IAS, the login name will be updated in IAS. If the user does not exist in the IAS, the user will be created in the IAS.
Then, we need to sync the Global User ID(UUID) to S/4HANA system.
Reference: https://help.sap.com/docs/SUPPORT_CONTENT/fioritech/5129990827.html
Sometimes we may require to set up new number range for the TR's created in SAP ABAP System:
Ex: Normally TR's are created strating from:DEVK900000, curent numberrunning may be DEVK902500.
You may need to start from a new number for some reason. Ex you need to start from DEVK910000.
run below command in DB level: below command is to run in hana db with schema SAPABAP1.
update SAPABAP1.E070L set TRKORR = 'DEVK910000' WHERE LASTNUM=’TRKORR’;
Referencenote: 1674286 - How to modify CTS transport number range (ABAP)