Hi Experts!I don't know why the sy-ucomm system variable is empty. Here is my sample codeSELECTION-SCREEN 100
DATA: so_inv TYPE inv.
SELECTION-SCREEN BEGIN OF SCREEN 100.
SELECTION-SCREEN BEGIN OF BLOCK mdat WITH FRAME TITLE TEXT-001.
PARAMETERS:...
Hi all,
I've a couple of questions about deleting and adding entries through transport request.
For example, if the table in the testsystem looks like that
and my transport request looks like this
In this case I would like to delete ...
Hey there,
my goal is to sort/group the measures in a model. Can I still create dimensions from the individualmeasure that I can use later in my story?
E.g. I would like to summarize 5 measures of the model and then integrate them into my story. ...
Hey,
My sample Code
Workarea/Table (Data)
DATA: go_salv TYPE REF TO cl_salv_table,
go_function TYPE REF TO cl_salv_functions_list,
BEGIN OF wa,
number TYPE string,
id TYPE string,
location ...
Hey,
My Goal: Displaying Web Service Table inside an ALV Grid using cl_salv_table=>factory Method
My current Status: When i run the program, the dump "Conversion of type table from prxctrl to type string not performed" pops up.
Table Webservice...
Thank you, but I have another question.So that's my model:and let's say I only need measure at row 1, 2 and 3. How can I group them together and use them in the story or how can i be the calculated measure?Thanks in advance
Thanks, man : )Just another quick question.Is there an easier way instead of writing wa-number = '1234'.
wa-id = 'Test X'.
wa-location = 'Test Location X'.
wa-password = 'Test Password X'.
wa-user = 'Test User X'.
INSERT wa INTO TABLE lt_data. three...
Thank you very much, helped me a lot!But how can I defining it to the webservice table instead of using a workarea structure. Because the structure and the datatype of buisness, device, ... is already set to string inside the webservice table, but i...