
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
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
Found 1039 Articles for SAP

379 Views
To bind receiver dynamically in Workflow, you have to write a Function Module that will provide you manager name of initiator. This FM should be put in public class to be used in Workflow. The provided value will be saved in any table of HR module.Then you need to call this method from Workflow template. To set binding, you need to pass a value in _WF_INITIATOR._WF_Initiator WFSYST-INITIATORUsing _WF_Initiator Initiator of the workflow (user name).Here “user name” is a fourteen-character field in the structure US.When a workflow is started ... Read More

182 Views
This is possible as all views can be created as persistent in SAP HANA. You need to get XMS representation creating attributeview, .analyticview, .calculationview file and activate it.In your case I think you need to check details of your Analytic view and if there is some path that you need to modify.

1K+ Views
This can be done by following below path −T-code − SPRO → Materials Management → Purchasing → Purchase Requisition → Define Screen Layout at Document Level and there view the details on the transaction you want to customize.When you execute, there view the details on the transaction you want to customize. You need to uncheck the "Display" checkbox for your field.

601 Views
This is very simple and you can write a code as below. This code works when you only have characters fields in table:DATA: lt_options TYPE TABLE OF rfc_db_opt, lt_fields TYPE TABLE OF rfc_db_fld, lt_entries TYPE TABLE OF dpr_pha_type. CALL FUNCTION 'RFC_READ_TABLE' DESTINATION 'Y58CLNT800' EXPORTING query_table = 'DPR_PHA_TYPE' TABLES options = lt_options fields = lt_fields data = lt_entries.

647 Views
Note that column number is used to locate table cell data and column name is unique identifier.object.GetCellData( row, column)- takes argument as long integers row and cell numbers to locate cell data.Try using GetCellData like this:Browser("Browser").Page("Page").Frame ("searchDialog").SAPTable("ResultsTable").GetCellData(1, 1) Browser("Browser").Page("Page").Frame ("searchDialog").SAPTable("ResultsTable").GetCellData(1, 2)

1K+ Views
It is clear from your error message: VisitorData.view.js is not found so you have to check if this view actually exists and there is no permission issues on this view.Try checking this to view list of deployed services − http://hanaservername.com:4000/ui_test/ui5_test/WebContent/resources/You have to add below in your web.xml − com.sap.ui5.resource.DEV_MODE true

213 Views
I think this can be achieved. When you create a copy of your production system, you can select which data you want to copy- you can select no for users and application data.You can use SAP TEST DATA Migration Server TDMS, to transfer limited data to test instance however it involves extra cost and not recommended until it is really required. Refer this link to know more on TDMS:SAP TDMSYou can keep both the instance- Prod and Test synchronized by using Transport Management System TMS where you can schedule transport to load data to training instance. With use of Change ... Read More