SAP Managed Tags: ABAP Development EKPO is the PO item table and its not necessary that the PO needs to be created with ref to a Purchase req. So, when it is created with ref to Req then you have the BANFN field in the EKPO table. However, I would expect that if EKET has the...
SAP Managed Tags: ABAP Development ABAP Development Programming Tool View products (1) Hi Experts, I am very new in Abap ,I want to update some fields of Purchase order through Bapi. In Selection screen i need these things,PO Number , material, Delivery date and i want to update the ...
SAP Managed Tags: ABAP Development, SQL I'm executing the following query, but it has serious performance issues. Can someone tell me what could be wrong? select max( ekko~ebeln ) as ebeln ekpo~matnr into table t_ekpo_max from ekko inner join ekpo on ekkoebeln eq ekpoebeln whe...
SAP Managed Tags: ABAP Development Hi, try this: TABLES: EKKO, EKPO, EKBE. * TYPES: BEGIN OF TY_ITAB, AEDAT LIKE EKKO-AEDAT, EBELN LIKE EKKO-EBELN, EBELP LIKE EKPO-EBELP, ZEKKN LIKE EKBE-ZEKKN, END OF TY_ITAB. * DATA: IT_ITAB TYPE TABLE OF TY_ITAB, WA_ITAB TYPE TY...
SAP Managed Tags: ABAP Development Good day! I am a functional consultant. I am creating a specs for a customized report. I need to connect Table EKKO to PRPS. Can you give another table where I can link these tables? If there are additional tables that I can connect, please provide ...
SAP Managed Tags: ABAP Testing and Analysis Hi, you can get the G/L account number by using EKKN and EKPO-matnr , why are you using BSEG for getting G/L account? it will be much faster if you use EKKN and EKPO as a join . Please reward if you find the answer useful. Thanks ...
SAP Managed Tags: SAP Sapphire, ABAP Connectivity ekko ekpo table belongs to which module.Reply 1 ACCEPTED SOLUTION Former Member 2006 Nov 30 10:42 AM 0 Kudos 161 SAP Managed Tags: SAP Sapphire, ABAP Connectivity Material Management module ---> purchasing... EKKO : Purchasing Doc...
SAP Managed Tags: ABAP Development Hi I have found a link between RESB, EKKO and EKPO but how far it can help you just check it out RESB-EBELN === EKKO-EBELN now store a result ina internal table and now try to link EKKO and EKPO based on two fields using FOR ALL ENTRIES in th...
SAP Managed Tags: ABAP Development EBAN- it's the purchase requisition table when u create a purchase requisition using ME51N it's saved to this table. EKKO- Purchasing Doc Header EKPO- Purchasing Doc Item When u create a purchase order using ME21N, data go to these 2 tables. as pe...