SAP Developer

SAP Developer

63 Articles Published

Articles by SAP Developer

Page 2 of 7

Apply CSS on a table cell based on the content in SAPUI5

SAP Developer
SAP Developer
Updated on 12-Jun-2020 1K+ Views

You are having one of the most common requirements in the case of the table. You can achieve the end result using formatter function exposed on the cells of a table.Here is a code snippet for your reference which you can alter as per your use case:cells: [    new sap.m.Text({       text: {          formatter: function(name) {             if (name == "") {                // you can add style class or do your own logic here                this.addStyleClass("Total");             }          }       }    }) ]

Read More

Commit changes on SAP BAPI Transaction

SAP Developer
SAP Developer
Updated on 12-Jun-2020 764 Views

You are correct that in order for the changes done by BAPI to come into effect, you need to call the commit function.It will commit all the changes which are uncommitted not only the last transaction. You can refer below link to know more about BAPI_TRANSACTION_COMMIT and COMMIT WORK:BAPI_TRANSACTION_COMMIT

Read More

Change no data text for Search in SAPUI5

SAP Developer
SAP Developer
Updated on 12-Jun-2020 693 Views

You just need to use the noDataText property to sort out your requirement.You have two options, either you can change in controller or you can change in the XML.Option 1:Call the setNoDataText method in the init methodthis.byId(“”).setNoDataText(“”)Option 2:Add the noDataText property in the XML

Read More

Port number for SAP HANA Cockpit offline administration

SAP Developer
SAP Developer
Updated on 13-Mar-2020 1K+ Views

Following perquisites should be met for accessing SAP HANA cockpit for offline administration −To access this, you need credentials of the operating system user (adm user) that was created when the system was installed.Communication port 1129: As this Port 1129 is required for communication with the SAP Host Agent in a standalone browser via HTTPS.HANA Cockpit is configured with HTTP accessWeb browser supports the SAPUI5 library sap.m.

Read More

Soft and hard stop of HANA system using HANA Studio

SAP Developer
SAP Developer
Updated on 13-Mar-2020 608 Views

To stop a HANA system, right-click the system you want to stop and choose Configuration and Monitoring → Stop System…Following options are available when you stop a system −Soft − The system is stopped after all running statements have finished or the specified timeout is reached.Hard − The system is stopped immediately. Open transactions are aborted and rolled back.

Read More

Stop and start a particular database service in SAP HANA

SAP Developer
SAP Developer
Updated on 13-Mar-2020 734 Views

Yes, you can start/stop a particular service of HANA system. To stop a service, go to Administration editor → Services tab. Right-click the service and choose the required option:

Read More

Adding a service to a tenant database

SAP Developer
SAP Developer
Updated on 13-Mar-2020 818 Views

To scale out a tenant database and/or distribute it across multiple hosts, you can add further server components, for example, an additional index server or a separate XS server. You add a service to a tenant database using the ALTER DATABASE SQL command.You do this from the system database using the following command −ALTER DATABASE ADD Following perquisites should be met to perform this task −You are logged on to the system database.You have the system privilege DATABASE ADMIN.

Read More

Removing a service from a tenant database in SAP HANA

SAP Developer
SAP Developer
Updated on 13-Mar-2020 2K+ Views

Yes, it is possible to remove a server component, which are no longer required. This can be performed using ALTER DATABASE SQL command.Following perquisites should be met to perform this task −You are logged on to the system database.You have the system privilege DATABASE ADMIN.To remove a service, you need to open SQL console of the SAP HANA studio and run “ALTER DATABASE” statement.ALTER DATABASE DB1 REMOVE '' AT LOCATION 'HOST_A:30XXX'

Read More

Diagnosis file of unavailable tenant in SAP HANA database

SAP Developer
SAP Developer
Updated on 13-Mar-2020 413 Views

When a tenant database is unavailable due to some performance problems, the tenant database administrator can't access diagnosis files. In this case, a system administrator can access the diagnosis files of the tenant database from the system database using the SAP HANA studio.In the SAP HANA studio, open the Administration editor and choose Diagnosis Files and diagnosis files of the system database are displayed.Using the Database filter, select the tenant database → whose diagnosis files you want to see and diagnosis files of the selected tenant database will be displayed.

Read More

Copying or moving a tenant database in SAP HANA

SAP Developer
SAP Developer
Updated on 13-Mar-2020 1K+ Views

When you move or copy a tenant database, data is replicated from the original tenant database to the new tenant database in the target system. Following tables shows type of data replication for different type of data −Data and logs of the tenant databaseYesTrace and log files   NoData backups    NoConfiguration (*.ini) files with tenant-database-specific values                 NoCertificates and certificate collections stored in the tenant database    Yes                 

Read More
Showing 11–20 of 63 articles
« Prev 1 2 3 4 5 7 Next »
Advertisements