Found 1044 Articles for SAP

Load placed on server to perform encryption in SAP Secure Network Connection

Anil SAP Gupta
Updated on 17-Feb-2020 10:37:51

79 Views

When you use encryption, primary load is during initial handshake between client and server. At the time of initial handshake, keys are exchanged. Load of Secure Network Connection SNC using DIAG to HTTPS is different and can’t be compared.With use of F5 servers, it can be used for software and hardware acceleration of HTTPS and not for DIAG protocol.https://f5.com/You can also refer SNC guide for more information if you have SAP Partner ID.SAP Link

Use of fields PWDCHGDATE and BCDA1; PWDLGNDATE and TRDAT table USR02 in SAP

Anil SAP Gupta
Updated on 17-Feb-2020 10:39:32

205 Views

You can use RSUSR200 program, to perform a check on the fields: BCDA1 and PWDCHGDATE for the last password change. Earlier only BCDA1 was only used for this however there is difference now.You can use RSUSR200 report directly to find out the users according to the logon date and last password change.For those users for whom the password-based logon is deactivated, incorrect logons that occurred prior to deactivation are used as selection criterion and are incorrectly issued in the results list.If the login/disable_password_login profile parameter is used to deactivate the password-based logon, the password status is not correctly displayed.The influence ... Read More

Reading latest measurement point in SAP RFC

Anil SAP Gupta
Updated on 30-Jul-2019 22:30:20

455 Views

There is a Function Module: MEASUREM_DOCUM_RFC_SINGLE_002 that you can use to read documents if keys are known. When there is no RFC module to get a list of $foo according to a set of selection criteria, it is possible to use RFC_READ_TABLE to get the keys from db directly.Function Module MEASUREM_DOCUM_RFC_SINGLE_002: RFC Measurement document: Individual processing, Change/Display or ReadUseWith use of this RFC, following remote calls can be used:Remote dialog (WITH_DIALOG_SCREEN = 'X')Remote dialog in display mode (EDIT_MODE = ' ')Remote dialog in change mode (EDIT_MODE = 'X')Remote reading of measurement document data (WITH_DIALOG_SCREEN = ' ')NotesApart from when an ... Read More

Using SAP RSECNOTE tool to display information for ABAP and Java Stack

Anil SAP Gupta
Updated on 15-Jun-2020 11:58:49

416 Views

In SAP system, you can use tools like RSECNOTE and SAP EarlyWatch Alert which can be to find out the patches and verify their implementation status. You can access RSECNOTE by executing Transaction code: SA38 or ST13.RSECNOTE tool in SAP system is used to determine which important security notes or hot notes are missing in a system.You can refer more details about this tool in SAP OSS Note 888889. You can access this tool by calling T-Code: ST13 and entering RSECNOTE and then press F8 button.888889 - Automatic checks for security notes using RSECNOTE (outdated)You use transaction ST13 to start ... Read More

View the valid values of profit center groups in SAP ABAP

Anil SAP Gupta
Updated on 17-Feb-2020 12:31:53

198 Views

You need to select SETNAME from table SETLEAF with SETCLASS value 0106. To reduce number of values in search you can pass a Controlling area in field SUBCLASS or value of Profit center in VALFROM field.For more details, refer this SAP discussion: How to find profit center group for any profit centerSAP DiscussionOpen the Table SETLEAF, and follow below steps:Pass in field SETCLASS as '0106'.Pass in field SUBCLASS with controlling area.Pass Profit center in Field VALFROM.You will get Group name in Field SETNAME.

How can I refer a certain class/interface/ by enclosing it with its namespace SAP.NET

Anil SAP Gupta
Updated on 17-Feb-2020 12:33:59

41 Views

Note that you have to ensure that you are using .NET framework and not .NET 4.0 client. Refer this link and you would get an idea:SAP Discussion

Not able to call another function within initialize method of controller in SAP UI5.

Anil SAP Gupta
Updated on 17-Feb-2020 12:34:32

366 Views

Yes, you are absolutely correct. It is very basic thing, you just need to use this operator for making the function call.onInit: function() {    //Your logic    this.CustomFunction(); } CustomFunction : function () {   // some logic }

How to show only one view at a time in Wizard in SAP UI5?

Anil SAP Gupta
Updated on 17-Feb-2020 12:35:22

279 Views

I will say not it is not a big out of box requirement. You can easily get it done. What you need to do is to hook up your requirement in the complete event of the wizard which gets invoked on each step completion. You just need to hide the completed view and show the next view. So you will be viewing only one view at a time.onComplete: function(oEvent) {                 var wdStep = oEvent.getSource();                 wdStep.setVisible(false);             }

How to hide and show a column of a row in SAP Detail window

Anil SAP Gupta
Updated on 17-Feb-2020 12:37:46

483 Views

You just need to set the expression which binds to the visibility propert. Go to Data window and select your desired column which you need to show/hide. Then go to properties and look out for the “Visible” checkbox and click on the highlighted button.Now write the expression which should drive its visibility. Hope it helps.

Rows with no data are visible after applying search in grid SAP UI5

Anil SAP Gupta
Updated on 17-Feb-2020 10:56:18

331 Views

The “No Data” rows are being shown in the grid irrespective of having no data is because of the “VisibleRowCount” attribute of the control. It controls the number of visible rows. So, once you are binding the table again after applying the filters, you need to update it dynamically to the number of rows in the matched result.Something similar to this −onBindingChange: function(oEvent) {     this.getView().byId("").setVisibleRowCount(oEvent.getSource().getLength()); }

Advertisements