Hi,An inbound proxy will call a Method. You can have whatever ABAP code you need in this Method. A program could be called with statement SUBMIT. But you are talking about executing a query report. If you have an inbound proxy that is launched in bac...
Hi Zhumabek,It is used all the time, but it really depends on the situation. Here is an example.Let's say you have a program that displays the content of a table in a grid, and allows to change the content, and save it in the database. Now Bob calls ...
Hi Michel,From what I understand, you have a string containing an ABAP command ("DATA : lt_kl TYPE STANDARD TABLE OF /bic/pmihklassi") and you want to parse that string to get the table name.There are many possible solutions. I would recommend comman...
Hi Nao,First create a new screen with a Custom Control in it (call it GC_PDF). Then implement this code in the PBO:TYPES lty_pdf_table(1000) TYPE x.DATA lo_pdf_cont TYPE REF TO cl_gui_custom_container.DATA lo_pdf TYPE REF TO cl_gui_html_viewer.DA...
Hi K,This request will call a Method in the generated ODATA Class. The Class name will be something like ZCL_ISD052_ATP_DPC_EXT. The Method called by this specific request will be something like ATPSET_GET_ENTITYSET. In this Method you usually receiv...