Found 1044 Articles for SAP

Transforming XML file into fixed length flat file in SAP

karthikeya Boyini
Updated on 12-Mar-2020 12:48:46

490 Views

This is an EDIfact invoice. Try using the script, and it can help −                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   ERROR: The maximum length of "TABNAM" is 10 characters.                                                                                                                                                                                                                                                                               ERROR: The maximum length of "MANDT" is 3 characters.                                                                                                                                                                                                                                                                                                                                                                                                              ERROR: The maximum length of "ACTION" is 3 characters.                                                                                                                                                                                                          ERROR: The maximum length of "KZABS" is 1 character.                                                                                                                                     There are various sites which provide a built-in script to convert your EDIfact to XSLT.  Check this site and it may also help −https://www.codeproject.com/Articles/11278/EDIFACT-to-XML-to-Anything-You-Want

Sending a table from UI5 application to ABAP Function Module

Johar Ali
Updated on 15-Jun-2020 06:38:18

600 Views

This can be done using an OData service that accepts POST request from your UI5 application and writes data to a database table. While implementing OData service, you have to call ABAP Backend Class method.You have to remember that all application and classes are instantiated for processing and will end as soon as the request is completed. An OData service can be created using SAP Gateway Service Builder (SEGW).Following steps has to be performed for creating an OData service:Creation of Data ModelGenerate Runtime ObjectsRegistration of ServiceService ImplementationOnce you create a project in Gateway Service Builder, you have to create Entity ... Read More

Binding model to sap.ui.core in SAP UI5 application

Johar Ali
Updated on 14-Feb-2020 10:26:20

182 Views

Please try below where you need to prefix propertyBinding with models name −var oItemTemplate = new sap.m.ActionListItem({    title : "{checks>title}",    ... });

Adding rows in an internal table with header line in SAP ABAP

karthikeya Boyini
Updated on 13-Mar-2020 05:12:12

1K+ Views

Note that you shouldn’t use headers with internal tables. As you are using it, and header of in_table2 is empty. Use the loop to print it as below −LOOP AT in_table2.   "here in_table2 means table (an internal table)   WRITE / in_table2. "here in_table2 means the header of the table (a structure) ENDLOOP.When you have headers with internal tables, you shouldn’t use it in the same way. You should use field symbols for looping and append like this −FIELD-SYMBOLS: LIKE LINE OF in_table2[]. LOOP AT in_table2[] ASSIGNING .   WRITE / . ENDLOOP.

Integrating Magneto with SAP ECC system

V Jyothi
Updated on 30-Jul-2019 22:30:20

141 Views

With the integration of SAP ERP with Magneto, you can perform bidirectional communication of orders, sales, and other business data. To check if there is an existing connector, you can reach to SAP support. There are various other vendors in the market who provides ERP-Magneto integration.Integration of ERP-Magneto provides benefit like flexibility, data synchronization, reliability, and security.You can try this link- https://ecommerce.aheadworks.com/magento-extensions/erp-integration.htmlThis says that with some customization, you can integrate your ERP solution with Magneto. For integration, your ERP provider has to implement the option to read/write the required files/data to/from the ERP system. For any ERP software integration, it ... Read More

In SAP UI5 render calling two times in custom control

Rahul Sharma
Updated on 14-Feb-2020 10:22:32

297 Views

In your custom control, there are two aggregation updates- setAggregation and addContent. When you use Aggregation mutators, it uses 3rd parameter to suppress invalidation.It will insert the aggregation but suppress the invalidation since whole control will be rendered at the end it.oControl.setAggregation("layout", oSavedButtonHLyt, true); // suppress invalidateYou should think that It should work same for “addContent”.oSavedButtonHLyt.addAggregation("content", manageSavedSearch[index], true);However, it doesn’t work as UI5 cannot determine automatically for the previous parent's suppress cos its aggregation will be moved. You have to note that property, aggregation or an association invalidates control when control does not overwrite its mutator method.Read More

Using SAP Mobile Platform Server

Rahul Sharma
Updated on 30-Jul-2019 22:30:20

142 Views

To use SAP Mobile Platform SDK for application development, you need to install SMP SDK on your local machine.Now regarding use of OData service, SAP Mobile Platform SDK contains three APIs for accessing and manipulating an OData source.OData Online Store API for Windows: this API is used to manage an Online OData store.OData Offline Store API for Windows: This API is used to manage an Offline OData store. Also note that you can also access Offline API documentation at Offline OData.OData API for Windows: This is used to manage OData feed for both offline and online stores.https://help.sap.com/viewer/42dc90f1e1ed45d9aafad60c80646d10/3.0.15/en-US/cd61551b9cbf40c8a170a3b7437e9536.htmlAlso you can navigate ... Read More

Finding items in SAP Tree using Function

Johar Ali
Updated on 10-Dec-2019 08:46:35

95 Views

When you use string “1\1” in Java, it gives a valid path and returns the right key. You need the following code:SapTree tree = ...; // initialize somewhere String parentKey = tree.findNodeKeyByPath("1"); tree.expandNode(parentKey); String key = tree.findNodeKeyByPath("1\1");

Using method “DUMPSETSET_GET_ENTITYSET” in SAP FM

Giri Raju
Updated on 30-Jul-2019 22:30:20

133 Views

Note that you need to map GetEntitySet to a data source from SEGW - SAP Gateway Service Builder and you will be able to generate runtime objects.For more details you can refer to this link:https://blogs.sap.com/2012/10/26/step-by-step-guide-to-build-an-odata-service-based-on-rfcs-part-1/

Loading messages from Excel to SAP table T100

Sreemaha
Updated on 30-Jul-2019 22:30:20

258 Views

You can use built-in translation tool in SAP system that collects short text of message classes, export to an excel file and then you can reimport the translations.With the use of Transaction LXE_Master, you can import the translations of short texts and PDF forms that have previously been exported for offline translation. During import you can create proposals in the proposal pool.It is also possible to create application standards or system standards and you can assign a quality status to the proposals. Call T-Code: LXE_MASTERNavigate to Transport -> Externalization -> Import and this will open the Import Translation Objects screen.In the ... Read More

Advertisements