SAP HANA Articles

Page 9 of 58

Exporting a Delivery unit in SAP HANA using HANA Studio

John SAP
John SAP
Updated on 16-Jun-2020 627 Views

In SAP HANA system, you have to assign packages to Delivery unit. Once packages are assigned to export DU, you can see the list of DU’s by using Export option −Go to File → Export → Delivery Unit → Select the Delivery UnitYou can also select export location:Export to ServerExport to ClientThis means that a Delivery unit can be exported to HANA Server location or to a Client location as shown in the below snapshot. It also shows you list of all packages that will exported with Delivery unit you have selected from drop down list.

Read More

Using datatype/element for destination in SAP ABAP

Amit Sharma
Amit Sharma
Updated on 13-Jun-2020 265 Views

You can use RFCDEST.RFCDEST statement specifies the destination value for a Remote Function Call connection and gateway information.Supported Job Types:This statement are optional for the following job types:SAP Batch Input SessionSAP Business Warehouse InfoPackageSAP Business Warehouse Process ChainSAP Data ArchivingSAP Event MonitorSAP Job CopySAP Process MonitorSAP R/3Basic DataTable  RFCDES  Destination table for Remote Function CallField  RFCDEST  Logical Destination (Specified in Function Call)Position 1Syntax to be used:RFCDEST destinationUsing Parameter destinationYou need to specify the destination for the RFC connection and gateway information for an SAP R/3 system. This destination is the destination that is specified in the connection properties file during ...

Read More

Change user settings for case sensitivity in SAP 6.0

Giri Raju
Giri Raju
Updated on 13-Jun-2020 790 Views

Yes, there are user specific text settings which can let you stroke in Uppercase or lowercase whatever is you choice. Go to ABAP Editor initial screen using T-Code: SE38You need to go settings under utilities tab. With utilities select ABAP editor tab. Once you have selected ABAP editor tab, select pretty printer section. You will have a handful of options to choose from.

Read More

Getting error- <type table> is not an internal table “OCCURS n” specification is missing in SAP method

Abhinanda Shri
Abhinanda Shri
Updated on 13-Jun-2020 2K+ Views

You need to define the et_flights parameter as of type SFLIGHT. As per method defined, you have this type as structure type and also declare transparent table SFLIGHT at the same time.You should use an already available dictionary table type with row structure of SFLIGHT for et_flight.You should declare et_flights inside the method in class definition as a private member or as a return value of the method.class myclass definition.    public section.    types ty_mytable type standard table of sflight.    methods mymethod exporting mydata type ty_mytable. endclass. class myclass implementation.     method mymethod.       ...

Read More

Using SAP T-code SM37 to check background jobs in SAP system

Paul Richard
Paul Richard
Updated on 12-Jun-2020 831 Views

In SM37 you can only see the scheduled background jobs as it is not used for foreground jobs. Below shows an initial screen of SM37 Transaction code:

Read More

Viewing field names or tables names of the forms in SAP Business One

Jai Janardhan
Jai Janardhan
Updated on 12-Jun-2020 1K+ Views

It is possible that the older version of SAP B1 may not show you all the fields of all the forms. If you have the latest version, you should be able to see the data sources that are mapped to given field. You need to open the forms in SAP Business One Studio. There are a couple of methods to view fields. 1. In SAP Business One, go to TOOLS => select SAP B1 studio suite=>edit active form for Microsoft  visual studio. This will open up the form in edit mode for Microsoft visual studio.2. You can directly use the Microsoft ...

Read More

Learning about SAP ABAP CDS views

Sravani S
Sravani S
Updated on 12-Jun-2020 4K+ Views

First thing, whether it is CDS or ABAP or anything pertaining to SAP, you can always find free courses on  https://open.sap.com/  referred as Open SAP. Besides this, there are lot of free help as well just Google it and the result list is huge.There are various self-learning tutorials site that provides free study material with use cases that can also be referred - https://www.tutorialspoint.com/sap_abap/

Read More

Connecting to SAP HANA using odbc_connect() on PHP

Kumar Varma
Kumar Varma
Updated on 12-Jun-2020 804 Views

The error you are getting is because there is no ODBC drivers installed for your PHP client. You would require downloading the drivers from any site on the internet. Following steps can be performed to download the drivers: Download the drivers from https://www.easysoft.com/cgi-bin/account/login.cgi after registration or alternatively check the ODBC-ODBC Bridge Client platformshttp://www.easysoft.com/products/data_access/odbc_odbc_bridge/index.html#platforms).This allows you to access drivers on a remote machine.   2. Install the drivers on the machine where PHP is installed.    3.  Refer to instructions at https://www.easysoft.com/products/data_access/odbc-sql-server-driver/manual/sql-server-toc.html to check the environmental variables what values to be set up for LD_LIBRARY_PATH, LIBPATH, LD_RUN_PATH, SHLIB_PATH depending on the driver, platform and linker.

Read More

Show creator name in SAP WEBI report

SAP Developer
SAP Developer
Updated on 12-Jun-2020 343 Views

WEBI provides you a lot of functions which you can let you perform a wide range of operations ranging from fetching data to doing some complex calculations. You can get the entire list at help.sap.com.For your requirement you can use from the following functions:DocumentOwner()DocumentAuthor()These will not give you directly the name but the id’s which can be used further to get the name.You will have to utilize the User Attribute Management to get your task done. Create a new variable which you need to populate with the user attribute value basically the name.

Read More

Add Authentication details in the AJAX request in SAPUI5

SAP Developer
SAP Developer
Updated on 12-Jun-2020 995 Views

Basically you need to exploit the beforeSend function of JQuery AJAX to sort out your requirement.Here is a basic code snippet −function AddToHeader(xhr) {     var pwd = // get the password;     xhr.setRequestHeader("Authorization", "Basic " + btoa(user + ":" + pwd)); } $.ajax({    type: "GET",    url: ,    dataType: "JSON",    beforeSend: function(xhr) {       AddToHeader (xhr);    } }).done(function(data) { /* do success logic */ }You can add further details to the header as explained in the AddToHeader method.

Read More
Showing 81–90 of 573 articles
« Prev 1 7 8 9 10 11 58 Next »
Advertisements