Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Table name

Former Member
0 Likes
1,923

Hi

In the Tcode IH06. I want the table from which it was fetching the work center. Or else any other which will be having both the fields Functional Location and work center also. I got the Table ALM_ME_D997. But i want some other which will be having both the fields.

Regards

Nanda

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
1,887

Hi

can any one suggest me the join condition for the same

16 REPLIES 16
Read only

Former Member
0 Likes
1,887

Hi,

Check the Table CRHD.

Regards,

Balakumar.G

Reward Points if helpful.

Read only

0 Likes
1,887

Hi Bala

I already Checked CRHD but there is no relation between a Functional location and work center

Regards

Nanda

Read only

Former Member
0 Likes
1,887

Hi

Check table IFLOT for Fun Location

and Work center AFRV

regards

Shiva

Read only

0 Likes
1,887

Hi Shiva

There is no such field AFRV in the table IFLOT

Regards

Nanda

Read only

0 Likes
1,887

Hi

TPLNR is IFLOT

ARBPL is in AFRV

regards

Shiva

Read only

0 Likes
1,887

But i want both the fields in a single table other wise i have to use any join query for that

Read only

Former Member
0 Likes
1,887

Hi,

IFLOT is the table name that contains the work center.

Also use the tables IFLOTX, ILOA for further necessities.

Regards,

Sankar.

Read only

Former Member
0 Likes
1,887

Hi,

Place the cursor on Work center input field and press F1 and click on Technical information,there u can find.

Regards,

Chandu

Read only

0 Likes
1,887

Hi Chandu

I already all checked like that but i havnt found any related tables

Regards

Nanda

Read only

0 Likes
1,887

Hi

any one can answer plz

Read only

0 Likes
1,887

Hi,

PM tables

http://erpgenie.com/index.php?option=com_content&task=view&id=180&Itemid=76

But what you will to do? A select? I dont know if exists a table with the both fields.

Tell us what is your need, hope we can help you.

Thanks

Read only

0 Likes
1,887

Hi

Based upon that functional location i have to fetch the work center

Regards

Nanda

Read only

Former Member
0 Likes
1,887

HI,

CRTX

Read only

Former Member
0 Likes
1,887

hi check this ...

T024I -


> PLANGROUP

T001W -


> PLANGROUP_PLANT

TPAR -


>NOTIF_PAR_ROLE

regards,

venkat.

Read only

Former Member
0 Likes
1,888

Hi

can any one suggest me the join condition for the same

Read only

0 Likes
1,887

Ok, try this to use VIAUFKS and AFRV, like:

select arbpl

into table tg_afrv

from afrv

inner join viaufks on viaufksaufnr = afrvaufnr

where viaufks~tplnr in s_tplnr.

RP