SAP HANA Articles

Page 41 of 58

Error in JavaServer Faces JSF application in SAP NWDS

SAP ABAP Expert
SAP ABAP Expert
Updated on 04-Dec-2019 158 Views

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

Read More

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

SAP ABAP Expert
SAP ABAP Expert
Updated on 04-Dec-2019 1K+ Views

You can try using below code:                                                                

Read More

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

SAP ABAP Expert
SAP ABAP Expert
Updated on 04-Dec-2019 202 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

Read More

Converting the data back to table using SAP FM RFC_READ_TABLE

Anil SAP Gupta
Anil SAP Gupta
Updated on 04-Dec-2019 649 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.

Read More

SAP BI retrieving PDF from Web Service

SAP Expert
SAP Expert
Updated on 04-Dec-2019 448 Views

Try using REST SDK to retrieve document and convert it in to PDF. Follow below steps:Logon: POST /biprws/logon/longGet the doc's prompts (if any) GET /biprws/raylight/v1/documents/5690743/parametersPass the correct values for the prompts (if any) and refresh the document: PUT /biprws/raylight/v1/documents/5690743/parametersExport as PDF GET /biprws/raylight/v1/documents/5690743In end you need to pass Accept: application/pdf in HTTP header to get PDF version.

Read More

Connecting PHP directly to SAP Business One

SAP Expert
SAP Expert
Updated on 04-Dec-2019 906 Views

I would suggest you using DI Server instead of DI API as DI API is more recommended for .NET platform however you are using PHP so it may run into compatibility issue.Also 0 means you are connected successfully.Note that DI Server (Data Interface Server) is a Component Object Model service running on a server which allow multiple clients to read and write SAP B1 database using SOAP messages.SAP B1 DI Server allows you to develop SOAP based solutions that can be used to read, write, update, and remove data objects.Below are the key differences about use of DI Server and ...

Read More

What is ABAP? Explain ABAP OOP feature in detail?

Nikitha N
Nikitha N
Updated on 30-Jul-2019 448 Views

ABAP stands for Advanced Business Application Programming. It is one of the primary programming languages used for developing programs and applications for SAP R/3 systems and its related modules. It is a high-level language with respect to SAP as it is understood and known only to SAP environment.The latest version of ABAP which is ABAP Objects follows Object Oriented paradigm. Also, it is fully backward compatible with applications written in previous versions of ABAP whether it is ABAP/4 or other which were highly impressed by COBOL.Being an Object Oriented Programming language it fully supports features like inheritance, polymorphism, encapsulation, and ...

Read More

Running T-code me51n again in SAP system throws an error

Syed Javed
Syed Javed
Updated on 30-Jul-2019 343 Views

Try using breakpoint on my include in EXIT_SAPLMEREQ_010 and check if it gets to breakpoint on the second run.It could be possible that error gets stuck due to standard SAP procedure. Try to run this T-code: me51n in different environments and check if it works fine.

Read More

Using parallel processing in SAP HANA

John SAP
John SAP
Updated on 30-Jul-2019 985 Views

With the use of column based storage in HANA, data is available vertically and hence operations on different columns can be easily performed. When there is a requirement to process to process more than one column, it is processed by the different processor.

Read More

SQL Script vs Graphical Calcualtion views in SAP HANA

SAP Developer
SAP Developer
Updated on 30-Jul-2019 994 Views

In SAP HANA Modeling, Graphical Information Views are faster as compared to SQLScript in almost every scenario and also Graphical Information Views are easier for others to understand, remodel and change.There are scenarios where you need SQLScript, but it shouldn’t be viewed as a general-purpose solution to modeling problems.Note:It is never recommended that you code a Calculation View with SQL Script and use it inside another Calculation View with CE Functions as it results in a very bad performance.

Read More
Showing 401–410 of 573 articles
« Prev 1 39 40 41 42 43 58 Next »
Advertisements