WAD: Error Valid InfoObjects

Hi Gurus,
I have IP Layout with 9 Tabs(9 query) on it. My Variable Screen has 9 Product Hier (Optional).user can enter on one Product hier and get it to the Layout. if the user stays it the same Tab then No issues.
But if the user moves to different Tab then I am getting the following:
Error message: Please select a Valid InfoObjects
Is there any setting that needs to changed in the WAD in Order to hide this message.
Let me know if any one has this issue before
Thanks
SP

Hi Uryukin Andrey,
Thanks for the Replay, I have checked the Commands attached to the Tabs
(Activation Action = SET_DATA_PROVIDER_PARAMETERS.)
(Deactivation Action = DEFAULT)
I have Executed the Query in BEx they are working fine. I think the issues is when we open WAD Template.
user enters the correct PH Level and enters to first Tab (Default) make adjustments. But if he goes to second or third Tab then this message is coming on top of the Web Template
(Error message: Please select a Valid InfoObjects ).
I am thinking when we move from one Tab to another it is not getting the Filter Values. is there any Command sequence that needs to be followed?.
Thanks
sunil
Edited by: sunil perala on Apr 14, 2010 5:51 PM

Similar Messages

  • Web template :Error Valid Data provider not assigned

    Hello Friends we have the web template that was working before , we did the upgrade to SP13 from SP11.
    It gives the error Valid Data provider not assigned and
    Bad integer Parameter value of Parameter BLOCK_COLUMNS_SIZE of Object item:ANALYSIS_ITEM:ANALYSIS;
    Please help where do i need to assign the Data provider beacuse the Values are same for Dataprovider as before
         Portal Runtime Error
    An exception occurred while processing your request
    Exception id:
    See the details for the exception ID in the log file.
    Thanks
    Soniya
    Message was edited by:
            soniya kapoor

    Open the template in WAD and do a validation against the server and make sure the template is well formed.
    Also make sure you apply BI JAVA Patch 1 for SPS 13.

  • Help! i need to get components id with error validation!

    Hi guys, im really new in jsf, i have a tabset, in with several tabs generated dinamically, each tab have several components generated dinamically as well, im trying to get all components id which have validation errors, and show in the page an alert summary with the name of tabs which have the components with error validation, to do that, i will have to get the components id with error validations, so i will get the tab name which contains it.
    I tried to use this, but didnt work for other components in others tabs than tabSelected.
    public void prerender() {
    Object tmp="";
    FacesContext context = FacesContext.getCurrentInstance();
    Iterator iter = context.getClientIdsWithMessages();
    while(iter.hasNext()){
    Object obj = iter.next();
    This detect components in the current tab, because they are who have messages.
    Please guys, hopefully you could help me at this, ive been trying to achieve this since 3 days ago, im really desperated, i dont know, if i could do this using some of jsf, otherwise i will have to do validation components manually.
    By the way guys:
    How do i do to call the validation phase, when im using a button with inmediate = true. Thats, because i could do a method to validate components (manually) and then call the validation phase, to show the input errors to user.
    Thanks in advanced,
    Yellr
    Message was edited by:
    yellr

    I suggest you do this stuff in the event handlers, such as in the action handler , such as in the tab action handler.

  • Error validating TP...AIP-11052: Writing following objects: Trading Partner

    Hi,
    I am getting following error validating trading partner. I have double checked the TP setup, everything looks fine. I had earlier successfully validated, later added a document type and trying to re-validate.
    AIP-11052: Writing following objects: Trading Partner failed due to following constraint violation: PARTY. CAN NOT UPDATE UNVERSIONABLE OBJECT IN A VALIDATED CONFIGURATION
    Does anyone have any clues??
    Thanks
    Venkat

    Make sure you do not have active configuration which is using this agreement.

  • Error "Valid Value - Value do not Exist" for payment terms

    Hi,
    I am trying to change the payment terms in a Sales Order using UIAPI.
    Although the value i am using to update is a valid value, i get the following error:
    Valid Value - Value do not Exist
    My code is as folows:
    Dim sNewValue as String
    sNewValue = "2"
    oFrm.Items("47").Specific.Select sNewValue, psk_ByValue
    What am i doing wrong?
    Thanks
    Satish

    Hi Satish,
    Have you tried defining the new value as an integer instead of a string? The GroupNum data type in the OCTG is Int, not character.
    Hope helps,
    Ibai Peñ

  • IHC errors valid clearing partner not found and no header details found while idoc creation after f110

    IHC errors :valid clearing partner not found and no header details found while idoc creation after f110
    Please let me know where the config is missing for ihc automatic payment program.in we02 status is not 53.
    Please help

    Hi
    Please share the error message in the IDOC.
    If the error message is IHC204 "No valid clearing partner was found", it may be due to the missing correct configuration in Set Up Creation of Payment Requests for Inbound IDoc in FI, which links the clearing partner, ALE logical system partner type and IHC account number.
    Cheers
    taro

  • Oracle + Unix question , Error validation for SQL statements in co process

    Hi,
    If I use co process in a shell script , what is the best way to do the error validation of the execution of any sql statements . I was trying to change the following code to make use of co process concept. When I tried echo $? after the execution of a "wrong statements"
    it is still giving Zero output ( meaning success)
    <<<<<<<<<<<<<<<<<<<<<<<<<<<
    cat ${CFG_DIR}/srs_indx.lst | egrep -v '^#' | egrep -v '^[    ]*$' | while read x
    do
    echo " Processing values :: pre $pre tbl $tbl indx $indx tblspc $tblspc cols $cols param $param" >> ${LOGS_DIR}/srs_indx.log
    sqlplus ${BIZSTG} << EOT >> ${LOGS_DIR}/srs_indx.log
    set verify on timing on term on echo on feedback on serveroutput on
    WHENEVER SQLERROR CONTINUE
    drop index $indx;
    WHENEVER SQLERROR EXIT FAILURE
    alter session set query_rewrite_enabled = true;
    create $pre index $indx on $tbl ($cols)
    tablespace $tblspc
    $param;
    exit
    EOT
    RC=$?
    if ( test $RC -ne 0 )
    then
         ERR_MSG="ERROR in creating index $indx for table $tbl from srs_indx.ksh of $ENVIR : $APP by `whoami`@`hostname` on `date` "
         echo $ERR_MSG >> ${LOGS_DIR}/srs_indx.log
         process_warning ${LOGS_DIR}/srs_indx.log
         exitstat=1
    else
         echo "$indx created at `date`" >> ${LOGS_DIR}/srs_indx.log
    fi
    done
    >>>>>>>>>>>>>>>>>>>>
    Any help will be appreciated .
    with thanks and regards
    Ranjeesh K R

    Hi,
    Thanks for the response, I guess people misunderstood my question .
    My question was about "error handling in case of CO PROCESS". For those who don't know about this, in case CO PROCESS you just need to login once to Oracle. In my above code It is logging in & out for each entry in the list. CO process statements may look Similar to SQL statements in pro*C. In PRO*C we use EXEC, but here print -p statements..
    a sample is given for those who are new to co process.
    sqlplus -s /nolog |& # Open a pipe to SQL*Plus
    print -p -- 'connect user/password@instance'
    print -p -- 'set feed off pause off pages 0 head off veri off line 500'
    print -p -- 'set term off time off'
    print -p -- "set sqlprompt ''"
    print -p -- "select sysdate from dual;"
    read -p SYSDATE
    print -p -- "select user from dual;"
    read -p USER
    print -p -- "select global_name from global_name;"
    read -p GLOBAL_NAME
    print -p -- exit
    echo SYSDATE: $SYSDATE
    echo USER: $USER
    echo GLOBAL_NAME: $GLOBAL_NAME
    But I got stuck during error handling of these SQL statements, especially the $? / $* returns 0 even after an erroneus execution.
    Regards

  • Error validating PTO configuration invoice qty

    When we run Receivable Interface from Order Entry to create the receivable invoice, we face the error which states that " Error validating PTO configuration invoice quantity".
    Can any please suggest as how to fix this problem.

    Hi
    Invoice Verification is checking of incoming vendor invoices. The Invoice Management System (IMS) provides you with a central access point for all incoming invoices (with and without purchase order reference). If errors occur when an invoice is posted, one or more exceptions are generated and the invoice appears in the Invoice Monitor.
    The IMS is based on SRM invoice entry
    Please see the related links ->
    Invoice Management System
    http://help.sap.com/saphelp_srm50/helpdata/en/42/dc00a78d23162fe10000000a1553f7/frameset.htm
    Processing Invoices in SRM Using IMS
    http://help.sap.com/saphelp_srm50/helpdata/en/ae/738d42d195173be10000000a155106/frameset.htm
    Duplicate Invoice check in IMS SRM 5.0
    Smartform vs Adobe POs in SRM 5.0
    Do let me know.
    Regards
    - Atul

  • Error: Validity of Certificate from list with PSE type PSE ends in 3 da

    Hello,
    our system is reporting the followin warning
    Error: Validity of Certificate from list with PSE type > PSE < ends in 1 days, more notes on system log (SM21)
    We check the transaction STRUST and STRUSTSSO2, the certificate between ERP and EP expires today. The ERP system is SAP R/3 Enterprise and EP release is 6.20
    Please how can we create the certificate in that releases of SAP ERP and EP, we only found information about this procedure in the newest releases.
    Thanks

    Hi
    Is the SAP Logon certifiacte goiogn to expire??From Portal to ERP??
    If this is PSE then follow this [Link.|http://help.sap.com/saphelp_nw2004s/helpdata/EN/a6/f19a3dc0d82453e10000000a114084/frameset.htm]
    Regards
    Ajay

  • Hit error Validation Unsuccessful in MIGO

    Dear SAP expert and guru,
    Would like to seek for your assistant to to check whats wrong with the goods issue that I always hit error Validation Unsuccessful error.
    I was able to post goods issue for the similar PO last week without any error message, however I am hitting the error now while posting the similar PO in post goods issue.
    Thank you
    Regards
    Leonard Tan Jian Wen

    Hi,
    What is the error message no you are getting during the goods issue. Could you elaborate the process.
    Regards,
    velu

  • Please select a valid InfoObject appears while refreshing a query

    One of the users is trying to refresh a query (showing a hierrachy). While refreshing the user gets the following message: "Please select a valid InfoObject". I just talked to the user and she is saying it appears from time to time. Does any of you had such problem? What is wrong?

    Hello Jesper,
    We got the same problem after upgrade. We have applyed the note you talked about in your post. It fixes the issue.
    Thank you.
    Best Regards,
    Pierre.

  • WAD error :: Uncaught exception

    Hi All,
    I am facing one problem with WAD report. When I drag and drop one characteristic with hierarchy into the report it is showing the following error::
    Termination message sent
    ABEND RSBOLAP (000): Program error in class SAPMSSY1 method : UNCAUGHT_EXCEPTION
      MSGV1: SAPMSSY1
      MSGV3: UNCAUGHT_EXCEPTION
    But this is not happening for other infoobjects with hierarchy. Hierarchy upon 0DEBITOR is causing problem, this is a reference attribute of 0CUSTOMER. But the same is working in Bex Analyzer.
    Please help me to solve the issue.
    Regards
    Githen

    Hi,
    I need the following information:
    1. BI version and support pack level
    2.  BI frontend version and patch level.
    Before you send this information, update your BI frontend patch level to the latest available.
    You can get this from service.sap.com/swdc.
    Cheers.

  • WAD Variable Validation Problem

    Hi,
    i created the variable validationin Bex which is running perfectly fine in Bex but in WAD its not running its not showing any validation on input variable,plz let me knoe do i need to do some setting for input variable validation working on 7.0
    thnx in advance

    Could be a program error on the BI Java runtime, try creating an OSS message.
    Have you tried setting up a HTTP breakpoint in the exit to see whether the exit is called when you run the report?

  • Error Validation In PO Creation

    Hi Gurus,
    I'm trying to create a PO in transaction ME21N. There are no validation on vendor and company code mapping, error message should occur. This error should come up upon PO creation since the vendor is not created for company code. How can I do this  and in what user exit will I include my code? Your help is much highly appreciated! Thanks in advance!

    hi
    after entering all the information in the PO just go for check option in the top...
    if there are any errors it displays....
    if vendor not created in Company code it has to display the error msg...
    otherwise u cant create PO
    Regards
    Smitha

  • WAD error

    Hi Gurus,
    I am getting following error when opening WAD.
    RSBOLAP- 013- Transformer exception while transforming the application: while trying to invoke the method com.sap.ip.bi.deploytime.service.text.ITextService.get Tlogo Texts(java.lang.String.com.sap.ip.bi.deploytime.
    how to resolve this?
    Regards,
    Darsh

    Hi Diego,
    The point system seems to be slow. Thanks I solved my problem.I will assign u when it is up.
    Have a nice weekend.
    Thanks.

Maybe you are looking for

  • 7.1 Update process for Acrobat 7.x standalone users

    OK, tried this one on a PC with Acrobat 7.x Pro (updated to 7.05) and the bundled Designer 7.0. The Designer 7.1 installer does not remove Designer 7.0, so confusingly you end up with both on the same machine. Can't think of any reason why this would

  • DB installation error at update DB statistics

    Hi, During DB installation at Update database statistics Installation error. Error shows that MTU- 03010 Execution of the command "/sapmnt/QMS/exe/brconnect   '-u' '/' '-c' '-f' 'crsyn -o 'SAPQMS' finished with status TST_ERROR brconnect.log error /u

  • Windows Photos Viewer

    Up until yesterday when I attempted to open a JPG photo or file sent to my Hotmail account, it would direct me to Windows Photo Viewer. I then could open the photo using Miscrosoft Photo Gallery. Now it sends me to: C:\Users\Name\AppData\Local\Micros

  • Newbie trying to convert this to use numbers from excel

    I am fairly new at this and have not worked with numbers at all but the problem I have is that I do not have Excel on all my Mac's and this needs to work with Numbers. it is a basic copy and paste based on a particular tab in Safari and another in nu

  • How does sun cc support GNU C?

    I fail to build theora on solaris_x86, it seems some it does not support GNU C style. $cc -V cc: Sun C 5.8 Patch 121016-02 2006/03/31 usage: cc [ options] files. Use 'cc -flags' for details How can I deal with this situation, - Waiting for new compli