on ‎2023 Aug 08 12:10 PM
I have a requirement where I need to create a report
Wherein I need to find records in ESTDH table with report status as 'W7' and check if the materials associated to a specific is extended to a plant or not
So I'm planning to join ESTDH table with ESTMJ ..kindly let me know if this is the right method and also how do I join ESTDH with ESTMJ
Request clarification before answering.
surajhny
Yes, it is the right approach to join the ESTDH and ESTMJ tables in order to find out if a specific material is extended to a plant or not.
To join the tables, you can use the plant, material, and material type columns as the common fields between the two tables.
You can join using a left join from ESTDH to ESTMJ, where ESTDH's plant = ESTMJ's plant, ESTDH's material = ESTMJ's material, and ESTDH's material type = ESTMJ's material type. This will allow you to keep all of the records from ESTDH and any matching records from ESTMJ.
Once you have joined the tables, you can filter on ESTDH's report status field to ensure the records have a status of 'W7' before checking if the material is extended to a plant or not on the ESTMJ table.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello
Pseudocode like: You can join using a left join from ESTDH to ESTMJ, where ESTDH's plant = ESTMJ's plant, ESTDH's material = ESTMJ's material, and ESTDH's material type = ESTMJ's material type. This will allow you to keep all of the records from ESTDH and any matching records from ESTMJ.
Will not work as ESTDH is a table havin no plan reference.
On top: very rarely on level of ESTMJ a "plant" code us added. I know only one customer which does it like that.
SAP EHS does contain a User Iterface with SAP transaction CG54 / CG50: Here you get link
Material - Specification - Report (ESTMJ/ESTRH/ESTDH).
Internally the User Interface is supportd by sime function module.
You should (in most of the case) only use SAP function module to collect the required information and not do a "direct" select.
Experience has shown that SAP changes sometimes the data model and then such "Selects" are not useful..
Anyhow: Please check for same SAP standard function module. It is much better.
C.B.
PS: may be https://community.sap.com/t5/product-lifecycle-management-q-a/standard-function-module-which-generat... might be of interest
| User | Count |
|---|---|
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.