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

hierarchy area

Former Member
0 Likes
569

Hello ,

1) In transaction ks01(create cost center)....

IN basic screen ,I am trying to enter to fill Hierarchy area,But f4 help found no data in it...

So to maintain data for Hierarchy area(CSKSZ-KHINR) which table needs to be updated

2) While doing the call transaction ,While recording (SHDB)...If you needs to handle the View for example in mm01...How to handle in the BDC program.I mean While recording ,we need to select the view which we want...But how we will include this in BDC program...Is it just normal like selecting other fields with field values..

Thanks in advance

Hello ,

1) In transaction ks01(create cost center)....

IN basic screen ,I am trying to enter to fill Hierarchy area,But f4 help found no data in it...

So to maintain data for Hierarchy area(CSKSZ-KHINR) which table needs to be updated

2) While doing the call transaction ,While recording (SHDB)...If you needs to handle the View for example in mm01...How to handle in the BDC program.I mean While recording ,we need to select the view which we want...But how we will include this in BDC program...Is it just normal like selecting other fields with field values..

Thanks in advance

2 REPLIES 2
Read only

Former Member
0 Likes
492

Hi...

About your secod query, plz use folling data in the BDC program.

Here I used View selection for Basic data1, Basic Data2 and Classification.

SAPLMGMM 0070 X BDC_CURSOR MSICHTAUSW-DYTXT(03)

BDC_OKCODE =ENTR

MSICHTAUSW-KZSEL(01) X

MSICHTAUSW-KZSEL(02) X

MSICHTAUSW-KZSEL(03) X

Rewar points if useful.

Thanks & Regards

vinsee

Read only

Former Member
0 Likes
492

Yes...u need to code like other i/p fields for BDC

perform bdc_dynpro using 'SAPLMGMM' '0070'.

perform bdc_field using 'BDC_CURSOR'

'MSICHTAUSW-DYTXT(03)'.

perform bdc_field using 'BDC_OKCODE'

'=ENTR'.

perform bdc_field using 'MSICHTAUSW-KZSEL(01)'

'X'.

perform bdc_field using 'MSICHTAUSW-KZSEL(02)'

'X'.

perform bdc_field using 'MSICHTAUSW-KZSEL(03)'

'X'.

This will resolve your problem.

Thanks & Regards

vinsee