sap_rocks
Participant
Member since ‎12-12-2013

User Statistics

  • 58 Posts
  • 4 Solutions
  • 82 Kudos given
  • 12 Kudos received

User Activity

I have to restart a RF transaction to be able to clear all dynpro screen values automatically. I tried the following options already: 1) Clearing all input fields via the changing structures:Unfortunately the dynpro screen values are not being upda...
I have defined a dynpro screen 1000 like this: But if I execute this in SAP GUI 770.1.4.1161 the screen is being shown like this: It looks like label texts have been aligned right (see yellow marked spaces): How can I change the alignment t...
Imagine a source code like this where we first sort an internal table and directly after that group by: SORT lt_data_aqua BY lgtyp lgber.LOOP AT lt_data_aqua ASSIGNING FIELD-SYMBOL(<ls_data_aqua>) GROUP BY <ls_data_aqua>-lgber ASSIGNING FIELD-SY...
A queue entry regarding an inbound delivery sent from ERP to EWM has been deleted by mistake. Is it possible to recover or resend the related message? If so, how? Thanks in advance for your help!
Consider the following statement: DATA(ls_mara) = VALUE mara( matnr = 'TEST_10000' ). INSERT mara FROM ls_mara. COMMIT WORK AND WAIT. SELECT SINGLE FROM mara FIELDS * WHERE matnr EQ 'TEST_10000' INTO @DATA(ls_result). [...] We want to ma...