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 coding in start routine..

Former Member
0 Likes
294

Hello Gurus,

I am having difficulty run this program, can anyone advise?

-


IF wa_datapackage-calday LT l_rundate.

SELECT SINGLE /BIC/AUMR05005

INTO l_latestvisitdate

FROM /BIC/PAUMRSO0200

WHERE fiscper = wa_datapackage-fiscper AND "fiscper

/BIC/AUMR01310 = wa_datapackage-/BIC/AUMR01300 AND "customer

/BIC/AUMR02001 = wa_datapackage-/BIC/AUMR02001 AND "product

/BIC/AUMR03204 = wa_datapackage-/BIC/AUMR03204 AND "questions

/BIC/AUMR03202 = wa_datapackage-/BIC/AUMR03202. "subject

*---

IF sy-subrc = 0.

IF wa_datapackage-calday > l_latestvisitdate.

APPEND wa_datapackage TO lt_datapackage.

ENDIF.

ENDIF.

ELSE.

APPEND wa_datapackage TO lt_datapackage.

ENDIF.

-


The above program gies the following error:

E:"/BIC/PAUMRSO0200" is not defined in the ABAP Dictionary as a table, projection view or database view.

Can you suggest any probable solution?

Thanks & Regards,

JP

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
278

Hi JP,

Check in SE11, /BIC/AUMR05005 may be defined as a structure, not as a table or view.

You may need to use some other table or view.

Reward points if useful.

Regards,

Atish

1 REPLY 1
Read only

Former Member
0 Likes
279

Hi JP,

Check in SE11, /BIC/AUMR05005 may be defined as a structure, not as a table or view.

You may need to use some other table or view.

Reward points if useful.

Regards,

Atish