Warning message in creation of structure

Hi,
Created a structure combining 3 tables .While checking it out showing a warning message
Y***-NETWR (Specify reference table AND reference field).
y***-VOLUM(Specify reference table AND reference field).

Got my answer...sorry

Similar Messages

  • Warning Message:- Field BRSCH from structure CUSTOMER-CENTRAL_DATA-CENTRAL-DATA is provided by Business partner

    Hi Experts,
    I get this error when replication the Organization Unit created in transaction BP from CRM to ECC.
    The error is generated in ECC system and Error Class is CVI_EI.
    Any ideas.
    Kind Regards,
    Gaurav

    Hi Gaurav,
    The Business partner does not have 'industry Key' that is reason the warning msg is coming.
    BRSCH- Industry Field
    you can check this in structure 'CMDS_EI_VMD_CENTRAL_DATA ' which will be filled at run time and later validation happen in  Program 'Fill_customer_central' on it. You can set up breakpoint at line number 183 where the validation is failing and warning message is getting raised.
    Please assign point if above information helpful.:-)
    Thanks
    Prem

  • Warning message on creation of IT0105 records

    When I create a IT0105 record, subtype 0004 (phone number) for example and enter a phone number that already exists on another record I get the following message
    ID/number already used for Person number nnnn.  This is a warning message and I can return through it.  Is there a way to make this message not display?  I am trying to create records in IT0105 via a dynamic message and even if I use the /D in the dynamic action to perform the action in the background I still get the "ID/number already used for Person number nnnn" displayed.  I do not want the message to display in the dynamic action so I would like to know if there is a way to suppress this message in all cases.

    David :
    The checking for duplicate values in IT0105 is done in PAI 'CHECK_USERID' (include MP010530), and is not configurabled (i.e. hard-error if subtype is '0001', warning if different subtypes). Therefore, I don't think you can suppress the message, unfortunately.
    Rgds.

  • Can we save the warning message in the message log of Lead.

    Hi,
    I have an requirement where i have to raise an warning message while "creation of lead from campaign" on campaign UI, I can raise that warning message using below code.
    DATA lr_message_service TYPE REF TO cl_bsp_wd_message_service.
    lr_message_service = cl_bsp_wd_message_service=>get_instance( ).
    lr_message_service->add_message( iv_msg_type = if_genil_message_container=>mt_warning
    iv_msg_id = 'ztest'
    iv_msg_number = 006
    iv_msg_level = '1' ).
    but how can i retain this warning message in the lead message log ? "when ever i will open that lead again that warning message should be there"
    thanks & regards
    raman khurana.

    Hi,
    Below are the steps to write to the log and then read it,
    1. Create a Log useing FM BAL_LOG_CREATE. This will return the log handle.
    2. Add messages to log using FM BAL_LOG_MSG_ADD. Importing parameters are log handle and the message.
    3. You can read the log by passing the log handle to FM BAL_GLD_SEARCH_MSG. This will return the message handle.
    4. Now pass the message handle to FM BAL_LOG_MSG_READ. This inturn return the message id and class. Pass the msg. details to FM BAL_DSP_TXT_MSG_READ to read the message text.
    Regards,
    Arun Kumar

  • Create warning message at the time of order creation

    I am looking for a  solution :- "Create warning message at the time of order creation/save if a cc is assigned in the settlement rule that crosses the company code of the order or where the company code of the plant for the order is different from the company code assigned to the cc"

    The txn code : IW32 (maintenance order) , this warning message for settlement rule creation using Cost center as a settlement receiver.  If the used cost center is belongs to some other company code, said warning message should occure.
    I tried user exit, field exit, also used std message control (KO-458).  Nothing is working.

  • Warning message during PO creation..

    Hi Freinds ,
    I have  a test condition during  PO creation.. In absence of info record for material vendor combination, Net price has to be manually entered in 'conditions' tab of PO..
      And after Entering this price, system should give a warning message as ' Effective price is  XX USD, material price is XX USD...
    This message is not appearing ..
    i checked in define attributes of system messages in SPRO..
      Message number 06207 is been configured there as warning message.
       so what should i do to get that warning message while creating a PO..
      thanks ..

    Hi
    We can use versions in the Define attributes of system messages means
    The same message can be Error for one user and Warning for other user and no message for another user.
    To do this you have define a new version for the message by copying the same.Give version as 01.Against this version give W.
    Assign this to the user parameter MSV in USER ID parameter tab.You can create another verions and message as E add to another users.By this one user will get Warning and other will get error.
    Please check in your case any version number for this message type assigned to your user ID with no message option
    Regards
    Ramakrishna

  • Warning messages creation in VKP5 & VKP6

    Hi  All,
    I am creating some warning messages in VKP5 from  BADI " SPC_POSTING_CONTROL" .
    1.Warning messages are not stroing in the LOGS , because logs badi is triggering  after executing the VKP5.
    2.When i am creating the pricing document from menubar option in the o/p of VKP5  Badi is not triggering .When i click on the save button then the badi triggering but i am unable see the messages in the log .
    3.I have found one exit "EXIT_SAPLWVK1_003" this one triggering when i click from menu bar option but it does not have table paramater for storing more than one warning message it contains  structure i can store only one message .
    4.When i run the VKP6 also badi is not triggering but exit is triggering when i change any data in the o/p of vkp6 .
    Our sytem is SAP-IS retails system ,same fucntionality working in SAP -R/3 . I donot the reason why its not working for SAP-IS retail system .
    If any body have the solution please provide to me .
    Regards
    Srihari

    Hi Shihari
    Check the BADI 'PWL_SP_DETERMINATION'. You have a sample coding, en method PROCESSCHECK_AND_SP_DETSEQ_SET you have this coding:
    * Assumption: No worklist entry if change of margin is less than 5%
    * Caution: There might be prices that are zero, so exclude that case
      if ( not pi_i_kalp-endpa is initial ) and
    *--- Only external vendor or internal vendor with sales price (in case
    *--- of a two step calculation purchase price can be zero, the
    *--- following check does not make sense then)
         ( ( pi_i_kalp-bewrk is initial ) or
           ( not pi_i_kalp-bewrk is initial and
             not pi_i_kalp-ekpnn is initial ) ).
    *-- Determine margin with curr. sales price and new net/net purch price
        workfield = ( pi_i_kalp-endpa - pi_i_kalp-ekpnn ) * proz100
                    / pi_i_kalp-endpa.
    *-- Relation of new and old margin ------------------------------------*
        margin_relation = ( workfield / pi_i_wkbp_copy-spabr ) * proz100.
    *-- Absolut change in margin ------------------------------------------*
        margin_change = margin_relation - proz100.
        margin_change = abs( margin_change ).
    *-- Margin change lower than a certain limit -> Exclude worklist entry *
        if margin_change lt margin_change_max.
          pe_exclude_calc_item = 'X'.
    *---- Create message in log -------------------------------------------*
          clear i_log.
          move-corresponding pi_i_kalp to i_log.
          i_log-msgid = 'WV'.
          i_log-msgty = 'I'.
          i_log-msgno = '852'.
          i_log-msgv1 = margin_change.
          i_log-msgv2 = margin_change_max.
          append i_log to pe_t_erro.
          exit.
        endif.       " Change lower than a predefined maximum limit
      endif.         " PI_I_CALP-ENDPA not zero
    I hope this helps you
    Regards
    Eduardo

  • Error Message and warning message in PO creation

    Hi,
       I have one requirement like when user create PO with 'critical material',while saving PO,user  should get message "critical material".
    For this ,in the enhancement MM06E005,EXIT_SAPMM06E_012(functional module),
    I have written piece of code
    *critical Material by Jaheer,ABAP & MM specialist
    LOOP AT TEKPO.
      IF TEKPO-MATKL EQ '9068'.
        MESSAGE ID 'ZMM' TYPE 'W' NUMBER '013' with TEKPO-MATNR.
         ENDIF.
    endloop.
    Here whenever I put message type 'E',I am getting message "critical material".But I donot want  error message  ,I want only warning message,so when I changed message type as "W",I am not getting any message while checking My PO.
    What is the reason?
    please,Can somebody throw some light on this?
    With Reg,
    Jaheer

    Hi,
    The linkage between warning and crtical materila is improper. Initially you have setted as E CRITICAL MATERIAL. Please change the status of message from error to warning in custamization instead of doing in program. Hope it works.Thanking you

  • Warning message instead of error message during PO creation in QM in procurement

    Hi,
    I activated QM procurement for a material and put a control key with delivery release, certificate required and invoice block....Now for that material, vendor and plant combination created QM info record and put some release qty...Now after the release qty is reached then when I am making next Purchase Order system is throwing warning message instead of error message and allowing me to create PO...where I need to convert the warning message to error message...
    Thanks
    Kumar

    Hello Kumar,
    Never tested this ;
    Anyways, Set Message control for lock as "Defects" for respective Control key.
    Path: QCC0>QM in Logistics>QM in Procurement>Define Control Keys.
    Amol.

  • Warning message display for Price check-Sale order creation

    Hi,
    While creating sales order at line item level a warning message is required to pop-up after validating if the sale order line item's Net Price = Gross Price.
    1.Is there any IMG customization that can be done to acheive this? If Yes, how??
    2.If it can be done only by adding a required message to message class, could you pls tell me the form which may require modification??
    Thanks

    Hi,
    Develope the logic in any of the following userexits avaialble in the program-
    MV45AFZB
    MV45AFZB
    The requirement cannot be processed through Standard SAP behaviour.
    Regards
    Goutham

  • Creation of Warning message SD

    How to make an notification or warning message when i put (two) same material in the same sales order

    Hi,
    There is no such standard message in R3. Create your own message in TA - SE91 and call that message after putting the logic in userexit - "MV45AFZZ". Check with your Developer for this.

  • Standard warning messages in Vendor Request Form

    Hi All,
    Please let us know, how are the standard warning messages in Vendor Request Form while creation/search are displayed.
    For example, I am getting an soft warning message text, at vendor creation which says "Some of the records were not found; for more information, check the log".
    Here we don't have any log traces to be checked for, and we have verified the back end record resultset count which is same, irrelevant of the warning message being shown.
    These messages are displayed only at two places:
    1) The search navigation page, where all the searched record results are displayed and we continue further for creation of vendor workflow.
    2) When the workflow of vendor creation is completed, along with the "Workflow has been completed" success message, this warning message is also shown.
    I want to know, from where these messages are being populated and how to suppress these messages.
    Kindly suggest.
    Thanks in advance!
    Message was edited by: Oxana Noa Zubarev

    Hi All,
    Attaching the screen shot for refernce:
    After we click on "continue with create/edit" button, after few details have been entered, the work flow completes.
    There are we are getting these error message as highlighted above.
    Let me know if any info from my end would help in getting the root cause.
    Thanks in advance.

  • Warning message in AVC in MB1A

    Dear,
    In FM i have set system warning message 70% and error message 100% in AVC. This is working fine in creation of PO, but during consumption MB1A system not issue warning message when budget consumed 70% or more but showing error message on 100%consumption.
    What is the reason during MB1A system not showing warning message if budget consume 70%or more ?
    Regards,
    Rabin.

    Hi,
    It is not Possible to give the Warning message in the Field Exit, We only pass the ERROR message to it. Just capture the value in the Field Exit and after the Field exit, if it possible to add the code then raise the Warning message there
    Regards
    Sudheer

  • 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

Maybe you are looking for