structure will always be empty in your program. If you want to access text data, you will need to read the table or the cluster tables : STXH, STXL. More simple is to use the function READ_TEXT, WRITE_TEXT. You will need key, for this there are different way: - Ask the bad fu...
SAP Managed Tags: ABAP Development Importance/Use of Views Data for an application object is often distributed on several database tables. Database systems therefore provide you with a way of defining application-specific views on the data contained in several tables. These are called views. Data...
SAP Managed Tags: ABAP Development I think you are making mistake right here READ TABLE dynpro_values WITH KEY fieldname = 'WA-VKORG' INTO field_value. IF field_value-fieldvalue IS NOT INITIAL. SELECT vkbur INTO CORRESPONDING FIELDS OF TABLE values_tab FROM tvkbz WHERE vkorg = wa-vkor...
So you have access to the fields and tables of the interface. E.g. you can set the import parameter direct via RfcSetChars or you can get via RfcGetTable a data container to a table of the interface. With RfcAppendRow you can add an empty line and with RfcSetChars you can set...
SAP Managed Tags: ABAP Development Hi Omer, can u post u r code. and also check whether the given fields are type of p and also u requirement with more clear... or see a example code which uses ls_fcat-decimals_out and also see the declaration of the field dec which is in bold....
SAP Managed Tags: ABAP Development Hello all, I' ve a custom table with 10 fields (five of them are KEY- suppose filed A B C D and E are Key). I need to create different view to anable user to update them: in one View I wanted just field A B And C; in the second one all...