Found 1039 Articles for SAP

Error in JavaServer Faces JSF application in SAP NWDS

SAP ABAP Expert
Updated on 04-Dec-2019 09:32:49

128 Views

I think I got what the problem is. Try updating below code line:

How to split SAP Smartform templates

SAP ABAP Expert
Updated on 12-Jun-2020 09:42:45

438 Views

I don’t think what you have mentioned can be achieved using Smart forms. To create template like this, it is not possible to use template concept of Smart Forms.Check out this link and it also cover how to split the contents into separate windows:SAP Documentation

De-normalization and Analytic views in SAP HANA

SAP ABAP Expert
Updated on 12-Jun-2020 09:43:43

368 Views

Note that HANA is not for de-normalization however it stores data in columnar format so all aggregations are performed on the fly.You can create multiple views but this will add duplicate data and an extra effort to maintain them. Number of views normally depends on business needs, because views contain data in many aspects so they can be reused. In case you have multiple measures to handle in views, you can create calculation views to get data in your reports.Calculation Views are used to consume other Analytic, Attribute and other Calculation views and base column tables. These are used to ... Read More

Forcing SAP Webi report to show specific data

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

230 Views

This can be done by creating a separate query that only shows priority. Then you need to replace column [Query1].[Priority] with the merged dimension [Priority].

Turning Help mode ON to add SAP ABAP Explanation Text

SAP ABAP Expert
Updated on 12-Jun-2020 09:44:49

158 Views

Yes it is possible to ON help mode by going to personal settings in portal or you can also set it in associated parameter. To enable it globally, you need to find the application in the Portal Content, there you can find URL Parameter and then try adding HELPMODE=ON.Check out this below link for more details:Explanation Property

Connecting SAP system from C# application via .NET Connector 3.0

SAP ABAP Expert
Updated on 04-Dec-2019 09:30:37

1K+ Views

You can try using below code:                                                                

Error while posting a sales order in SAP from .net application

SAP ABAP Expert
Updated on 04-Dec-2019 09:29:37

175 Views

Note that sold to party and ship to party are mandate fields. You need to add the created structures and tables to the function as shown in below code:RfcRepository repo = destination.Repository; IRfcFunction salesDoc = repo.CreateFunction("BAPI_SALESORDER_CREATEFROMDAT1"); IRfcStructure salesHeader = salesDoc.GetStructure("ORDER_HEADER_IN"); salesHeader.SetValue("DOC_TYPE", "ZDLR"); salesDoc.SetStructure(salesHeader); salesDoc.Invoke(destination);For more details you can check BAPI_SALESORDER_CREATEFROMDAT1 or below link:BAPI_SALESORDER_CREATEFROMDAT1

Creating custom reports from SAP and deliver to Line Managers

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

182 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

265 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

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

Advertisements