Found 1039 Articles for SAP

Inserting new line to the output using WS_Download in ABAP

Nitya Raut
Updated on 30-Jul-2019 22:30:20

1K+ Views

First of all, don’t use WS_DOWNLOAD as this is obsolete.You can use a character type field and set it to cl_abap_char_utilities=>cr_lf. Now use this field at places where you want to insert the new line.

Deleting subsequent heading from report in SAP system

Jennifer Nicholas
Updated on 09-Dec-2019 06:31:44

112 Views

You need to add “NO STANDARD PAGE HEADING” as followsREPORT l_report MESSAGE-ID l_message NO STANDARD PAGE HEADING.

Using combination of “AND” and “OR” in SELECT in ABAP

Vrundesha Joshi
Updated on 09-Dec-2019 06:32:33

10K+ Views

You can use the following query:SELECT * FROM my_table WHERE condition 1 AND condition 2 AND ( id EQ '2' or id EQ ‘3’ ).Note: There should be space after and before bracket.Alternatively you can use IN statement as below:SELECT * FROM my_table WHERE condition 1 AND condition 2 AND EQ IN ('2', ‘3’ ).

Getting class of given method using T-code SE80 in SAP

Rishi Rathor
Updated on 09-Dec-2019 06:34:59

3K+ Views

You would require calling transaction SE80 and then looking into Repository info system. Under that go to the class library and then to methods. You can specify selection criteria under standard selections.

Adapter properties dropdown not updated with list even after installation (SAP 7.2 adapter)

mkotla
Updated on 30-Jul-2019 22:30:20

145 Views

I have experienced something similar in the past. What I noticed was a part of the installer, the assembly responsible for Microsoft adapter properties is not deployed over to the group.I had to perform the step manually. So I had to copy the dll (BizTalkPropertySchema) manually so that the options in dropdown starts coming.Also, make sure the Global assembly cache is synced while adding.

Identify the qualification and Employee relationship table in SAP system

radhakrishna
Updated on 30-Jul-2019 22:30:20

418 Views

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.

SAP Fiori suitable for mobile application development

Ankitha Reddy
Updated on 14-Feb-2020 10:42:37

210 Views

Note that sap.ui.commons is an old desktop library and sap.m is old mobile library.There are various JavaScript and CSS libraries that you can use in combination for the application development. SAPUI5 can use these libraries in combination and they are called SAPUI5 control libraries.Sap.m is the most common control library and is used for mobile devices and desktop.Note that with new release, few of the controls in sap.ui.commons.layout have been replaced by the new dedicated layout library called sap.ui.layout, and it runs on same platform “sap.m”.Few of the old controls have been made available again through the non-deprecated sap.ui.unified library, which ... Read More

Getting day of the year from DD/MM/YYYY using function in SAP system

Nancy Den
Updated on 18-Dec-2019 07:49:03

638 Views

You can do this by following line of code:DATA(l_day) = m_date - CONV d(m_date(4) && '0101' ) + 1.Where m date is the date that needs to be input as type d. Note the format of type d is YYYYMMDD.ExampleIf the above function is not present in your system, you can use the below code using simple date subtraction.DATA: l_date TYPE d, l_jan_01 TYPE d, l_day TYPE i. l_date = “your input date in YYYYMMDD format” l_jan_01 = l_date. l_jan_01+4 = '0101'. ( sets the date to first day of year) l_day = l_date - l_jan_01 + 1.Read More

Missing SAP Java Connector libraries JCo- librfc32.dll, com.sap.utils and com.sap.mw

Abhinaya
Updated on 13-Feb-2020 12:51:47

243 Views

Please note that all these library files - librfc32.dll, com.sap.utils and com.sap.mw come under JCo 2.1. With release of JCo 3.0, it’s classes were also relocated from packages com.sap.mw.jco.* to com.sap.conn.jco.*For running with SAP JCo 3.0, you need these files at runtime - sapjco3.jar and sapjco3.dll (on Windows). You can follow below procedure for installation of JCo files:Installing JCo on Windows platform −In Windows OS, you have to copy sapjco3.jar file into ITDI_HOME/jars/3rdparty/others.Copy the sapjco3.dll file into ITDI_HOME/libs. On Windows, JCo 3 requires additional Microsoft Visual C++ 2005 libraries to be installed. Installation details for the package that contains these ... Read More

Calling external programs using SAP connector

Daniol Thomas
Updated on 09-Dec-2019 06:46:49

290 Views

Yes, it is possible to address or call an external program using SAP connector SDK. From ABAP, you can reference external program by SAP’s RFC protocol.There are various SAP connector available for various programming languages. Few of them areJCo is the SAP Java connectorNCo is the .NET SAP connectorNW RFC SDK is the SAP NetWeaver RFC SDK for C/C++

Advertisements