Found 1044 Articles for SAP

Query returning no data in SAP Business One using Table Relationship

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

394 Views

This looks like an issue with Join in queries. Try replacing Inner join with Left join like this. I ran this query and it is working fine:select T0.DocNum as 'Payment Number', T0.DocDate 'Payment Date', T0.CardCode, T0.CardName 'Customer Name', T1.BankCode 'Bankcode', T3.BankName 'Bank Name', T2.Phone1 , T0.CreditSum, T0.CashSum, T0.TrsfrSum, t0.CheckSum, t1.CheckNum as 'Check Number', t1.DueDate as 'check date', t6.VoucherNum as 'Voucher Number', t0.TrsfrRef as 'Transfer No', t0.TrsfrDate AS 'Transfer Date', ousr.USER_code as 'user code', T5.DocNum, t11.U_P_BuildingName as 'Building Name', CASE when T5.DocNum is null then 'On Account' else 'Paid For Invoice' END AS 'Payment Status', CASE when T5.DocStatus = 'O' then ... Read More

Displaying distinct values in a column filtered on other column in SAP BO report

Sreemaha
Updated on 10-Dec-2019 09:05:26

874 Views

There are multiple ways to do this. First is by creating a variable like this:Terms Count =Count([Terms Code]) in ([Sales #])You have to add this variable to your report. It will display 1 for all Sales # 1000 and 2 for all Sales # 1001. You can apply a filter on Count > 1.You can also do this using PREVIOUS() function as below:Previous([Payment Terms Code]; ([Sales #];[Line #]))

Source code of ABAP reports without restriction

Sai Subramanyam
Updated on 14-Feb-2020 08:00:24

332 Views

If you have to use RFC, you can write RFC enabled function module. You can write a new FM that allows you to retrieve program source code. To start with, you need to create a structure as shown in below and based on which you have to create a table type. This table can be passed to a RFC function.Here shows a table type that you can use in Function Module:Next step is to create a function module with RFC-enabled. You have to pass parameters while creating function module.function zsrcex_extractor . *"---------------------------------------------------------------------- *"*"Local Interface: *"  IMPORTING *"     VALUE(PACKAGE_SIZE) ... Read More

What should I install to start learning SAP ABAP?

Samual Sam
Updated on 30-Jul-2019 22:30:20

225 Views

SAP NetWeaver is a Java-based stack and its developer edition is available.https://www.sap.com/developer/trials-downloads.htmlIn SAP system, Function modules are like web services. They are used to expose the structure of the data dictionary or to expose business objects.Function modules are sub-programs that contain a set of reusable statements with importing and exporting parameters. Unlike Include programs, function modules can be executed independently. SAP system contains several predefined function modules that can be called from any ABAP program. The function group acts as a kind of container for a number of function modules that would logically belong together. For instance, the function modules ... Read More

Request Timeout while using Odata call to a gateway in SAPUI5 application

varma
Updated on 10-Dec-2019 09:52:36

1K+ Views

As you have already tried different parameters, I would suggest to check timeout option for ICM and Web Dispatcher.In SAP, you have ICM and Web Dispatcher with different timeouts, controlled by different parameters:Timeout for opening a connection: icm/conn_timeoutTimeout for receiving a request: icm/traffic_control Keepalive timeout for the network connection: icm/server_port_ option TIMEOUT and icm/keep_alive_timeoutProcessing timeout in the back end: icm/server_port_- option PROCTIMEOUTSAP Recommendation for these scenarios:In systems where the standard timeout setting of 60 seconds for the keep-alive and processing timeouts is not sufficient due to long-running applications, SAP recommends that both the TIMEOUT and PROCTIMEOUT parameters are set for the ... Read More

Installing free version of SAP ERP to learn ABAP

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

2K+ Views

You can install a free trial from SAP site, but for that, you require an SAP Partner ID. SAP also provides developer trial and you can install the following link:https://www.sap.com/developer/trials-downloads.htmlThe SAP NetWeaver Application Server ABAP comes with a temporary license that allows you to logon to the system. As a first step before using the system, you need to install a 90 days Minisap licenseYou can see all SAP NetWeaver AS ABAP version available for download, Installation Procedure and How to Guide as well.You can also refer to this link to know about license terms, PAM and other details related ... Read More

Connecting SAP B1 via DI API takes too much time

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

330 Views

Try deleting all the files under this location - %UserProfile%\AppData\Local\SAP\SAP Business One\Log\DIAPIWhen you delete all files, it will speed up the connection process.

Using Group by hour in SAP HANA table

Prabhas
Updated on 26-Feb-2020 10:10:15

442 Views

You can try this method to convert time to date and hour format −select to_varchar(time, 'YYYY-MM-DD'), hour(time), sum(r_time) as r_time, sum(p_time) as p_time from t1 group by date(time), hour(time) order by to_varchar(time, 'YYYY-MM-DD'), hour(time);You can also try using Series_Round() with a group by clause.select SERIES_ROUND(time, 'INTERVAL 1 HOUR') as time, sum(r_time) as r_time, sum(p_time) as p_time from t1 group by SERIES_ROUND(time, 'INTERVAL 1 HOUR') order by SERIES_ROUND(time, 'INTERVAL 1 HOUR');

Prevent XML re-formatting in WAS response in SAP Windows Activation Service

Monica Mona
Updated on 30-Jul-2019 22:30:20

69 Views

No, there is no other possibility of doing it until you code everything on your own. It seems to be an issue during de-serialization.Most probably it is relevant to the parameters that you are sending in the response.You can try and enable tracing to detect further and check out where it is going wrong.

Double click on ALV Grid to call Transaction and pass information in SAP

Lakshmi Srinivas
Updated on 30-Jul-2019 22:30:20

781 Views

You can make use of field - “wa_selrow” to define which column was clicked. Also, change the grid from row selection mode to cell selection mode.wa_selrow contains which field it is calling the transaction regardless or the field you clicked on so based on the content of wa_selrow, you can control the call to the transaction.You can also turn on the debugger and double click on the field to check what value is getting passed into wa_selfield.

Advertisements