Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
SAP Basis Articles
Page 48 of 50
Single query vs multiple queries to fetch large number of rows in SAP HANA
Single query would always be better than the multiple queries. The number of rows does not impact much on performance. It is the way query is written and the data to be fetched which makes the difference. Also, the table should be indexed.
Read MoreWriting at the end of report without clearing current screen in SAP ABAP
Yes, it is possible. You would require using MODIFY LINE
Read MoreIdentify the qualification and Employee relationship table in SAP system
The answer is there is no such single table where you can find everything pertaining to qualifications as they are stored in PD tables as well.Basically, they are of object type ‘Q’ and are stored under HRP1000. HRP10001 will capture the relation between the qualification and employee. We do have qualification rating and scales which you can find in HRPAD31 and T77TP respectively. T77TS stores the text with an id of qualification.You can also go ahead with function module ‘RHPP_Q_PROFILE_READ’ which you can use.
Read MoreABAP constants with %_ as prefix
The constants with a value of %_ as prefix are defined in ABAP for its internal use of the system. These needs to be used as such and cannot be modified by the user.
Read MoreChange leaves duration from hours to days in SAP Fiori app
In general, customizing Fiori applications involves customizing the parent SAP application. So, if in the application, it defaults to hours then the Fiori app will also inherit the default behavior and show it in hours.Go ahead and change it to days, it will impact your Fiori app and the app will also start showing in days.In case you cannot afford to make a change in SAP application, then you need to handle it in a custom manner which will require you to have a custom implementation in place.
Read MoreUpdating Data source of provider by REST API in SAP
I think you are missing the basic part over here. You have modified the document but you need to save it too.If you would have noticed after you had made changes to the document. Its state would have been updated to ‘Modified’ from the previous state which could be ‘Unused’ or ‘Original’.Now you need to send a PUT request, once the PUT request is processed for the requested document, then the change (data source of the data provider) will be updated in the repository as well.
Read MoreReplace Tab with space in SAP ABAP
You just need to make a small change. You need to add an “If condition” for handling the tab as shown below − if CO gc_hex_char I think it should sort out your issue and neither it looks like hardcoding or a wrong implementation.
Read MoreActivation of ABAP table failing with reference error
The answer is very naïve. If you have any quantity fields or currency fields, you require reference columns and reference table. You need to just add the reference field and table for any such columns in your table.
Read MoreCreating context for JNDI in SAP NetWeaver Developer Studio
You have to use following properties while running tests outside NWDS:java.naming.factory.initial=com.sap.engine.services.jndi.InitialContextFactoryImpl java.naming.provider.url={our nw host}:50004
Read MoreUploading data to SAP via WebService using WCF in C#
I think you should try using long properties as it is one of closed way to get to achieve this.
Read More