Mains table which I using in SAP CRM in ABAP programs. In CRM more often we use Model for read data, but sometimes better use SELECT from database tables. Sometimes this variant easier and better for performance. Also this SAP CRM database table useful for check data for consultant.
Continue reading SAP CRM Order tablesCategory Archives: ABAP
Articles on ABAP programming will be useful for both ABAP developers and SAP consultants. I will analyze both ABAP from scratch and the new syntax of ABAP 7.4 and 7.5. I will describe in detail the technical details that I encountered and how I solved them. I will also try to help consultants look beyond ABAP development in order to better understand how everything works. Subcategories:
REMOVE leading zeros ABAP SAP
Delete leading zeros ABAP in SAP important and easy task. Five examples how to remove leading 0 in ABAP program. There are more then one way how we can delete zeros in ABAP, but all have differences the choice is yours.
Continue reading REMOVE leading zeros ABAP SAPConvert String to Table ABAP in SAP
Convert STRING to table ABAP with using function module SO_STRING_TO_TAB useful when you need to create email in ABAP program. Because for creating HTML document with using, for example cl_document_bcs=>create_document you need to send internal table with table type ABAP SOLI_TAB (rows for this type table SOLI).
Continue reading Convert String to Table ABAP in SAPADD leading zeros in ABAP SAP
Adding leading zeros ABAP in SAP easy and important task. I will show examples how to add leading 0 in ABAP with 3 examples. There are more then one way how we can add zeros in ABAP but all have differences the choice is yours.
Continue reading ADD leading zeros in ABAP SAPHow delete order in SAP CRM with ABAP?
Work with SAP CRM with ABAP you use a lot of model data, but sometimes using Model not best way for performance.
In my case when I want to delete Order CRM from SAP CRM, Model Data CRM didn’t worked. I tried to get object CL_CRM_BOL_ENTITY by GUID from table CRMD_ORDERADM_H ( Order SAP CRM Tables ) and use method DELETE ( from class CL_CRM_BOL_ENTITY ), but it didn’t work.
Continue reading How delete order in SAP CRM with ABAP?