SAP Basis Articles

Page 43 of 50

Align items to center not working in SAPUI5

SAP Expert
SAP Expert
Updated on 17-Feb-2020 1K+ Views

If you want a quick solution then you can use basic CSS properties like padding for left or right to align the content. Use relative percentages so that it works in both the views.Other way which looks ideal is that define a custom CSS. Then you need to add this custom CSS to manifest."resources": { "css": [ { "uri": "css/style.css" } ] }Set the concerned property like Margin: 0 auto; which will help you to set the contents to center.

Read More

Can we create multiple database in SAP HANA system?

Monica Mona
Monica Mona
Updated on 17-Feb-2020 480 Views

In SAP HANA, you don’t have a concept of creating multiple databases in one container. To create a separate container for your database objects, you can create the schema in HANA db.To create a schema, you can use below SQL query −CREATE SCHEMA schema nameYou can also define as owner name while defining a schema.CREATE SCHEMA [OWNED BY ]If it is not defined, the system takes the current user as the owner of the schema.

Read More

Converting date type SYDATUM in a format like MM/DD/YY in SAP ABAP

Alankritha Ammu
Alankritha Ammu
Updated on 13-Feb-2020 6K+ Views

It depends if you want to write it to a list screen or you want to convert it to a text variable. To write it to a list screen, you can use below code −WRITE I_my_dateMM/DD/YYYYTo convert it to a text variable, you can use below command −WRITE l_my_dateTO l_my_text MM/DD/YYYYIf you want to set the date in SAPscript form, you can use SET DATE MASK command. You can specify date fields to be printed in specified format −/: SET DATE MASK= 'date_mask'In the date mask, you can use the following codes −DD: day (two digits) DDD: day name - ...

Read More

How to create a list in SAPUI5?

SAP Expert
SAP Expert
Updated on 12-Dec-2019 1K+ Views

I have gone through your code and it looks your list binding is incorrect. When you bind your data, your data should be in a JSON array format. Please find below the updated working code.Examplevar oModelData = [ {Animal: "Kangaroo", Zoo: "Sydney"}, {Animal: "Tiger", Zoo: "Melbourne"}, {Animal: "Lion", Zoo: "Alaska"} ]; var oItem = new sap.m.StandardListItem({ title : "{ Animal }", description : "{ Zoo }" }); var oList = new sap.m.List({ headerText:" Items", items: { path: "/", template: oItem } });Hope it helps!

Read More

How can I update a third party database outside SAP after completing a Transaction?

SAP Expert
SAP Expert
Updated on 12-Dec-2019 230 Views

As you need to make some changes to happen when an activity gets completed in SAP, I would suggest you to go for services. Services are the best way to communicate when you are dealing with two discrete systems.Firstly you need to create a program on SAP side which can do the following task             Fetch the file from a specified directoryConverts the file into a formatted data or send the data to a serverAt the webserver end, have a listener which receives POST requests (send by SAP). You need to have proper authentication set up ...

Read More

How to Fetch source code of the transaction note in SAP R/3?

Monica Mona
Monica Mona
Updated on 11-Dec-2019 435 Views

If you ever need to fetch the mapped program with a transaction, you need to call the transaction SE93. It will fetch you the program and variant of the selection screen.Now, if you need source code then you can use the transaction SE38 or SE80. If you also require Dynpro which is mapped against the program then use SE80.

Read More

Exposing employee master data from SAP HR system using Web Service

Govinda Sai
Govinda Sai
Updated on 11-Dec-2019 1K+ Views

In a general scenario, when you have ICF configured you can expose SAP system business objects and jobs via BAPI. It is very easy to create and expose BAPI as a web service. As there are only few web services for SAP HR module in SAP system however you can transform a BAPI or ABAP function into a web service. If there is no such function you can create one easily.To find details about BAPI from Function module, use T-Code: SE37 and enter Functional module name for SAP HR module. Below is the list of existing HR function modules in ...

Read More

Running T-code me51n again in SAP system throws an error

Syed Javed
Syed Javed
Updated on 30-Jul-2019 355 Views

Try using breakpoint on my include in EXIT_SAPLMEREQ_010 and check if it gets to breakpoint on the second run.It could be possible that error gets stuck due to standard SAP procedure. Try to run this T-code: me51n in different environments and check if it works fine.

Read More

Using parallel processing in SAP HANA

John SAP
John SAP
Updated on 30-Jul-2019 1K+ Views

With the use of column based storage in HANA, data is available vertically and hence operations on different columns can be easily performed. When there is a requirement to process to process more than one column, it is processed by the different processor.

Read More

Disadvantages of using row based tables in SAP HANA

SAP Expert
SAP Expert
Updated on 30-Jul-2019 280 Views

Row based tables are used when only one record has to be processed at a time. Row based table doesn’t support aggregations and fast searching.When your application needs to access a complete record or a complete row it is recommended to use row based tables.

Read More
Showing 421–430 of 498 articles
« Prev 1 41 42 43 44 45 50 Next »
Advertisements