SAP Articles

Page 83 of 91

Getting error not assigned on running SAP ABAP program

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

The error is in field symbol. In future if you encounter such issue you can go through the logs created by ST22. It will help you in detail to understand the issue and its root cause. The reason of your error is that the field symbol is not initialized and you are trying to use it. You should have a habit of checking the content before using.check is ASSIGNED

Read More

How to index a table in SAP?

SAP ABAP Expert
SAP ABAP Expert
Updated on 30-Jul-2019 1K+ Views

You need to use the transaction SE11. This transaction is used to create indexes on the tables.One main thing to keep in mind over here the way these indexes are moved to production. You need to use the transaction to create indexes in development environment. Once they are created, you need to transport them to the production environment.Once you have made the change, activate the table.

Read More

How to communicate from SAP to Message queue?

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

Yes, you can do what you are aspiring for. But it depends upon your actual requirement. Let’s say you need to execute the some custom application or program in SAP, then you can opt for any available connector which reads a file or else. This connector then later establishes a connection to the queue and then sends a message.Let’s say you cannot keep polling for files availability, and then you need to use the remote function call methodology. RFC has a SDK available and its online support is tremendous. You can use it too for sending a message.

Read More

How to store details in SAP-MDG?

SAP
SAP ABAP Expert
SAP ABAP Expert
Updated on 30-Jul-2019 1K+ Views

If you don’t want to create a custom table then you can for creating a data model with the help of reuse method. You can then save this newly created data model in staging MDG. Other option that you have is Z-table. You can create a Z-table to persist the data.Hope this helps!

Read More

Can I use Custom Error pages in SAP HANA?

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

You are correct as XSA supports the custom error pages but classic does not support custom error messages.In case you need to do in any way, then what you can try out is you need to parse all requests through a load balancer or a proxy and then show custom error message. And it is not a easy and maintainable approach.

Read More

Where to define an associated type in SAP function module?

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

The parameter that you are using seems to be a import type and it will require an associated type in order to be of any use.You can define the table parameters for this. You can find them within the tables tab. Once you have defined them then you can use them for either export or import.Hope it works for you!

Read More

Connecting SAP SOAP WebService with Android application

SAP Expert
SAP Expert
Updated on 30-Jul-2019 395 Views

You are passing parameter in URL like this: http://XXX.com/xyz/api/sap-client=100&sap-user=username&sap-password=xxxxx"Instead of this, you should pass parameter like this: request.addProperty("sap-client", "100"); request.addProperty("sap-user", "*"); request.addProperty("sap-password", "*");

Read More

Checking implementation of interface IF_EX_IDOC_CREATION_CHECK in SAP ABAP

SAP Expert
SAP Expert
Updated on 30-Jul-2019 661 Views

IDOC_DATA_CHECK – This method is used to check IDoc Data to see If an IDoc is Generated.You can check documentation of this interface IF_EX_IDOC_CREATION_CHECK by using T-Code: SE24 or SE80You can refer this Method by using this syntax: CALL METHOD IF_EX_IDOC_CREATION_CHECK=>methodname EXPORTING/IMPORTING...Now come to you issue, an Exit statement takes program out of the loop. Incase you have loop as only processing block, it will also exit the method. You need to call BADI/method for each Idoc.

Read More

Creating context for JNDI in SAP NetWeaver Developer Studio

SAP Expert
SAP Expert
Updated on 30-Jul-2019 195 Views

You have to use following properties while running tests outside NWDS:java.naming.factory.initial=com.sap.engine.services.jndi.InitialContextFactoryImpl java.naming.provider.url={our nw host}:50004

Read More

Uploading data to SAP via WebService using WCF in C#

SAP Expert
SAP Expert
Updated on 30-Jul-2019 351 Views

I think you should try using long properties as it is one of closed way to get to achieve this.

Read More
Showing 821–830 of 902 articles
« Prev 1 81 82 83 84 85 91 Next »
Advertisements