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

AA Master tables

Former Member
0 Likes
4,142

Hi everyone,

Can someone tell me what is the master table where i can saw the corresponding fields to strut

RA02S-XNEU_AM

RA02S-XGBR_AM.

Thanks in advance.

1 ACCEPTED SOLUTION
Read only

RaymondGiuseppi
Active Contributor
0 Likes
2,597

In fact it comes from ANLA from field XAFABCH. But the value of this field is converted to two checkboxes :

  CASE anla-xafabch.

    WHEN 'X'. " Asset acquired used

      ra02s-xgbr_am = 'X'.

      ra02s-xneu_am = space.

    WHEN space. " Asset acquired new

      ra02s-xgbr_am = space.

      ra02s-xneu_am ='X'.

    WHEN 'Y'. " Undefined

      ra02s-xgbr_am = space.

      ra02s-xneu_am = space.

  ENDCASE.

Regards,

Raymond

In fact it comes from ANLA from field XAFABCH. But the value of this field is converted to two checkboxes :

  CASE anla-xafabch.

    WHEN 'X'. " Asset acquired used

      ra02s-xgbr_am = 'X'.

      ra02s-xneu_am = space.

    WHEN space. " Asset acquired new

      ra02s-xgbr_am = space.

      ra02s-xneu_am ='X'.

    WHEN 'Y'. " Undefined

      ra02s-xgbr_am = space.

      ra02s-xneu_am = space.

  ENDCASE.

Regards,

Raymond

5 REPLIES 5
Read only

kakshat
Product and Topic Expert
Product and Topic Expert
0 Likes
2,597

Are you sure those fields are a part of master data?

You can check database tables in package AA in SE80.

Read only

RaymondGiuseppi
Active Contributor
0 Likes
2,598

In fact it comes from ANLA from field XAFABCH. But the value of this field is converted to two checkboxes :

  CASE anla-xafabch.

    WHEN 'X'. " Asset acquired used

      ra02s-xgbr_am = 'X'.

      ra02s-xneu_am = space.

    WHEN space. " Asset acquired new

      ra02s-xgbr_am = space.

      ra02s-xneu_am ='X'.

    WHEN 'Y'. " Undefined

      ra02s-xgbr_am = space.

      ra02s-xneu_am = space.

  ENDCASE.

Regards,

Raymond

Read only

0 Likes
2,597

Hint: How to find (many way, only one here)

- call transaction AS03

- start debug (/H)

- add a watchpoint on ra02s-xgbr_am and ra02s-xneu_am

- click on continue

- input an asset number and press enter

Regards,

Raymond

Read only

0 Likes
2,597

Thanks! Been look everywhere and it was right in front of me!

Read only

Venkat_Sesha
Product and Topic Expert
Product and Topic Expert
0 Likes
2,597

Hi Nuno,

If you dont find any information for the fields from SE11 structure Where used Button

A small hint, how can you search the field where you used in the programs.

Goto the Program RPR_ABAP_SOURCE_SCAN

Skip the Z/Y Programs in the Selection Screen. Search in the Standard program to understand them easily and more efficiently.

Enter the String XNEU_AM or RA02S or XGBR_AM in the Find String parameter.

You will get the result.

hope this solves your problem.