Found 1044 Articles for SAP

Java Web application pointing to SAP HANA locally

Sai Subramanyam
Updated on 30-Jul-2019 22:30:20

207 Views

You would require changing the connection.properties file of your local Tomcat Server (Server > Java Web Tomcat 8 Server-config/config_master/connection_data), to point to the HANA database. Here are the usual parameters that need to be configured for HANA database javax.persistence.jdbc.driver = com.sap.db.jdbc.Driver javax.persistence.jdbc.url = jdbc:sap://:/?reconnect=true&autocommit=false javax.persistence.jdbc.user = db-user javax.persistence.jdbc.password = db-pass eclipselink.target-database = HANA

How to pass import parameter values using SAP RFC class?

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

383 Views

Check the below link to know detail about SAPRFC class. https://github.com/sensational/php-saprfc/tree/php7https://github.com/piersharding/php-sapnwrfc

How to create an ALV in docking container in SAP?

vanithasree
Updated on 12-Dec-2019 06:19:59

563 Views

Wa_fieldcat is a structure used as a container for the information that has to be added to t_fieldcat.Following Parameters are passed:                                *  pv_field   TYPE any for Field                               *  pv_tabname TYPE any for Table Name               *  pv_coltext TYPE any for Header TextThese variables can’t append under t_fieldcat without putting them in a unified structure.

How to detect encoding and mixed line endings (Windows and Unix) in SAP?

seetha
Updated on 12-Dec-2019 06:23:03

167 Views

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

What are SAP Hybris based E-Commerce platform and spring configuration?

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

228 Views

SAP Hybris spring configuration is done using XML. You can check below link for more details:https://help.hybris.com/6.3.0/hcd/8c63621986691014a7e0a18695d7d410.html

How to set the first day of the week in sap.m.DatePicker's calendar?

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

93 Views

I don’t think there is any recommended way to access internal calendar in Datepicker. I would suggest you raise a function request in Openui5 using GitHub.

Difference between SBObob GetItemPrice and CompanyService GetItemPrice in SAP B1?

Giri Raju
Updated on 15-Jun-2020 08:51:16

143 Views

As per my understanding, SBObob takes fewer parameters but provide the more accurate result for item price taking into accounts for BP and quantity of items, etc. CompanyService GetItemPrice accepts more parameters however information is scarce in the SDK help file for this method. Also, note that there is no information on this return type.ItemPriceReturnParams uses below properties:CurrencyDiscountPrice

How to build JCo server without using a Properties file in SAP?

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

136 Views

You can create your own implementation of DDP and then register using Environment.registerDestinationDataProvider().

Getting error message: Scalar type not allowed in SAP HANA

karthikeya Boyini
Updated on 11-Dec-2019 08:57:53

495 Views

Few points about your code to create a Stored Procedure, that you can edit and tryPROCEDURE "SLT_DELETE"."HCDW.IT.IT::TO_TIMESTAMP_CALL" (IN IN_DATE DECIMAL(15),    OUT OUT_DATE TIMESTAMP)    LANGUAGE SQLSCRIPT AS    --DEFAULT SCHEMA    --READS SQL DATA AS BEGIN    select to_timestamp(IN_DATE) into OUT_DATE FROM DUMMY; END;In Line32, you have used below:SELECT: ORGID_ARTIKEL intoHowever correct syntax should be like:SELECT "ORGID_ARTIKEL" into

Accessing element which is defined SAPUI5 application

Rahul Sharma
Updated on 25-Feb-2020 10:56:56

69 Views

You could try using the below code −var iconTabBar = sap.ui.getCore().byId("vwDetails--itabBar")

Advertisements