Please enter standard_terms value from ra_terms_b

Why do we get this error ?? when trying to create a new account in Receivables
Please enter standard_terms value from ra_terms_b

The Market Group ID InfoObject is compounded.  When I changed the query to include the compound InfoObject, the error is gone. 
I did extensive testing using RSRT and I found some interesting things. First, this message can not be blocked because it is not available in the six message segments.  I did not get the error when I executed the query using RSRT or if I used the ABAP Web button to run the query.  Only when I used the Java Web button, could I reproduce the error message.
Thank you for your fast and excellent suggestions.

Similar Messages

  • Please enter valid  value for characteristics

    Hi,
    One of our user got this error when opening a query Please enter valid  value for characteristics.
    How do I fix this since I couldn't see any errors in SU53 and authourization logs.
    thanks

    Hi Bhat,
    Check SAP notes : 1077144
    Thanks,
    Vijay.

  • How we can check Item UNIQUE value at the time enter the value

    hi,
    check unique item value.When entering value.
    using record group.
    How?
    which trigger we can use?
    Thanks & Records
    venkat

    Hi!
    Do you want to check if a value already in your table?
    if so, use the when-validate-item trigger like this:
    begin
    if
      :your_block.your_item is null
    then
      return;  --> nothing to check, exit trigger
    end if;
    for l_rec in ( select 1
                      from your_table t
                      where t.your_column = :your_block.your_item
                      and ( :your_block.rowid is null OR rowid != :your_block.rowid )  --> if it is not a queried record
                      and rownum = 1 ) loop
      message ( 'The value ' || :your_block.your_item || ' is already in existence. Please enter another value or use our nice list-of-values.' );
      message ( ' ' );  --> shows an alert not only a message in the status line
      raise form_trigger_failure;
    end loop;
    end;Regards

  • New install of SQL 2014 Std MSDN. Get "The SQL Server product key is not valid. To proceed, re-enter the product key values from the Certificate of Authenticity (COA) or SQL Server packaging."

    Trying to install a new version of SQL 2014 Std 64 or x86. Installing on Windows 8.1Pro 64bit machine.
    I get:
    "TITLE: SQL Server Setup failure.
    SQL Server Setup has encountered the following error:
    The SQL Server product key is not valid. To proceed, re-enter the product key values from the Certificate of Authenticity (COA) or SQL Server packaging.
    Error code 0x858C0017."
    I looked at the summary log and that is the only error.
    I made sure there were no other instances of SQL on this machine. Uninstalled all VS2013 and sql instances just in case. IF there is somewhere to check if a previous version or license is causing the issue, i would be glad to check.
    Any help would be appreciated.

    Hi,
    Please read this thread with similar issue
    http://social.msdn.microsoft.com/Forums/sqlserver/en-US/bdd94577-515c-49fa-be44-008eacece057/installing-sql-server-2012-on-a-new-vm-error-code-0x858c0017?forum=sqlsetupandupgrade
    Please mark this reply as answer if it solved your issue or vote as helpful if it helped so that other forum members can benefit from it
    My Technet Articles

  • "Please Enter Value" error

    Occasionally the form I created and imbedded on our website prompts the user with a "please enter value" error, even when the question doesn't require an answer.  So the user cannot submit the form unless they click every field, which then makes the survey inaccurate.  Why is this happening and how can I fix it?

    There seem to be two places where the users are having problems - the question that asks about transportation - I'll often get a form that has number of buses and that they are walking, for example.  Also, the form will sometimes require them to choose all three concerts.  I set it up so that they could choose to attend one, two or all three.
    I don't know which browser the teachers are using...it could really vary.  We have about 200 different schools that fill out the form so there's no way of me knowing what each teacher is using.  Should I specify a certain browser?  It has started happening somewhat recently.
    I don't know if this makes a difference but I took the form I created from scratch last year, and just updated it with this year's information.  Last year I didn't have any problems whatsoever.  This year, I'm having problems.  Does it work better if I create the form new every year?

  • Cannot create RFQ : Please enter a valid value

    Hi all,
    Kindly help me in my problem. I was trying to create a RFQ from my RFI. However, upon clicking on the "Create Follow-on Document", the error message "Please enter a valid value" appears. This message also appears when I tried changing the RFI. Please help me. Thanks!
    Thanks and Regards,
    Happy

    Hi All,
    This was resolved after our patching
    Thanks and regards,
    Happy

  • Cant purchase from Itunes - please enter your country????

    So I have been able to download the free stuff from Itunes in the past. My CC expired, but in the new one and filled in the address again. The country is in bold and has US.
    Get the errro message "you did not complete this form. please enter your country"
    There is no drop down to change and the US is already chosen on the front page of iTMS.
    Any help would be great.
    Thanks
    Rich

    ITunes support sent email and was able to resolve

  • Error in MDDataSetBW.GetCellData.Please enter a valid value for character

    Hi All,
    We have a mandotory prompt on 0FISCPER for Web I Report . The promt is present in the universe.
    The query works fine in Dev , but in Quality it shows the following error
    A database error occured. The database error text is: Error in MDDataSetBW.GetCellData.  Please enter a valid value for characteristic 0FISCPER.. (WIS 10901)
    The universe is on BW Query and the BW Query works fine.
    Can someone please help on this

    Thanks Sathish for your input.
    We have created report level prompts and facing this issue because  we were selecting multiple values for prompts.
    Its working fine for single selection. Is there any way to  enable multi selection for the particular object at the BW end ?
    Or else we have to create the prompts (Single selection) at the universe level.
    Regards,
    Pranay

  • How can we prevent a user from entering a value in Parameter Field?

    how can we prevent a user from entering a value in Parameter Field and Select-options Field?

    make it invisible, make it inactive, make it display only.
    if the field is not there or not to be seen the user WILL have problems inputting data.
    BUT once the field is there you can NOT prevent that the user fills it with data.
    all you can do is on PAI check if the data the user inputted was good or bad, and clear his inputs, but you can NOT prevent him inputting something.

  • How to Pass values from XML to JSP??? Urgent Please Help me

    Hi guys,
    I am new to XML, I want to pass values from XML to JSP. I have a xml file with attributes, I should send this values to a JSP file. How is it??? Please Help guys.... its very urgent. Please send me how to do it with an example or atleast any urls related that....
    Looking for ur favourable reply.
    Thanks in advance,
    Sridhar

    in a servlet :
    parse your xml file (see how at the end of the post) and
    put the values you want in the request attributes
    request.setAttribute("value1", value1);
    ...redirect to the jsp
    in the JSP:
    get the wanted attributes:
    String value1=(String)request.getAttribute("value1");To learn how to parse a xml file, pay a look at this page, it explains how to read the XML document to build an object representation, and then how to navigate through this object to get the data
    http://labe.felk.cvut.cz/~xfaigl/mep/xml/java-xml.htm

  • Error: please enter the date value in correct format DD-MON-RRRR

    Hi all,
    First of all I am 100 % learning oracle financial no technical background. I am trying to run a report: -the calendar does not appear in order for me to choose the date -Besides that when I enter the date ie 10-09-2010 or 10/09/2010 the system give me this error "Error: please enter the date value in correct format DD-MON-RRRR "
    please help me solve that.
    Thanks

    please enter date in 12-Oct-2010 format.
    regards,
    http://www.oraerp.com

  • After trying many times with two different debit cards still does not allows me to buy a game from the app store gives error "YOUR PAYMENT METHOD WAS DECLINE.PLEASE ENTER VALID PAYMENT METHOD INFORMATION"  Please help me out

    I WANT TO PURCHASE NFS MOST WANTED GAME FROM APP STORE BUT IT DOESN'T ALLOW ME TO PROCEED FURTHER
    after trying many times with two different debit cards still does not allows me to buy a game from the app store gives error "YOUR PAYMENT METHOD WAS DECLINE.PLEASE ENTER VALID PAYMENT METHOD INFORMATION"  Please help me out

    In most cases, you can't use a Debit card anymore. So, either redeem an iTunes gift card or use a credit card.

  • ERROR BRAIN (599): for characteristic 0FISCPER  Please enter a valid value

    Hi,
    We’ve an BI 7.0 System with Patch Level SP12 which is previously connected to an NW 7.0 Portal System + BI Java that has SP13 installed.
    We’re able to create Queries and Web Templates via Query Builder and WAD for BI 7.0 and publish to portal.
    Recently, we’ve installed a new NW 7.0 Portal + BI Java with same package level. We made the configurations for Bex via Template Installer and everything is ok.
    Our reports has a 0FISCPER characteristics and when we run the reports in new portal, it displays the report. But when we want to change period and click the button created to set period, a popup opens and errors like “"for characteristic 0FISCPER  Please enter a valid value " displayed on popup.
    #1.5#005056915E48007200000013000016D000044A7EAFACF8B0#1207807880509#com.sap.ip.bi.base.application.message.impl.MessageBase#sap.com/irj#com.sap.ip.bi.base.application.message.impl.MessageBase#bcepik#2422##sapportal_TFP_5354550#bcepik#96c2d31006c411ddae48005056915e48#SAPEngine_Application_Thread[impl:3]_31##0#0#Error#1#/Applications/BI#Plain###A message was generated:
    ERROR BRAIN (599): for characteristic 0FISCPER  Please enter a valid value
    MSGV1: 0FISCPER
    MSGV2: 200.001.#
    When we change BI’s Portal back to old one by changing the RSPOR_T_PORTAL table (default portal), it still works there.
    What may be cause this situation as it works on one portal and not works on another?
    Best Regards

    Hi,
    Pls chk the  Note 770174 - Values for 0FISCVARNT not correct - BRAIN E 599
    Symptom
    In case of web templates the value help for 0FISCYEAR doesnot work
    correctly.  Error message
    For characteristic 0FISCVARNT, enter value in permitted format
    comes up
    Other terms
    OLAP: F4 - 0FISCYEAR, 0FISCVARNT ,
    0fiscyearvalues_generate, master data read class , value help , F4
    Reason and Prerequisites
    Program error
    The selection option sent to the method 0fiscyearvalues_generate
    based on 0FISCVARNT are not porcessed and hence as null row is
    inserted in the resultset that cause the problem .
    Solution
    BW3.0B
               Import Support Package 24 for Release 3.0B (BW3.0B Patch 24 or SAPKW30B24) into your BW system. The Support Package will be available when note 0723193 with the short text "SAPBWNews BW 3.0B Support Package 24", describing this Support Package in more detail, is released for customers.
    BW3.1C (Content)
               Import Support Package 18 for Release 3.1C (BW3.1C Patch 18 or SAPKW31C18) into your BW system. The Support Package will be available when note 0723260 with the short text "SAPBWNews BW 3.1C Support Package 18", describing this Support Package in more detail, is released for customers.
    BW 3.50
               Import Support Package 9 for Release 3.50 (BW3.50 Patch 09 or SAPKW35009) into your BW system. The Support Package will be available when note 0763335 with the short text "SAPBWNews BW SP09 NetWeaver'04 Stack 09", describing this Support Package in more detail, is released for customers.
    This note may already be available before the Support Package is released.  However, the short text will still contain the words "preliminary version" in this case.
    Hope this helps,
    Regards
    CSM Reddy

  • How to enter a value versus picking one from the pop-up menu?

    I am new to numbers and am using version 3.5.2.  I understand one can define a Pop-Up for cell value selection, but what if I want to also be able to specify a value that is not in the pull down?  I thought "start with blank" would do the trick, but it won't let me enter any values.  Thanks in advance for your suggestions!

    Hi Sultry,
    If your entry is a one time deal you could just delete the cells value and type in your choice. If you want to update your popup you need ot redefine its values. And then of course replace your old popups with your new one.
    quinn

  • Creating Variable with Replacement Path to get value from ANOTHER Variable

    Hi all,
        Is anyone has created the Variable with Replacement Path to get the value from another User Entry Variable, PLEASE ? 
    First created the User Entry Variable (ZV_X) and it accepts the date range like '01/01/2009 - 01/31/2009'. Next created the Characteristic variable (ZV_Y) of Replacement Path for which source variable will be ZV_X and we should get the 'FROM Date' (01/01/2009) from the selection (ZV_X) into it (ZV_Y).
    While creating the Characteristic variable (ZV_Y) of Replacement Path, I didn't find my newly created ZV_X variable in the list of available variables under 'Variable' header in 'Replacement Path' tab and it is causing the error 'Source to replace variable ZV_Y is not defined'. How could I create the Characteristic variable of Replacement Path for my requirement, PLEASE ?
    The following is from help.sap..com:
    Replace with Characteristic Value
    Text and formula variables with the processing type Replacement Path can be replaced with a corresponding characteristic value. In the variable editor, on the General tab page, you specify under Reference Characteristic the characteristic that is to be referenced by the replacement. On the Replacement Path tab page, you can choose whether the variable is replaced with the From or the To Value and with the Key or the Name of the characteristic value. You can also specify the Offset Start and Offset Length for the output.
    Replace with Variable
    Characteristic value variables, hierarchy variables, text variables, and formula variables with the Replacement Path processing type can take their values from a different variable.
    The following prerequisites need to be fulfilled:
    Variable
    ●      The variable must not be input-ready
    ●      The variable must represent a single value
    Source Variable
    ●      The source variable must not be a hierarchy node variable
    ●      The source variable must be input-ready
    ●      The source variable must be available in the query
    ●      The source variable must represent a single value or an interval
    In the variable editor, on the Replacement Path tab page, you specify the source variable from which the value is to be determined. The value is either determined from the key, the external attribute of the key, the description, or the attribute value. You can specify an Offset Start and an Offset Length for the output here. The variable is replaced on the variable screen upon each data release.
    Thanks,
    Venkat.

    Hi Eve,
    It is possible to connect the 2 queries using a Replacement Path characteristic variable. You would need to create the variable on the char whose values you want to pass from Q1 to Q2. The variable will be of type replacement path and you will need to enter the name of Q1 from which it will get the values. Make sure that you include this char in the query definition of Q1 and Q2. In Q2 you will restrict the characteristic using this variable. DO not use this variable (replacement path) in Q1.
    In your query properties check if you have turned on the checkmark for Release for OLE DB for OLAP (3rd tab). If the check mark is there, then remove it.
    We are using the scenario in a couple of places, and it works very well.
    Hope this helps...

Maybe you are looking for

  • How to get COUNT of  Invoice No and  Sales Order No from Multiprovider

    Hello Guys, I have a scenario like below. I have 2 info cubes (1) Billing Item Info cube (2) Sales Order Item Infocube which stores Item level data in infocube. I created Multiprovider for these Sales Order Item Cube and Billing Item Info cube. Now i

  • Delivery rescheduled during packing - problem

    We have a process where we invoice packaging material.  When we create the handling unit in the delivery packing, and use material with the relevant item category assignment, an item in the delivery is created.  The problem is that at the same time,

  • DVD READER STOP WORKING AFTER ITUNES IS INSTALLED

    FINNALLY GOT ITUNES AND QUICKTIME TO WORK BUT NOW MY COMPUTER WON'T RECONIZE MY DVD BURNER. IT DOES RECONIZE A USB EXTEROR BURNER. IF I UNINSTALL ITUNES AND QUICK TIME MY INTERNAL BURNER WORKS. PLEASE HELP

  • Last Purchase Price - OITM

    HI, We will be trying on the TEST system to do Goods Issues and Receipts to change the Last Purchase Price but because we use FIFO this may not give the result that we want ie in FIFO it is the the earlier price we want i presume? I have heard anothe

  • Max length of G_F array

    I have a html table on a APEX page. User can add/delete rows from the table at run time. I use attribute name="Fxx" to name input fileds. For example, name="F05" for the text_area inputs in column 5. When the page is submitted, I capture the values b