Found 1044 Articles for SAP

Creating custom reports from SAP and deliver to Line Managers

SAP ABAP Expert
Updated on 13-Feb-2020 04:49:13

107 Views

To use Crystal Report, you need to buy license for the tool and then you have to learn report development for custom reporting and scheduling. Also to view reports, Line managers need to have BO read only access via Infoview however you can also set up a schedule to the reports.You can use the Publishing feature too for publishing the reports to different users via email but for that you need to have BO Enterprise installed and then you can schedule the published reports.For a list of cheap free 3rd-party Crystal Reports schedulers, you can refer to below link:3rd-party Crystal ... Read More

Handling String localization hardcoding issue in ERP like SAP, Dynamic, etc.

SAP ABAP Expert
Updated on 25-Jun-2020 20:54:53

186 Views

This can be handled by keeping value same and just change meaning as below:'Y'(Yes) or 'N'(No)Should be like this for German-'Y'(Ja) or 'N'(Nein)

Error while connecting to SAP server from Java application: java.lang.UnsatisfiedLinkError: no sapjco3 in java.library.path

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

235 Views

Note that SAP Java Connector should be configured as server library and not as application library.There are many issues in the way you are trying to use:You shouldn’t change java.library.path programmatically as it is not recommended and this is cached at JVM start.You are overwriting java.library.path instead of adding your directory so your application server requires native libraries.Also note that our JVM root directory is different from your application root directory so /WEB-INF/lib path won’t be found by our JVM. 

In SAP Workflow, Binding the receiver dynamically

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

232 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

90 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

90 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.

Creating Attribute and Analytic view as persistent model in SAP HANA

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

89 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

844 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

362 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

127 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

Advertisements