SAP Managed Tags: ABAP Development Hi check the below code which will convert character to integer.. DATA NO1(10) TYPE C VALUE '1234567890'. DATA NO2 TYPE I. NO2 = NO1. WRITE NO2. the foll code will convert the string to interger. DATA NO1 TYPE STRING. DATA NO2 TYPE I. NO...
As seen in above SQL query, concatenated string data in database table columns can be splitted using the sample split string function and Cross Apply. The output of the query is as follows. In this T-SQL split sample code, SQL programmers can see how easy is to use the XML in split s...
There would be no issues, if instead of string PATH, we would have a column. I even tried to use a split function: DROPFUNCTIONSPLIT_PATH_F;CREATEFUNCTIONSPLIT_PATH_F(IP_STRING NVARCHAR(5000))RETURNSTABLE(V_STRING NVARCHAR(100))LANGUAGESQLSCRIPTASBEGINdeclare _items nvarchar(100)ARRAY; dec...
In your case cl_gui_alv_grid would have to declare your class as a friend. Best, Chris Reply naimesh_patel Active Contributor 2012 Jan 06 4:37 PM 0 Kudos 301 SAP Managed Tags: ABAP Development Since both of the classes are standard classes, you can ONLY get FRIENDS addit...
Once the hierarchy is unloaded any tool can be used to process the data (e.g. create and fill a hierarchy in SQL Server Analysis Services). Using XMLA and C# Another option is to declare the InfoObject as an InfoProvider and create a SAP BI query using the SAP BI query designer...
How can i link these 3 projects to work (also in the local test). Component 1: WebContent app_one Component.js jQuery.sap.declare("app_one.Component"); ap.ui.core.Component.extend("app_one.Component", { metadata : { library: "app_one", name : "Corelib", version : "1.0", includ...
Declare a field 'name' to display in your ALV. Reply Former Member 2008 Mar 20 9:01 AM 0 Kudos 326 SAP Managed Tags: ABAP Development Hi, You can try like this: Make an output table say gt_output with field NAME. Move the corresponding fields of gt_kna1 into gt_output...
SAP Managed Tags: ABAP Development Hi , we can't declare a CHAR data type more than 255, but try to use STRING and RAWSTRING in case of 1000 characters. Can i know why you cant use STRING. Thanks & Regards, Aditya. Reply SuhaS...
Could you please mention how are you passing the fields from PI to the RFC, i mean to say are the fields being sent as STRING to ABAP FM? Coz in ABAP, I can't take STRING as table parameters. As I am using mass RFC lookup in a intermediate step which is generating String ,so ...
You can catch these parameters in the default inbound plug of the webdynpro component. For that u goto Handledefault method of the Window, and declare these parameters as the importing. ex. userid Importing String. Regards, Sachi Former Member 2007 Jan 23 0 Kudos ...