SAP Articles

Page 72 of 91

Generating any custom JSON in ABAP

Manikanth Mani
Manikanth Mani
Updated on 05-Dec-2019 2K+ Views

You can use class ZCL_MDP_JSON Library that can encode/parse any JSON. JSON is supported natively in ABAP by the following features:With the use of JSON-XML- it is known as special XML format that can be used for JSON data to be described using an XML representation. By defining a mapping between ABAP types and JSON. This is used in serializations and deserializations using the identity transformation ID.As you can specify JSON data in different forms as an XML source in the statement CALL TRANSFORMATION and JSON can be specified as a target.Check out the following sample code:Example:DATA text TYPE string VALUE ...

Read More

Using activity in SAP for number range intervals and number range objects

karthikeya Boyini
karthikeya Boyini
Updated on 30-Jul-2019 173 Views

As the name indicates, activity 02 is for intervals while activity 17 is for objects. There can be a different number range interval for a given SAP number range interval.

Read More

How the Table statement works in ABAP

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

With table statement, you are able to get a single line of data corresponding to the dictionary structure you specify. The fields of structure can be used as select options and the structure can be passed as variable in the program.

Read More

Importing an object from ECM application in SAP Business Workplace

Sharon Christine
Sharon Christine
Updated on 30-Jul-2019 184 Views

Correct, importing to the business workplace and using object importer is same.

Read More

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

Syed Javed
Syed Javed
Updated on 30-Jul-2019 349 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

Creating orders in SAP system using .Net

Sai Subramanyam
Sai Subramanyam
Updated on 30-Jul-2019 354 Views

You can handle it by creating an array and insert an object into Array. Bapisdhd1 order_header_in = new Bapisdhd1(); order_header_in.DocType = "OR"; order_header_in.CollectNo = "111022"; order_header_in.SalesOrg = "11011"; order_header_in.DistrChan = "100"; order_header_in.Division = "000"; order_header_in.DlvBlock = "010"; order_header_in.PurchNoC = "TEST ORDER"; newOrder.OrderHeaderIn = order_header_in;

Read More

Using parallel processing in SAP HANA

John SAP
John SAP
Updated on 30-Jul-2019 994 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 1K+ 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

Limitations of using SAP HANA 1.0

Anil SAP Gupta
Anil SAP Gupta
Updated on 30-Jul-2019 255 Views

SAP HANA 1.0 can replicate data only from few of data sources and only in few formats using Sybase Replication. You can perform batch loading using SAP Data Services and it is optimized only for Business Object 4.0 for reporting.

Read More

Different Engine types in SAP HANA

SAP ABAP Expert
SAP ABAP Expert
Updated on 30-Jul-2019 724 Views

In SAP HANA, following engine types are available:Join Engine: This is used for attribute viewsOLAP engine: This is used for analytic viewsCalculation Engine: This is used for calculation views

Read More
Showing 711–720 of 902 articles
« Prev 1 70 71 72 73 74 91 Next »
Advertisements