Warning message in view table

Hi Friends,
I am getting an warning message while activating : a z view table (ekko ekpo join) .
message is " Search help MAT1 not inherited: Basis field EKPO-EMATN missing in view "
please suggest me !!!

Hello Prasad
Is the field EKPO-EMATN a view field? If not this may be the reason for the warning.
On ERP 6.0 collective search help MAT1 contains search help MAT1_MPN which contains the parameters:
MATNR_HTN     EMATN
MATNR_B     MATNR
Since MATNR_HTN (data element EMATN) is defined as IMPORT/EXPORT the search help probably "supposes" that the underlying object (in your case the z-view) should reference an field having the same data element.
Regards
  Uwe

Similar Messages

  • Warning messages recieved when activating z* tables after refresh.

    Hi all,
    We are having a problem in activating tables. After the system refresh, while activating z* tables warning messages are recieved. Some of the warnings recieved are as follows:
    Index LIKP-BGR is not in customer namespace.
    Enhancement category for table missing.
    Enhancement category for include or sub-type missing.
    It appears that the tables with "enhancement categories" set to "not classified" are the ones posing the problems.
    Earlier, this problem was not there. But after a technical weekend the issues are being faced.
    The details of the system are:
    Application Server beevssp1_RQ1_00
    SAP Kernel Information
    SAP Kernel :  700_REL
    Database Client Library : OCI_102 (10.2.0.2.0)
    created in  :  AIX 2 5 005DD9CD4C00
    created on  :  Oct 26 2008 20:51:39
    Support Level  :  0
    Kernel Patch number : 183
    Source ID  :  0.183
    DBSL Patch No. : 167
    ICU Version : 3.0 Unicode Version 4.0.1
    libsapu16 Version : 1.0025  Oct 24 2008 20:54:38
    Supported Environment
    SAP Database Version
    700
    Database
    ORACLE 9.2.0..
    ORACLE 10.1.0..
    ORACLE 10.2.0..
    Operating System
    aix 1 5
    aix 2 5
    aix 3 5
    aix 1 6
    Please suggest.

    Hi varsha,
    Index LIKP-BGR is not in customer namespace.
    Enhancement category for table missing.
    Enhancement category for include or sub-type missing.
    For this goto SE11
    Enter the table name .
    Click on Display               .
    Go to Extras-->Enhancement Category.
    select radio button for Can be enhanced Deep.
    Click on continue.
    This will resolve your issue.
    Let me know if you have any problem....
    Thanks & Regards,
    Sudheer.
    Edited by: sudheer chowdhary on Dec 22, 2008 8:02 PM

  • SQL Developer 1.5.1 - warning messages generated by CREATE TABLE

    Hi,
    Have an issue with a CREATE TABLE statement - it works correctly, but generates a warning message when used in SQL Developer (1.2 or 1.5.1). Full test case below:
    Setup:
    drop table samplenames;
    drop table customers;
    drop table phones;
    drop table customers_phone;
    drop sequence primkey;
    create table samplenames
    (name VARCHAR2(10));
    insert into samplenames values ('dan');
    insert into samplenames values ('joe');
    insert into samplenames values ('bob');
    insert into samplenames values ('sam');
    insert into samplenames values ('weslington');
    insert into samplenames values ('sue');
    insert into samplenames values ('ann');
    insert into samplenames values ('mary');
    insert into samplenames values ('pam');
    insert into samplenames values ('lucy');
    create sequence primkey
    start with 1000000
    increment by 1;
    create table customers as
    select primkey.nextval as cust_id,
    tmp1.name || tmp2.name as first_name,
    tmp3.name || tmp4.name || tmp5.name as last_name
    from samplenames tmp1,
    samplenames tmp2,
    samplenames tmp3,
    samplenames tmp4,
    samplenames tmp5;
    CREATE TABLE PHONES AS
    SELECT cust_id, 'H' as phn_loc, trunc(dbms_random.value(100,999)) as area_cde,
    trunc(dbms_random.value(1000000,9999999)) as phn_num
    FROM customers;
    INSERT INTO PHONES
    SELECT cust_id, 'B' as phn_loc, trunc(dbms_random.value(100,999)) as area_cde,
    trunc(dbms_random.value(1000000,9999999)) as phn_num
    FROM customers;
    --randomly delete ~10% of records to make sure nulls are handled correctly.
    delete from phones
    where MOD(area_cde + phn_num, 10) = 0;
    create table statement (there are legacy reasons for why this is written the way it is):
    CREATE TABLE customers_phone NOLOGGING AS
    SELECT cst.*,
    piv.HOME_PHONE,
    piv.WORK_PHONE
    FROM (SELECT cust_id,
    MAX(decode(phn_loc, 'H', '(' || area_cde || ') ' ||
    substr(phn_num,1,3) || '-' || substr(phn_num,4,4), NULL)) AS HOME_PHONE,
    MAX(decode(phn_loc, 'B', '(' || area_cde || ') ' ||
    substr(phn_num,1,3) || '-' || substr(phn_num,4,4), NULL)) AS WORK_PHONE
    FROM phones phn
    WHERE phn_loc IN ('H', 'B')
    AND cust_id IS NOT NULL
    AND EXISTS (SELECT NULL
    FROM customers
    WHERE cust_id = phn.cust_id)
    GROUP BY cust_id) piv,
    customers cst
    WHERE cst.cust_id = piv.cust_id (+)
    Warning message output:
    "Error starting at line 1 in command:
    CREATE TABLE customers_phone NOLOGGING AS
    SELECT cst.*,
    piv.HOME_PHONE,
    piv.WORK_PHONE
    FROM (SELECT cust_id,
    MAX(decode(phn_loc, 'H', '(' || area_cde || ') ' || substr(phn_num,1,3) || '-' || substr(phn_num,4,4), NULL)) AS HOME_PHONE,
    MAX(decode(phn_loc, 'B', '(' || area_cde || ') ' || substr(phn_num,1,3) || '-' || substr(phn_num,4,4), NULL)) AS WORK_PHONE
    FROM phones phn
    WHERE phn_loc IN ('H', 'B')
    AND cust_id IS NOT NULL
    AND EXISTS (SELECT NULL
    FROM customers
    WHERE cust_id = phn.cust_id)
    GROUP BY cust_id) piv,
    customers cst
    WHERE cst.cust_id = piv.cust_id (+)
    Error report:
    SQL Command: CREATE TABLE
    Failed: Warning: execution completed with warning"
    I am on 10.2.0.3. The CREATE TABLE always completes successfully, but the warning bugs me, and I have had no success tracking it down since there is no associated numberr.
    Anyone have any ideas?

    Hi ,
    The Oracle JDBC driver is returning this warning so I will be logging an issue with them, but for the moment SQL Developer will continue to report the warning as is.
    The reason for the warning is not clear or documented as far as I can tell,
    but I have replicated the issue with a simpler testcase which makes it easier to have a guess about the issue :)
    ----START
    DROP TABLE sourcetable ;
    CREATE TABLE sourcetable(col1 char);
    INSERT INTO sourcetable VALUES('M');
    DROP TABLE customers_phone;
    CREATE TABLE customers_phone AS
    SELECT MAX(decode(col1, 'm','OK' , NULL)) COLALIAS
    FROM sourcetable;
    ----END
    The warning occurs in the above script in SQL Developer , but not in SQL*Plus.
    The warning disappears when we change 'm' to 'M'.
    The warning disappears when we change NULL to 'OK2'
    In all cases the table creates successfully and the appropriate values inserted.
    My gut feeling is ...
    During the definition of customers_phone, Oracle has to work out what the COLALIAS datatype is.
    When it sees NULL as the only alternative (as sourcetable.col1 = 'M' not 'm') it throws up a warning. It then has to rely on the 'OK' value to define the COLALIAS datatype, even though the 'OK' value wont be inserted as sourcetable.col1 = 'M' and not 'm'. So Oracle makes the correct decision to define the COLALIAS as VARCHAR2(2), but the warning is just to say it had to use the alternative value to define the column.
    Why SQL*Plus does not report it and JDBC does, I'm not sure. Either way it doesn't look like a real issue.
    Again, this is just a guess and not a fact.
    Just though an update was in order.
    Regards,
    Dermot.

  • Warning message on MRP view

    Hi consultants,
    I have a material that is specified as "External Procurement" Material.   It is because it's a Subcon material.  In line with this, a production version is maintained due to some business process requirement, which the system allows.  But there is a warning message "Production versions are not required with external procurement" (Message no. M3637) that comes up everytime we click the production version in MRP 4. 
    Client wants to remove the message totally, how do we do this gurus?
    Thanks,
    Kumar

    Hi Kumar,
    If you want to maintain production version for the externally procured material as it is sub contracted, then first
    1. assign special procurement key in MRP 2 view procurement tab as the 30 (subcontracting).
    Now try to assign production version, it will work.
    2. And if you want to change message from error message to information message then go to transaction code OPJB & then change this meassage to information meassge.
    After this system will allow you to proceed.
    Hope this will resolve your issue, reward points if helpful.
    Regards,
    Avinash.

  • Undo drills and view prompt values warning message

    H,
    I have a dashboard with a few simple pie charts. I also have a dashboard prompt which helps me select a month and also an other criteria common to all charts in the dashboard. But after i added the dahboard prompt whenever I log into this dashboard i get the warning message saying "The layout of this view combined with data, selction or prompts chosen has resulted in no data" "undo drills and view prompt values", Only once I click on "undo drills and view prompt values" my charts are displayed. Is this like a know bug or does something need to be changed for this.
    Thanks

    Hi, this is because there's no data for the values pre-selected. You should add a Deafult value for each of the column of your prompt. Make sure that default value has data to show.
    J.-

  • Warning messages in mapping deployment window

    Hi all,
    After deploying a mapping I got several warning messages but have no clues as to what and where they are referring to. Example of a warning message that I got:
    ORA-06550: line 32250, column 11:
    PL/SQL: SQL Statement ignored
    Do anyone of you know where the line 32250 and column 11 is exactly referring to? I need to see the code in order to know wat's the error. Do I refer to the script in the Script tab? But it seems to refer to nowhere if that is the case...

    Sutirtha Roy wrote:
    Hi ,
    The line numbers in the error messages are usually offset from the start of the package body, but the generated code listing has the package spec and body. So for example you got this one:
    LINE 671 ,COLUMN 12:
    PL/SQL: ORA-00942: table or view does not exist
    So you want to find package body line 671. So inside the generated code viewer, find the text "CREATE OR REPLACE PACKAGE BODY". Note the line number where that occurs, then add it to 671, that should be your actual line number.
    Thanks,
    SutirthaThanks Sutirtha,
    I finally made sense of where the warning messages were referring to. But I could not understand why some of these messages were produced. The scenario is like this.
    I added a unique key constraint on the attribute suppcode in the supplierwh table, and for all instances of this supplierwh table in my mapping where the loading type is "Update", I set the loading properties for both "match column when updating" and "match column when deleting" to No. Validation has got no errors but upon deployment warning messages were produced. Half of these warning messages were of this type:
    Warning
    ORA-06550: line 2449, column 41:
    PL/SQL: ORA-00936: missing expression
    Upon checking where these similar type of warning messages were referring to, all of them were pointing to codes something like below:
    "MERGE_SUBQUERY"
    ON (
    *"T_SUPPLIERWH_T1UPDATE"."SUPPCODE" = AND*
    "T_SUPPLIERWH_T1UPDATE"."SUPPKEY" = "MERGE_SUBQUERY"."SUPPKEY_1"
    I believe the error codes are the ones in bold because there is nothing after the = sign. But I do not understand why this is so. Can anyone help?
    Edit: I think I found the reason to this. Is it because of the "match by constraint" attribute? What does this attribute do when set to "All constraints"?
    Edited by: user8915380 on 29-Apr-2010 01:38

  • Custom program - unknown warning messages after upgrade (4.6c to ECC 6.0)

    Hi,
    At work, we are currently upgrading from 4.6c to ECC 6.0
    One of the custom (z) programs that was moved is displaying warning messages, and preventing the user from viewing a report.
    The warnings appeared in ECC 6, but were never there in 4.6c. The warning message is "Restrict your selection". However, no matter how much criteria is entered, the warning message still appears.
    The program code uses no messages or error handling, and the messages show up on the initial selection screen, after hitting execute.
    However, just for testing, I copied the program to my own z program and it works fine.
    Why is this happening with the original program? While creating a new program with copied code fixes the problem, I donu2019t understand why this would be happening in the 1st place.
    Any ideas?

    So what the zprogram does? what tables are involved in the report, if possible post a link to your code.
    Regards
    Karthik D

  • Getting the Warning message while searching in the Query panel

    Hi all,
    getting the following warning message while searching something through Query panel.
    <SimpleSelectOneRenderer><_getSelectedIndex> Could not find selected item matching value "VwObj_SearchNCCriteria" in QueryRenderer$2[UIXEditableFacesBeanImpl, id=null]
    can anybody help me in filtering this warning message
    Thanks & Regards,
    Veeresh

    Hi Frank,
    the JDeveloper version is JDeveloper Studio 11.1.1.3.0
    I have a View object View_Query for that i have added View critirea as View_Query_Critirea.
    I dropped the Critirea as Master-detail table in the page.
    when i try to search anything in the master-detail table I am getting the warning message which i mentioned in the original post.
    thanks,
    Veeresh

  • Removing std warning message in SRM 7.1

    HI,
    We are on SRM 7.1 ECS.
    Whenever account assignment category is changed before ordering a cart,a std warning message is displayed "Enter a value in the mandatory field in account assignment" which is very annoying.Is there any way this message can be stopped to be displayed in the SC screen?
    Pls advise.
    Thanks in advance.

    Thanks Ricardo.
    We are on SP SAPK-70105 for SRM SERVER 701 .I dont undsratnd how this correction came in to our system.
    I'm assuming the corrections of note 1607395 are in the system and hence this message.How do I avoid this message?I tried adding it to table BBPV_PDMSG but that didnt help.
    Pls help.

  • How to remove the warning messages in CODE INSPECTOR of my report......?

    Hi All,
    I am trying to do the check to my program i.e CODE INSPECTOR. i am seeing the following warning messages below.
    1 warning message
    Program zraj0xxx include  zraj0xxx row 000083 Column0000
    %LINR-VBUP contains a hyphen
    (The Hyphen is used as a dereferencing operator! )
    Note: when i double click on the above message its taking me to the below code of my program.
    DATA %COUNT-VBUP(4) TYPE X.
    DATA %LINR-VBUP(2).
    TABLES VBPA.
    DATA %COUNT-VBPA(4) TYPE X.
    DATA %LINR-VBPA(2).
    2 warning message
    Program zraj0xxx include  zraj0xxx row 000079 Column0000
    Field string VLPMA is not referenced statically in the program
    Note: when i double click on the above message its taking me to the below code of my program.
    SELECTION-SCREEN: BEGIN OF BLOCK PROG
                               WITH FRAME TITLE TEXT-F58.
    TABLES: VLPMA,                                             
                  VLKPA.  
    TABLES VBUP.
    3 warning message
    Program zraj0xxx include  zraj0xxx row 000001 Column0000
    TEXT- GOH from the text pool is not used.
    Note: when i double click on the above message its taking me to the below code of my program.
    REPORT ZHYD0147 LINE-SIZE 255 NO STANDARD PAGE HEADING
       MESSAGE-ID ZB                                        
       LINE-COUNT 065(001).
    Thanks in advance.
    Rajesh.

    Hi Rajesh,
    First  warning message.
    DATA %COUNT-VBUP(4) TYPE X.
    DATA %LINR-VBUP(2).
    TABLES VBPA.
    DATA %COUNT-VBPA(4) TYPE X.
    DATA %LINR-VBPA(2).
    Here you are not supposed to use hyphen but instead use '_'.
    Second warning message
    Program zraj0xxx include zraj0xxx row 000079 Column0000
    Field string VLPMA is not referenced statically in the program
    That means you are not using this VLPMA any where in your program so bettr delete fromt he Top Include.
    Note: when i double click on the above message its taking me to the below code of my program.
    Third warning message
    Program zraj0xxx include zraj0xxx row 000001 Column0000
    TEXT- GOH from the text pool is not used.
    this also means that you are not using this Text elemnt anywhere of your program.So delete this one also.
    Thanks
    Rohini.

  • Warning Message in query result as 'Notification Number DBMAN 345'

    Hi ,
    I have a warning message while executing the query
    'Diagnosis
    Currently, it cannot be guaranteed that SIDs and master data exists for all characteristic attributes for the DataStore object to be read.
    There is a restriction on a navigation attribute of the listed characteristic in the query. This filters all characteristic values of the master-data bearing characteristic for which there is not yet master data out of the result.
    For performance reasons, this filtering is unavoidable.
    System Response
    Procedure
    In case of doubt, find other restirctions directly on the characteristic values of the characteristics contained in the DataStore object.
    Procedure for System Administration
      Notification Number DBMAN 345  '
    'i am getting this error because of cutomer exit variables  on navigatioanl attributes of  Omaterial'
    I tried supressing it in  RSRT.. but unable to find the message.
    I tried  debugging and assigning enhancement points in  FM  BAL_LOG_MSG_READ.. As it is standard function module its not suggestable to do..
    can we creat custom FM ?? will it be called if we  write code to supress warning message??
    Please let me know how to use  BADI'S  in order to supress the error message that appearing in query result?
    Thanks All.

    Hi,
    The warning is raised due to the following reasons:
      - you have a selection in the filter of a navigation attribute
      - in your DSO you do not use the option "SIDs Generation upon Activation"
    If the option "SIDs Generation upon Activation" is not flagged,
    you may get char.values for an Infoobject in the system not
    having any SIDs. As a result you may see in the report less data as
    expected.
    For example we have Infoobject A with its Nav.attribute B
      Infoobject A   Nav.attribute B
      12             13   ->> has a SID in the X-table
      11             10
      9              13   ->> has no SID in the X-table
    If you define a selection on B =13 in the query, you only get infoobject
    A with key 12 displayed in the result, since only B =13 has a SID
    in the relevant X-table.
    The warning refers to this behaviour and cannot be avoided unless you:
       - flag the option in the ODS-settings
       - or remove the filter defined on 0MATERIAL__xxxx
    Thanks,
    Venkat

  • Warning message in IT0008

    We are using T710 tables for Salary structure and T510A and T510G for pay scale area and type.  While entering the basic pay amount in the annual salary field, the warning message is coming in pay period amount range eventhough we have given annual salary range in T710A.
    Anybody who is not using the Pay Scale/Indirect Valuation for Basic pay, may be able to share their experience of maintaining only T710 tables without T510N table.

    Hello friend
    Please refer to the following information which is from certain developer:
    Regarding T510 vs T710:
    Development has recommended that "it is necessary to migrate the T510N
    data into the salary structure data of tables T710/T710A."
    Additionally the table T510N is not used in the new functionalities
    instead tables T710 and T710A are used. These are transparent tables.
    Table T510N is a pooled table for historical reasons.
    It only exists due to compatibility reasons and will not be developed
    further.
    Hope above information can help with your case
    Regards,
    Jun

  • Warning message in reports

    Hai Friends,
    Whenever we create a Z table and use in program we are getting a warning message in the program.
    How can we clear that?. What it refers to?
    The following is the warning message:
    "Program Z10
    The data type ZCT006_PRODUCT can be enhanced in any way. After a structure enhancement, this assignment or parameter might be syntactically incorrect . . . . . . . . ."

    Hi T Venilla,
      the reason for that message is clear. When you are creating DDIC table, you have to specify technical data and also (you can find it in the menu of SE11 table create) enhancement category.
    In enhancement category you specify if new fields can be added and in which conditions.
    Because I have default value - any enhancement enabled you get an warning that this can lead to problems.
    Change the enhancement category and warning is gone.
    Regards,
      Karol

  • Warning Message In SLIN

    Hi Folks,
                 I Have Encountered A Strange Warning Message In SLIN With The Field
    AUSP-ATWRT.
    " The field "ATWRT" used in the WHERE condition may contain NULL values.
    Internal Message Code: MESSAGE GYT
    (The message cannot be hidden using pseudo-comment "#EC .., bzw. durch SET
    EXTENDED CHECK OFF/ON) "
    This Field IS NOT Null Since In the where clause I have Written Where ATWRT IN S_PCODE & S_PCODE HAS DEFAULT Values Of NLZ 14 09 TO NLZ 14 11 .
    ATWRT IS NOT NULL IN AUSP .
    CAN YOU GUYS RESOLVE THIS PROBLEM .
    Regards,
    RAJIV KAUSHAL

    Hello Rajiv,
    do not use in where clause ,if you use then you will get warning message ..
    tables : ausp.
    select-options : s_atwrt for ausp-atwrt.
    data i_ausp like ausp occurs 0 with header line.
    start-of-selection.
    select * from ausp into table i_ausp.
                      where atwrt in s_atwrt.
    loop at i_ausp.
    <b>if i_ausp-atwrt = 'NA'.
    endif.</b>
    endloop.

  • Report on Warning Message in sales order

    I have configured in OVA8 such that it only gives a "Warning Message" and does not block the sales order.
    Because these sales order are not blocked they don't need to be released. I need a report on list of sales order where warning messages have appeared for credit limit exceed.
    As its only warning message and not erro, it needn't be released so VKM1, VKM2 & VKM4 doesn't solve the issue.

    Hi,
    It is not possible to get the report as you required in Std. System considers the sales order if the warning msg appears as same as a normal SO without any warnign msg. In status level (table VBUK) there won't be any change.
    If you need it deliberately, then you shall take help from ABAp to develop a Z-report that too you need to use  some sales order level user exit to capture the warning message(Message no. V1152) generated sales order no.s and then you can use the same info in  Z-report.
    Hope this helps..
    Reg,
    JJ
    Edited by: Jagsap on Apr 14, 2010 1:22 PM

Maybe you are looking for

  • How do I delete an email account from iPhone 5?

    I have a gmail account on my iPhone 5 that stopped working two days ago (stopped sending or receiving email).  This account had worked since I got the phone in November. I want to delete this account from my phone and try reloading it but it will not

  • CC field in mail sending through work-flow

    Hi All, I have one issue. I want to send mail through work-flow using sendmail activity. I can able to send mail also...but for the same mail i want to keep one more person as CC or BCC.. Is there any feature available in work-flow to keep a person i

  • Post asset down payment

    Dear all, AO90 config, the "Acquisition: down payment",  here only allowed recon.accounts for account type "A(asset)"? when I post the asset down payment with PO by F-48, here's an error message: this account(which set in AO90)can' be posted directly

  • Test movie not working correctly

    When I haven't saved an as3 file in flash pro cs6 I can test a movie by pressing ctrl+enter, but when I save the movie and I want to test it, it doesn't test my movie?

  • Tracking load on Hyperion Planning

    We need to come up with a management level report showing the usage of Hyperion Planning in the company.<BR><BR>We need metrics like :<BR>Peak number of users<BR>Average number of users (polling every 30 minutes)<BR><BR>Is there anything within Hyper