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 tablesTag Archives: SAP CRM
SAP CRM system using for sales. Sales orders work with clients and partners. For developers it is work with Model data and BOL and WEB interface and etc.
How 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?