Govinda Sai

Govinda Sai

45 Articles Published

Articles by Govinda Sai

Page 5 of 5

Using ControlAggregation in SAPUI5

Govinda Sai
Govinda Sai
Updated on 16-Dec-2019 856 Views

“ControlAggregation” refers to the target aggregation to which the mapped view is added.As Specified in the use case below:"routing": {    "config": {       "routerClass": "sap.m.routing.Router",       "viewType": "XML",       "viewPath": "sap.ui.demo.nav.view",       "controlId": "app",       "controlAggregation": "dummy",       "transition": "slide",       "bypassed": {          "target": "NA"       }ExampleThe views are defined as follows:     So here “controlAggregation” is named as 'dummy' but the app is named as SampleApp.so the target is 'sap.m.SampleApp' and aggregation is named as 'dummy'. Let ...

Read More

Exposing employee master data from SAP HR system using Web Service

Govinda Sai
Govinda Sai
Updated on 11-Dec-2019 1K+ Views

In a general scenario, when you have ICF configured you can expose SAP system business objects and jobs via BAPI. It is very easy to create and expose BAPI as a web service. As there are only few web services for SAP HR module in SAP system however you can transform a BAPI or ABAP function into a web service. If there is no such function you can create one easily.To find details about BAPI from Function module, use T-Code: SE37 and enter Functional module name for SAP HR module. Below is the list of existing HR function modules in ...

Read More

What is Practical Use of Reversed Set Operators in Python?

Govinda Sai
Govinda Sai
Updated on 30-Jul-2019 197 Views

Reversed set operators are operators that are defined as:s & z corresponds to s.__and__(z) z & s corresponds to s.__rand__(z)These don't make much sense in normal operations like and, add, or, etc of simple objects. However in case of inheritence, reversed operations are particularly useful when dealing with subclasses because if the right operand is a subclass of the left operand the reversed operation is attempted first. You may have different implementations in parent and child classes.These reversed operations are also used if the first operand returns NotImplemented.

Read More

Displaying T-code description and T-code field in Output ALV of report SM20 in SAP system

SAP
Govinda Sai
Govinda Sai
Updated on 30-Jul-2019 418 Views

There is include rsau_class_auditlist_impl and to add an additional column into table mt_outtab you can try via an enhancement of this rsau_class_auditlist_impl.You need to add an additional Column to “ts_out_ext” in CL_SAL_READ_FILES line 145. Using this way you can enhance the definition however you have to check if it is used.

Read More

What is the Eclipse keyboard shortcut for "System.out.println()" in Java?

Govinda Sai
Govinda Sai
Updated on 30-Jul-2019 15K+ Views

To get System.out.println() line in eclipse without typing the whole line type sysout and press Ctrl + space.

Read More
Showing 41–45 of 45 articles
« Prev 1 2 3 4 5 Next »
Advertisements