Found 1039 Articles for SAP

In SAP Workflow, Binding the receiver dynamically

SAP Expert
Updated on 30-Jul-2019 22:30:20

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

Accessing SAP Web Dynpro page within an application using NSURL

Anil SAP Gupta
Updated on 12-Feb-2020 12:42:55

163 Views

You need to pass browser identification string otherwise Web Dynpro application won’t take browser and will show an error message as mentioned by you.You can refer below link for more details −Apple NSURL Link

Creating Attribute and Analytic view as persistent model in SAP HANA

Anil SAP Gupta
Updated on 30-Jul-2019 22:30:20

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.

Adding custom fields to items in SAP Transaction ME5xN x=1,2,3..

Anil SAP Gupta
Updated on 12-Jun-2020 08:31:45

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.

Converting the data back to table using SAP FM RFC_READ_TABLE

Anil SAP Gupta
Updated on 04-Dec-2019 08:09:48

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.

Installing SAPUI5 on local machine using XAMPP

Anil SAP Gupta
Updated on 30-Jul-2019 22:30:20

247 Views

You can refer this link for setting up basic development environment for SAP UI5:Basic Development environment for SAPUI5To setup local Development with Eclipse, you should refer this:UI5 with Eclipse

Using HP UFT GetCellData function on SAP Web Dynpro crash Internet Explorer

Anil SAP Gupta
Updated on 25-Jun-2020 20:48:55

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)

Sending an itab to SAP Spool using ABAP method

Anil SAP Gupta
Updated on 12-Jun-2020 08:41:10

1K+ Views

Check this class: CL_RSPO_SPOOL_HANDLE as it provides an OO interface to spool.Class CL_RSPO_SPOOL_HANDLE  Short Description Spool: Spool Request Opened for WritingYou can refer this link to know more about this class:CL_RSPO_SPOOL_HANDLE 

Error Failed to load resource in SAPUI5 application

Anil SAP Gupta
Updated on 04-Mar-2024 11:53:14

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

Using SAP Server for education and training purpose

Anil SAP Gupta
Updated on 12-Jun-2020 08:42:58

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

Advertisements