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
Articles by Anil SAP Gupta
Page 9 of 10
How to get some customization done in SAP HR system?
I am not sure that there exists something in SAP HR in pure form which supports your use case. But you can handle the scenario as mentioned by you by making some changes here and there.There exists an infotype ‘Contracts’ with SAP HR which stores the type of employment of the employee like permanent or contract. You can take care of this type by flipping the status of the employee type by some third party service. Once the employee resigns then rehire him as a contractor but create a dummy pay roll so that it does not gets picked up ...
Read MorePull a list of Functional Location from SAP using BAPI
After you set objRfcFunc, try this before you call this and this will include these parameters.With objRfcFunc.tables("funcloc_ra") If .RowCount < 1 Then .Rows.Add .cell(1, 1) = "I" .cell(1, 2) = "EQ" .cell(1, 3) = "Your Func Loc"End With
Read MoreHow much size does the VARCHAR takes- the defined size or the size of the content in SAP HANA?
I am not sure whether someone can get you exact answer, SAP is not open source and implementation details and bits are not known to many except the creators and few others. If I go with the standard definition, for storage you will require the size of length of the data plus number of bytes for header information. So as per your example it will require 9 + 2 (for header) = 11 overall for storage.
Read MoreError while Synchronizing data in iOS from SMP 2.3 (SAP)
This normally happens when you have incorrect configuration in synchronization profile. You have to check if stream parameters are set correctly, etc.
Read MoreHow to switch between different views in ALV Grid in SAP ABAP?
You can achieve something similar to your requirement. Firstly, you need to fetch the layout key information from the layout object. You can look for disvariant to get the key information if not able to find. Then use the key information to specify different handles for different data types. So basically you are having different layouts for different inputs or data types. As soon as you change the data type, the handle will do its job and display will change accordingly. Hope it helps!
Read MoreCan I define a column as a table type in SAP HANA?
I don’t think there exists any way where you can define the column type of a column within a table type as an array. Table type refers to a row structure with predefined number of columns. So you might need to rethink on how to change the incoming data from .NET application to be a usable one for your SAP HANA project.
Read MoreBuilding an XCode application using Maven plugin (SAP)
Note that Xcode-maven-plugin is not compatible with maven 3.1. You have to downgrade to lower version Maven 3.0.x.
Read MoreWhich all formats are compatible as input by Process Integration SAP
The answer to your question is that a lot of formats are supported by process integration for processing. The basic concept is that you need to define a mapping which will parse the incoming file and then converts it to the output format. Since you are getting a file from service as an input, it will be better if it is in CSV or .xls.
Read MoreHow to specify the connection string in SAP NetWeaver?
You got it partially correct but had something irrelevant present in the connection string. Try with the below connection string, it should work: /H/122.175.43.76/S/3266
Read MoreUsing xsodata service with SAP HANA XS Engine without authentication
Note that to use xsaccess file it without credentials, you have to create xssqlcc file. xsaccess file is used to define who all are authorized to access the content exposed by a SAP HANA XS application package and what content should be displayed as per access.Check out this tread for more details:xsodata service without authentication
Read More