Field "VAL6" is unknown. It is neither in one of the specified tables nor

Hello
In following report:
"REPORT  ZRSETESTD.
data: val1 type t value '000000',
       val2 type t value '240000',
       val3 type d value '20000101',
       val4 type d value '20080415',
       va15(30) type c value '/CWM/STPPOD',
       va16(30) type c value 'ZRHRMD_ABA'.
SUBMIT RSETESTD
WITH gs_creti BETWEEN val1 AND val2 SIGN 'I'    "assuming CREATED_AT is select option in RSETESTD program
WITH gs_creda BETWEEN val3 AND val4 SIGN 'I'   "assuming CREATED_ON is select option too
WITH gs_mesty BETWEEN val5 AND val6 SIGN 'I'."
I get error:
"Program ZRSETESTD
Field "VAL6" is unknown. It is neither in one of the specified tables
nor defined by a "DATA" statement . . . . . . . . . ."

You have declared "va16" change it to VAL6.

Similar Messages

  • As of today, neither sample songs on the music store nor songs already downloaded will play correctly.  They are stuttery and slow.  I have iTunes 10.5 and have not downloaded any upgrades for anything recently.  They were working last night. Thoughts?

    As of today, neither sample songs on the music store nor songs already downloaded will play correctly.  They are stuttery and slow.  I have iTunes 10.5 and have not downloaded any upgrades for anything recently.  They were working last night. Thoughts or advice?

    I found a solution that worked for me.  Here is what I did and where I found it.
    "Looks like I tracked down the problem, it worked for me so I hope this works for everyone else experiencing problems.  Go to your Task Manager and locate the program APSDaemon.exe (Apple Push)..... if you see this executing terminate the program and then startup iTunes and it should come up fine.  You will see afterwards that APSDaemon.exe (Apple Push) starts back up but this is fine as long as iTunes has already started.
    I tried playing both music and syncing up my iPhone with no problems.  Note if you shutdown iTunes again you will have to terminate the process APSDaemon.exe (Apple Push) again.  Haven't had time to see what in the world Apple Push is but this appears to have corrected the problem so that you can at least use iTunes and sync any device that needs to be synced.
    Hope that helps everyone!"
    https://discussions.apple.com/message/16998456#16998456

  • Field is unknown. it is neither in one of specified tables nor defined by data statement

    Hello,
    I'm doing enhancement  to filter the data for the input parameters. Also I've coded implicit enhancement for the selection parameters to be displayed on standard IE05 selection screen.
    Defined a block as follows in standard  program RIHEQUI20
    selection selectio begin of block b1 with frame title text-099.
    select-options:
                        cre_date for equi-zzcreate_date,
                        lp_pdate for equi-zzprint_date.
    selection selectio end of block b1.
    now to filter the data corresponding to the input in selection parameters i've explicit enhancement point in which added coded in where condition
    as
    zzcreate_date IN cre_date
    AND zzprint_date IN lp_pdate
    but error message showing the above heading
    Solution for that....PLZ help!!

    Hello,
    below is code for pragram RIHEQUI20...
    ENHANCEMENT-POINT RIEQUI20_G6 SPOTS ES_RIEQUI20 STATIC.
    *$*$-Start: RIEQUI20_G6-------------------------------------------------------------------------$*$*
    ENHANCEMENT 5  MGV_GENERATED_RIEQUI20.    "active version
    START-OF-SELECTION.
    ENDENHANCEMENT.
    *$*$-End:   RIEQUI20_G6-------------------------------------------------------------------------$*$*
    ENHANCEMENT-POINT RIEQUI20_G7 SPOTS ES_RIEQUI20.
    *$*$-Start: RIEQUI20_G7-------------------------------------------------------------------------$*$*
    ENHANCEMENT 6  MGV_GENERATED_RIEQUI20.    "active version
       LOOP AT mgv_matnr_selopt_tab.
         CONCATENATE mgv_matnr_selopt_tab-name'[]' INTO
         mgv_matnr_selopt_tab-name.
         ASSIGN (mgv_matnr_selopt_tab-name) TO <mgv_matnr_selopt_conv>.
         IF sy-subrc IS INITIAL.
           CALL FUNCTION 'MGV_SELOP_AFTER_START_OF_SEL'
                EXPORTING
                     SELOPT_NAME = mgv_matnr_selopt_tab-name
                TABLES
                     RANGE       = <mgv_matnr_selopt_conv>.
         ENDIF.
       ENDLOOP.
    ENDENHANCEMENT.
    ENHANCEMENT 1  ZPM_BARCODE_SCREEN_EHNANCMENT1.    "active version
    *  SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME.
    *    PARAMETERS: pa type equi-zzcreate_date.
    *    SELECTION-SCREEN end of BLOCK b1.
    ENDENHANCEMENT.
    *$*$-End:   RIEQUI20_G7-------------------------------------------------------------------------$*$*
    INCLUDE miequi20.
    """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""$"$\SE:(1) Include RIEQUI20, End                                                                                                                             S
    *$*$-Start: (1)---------------------------------------------------------------------------------$*$*
    ENHANCEMENT 2  ZPM_BARCODE_SCREEN_EHNANCMENT1.    "active version
        SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-099.
         select-OPTIONS:
           Cre_Date for equi-zzcreate_date,
           lp_pdate for equi-zzprint_date,
           lp_tdate for equi-zztag_date,
           lp_sdate for equi-zzscan_date,
           lp_count for equi-zzprint_no.
         SELECTION-SCREEN end of BLOCK b1.
    ENDENHANCEMENT.
    *$*$-End:   (1)---------------------------------------------------------------------------------$*$*
    And for data to filter according to select-option , implemented an explicit enhancement in section.
    code for that is in include miequi20

  • E:Field "SOURCE_PACKAGE" is unknown.

    Hi guys,
    I've got a strange error. In a standard End Routine, on the right place I want to loop at RESULT_PACKAGE. The error occurs:
    E:Field "RESULT_PACKAGE" is unknown. It is neither in one of the specified tables nor defined by a "DATA" statement. "DATA" statement.
    I see the standard SAP declaration:
        METHODS
          end_routine
            IMPORTING
              request                  type rsrequest
              datapackid               type rsdatapid
            EXPORTING
              monitor                  type rstr_ty_t_monitors
            CHANGING
              RESULT_PACKAGE              type tyt_TG_1
            RAISING
              cx_rsrout_abort.
    So, what can the problem be? Any Idea?
    Best Regards
    Neven
    Edited by: Neven Terziev on Mar 30, 2010 5:10 PM

    Hi Neven,
    You have to write ebd routine like this:
      METHOD end_routine.
    *=== Segments ===
        FIELD-SYMBOLS:
          <RESULT_FIELDS>    TYPE tys_TG_1.
    $$ begin of routine - insert your code only below this line        -
        loop at RESULT_PACKAGE assigning <RESULT_FIELDS>
          where vtype eq '010' or vtype eq '020'.
          case <RESULT_FIELDS>-vtype.
            when '010'.
              <RESULT_FIELDS>-/bic/zplactual = 'A'. "Actual
            when '020'.
              <RESULT_FIELDS>-/bic/zplactual = 'P'. "Plan
          endcase.
        endloop.
    $$ end of routine - insert your code only before this line         -
      ENDMETHOD.                    "end_routine
    Source: SAP Documentation
    Do not forget to insert your code only after line $$ begin of routine - insert your code only below this line        -.

  • Error In smartform - FOOTERTEXT     Field "EQ" is unknown.

    Hi all,
    I am getting an error in smartform in the FOOTERTEXT     - Field "EQ" is unknown. It is neither in one of the specified tables nor defined by a "DATA" statement. .
    What is the problem and how to fix this error
    Thanks in advance
    Neela

    Hi,
    I checked in the coding i get the error in this line of the coding
    IF &3 EQ 'T'.
        %L_NAME = &1-PARAMETER.
      ENDIF.
    pls help me in debugging this error.
    Thanks in advance,
    Neela

  • Editable ALV tutorial -Field "R_PARAM" is unknown.

    Hi,
    I am practicing [ALV Editable Tutorial|https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/3133474a-0801-0010-d692-81827814a5a1].
    I am stuck at Implement event handler ONDATACHECK.
    METHOD ondatacheck .
    DATA: node_node_flighttab TYPE REF TO if_wd_context_node,
    elem_node_flighttab TYPE REF TO if_wd_context_element,
    lt_sflight TYPE if_resultview=>elements_node_flighttab.
    * save data only if no error has occured
    CHECK r_param->t_error_cells IS INITIAL.
    * navigate from <CONTEXT> to <NODE_FLIGHTTAB> via lead selection
    node_node_flighttab
    = wd_context->get_child_node( name = `NODE_FLIGHTTAB` ).
    When I do a syntax check I am etting following message.
    I guess I need to create a parameter R_PARAM.. What Should i refer it to? or am i doing something
    wrong?
    Error:
    Method ONDATACHECK
    Field "R_PARAM" is unknown. It is neither in one of the specified
    tables nor defined by a "DATA" statement. .
    Rgds
    Vara

    Resolved it.
    I missed this.. part
    1 Select Method type as 'Event Handler'
    2. In the Event Column, Do F4 and select 'On DATA' Event.
    Rgds
    vara

  • Adding custom fields to the condition table in CRM

    Hi all,
    Our requirement is to download the sales conditions type from R3 to the CRM system. In one of the condition table we are trying to add shipping point( VSART ) and Special processing indicator (SDABW).
    For that we have added the fields in the structure CND_MAPT_ACS_REM_CUST (Comm. Structure Condition Exchange Customer Exit R/3 Fields) and we have added the fields in the field catelog in transaction ( /SAPCND/CTCT - Maintain Condition Tables). Then we have mapped these fields in the view V_CND_MAP_CNVFLD.
    Finally we run the adapter object of that particular table to download the details from R3, but the condition table in CRM is not getting activated, so the adapter object is giving the error.
    Please help in this.
    Thanks & Regards,
    Raghuram.

    Hello Raghuram,
    I feel that your issue is similar what i have faced, refer to my post:
    Link: [Issue in customer specific price;
    For solving this you can refer to detailed steps in,  Note 514952 - Download of customer-specific tables.
    Also additionaly you may need to run the report /sapcnd/rv12n001, as i also had to do so.
    If not solved then let me know the relevant message in SLG1
    Regards

  • How to know the corresponding Table-fields in R/3 for fields in BW

    Hi,
    We need to enhance the extractor for 0CUSTOMER_ATTR. We have added some new attributes in 0CUSTOMER in BW and we want to know the corresponding Table-Fields in R/3 from where we can populate the values.
    The list of fields in BW is as follws. All are 0CUSTOMER attributes.
    I am searching on the internet. If you know any link/place where I can find the corresponding fields, please let me know.
    0AF_CUSTDC
    0AF_CUSTID
    0CITY_2
    0DB87SIC1
    0DBANSALES
    0DBAREACOD
    0DBCTRYCOD
    0DBCTYNAM
    0DBCUSTAT
    0DBDISTRCOD
    0DBEMPBND
    0DBEMPTOT
    0DBGUDUNS
    0DBHQDUNS
    0DBBLGLSTAT
    0DBLOCACOD
    0DBREGCOD
    0DBSALBND
    0DBSECTCOD
    0DBYRSBND
    0DBYRSTD
    0DB_MAKTCOD
    0DB_MATCDS
    0FAX_NUM
    0ID_TXNUMB3
    0ID_XCPD
    0LANGU
    0POBOX_LOC
    0SORTL
    0TAX_NUMB2
    0DBTRDSTYL
    0DBADDRES1
    0DBADDRES2
    0DBCTRYNA
    0DBSTPRCOD
    0DBPOSTCOD
    0DBNATID
    0DBNATIDCO
    0DBTELPHON
    0DBCEONAME
    0DBLNOFBUS
    0DBANSLUS
    0DBCURNCCO
    0DBEMPHERE
    0DBSUBCODE
    0DBHQNAME
    0DBHQCTYNM
    0DBHQSTPR
    0DBHQCTRYN
    0DBULDUNS
    0DBULNAME
    0DBULCTYNM
    0DBGUCTRYN
    0DBGUCTRYC
    0DBGUNAME
    0DBNUMFAM
    0DBHIERCO
    0DBFAMUPDT
    0DBBUSNAME
    0DB_MATCH
    Thanks,
    Naveen Choudhary

    Naveen,
    Check http://help.sap.com/search/highlightContent.jsp
    Also see Re: 0customer_attr enhancement
    If the source fields in R/3 are standard, you should be able to find the mapping in the help documentation. If its extension field, then you got to see which extractor (based on the base table extension) suits the best and extend it accordingly else create a new generic extractor.
    Hope it helps

  • The field "SOURCE_PACKAGE" is unknown IN THE START ROUTINE?

    Hi all,
    i am trying to create a start routine in the DTP FROM THE CUBE TO THE OPEN HUB.
    But when i check the syntax : it throws me an error message stating.
    The field "SOURCE_PACKAGE" is unknown IN THE START ROUTINE?
    how come the source package is unknow in the start routine can anyone pls advise  me on this!!
    DATA: l_tabix TYPE sy-tabix, wa_source_package TYPE tys_sc_1.
    LOOP AT SOURCE_PACKAGE INTO wa_source_package.
    l_tabix = sy-tabix.
    IF wa_source_package-SALES EMP EQ ' '.
    DELETE SOURCE_PACKAGE
    WHERE SALESEMP EQ ' '.
    INDEX l_tabix.
    ENDIF.
    ENDLOOP.

    Hi Pooja,
    I think that the error comes from the delete statement.
    As you already said, the SOURCE_PACKAGE is from BI7.0. That means that the LOOP AT statement cannot be wrong (although I prefer field-symbols)
    I would restate you code like below:
    DATA: l_tabix TYPE sy-tabix,
          wa_source_package TYPE _ty_s_sc_1.
    LOOP AT SOURCE_PACKAGE ASSIGNING <source_fields>.     "<source_fields> is declared as line from source_package
    * l_tabix = sy-tabix.
      IF <source_fields>-SALES_EMP IS INITIAL.
        DELETE <source_fields> FROM SOURCE_PACKAGE.
    * If this line does not work, try to add TABLE after the FROM-statement
    *WHERE SALESEMP EQ ' '.
    *INDEX l_tabix.
      ENDIF.
    ENDLOOP.
    Hopefully this will help.
    Alternatively you can try a single statement, because it is not necessary to do a loop.
    DELETE SOURCE_PACKAGE WHERE sales_emp IS INITIAL.
    Good luck!
    Steven Groot
    Edited by: S. Groot on Aug 11, 2010 7:50 AM

  • The field "GLTPC" is unknown, but there is a field with the similar name*

    Hi all
    When i am running the report painter reports in SAP
    i am getting this error .
    Syntax error in program    SAPFGRWG
    in include                  FGRWGE60
    in line                      19
    Last changed by            SAP
    Author                     SAP
    The field "GLTPC" is unknown, but there is a field with the similar name
    "GLTPC".*
    Please help me whenever
    Regards,
    suchithra
    Edited by: Rob Burbank on May 22, 2009 9:00 AM

    Hi All
    All 8A group Report painter reports i.e GLPCt table Reports are not executed properly
    Can you please help me out
    Regards,
    suchithra

  • Problem on Export to Excel - converts Long type field to General (Unknown)

    hello! i used JSP to export table data to excel.. there's nothing wrong with the data displayed.. But the problem is.. when one of the fields is computed and retrieved in the JSP, and then exported to excel, it converts the Long type field to General and therefore cannot be computed when being used in a formula. Also, when you change it's type by right clicking the cell and chose "Format Cells", it still can't change it's type to number even if you have it changed. Therefore can't be computed..
    I have other number fields but they were just retrieved and not computed as they were exported to excel.. But they don't change their types like the computed ones..
    please help.. thanks

    hello! i used JSP to export table data to excel..Yuck. :p Didn't even consider it being possible. I'd use a servlet anyway, after all, it's designed to be able to stream out non-HTML.
    there's nothing wrong with the data displayed.. But
    the problem is.. when one of the fields is computed
    and retrieved in the JSP, and then exported to excel,
    it converts the Long type field to General and
    therefore cannot be computed when being used in a
    formula. Well, since there is no class in the standard API that handles Excel files, you migh want to ask the support of whoever provided your tool.

  • Possible bug? Nested tables and quantity fields in the nested table.

    Hey guys,
    I have witnessed a weird bug, maybe someone can clarify this for me.
    1. Create a nested table. The inner table contains a quantity field of type DZIEME (FROM VBAP-ZIEME).
    2. Create your interface and just put this table in the import section. Try to activate. It will work.
    3. Create an adobe form for it and a program and execute it. You'll get a short dump saying that VBAP-ZIEME is unknown and that there are errors in the dynamically generated function.
    Second test.
    1. Create a nested table. The outer table contains a quantity field of type DZIEME (FROM VBAP-ZIEME).
    2. Create your interface and just put this table in the import section. Try to activate. It will NOT work.
    You have to make the addition of the quantity fields in Currency/Quantity Fields.
    From this I see that the checker, doesn't look into nested tables for quantity/currency fields and just activates the interface.
    Third test
    1. Create a nested table. The inner table contains a quantity field of type DZIEME (FROM VBAP-ZIEME).
    2. Create your interface:
    2.a. Put this table in the import section.
    2.b. Declare the nested Quantity field in the Currency/Quantity Fields section, using the autofiller (the buttons to the right of the field)
    2.c Try to activate. It will work.
    3. Create an adobe form for it and a program and execute it. You'll get a short dump which for some reason has no info.
    From this, I understand that the Currency/Quantity Fields section may not declare the quantity fields, from nested tables, correctly.
    What do you guys think? What am I doing wrong?
    Thanks,

    @Anne Kathrine P...
    By nested tables I mean creating table types, in the dictionary (se11) then in the interface>Import section adding a parameter X TYPE B_T.
    i.e.
    Structure A
    Table type of structure A, A_T
    Structure B containing a field of table type A
    Table type B of structure B, B_T.
    The issue can be easily solved for Z tables by changing the component type from quantity to decimal type.

  • Perl SAP::Rfc - input tables - The specified type Typ rfcdes is unknown.

    I am pretty new to SAP and am working to understand the guts of it while also trying to do something useful, especially understanding how we could use Perl Sap::RFC.  I've been looking for days and making a little progress over time, but now I'm stuck.
    Problem Summary:
    I want to read the RFCDES table using RFC_READ_TABLE to get a dump of what's in there.   It is apparently too large for a plain RFC_READ_TABLE, but I discovered that by defining the fields that I want, I can get out what I need.  I did this by successfully executing RFC_READ_TABLE in SE37 for the RFCDES table by defining entries in the FIELDS table, but I can't figure out the right way to send a table as input to SAP via SAP::Rfc.
    Background:
    I am using SAP::Rfc v 1.55 on linux with 640,0,303 release of the rfcsdk.
    I am getting the error:
    RFC call failed: EXCEPT SYSTEM_FAILURE  GROUP   104     KEY     RFC_ERROR_SYSTEM_FAILURE        MESSAGE The specified type Typ rfcdes is unknown. at /home/<userid>/local/lib/perl5/site_perl/5.8.5/i386-linux-thread-multi/SAP/Rfc.pm line 1055.
    Here is my code block (minus connect info):
    my $it = $rfc->discover("RFC_READ_TABLE");
    $it->QUERY_TABLE("rfcdes");
    $it->ROWCOUNT( 30 );
    $it->OPTIONS( ["NAME LIKE 'SAP%'"] );
    my $str = $it->tab('FIELDS')->structure; # I think this line is extraneous
    $it->FIELDS([{ FIELDNAME => "RFCDEST", OFFSET=> "000000", LENGTH => "000000",  FIELDTEXT=> ""}]);
    $rfc->callrfc( $it );
    $rfc->close();
    The parameters to FIELDS are what worked in SE37.  I would eventually like to return more than just rfcdest (such as RFCOPTIONS) but at this point, anything working would be good
    I have successfully done an RFC_READ_TABLE with SAP::Rfc (using the tables.pl example) so I'm pretty sure I have that working but I think the FIELDS input/output table is throwing me off.  Maybe I'm not understanding the array of hashes correctly?
    I have looked at the thread SAP-::Rfc with Perl which got me this far but I'm still missing something.  Can anyone please help?
    Thank you for your time.

    You might want to check out the newer SAPNW::Rfc.  Not sure what version system you're connecting to.
    Anyway, here's how I did RFC_READ_TABLE with SAP::Rfc years ago:
    my $IT = $RFC->discover("RFC_READ_TABLE");
    $IT->QUERY_TABLE('TBTCO');
    $IT->OPTIONS( ["ENDDATE = '$MAXDATE' AND ENDTIME > '$MAXTIME' OR ENDDATE > '$MAXDATE'"] );
    my @FLDARRAY = qw(JOBNAME JOBCOUNT JOBCLASS PERIODIC REAXSERVER RELUNAME SDLUNAME
    AUTHCKMAN EVENTID SDLSTRTDT SDLSTRTTM STRTDATE STRTTIME ENDDATE ENDTIME STATUS);
    $IT->FIELDS([@FLDARRAY]);
    $RFC->callrfc( $IT );
    print "Num Rows in PRD matching selection criteria: ".$IT->tab('DATA')->rowCount()." \n";
    for my $ROW ( $IT->DATA ) {
       #do stuff;
    $RFC->close();
    Cheers,
    David.
    For reference, here's my wiki profile, where you can find my blogs on SAPNW::Rfc, and some sample scripts.
    http://wiki.sdn.sap.com/wiki/display/profile/David+Hull
    Edited by: David Hull on Mar 28, 2010 10:05 AM

  • How to find out the user who has created  a new field in the custom table.

    How to find out the user details who has created  a new field in the custom table.
    Thanks,
    Joan

    Hi Jesudasan ,
    You can know the user details with version management.Please find the
    below procedure to know.
    Go to table->Utilities tab->version->Version management->Compare the previous one .
    Hope this solves the issue,Let me know if you have any issues.
    Thanks,
    Rajani

  • How to Track the changes made to the custom table field value

    I want to track the changes made to the custom table field value in table maintenance generator.please help me it is very urgent
    Thanks & Regards,
    Kranti

    Hi Satya,
    These are the steps you've to do.
    1. Enable the change document flag in the data element level for the fields of the tables you want to monitor.
    2. Go to transaction SCDO. Create a new change object, and add your table to this object. After generation, you'll get a function module.
    3. Call this function module in the table maintainence generator screen, after the data is saved to the database table. This function module automaticallly writes the changes, with the old and new values, and the fields that were changed to the tables CDHDR and CDPOS.
    4. You can keep track of the changes made to the table by monitoring these tables.
    Regards
    Anil Madhavan

Maybe you are looking for

  • MBPro w/Mini DisplayPort to Cinema Display w/only USB and Firewire ports?

    I've searched the threads for something that will explain what kind of cable I need to use my Cinema Display with my MacBook Pro, and I'm not finding anything. The MacBook Pro has the Mini DisplayPort for video out, and the Cinema Display's only port

  • My mail needs to be recovered and i have no start up discs

    When I try to open my mail a message comes up saying I cant open in 4.5-wont work with my version of mac os x -There is no mail app in the applications folder h-ow do I update w/o a disc

  • My iPod Touch keeps freezing! WHY?!

    I have the 8GB, 4th Generation iPod Touch with software version 4.2.1. It's about two years old and has recently begun to freeze (no colored pages, just frozen on whatever screen it was on when it froze). It happens when I am playing and exploring my

  • How can I make a call to *190*phone number# in c#?

    Hi, I am trying to create an app as shortcut for some requests. I want to make a call to this number: *190*phone number# using c# but it never works. On the phone, I can call this number and I get a reply from my provider. If I try to call it using:

  • Set a max Upload quantity dreamwaver php and mysql

    The issue, using dreamweaver php and mysql I Would like to set a max quantity limit on file upload per user. i.e max 5 uploaded images allowed per user. Here is a basic example of the creation. Just need the implementation of how to set a max upoad l