SAP HANA Articles - Page 94 of 58

SAP ABAP: Using Elementary data type and reference type with keyword VALUE

SAP Expert
Updated on 12-Feb-2020 10:28:09

469 Views

It is not possible. Check this link for details:ABAP DocumentationThe correct way for using “VALUE” with elementary data type is by assigning initial value and you should use NEW operator to assign initial value.DATA(l_value) = NEW char4( 'AAA' ).

Getting error message while using SAP Scripting Tool

SAP Expert
Updated on 30-Jul-2019 22:30:20

345 Views

Try renaming variable “Application” as it is used as a variable however it is also predefined read only object in Excel.

An Agentry application by SAP crashes for older iPads

SAP Expert
Updated on 30-Jul-2019 22:30:20

184 Views

You can try modifying your code where method “didFinishLaunchingWithOptions:” starts everything in background.application(_:didFinishLaunchingWithOptions:)This method is used to tell the delegate that the launch process is almost done and the app is almost ready to run.Method declaration:optional func application(_ application: UIApplication,didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey : Any]?

Advertisements