×
Home
Jobs
Tools
Coding Ground
Current Affairs
UPSC Notes
Online Tutors
Whiteboard
Tutorix
Login
Categories
Java
JSP
iOS
HTML
Android
Python
C Programming
C++ Programming
C#
PHP
CSS
Javascript
jQuery
SAP
SAP HANA
Data Structure
RDBMS
MySQL
Mathematics
8085 Microprocessor
Operating System
Digital Electronics
Analysis of Algorithms
Mobile Development
Front End
Web Development
Selenium
MongoDB
Computer Network
General Topics
Q/A
Library
eBooks
Courses
Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Selected Reading
UPSC IAS Exams Notes
Developer's Best Practices
Questions and Answers
Effective Resume Writing
HR Interview Questions
Computer Glossary
Who is Who
Seetha
has Published
110
Answers
What are basic Object oriented programming concepts?
Java 8
Object Oriented Programming
Programming
seetha
Published on 28-Dec-2017 10:45:50
The basic Object-oriented programming concepts are:Inheritance Inheritance can be defined as the process where one (parent/super) class acquires the properties (methods and fields) of another (child/sub). With the use of inheritance, the information is made manageable in a hierarchical order.Polymorphism Polymorphism is the ability of an object to perform different actions ...
Read More
How to detect encoding and mixed line endings (Windows and Unix) in SAP?
SAP
Windows Server
Unix
seetha
Published on 21-Dec-2017 07:48:01
You can make use of CL_ABAP_FILE_UTILITIES => CHECK_FOR_BOM to define file encoding type and use constantly of class CL_ABAP_CHAR_UTILITIES to process the files.ClassCL_ABAP_CHAR_UTILITIESShort DescriptionUtilities for Processing Characters
Unable to access DBCONN after upgrading to EHP7 in SAP system
SAP
seetha
Published on 18-Dec-2017 13:13:15
You can test the connection using T-code: SE38 using ADBC_TEST_CONNECTION. You could check details of exception as below:TRY. EXEC SQL. CONNECT TO 'ZUNIXDB_DBCON' ENDEXEC. EXEC SQL. OPEN dbcur FOR SELECT id FROM table ENDEXEC. CATCH cx_sy_native_sql_error INTO lr_cx_native_sql_error.
Read More
Connecting to SAP R/3 system via JCo client and JCo Server
SAP
SAP JCO
SAP R/3
seetha
Published on 18-Dec-2017 12:18:58
In JCo3.0, Java client JCO.Client is replaced by JCoDestinations. You can connect to SAP system via Inbound RFC Communication (Java calls ABAP) or via Outbound RFC Communication (ABAP calls Java).For inbound RFC communication, you need to use JCoDestination for executing a remote function module at ABAP side. To use inbound ...
Read More
Use IFrame and read cookie in ABAP
SAP
ABAP
seetha
Published on 18-Dec-2017 11:06:29
I think it is possible and can be simply achieved. You can do the following:Firstly, create a business server pages application on the server. Make sure the application contains a frameset and two IFrames as a part of the frameset.Then you need to split up the implementation between these two ...
Read More
Checking table existence using Class and it’s method in SE11 without using FM in ABAP
ABAP
SAP
SAP C4C
seetha
Published on 18-Dec-2017 09:57:52
To perform this without using Function module, you can use class- “cl_rebf_ddic_tabl”. Note that Class methods are almost similar to function modules. They are defined as code blocks to perform specific functionality.ExampleTry using below code: CALL METHOD cl_rebf_ddic_tabl=>exists EXPORTING id_name = [table name] id_tabclass = 'TRANSP' " For table ...
Read More
Do I need to set up SAP user for every user of module?
SAP HANA
SAP
SAP Basis
seetha
Published on 14-Dec-2017 05:46:17
I think you knew the answer beforehand as you already mentioned it in your question. You need to set an SAP user for every user to work the SAP prescribed way otherwise you are violating the service agreement of SAP and hence support will be void.
Searching data from the different system in SAP.
SAP HANA
SAP
SAP Basis
seetha
Published on 13-Dec-2017 13:17:36
You need to create a search help with custom data selection by defining a search help exit. To do custom data selection, first, go to the “Definition” tab of search help, remove all the content of “Selection method” input and now input the new function module in the “Search help ...
Read More
Get all occurrences of the string between any two specific characters in SAP ABAP
SAP HANA
SAP
SAP Basis
seetha
Published on 13-Dec-2017 11:43:47
I usually use REGEX in all such cases as it is faster and easily readable and would recommend the same to you.You can use something similar as the snippet to get your job done.DATA: lv_para TYPE string. lv_para = ' You &are like& kite &flying& in a &hurricane&'. REPLACE ALL ...
Read More
Assign image source dynamically in XML View in Fiori app in SAP UI5
SAP HANA
SAP
SAP Basis
seetha
Published on 13-Dec-2017 10:46:27
Yes, it can be done but you need to compute the dynamic field.Firstly, you need to mention that the binding is complex so change the flag −“data-sap-ui-bindingSyntax="complex" ”. Then have a helper function which can be used for formatting.fnImageFmtr: function(value) { var imgSrc = "Image" + value; return imgSrc; ...
Read More
Previous
1
...
5
6
7
8
9
10
11
Advertisements
Print
Add Notes
Bookmark this page
Report Error
Suggestions
Save
Close
Dashboard
Logout