table relationships for ca23

In the standard t-code CA23 ,we can display specific material's rate routing.In this blog i will show some tables which contain data in the control table of the CA23.

TABLES: MAPL,PLKO,PLPO,PLFL,PLAS,PLFH,CRHD.

Use these tables ,now we can trace standard t-code ca23.

1: Enter the t-code CA23.

2: Go to the first screen,now we can input the material number and plant.These two fields map to MAPL-MATNR and MAPL-WERKS. Leave other fields in the first screen default values.

3: After complete these two fields , chick 'Routing' button on the application toolbar.We can get the routing overview.In the header overview control table ,we can see several tasks of a product.These lines can be get by below SQL statement.
SELECT plnnr plnal FROM MAPL
                WHERE matnr EQ material  AND
                                werks EQ plant       AND
                                plnty    EQ 'R'           AND
                                loekz   NE 'X'.

OK,now we have obtain all tasks of a specific material.
^&^  If you want to get detail routing infomation, you access PLKO table use plnnr and plnal which we obtain just.

4: Select one item in the header overview control table,then click the 'Sequences' button.We will get the sequences of this selected task.Next,we will use below SQL statement to get the contents of 'Parallel Seqs' control table.
SELECT * FROM PLFL
                WHERE plnty EQ 'R'        AND
                                plnnr EQ plnnr  AND
                                plnal EQ selected plnal.

5: Select one line in the 'Parallel Seqs' control table ,click the 'Operations' button.we will get the detail infomation of this sequence.We use below SQL statement.
SELECT * FROM PLAS
                 WHERE plnty EQ 'R'                 AND
                                 plnnr EQ plnnr           AND
                                 plnal EQ plnal           AND
                                 plnfl  EQ plnfl.
SELECT * FROM PLPO
                 WHERE plnty  EQ 'R'               AND
                                 plnnr EQ plnnr          AND
                                 plnkn EQ plnkn.

SELECT arbpl FROM CRHD WHERE OBJTY EQ 'A' AND ARBID EQ PLPO-ARBID. " WORK CENTER
The result of the SQL statement are the same with the 'Operation overview' control table.

OK,that is all.

Next blog i will explain some steps that use BDC way to call CA22.

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值