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 Monica Mona
Page 6 of 7
Fetching list of products from SAP: connecting SAP database from .net application
You can troubleshoot by trying a telnet to SAP system.Open a command prompt on the system you are running your .net application and try to telnet server having SAP system installed.Telnet 127.0.0.1 3300If you using a local system, try using a hostname instead of loopback IP address and make an entry in host file of the system.How to find host file in the system?Press the Windows key.Type Notepad in the search field.In the search results, right-click Notepad and select Run as administrator.From Notepad, open the following file: c:\Windows\System32\Drivers\etc\hosts.Make the necessary changes to the file. Click File -> Save to save your ...
Read MoreHow to Fetch source code of the transaction note in SAP R/3?
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 MoreCreate an INCLUDE in SAP system
I think the question is very basic and if you would have explored a little bit, you would have found out the way.Just go and open transaction SE38, specify the include name and press create.Otherwise, you can open transaction SE80, select a packet and then the object name. That’s it.
Read MoreAre MySQL database and table names case-sensitive?
Actually, the case sensitivity of database and table name depends a lot on the case sensitivity of the underlying operating system. Hence, we can say that such names are not case sensitive in Windows but are case sensitive in most varieties of Unix.
Read MoreWhat does the bitwise left shift operator do in Java?
The left operand value is moved left by the number of bits specified by the right operand.Example: A
Read MoreCan constructors be inherited in Java?
No, constructors cannot be inherited in Java. In inheritance sub class inherits the members of a super class except constructors. In other words, constructors cannot be inherited in Java therefore, there is no need to write final before constructors. Example public interface InterfaceTest { public InterfaceTest(){ } public abstract void display(); public abstract void show(); } Still, if you try to write constructors in an interface it will generate a compile time error. Error C:\Sample>javac InterfaceTest.java InterfaceTest.java:2: error: expected InterfaceTest(){ ^ 1 error C:\Sample>
Read MorePrevent XML re-formatting in WAS response in SAP Windows Activation Service
No, there is no other possibility of doing it until you code everything on your own. It seems to be an issue during de-serialization.Most probably it is relevant to the parameters that you are sending in the response.You can try and enable tracing to detect further and check out where it is going wrong.
Read MoreHow can I check the list of existing authority objects in SAP system?
To maintain authorization objects, you can use T-code: SU21 in SAP ECC system.You can all authorization objects including S_CARRID is located inside the different class like - BC_C object class.
Read MoreWhat is Agentry Toolkit in SAP Mobile Platform SMP 3.0 SDK? How do you use it in an application?
Agentry toolkit provides various SDK’s to integrate with the various mobile component. With Agentry toolkit, you have a plugin to Eclipse that allows you to create modify Agentry applications.To know more about Agentry toolkit, you can refer the below SAP link:https://help.sap.com/doc/f1944845cb7b4cb886ebfbd5fa720c64/3.0.14/en-US/7c03a69470061014a336f33ca4dd4413.html
Read MoreHow to use EXPORT / IMPORT to Memory ABAP – SAP?
As per your requirement, you are utilizing ABAP memory to transfer data to background session from session of the user. It will not work as per the standard documentation. RFC or updates module will run in different user sessions with different ABAP memory and hence it will not be possible.
Read More