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

E::000 when activating DDL

Former Member
0 Likes
1,070

Hi,

I'm trying to activate the following DDL (besides: no error marks in the editor):

@AbapCatalog.sqlViewName: 'ZISS_DET_ZW_SER'

@ClientDependent: true

@AbapCatalog.compiler.CompareFilter: true

@AccessControl.authorizationCheck: #CHECK

@EndUserText.label: 'Ext. ZP + OBIS -> Serial + ZW'

define view Ziss_Determine_Zw_AND_SERIAL

with parameters

  iv_ext_zp : ext_zp,

  iv_obis : kennziff,

  iv_due_date : date

as select from euitrans as ezp

        inner join euilzw as lzw on lzw.int_ui = ezp.int_ui and ezp.dateto > :iv_due_date and ezp.datefrom <= :iv_due_date

        inner join etdz as zw on lzw.logikzw = zw.logikzw and zw.kennziff = :iv_obis and zw.bis > :iv_due_date and zw.ab <= :iv_due_date

        inner join egerr as eg on eg.equnr = zw.equnr and eg.bis > :iv_due_date and eg.ab <= :iv_due_date

      {

        zw.zwnummer,

        zw.kennziff,

        zw.stanznac,

        eg.geraet

      }

and just get this:

What's the problem (how to diagnose this further)?

Thanks

ADT; 2.51.1

SAP_BASIS7400010SAPKB74010
SAP_APPL6170008SAPKH61708
SAP_AP7000032SAPKNA7032
1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
907

OK, it must be ext_ui not ext_zp (non existing DICT type).

Would be nice to face meaningful error messages/error marks next time....

Hi,

I'm trying to activate the following DDL (besides: no error marks in the editor):

@AbapCatalog.sqlViewName: 'ZISS_DET_ZW_SER'

@ClientDependent: true

@AbapCatalog.compiler.CompareFilter: true

@AccessControl.authorizationCheck: #CHECK

@EndUserText.label: 'Ext. ZP + OBIS -> Serial + ZW'

define view Ziss_Determine_Zw_AND_SERIAL

with parameters

  iv_ext_zp : ext_zp,

  iv_obis : kennziff,

  iv_due_date : date

as select from euitrans as ezp

        inner join euilzw as lzw on lzw.int_ui = ezp.int_ui and ezp.dateto > :iv_due_date and ezp.datefrom <= :iv_due_date

        inner join etdz as zw on lzw.logikzw = zw.logikzw and zw.kennziff = :iv_obis and zw.bis > :iv_due_date and zw.ab <= :iv_due_date

        inner join egerr as eg on eg.equnr = zw.equnr and eg.bis > :iv_due_date and eg.ab <= :iv_due_date

      {

        zw.zwnummer,

        zw.kennziff,

        zw.stanznac,

        eg.geraet

      }

and just get this:

What's the problem (how to diagnose this further)?

Thanks

ADT; 2.51.1

SAP_BASIS7400010SAPKB74010
SAP_APPL6170008SAPKH61708
SAP_AP7000032SAPKNA7032
1 REPLY 1
Read only

Former Member
0 Likes
908

OK, it must be ext_ui not ext_zp (non existing DICT type).

Would be nice to face meaningful error messages/error marks next time....