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

Error in ABAP/4 code

Former Member
0 Likes
432

I have added some fields and did in the append. In the Function Module I did some join and at the end it gives me the error of all the field which where added in the append one of them is the below one. Can anyone one have suggestion to this

The data object "L_S_CATS_IS_1" has no component called "ZZ_MVORNR",

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
396

Hi Ashok,

Difficult to understand what you problem is without detail - if the suggenstions here don't work you will have to repost with how you added your fields and which function, but....

If you used CI_CATSDB to add the fields, check that you have activated the objects correctly. If you haven't used a CI structure then it means that all functions using the transfer structure L_S_CATS_IS_1 will be incorrect.

If you have just modified the SAP database object and simply added fields, then it means you only have access to the new fields when the modified object is accessed directly. This is why the CI structures are used - they are referenced in all related structures and types and therefore all related accesses work.

Regards

Gareth

2 REPLIES 2
Read only

Former Member
0 Likes
397

Hi Ashok,

Difficult to understand what you problem is without detail - if the suggenstions here don't work you will have to repost with how you added your fields and which function, but....

If you used CI_CATSDB to add the fields, check that you have activated the objects correctly. If you haven't used a CI structure then it means that all functions using the transfer structure L_S_CATS_IS_1 will be incorrect.

If you have just modified the SAP database object and simply added fields, then it means you only have access to the new fields when the modified object is accessed directly. This is why the CI structures are used - they are referenced in all related structures and types and therefore all related accesses work.

Regards

Gareth

Read only

Former Member
0 Likes
396

Did you activate the structure/table after adding the new fields as APPEND structure? Did you see any errors in the activation log? What standard structure did you append this to?