SAP HANA Articles

Page 53 of 58

Accessing import parameters passed to a function module in SAP ABAP

Samual Sam
Samual Sam
Updated on 30-Jul-2019 1K+ Views

ABAP has a function module named “RPY_FUNCTIONMODULE_READ” which lets you extract metadata about the function module. To be more precise, it lets you extract the parameter structure of function module and once you know the parameters then you can access them dynamically. But it comes at a cost, if you need to accomplish it, you should have S_DEVELOP authorizations permissions and it will be a performance intensive operation.Another way round will be to add tracing or logging to function parameters manually.In addition to this, ABAP has a utility class “CL_FB_FUNCTION_UTILITY” which has various methods. One of them is “METH_GET_INTERFACE” which ...

Read More

Resource routing not working when using SAP Fiori

Vrundesha Joshi
Vrundesha Joshi
Updated on 30-Jul-2019 296 Views

The issue you are facing is because you have created both the applications with the same ID. Hence, the Launchpad is not able to distinguish between them and load into the context.You can change the application Id and all the references of the same to resolve the issue you are facing.Facing issue with SAP JCO server connectivity when system out of network.

Read More

Internal Table itab declaration in SAP and difference between both the declarations

Rahul Sharma
Rahul Sharma
Updated on 30-Jul-2019 290 Views

As per my understanding, the key difference between two statements is that in first you are reserving memory space for storing 5 lines of the customer_tab table.If you consider performance, the 2nd statement should be better.

Read More

Debugging a failed Insert statement in SAP ABAP

Rahul Sharma
Rahul Sharma
Updated on 30-Jul-2019 539 Views

Note that in SAP ABAP, sy-subrc == 0 means success. You can use breakpoint before your INSERT statement to ensure if it is a success or not. You can check the possible return value by bringing cursor on it and then press F1 key.Try checking if/else branch in your code snippet.

Read More

Make a custom function call without using SAP NetWeaver

mkotla
mkotla
Updated on 30-Jul-2019 175 Views

I know a couple of ways how can you can go ahead and use the RFC you have created from SAPUI5 but without using SAP NetWeaver.You can try to create a web service or a REST service which uses the RFC that you have created. Host the service in the SAP environment and then you can use the service in SAP UI5 with the help of URL.Or you can go for a SICF service and have a handler for the service. In the handler of the service, you can have the same logic for fetching the content as you have ...

Read More

Rfcabapexception error while querying a number of columns using RFC_READ_TABLE in SAP

Vikyath Ram
Vikyath Ram
Updated on 30-Jul-2019 371 Views

It is not because of a number of columns but the actual total size of the fields you are querying. It should not be more than 512 bytes.  For RFC communication, the types likes DATA or STANDARD table are not supported. So the RFC_READ_TABLE function module has to convert the data into the generic format and the data is transferred as a series of lines. It is the size of these table lines that matter. The size cannot exceed 512 characters.  If the size is greater than 512 characters, the module throws a Rfcabapexception exception with a short dump.  The ...

Read More

Using SSIS 2014 with Visual Studio 2012 to integrate with SAP

Anvi Jain
Anvi Jain
Updated on 30-Jul-2019 272 Views

You made a small mistake but a mistake having a big impact. SSIS 2014 does not support VS 2012 in your case. Just switch to VS 2013, your problem will be resolved.

Read More

Apply filtering on Model to fetch filtered data in ABAP

Prabhas
Prabhas
Updated on 30-Jul-2019 191 Views

I think a simple change can sort the problem out over here. Just replace the read call with an object notation rather than the current one which is based on position.

Read More

Automating SAP Transactions/actions using SAP GUI

Anvi Jain
Anvi Jain
Updated on 30-Jul-2019 968 Views

You can use SAP GUI. It has built-in tool which can record and playback activity that can be utilized for automation and automated jobs. In case, the values or inputs are not changing then you can use the same script on each occasion.It lies within the main menu of the GUI window, within Customize layout -> Script recording and playback.

Read More

Do I need to set up SAP user for every user of module?

seetha
seetha
Updated on 30-Jul-2019 197 Views

I think you knew the answer beforehand as you already mentioned it in your question. You need to set an SAP user for every user to work the SAP prescribed way otherwise you are violating the service agreement of SAP and hence support will be void.

Read More
Showing 521–530 of 573 articles
« Prev 1 51 52 53 54 55 58 Next »
Advertisements