2008 Jan 24 10:06 AM
How to Developed a report to display list of purchase order details.
2008 Jan 24 10:08 AM
USE Tables EKKO and EKPO and select what field you need in your report
2008 Jan 24 10:09 AM
2008 Jan 24 10:10 AM
Hi,
goto transaction SE38
type a name of report starting with 'Z'
click CREATE.
using select-options and select query you can achieve what u want.
U will need to use table : EKKO.
**reward useful answers.
Regards,
Vaibhav.
2008 Jan 24 10:16 AM
Hello Sudhakar,
EKKO -- Purchasing Document Header
EKPO -- Purchasing Document Item
These are table where you can get information about purchase orders.
Find the code for displaying purchasr order details at header level.
REPORT zsample .
TABLES: ekko.
DATA: g_t_ekko TYPE STANDARD TABLE OF ekko WITH HEADER LINE..
SELECT-OPTIONS: s_ebeln FOR ekko-ebeln.
*SELECT **
FROM ekko
INTO CORRESPONDING FIELDS OF TABLE g_t_ekko
WHERE ebeln IN s_ebeln.
LOOP AT g_t_ekko.
WRITE: / g_t_ekko.
ENDLOOP.
Reward If Helpful
Regards
--
Sasidhar Reddy Matli.