Error Inconsistent input parameter (parameter: i_sid,value 0)

Hi ,
i got this error "Error Inconsistent input parameter (parameter: i_sid,value 0)" after i execute the query that i have created. How can i solve this problem?
regards,
soonwee

Hello,
(I know, the answer is a year late, but at least it will be documented for the future: i've recently had the same error in my system)
I have debugged the problem and found that the exception happens somewhere after Include LRSDRC_INFOCUBEF06, form BASIC_QUERY_DATA_GET_ROLAP and  PERFORM check_for_request0.
You can also get this error if you execute the transaction LISTCUBE for the Infocube, or if you click on "display data" in the context menu of an InfoCube in RSA1.
The reason for the problem seems to be the missing "initial" record in the InfoObject "REQUID".
This InfoObject tracks all the requests/data packages in your BW system, and usually has the similar contents:
select * from /BI0/SREQUID
REQUID                                            SID         CHCKFL DATAFL INCFL
                                                                0          X     X     X
REQU_4D9N9016ZEBZXYL3FKRS5Z5BK    8             
ODSR_4D9N908VICXPGL4JLEU4G141C     9
However, if the initial record with SID = 0 is missing, you may get the described error.
The problem can be fixed by adding this record to two tables:
(example for adding this record from the DB2 SQL interpreter; syntax may be slightly different with other DB platform)
insert into "/BI0/SREQUID" values ('',0,'X','X','X')
insert into "/BI0/RREQUID" values (0,'')
(NOTE: the '' are two single quotes without any value between them, and not the double quote mark   )
Hope this helps.
Kind regards,
Sergiy Malikov.
SAP BI on DB2 for Linux, Unix and Windows
Edited by: Sergiy Malikov on Mar 27, 2009 1:53 PM

Similar Messages

  • Inconsistent input parameter (Parameter: i_sid, value 0)

    Hi BI experts,
    I have a question. When I load my data from a DSO to a infocube it loads succesvol. But when i try to look at the data in the infocube I get the error "Inconsistent input parameter (Parameter: i_sid, value 0). Does someone know the solution to this problem.
    Thanks in advance.
    Regards,
    Ricky

    Hi Folks,
    in case somebody else come accross this problem.
    this simple code solved the problem.
    REPORT  Z_TEST.
    data wa_/BI0/SREQUID type /BI0/SREQUID.
    wa_/BI0/SREQUID-requid = 0.
    wa_/BI0/SREQUID-sid = 0.
    INSERT INTO /BI0/SREQUID VALUES wa_/BI0/SREQUID.
    Rg. Jimbob

  • 001 u0096 Inconsistent Input Parameter (Parameter : i_sid, value 0)

    hi gurus,
    In BI 7.0 while trying to manage the Standard Cube data through the manage option I am getting the following error
    "001 – Inconsistent Input Parameter (Parameter : i_sid, value 0)"

    <b>Check if this helps</b>
    /thread/480191 [original link is broken]

  • Error while trying to choose query parameter Inconsistent input paramete

    I got error on PRD while trying to choose parameter before executing BEX query:
    101 Inconsistent input parameter (parameter: <unknown>, value <unknown>)
    100 Program error in class SAPMSYY1 method: UNCAUGHT_EXCEPTION
    Notes:
    the same functionality works fine in DEV environment.
    the other parameters on query in PRD work fine
    the parameter  with error based on custom hierarchy
    P.S. I heart BEx :]

    Hello,
    This problem has been solved before with notes 1236774, 1151320 & 1264213.
    Please check.
    Thanks,
    Michael

  • Inconsistent input parameter

    Hi
    I am seeing the following error when trying to use the "Display Data" menu option on an Infocube: "Inconsistent input parameter (parameter: i_sid, value 0)".
    I have created about the simplest Infocube that I know of to try to resolve this, with OCalDay in the Time dimension, a simple custom SKU Characteristic in Dimension 1, and only one Key Figure. I have loaded only one record into the InfoCube, and the corresponding SKU and 0CalDay objects are populated with data (and it appears to hold referential integrity.
    I do not have anything within the Unit dimension. Do I need something? What can I put in as a dummy?
    But if Unit is not a problem, any other ideas why I am seeing this error?
    Thanks
    Al.

    Hi,
    During the creation of keyfigure, did you mention anything under Currency/Unit of Measure. If you have mentioned any fixed currency there, then while creating transformation in Rule details of that keyfigure, under Currency, you mentiond fixed currency and No Conversion.
    This should solve the issue.
    Best Regards,
    Rajani

  • Is the task-flow input parameter class value being ignored by the framework

    hi
    Although I don't remember where, I think I read or heard about the task-flow input parameter class value that it is "being ignored by the framework".
    One example of this could be what is currently in the UI Shell sample application available
    at http://www.oracle.com/technetwork/developer-tools/adf/uishellapp-134633.zip
    It has in its task-flow in "flows\second.xml" an input parameter configured like
      <task-flow-definition id="second">
        <!-- ... -->
        <input-parameter-definition id="__3">
          <name id="__2">tabContext</name>
          <value>#{pageFlowScope.tabContext}</value>
          <class>oracle.ui.pattern.dynamicShell.TabContex</class>
          <required/>
        </input-parameter-definition>
        <!-- ... -->
      </task-flow-definition>Notice the missing "t" at the end of the class name "oracle.ui.pattern.dynamicShell.TabContex".
    Still this task-flow configuration does allow to use expressions like "#{pageFlowScope.tabContext.selectedTabIndex}", which suggests that the class value is indeed "being ignored by the framework".
    (see also forum thread "does the UI Shell sample break encapsulation in its task-flows"
    at does the UI Shell sample break encapsulation in its task-flows )
    All relevant references (bug numbers, documentation, blogs) explaining about this task-flow input parameter class value are welcome.
    If no such references exist, maybe someone from Oracle can give some feedback.
    many thanks
    Jan Vervecken

    fyi
    The feedback below was posted in the forum message
    at Re: does the UI Shell sample break encapsulation in its task-flows
    Richard Wright wrote:
    That appears to be a bug for which I am seeking confirmation.There is an enhancement request (i.e., 9377487) submitted over a year ago, that describes this behavior. It is listed as an ER as our documentation (e.g., Fusion Developer's Guide for Oracle ADF, online help ) does not specifically state that Java class for the input parameter definition is checked for type. Further anything using EL is untyped. So the expectation that types are enforced is somewhat puzzling to the development team.
    However, there is an acknowledgment within circles of the development organization, that some might come to have this expectation. One trigger might be the definition itself. The other is the existence of a design time audit on the definition. For example, if the class is specified inaccurately (e.g., typo), there is an audit warning to report "not found."
    Under consideration are a number of framework proposals to check for type without breaking backward compatibility or adding overhead to the production environment.
    In the interim, the following recommendations are given.
    Unless this breaks or can break your app in some way, no need exist for change. Nevertheless, if this is a real concern, write a test or consider a java assertion. By default, assertions are disabled at runtime. There is no need to override that default.I have been able to find enhancement request 9377487, "TASK FLOW PARAMETER VALUES NOT VALIDATED ACCORDING TO CLASS", on My Oracle Support. It currently has "Status 15 - To Internal (Oracle) Review" and "Updated 16-Dec-2010".
    In the context of service request 3-4185839067 recently bug 12838099, "THE TASK-FLOW INPUT PARAMETER CLASS VALUE BEING IGNORED BY THE FRAMEWORK", has been filed and it currently still has "Status 16 - Bug Screening/Triage".
    - about "... the expectation that types are enforced is somewhat puzzling to the development team ..."
    Hmm, strange ... so what are people supposed to expect when there is an option to configure a class name for a task-flow input parameter?
    regards
    Jan

  • Log Error : Invalid Input Parameter %s for every SAP B1 Client

    Hi Everybody,
    in my company we have performed SAP B1 upgrade from 2007A to 8.81 PL07, in two steps upgrading first to PL04.
    Everything is working fine for all our clients, we are able to post and work normally with the system.
    The only annoying problem is an error message coming up every minute for every client in the log:
    SQLMessage       Error              I     Technical     Invalid input parameter: %s # #     MID=-1     BOID=-1     BO=     UserID=manager     C:\Program Files (x86)\SAP\SAP Business One\SAP Business One.exe     Version=8.81.315     Area=     PID=1316     TID=4340     D:\depot\BUSMB_B1\8.8_SP1_REL\SBO\8.8_SP1_REL\Application\__Engines\DBM\__DBMC_DataBase.cpp     9547
    I couldn't find anything regarding this topic in the forum, only one similar post but unanswered.
    We are using two server: one for the licence server and one for the database (the database server is clustered)
    Does anyone have any idea about this? Has it ever happened to anybody?
    Thanks for your help

    Hi Julie,
    it must be a triggered action from the system. The only problem is that log files grow very big, few mb every day, and it is a situation that's not very ideal. And also i don't want to turn them off because it is always a good resource for other errors.
    It is very strange that SAP hasn't noticed this behaviour and there isn't any note available for the purpose.
    Thanks for your help

  • Build error: an input parameter is invalid

    I am looking for help with a build error. I am getting the following error message when I try to build a project in 8.5.1:
    Error 1 occurred at Open VI Reference in AB_Source_VI.lvclasspen_Reference.vi->AB_Build.lvclass:Copy_Files.vi->​AB_Application.lvclass:Copy_Files.vi->AB_Build.lvc​lass:Build.vi->AB_EXE.lvclass:Build.vi->AB_Engine_​Build.vi->AB_Build_Invoke.vi->AB_Build_Invoke.vi.P​roxyCaller
    Possible reason(s):
    LabVIEW:  An input parameter is invalid. For example if the input is a path, the path might contain a character not allowed by the OS such as ? or @.
    =========================
    NI-488:  Command requires GPIB Controller to be Controller-In-Charge.
    VI Path:
    Tom Rhoads
    Goodrich FUS
    Vergennes, Vermont

    Arducopter:
    Did you check to see if the KB Hunter posted resolves the issue?
    If you're opening a project in a newer version of LabVIEW, then there's a chance the mass compile tool might work. It will open and save all of the VIs within a specified folder. The tool is fairly self-explanatory, and you can access it from within LabVIEW by going to "Tools --> Advanced --> Mass Compile..."
    Good luck!
    Caleb Harris
    National Instruments | Mechanical Engineer | http://www.ni.com/support

  • Error Msg : Input parameter WRITE MODE not found

    Hi,
    When i run the package for loading the master data from BI to BPC the following error message is displayed:
    "Input parameter WRITE MODE not found"
    iam unable to see any update modes when i try to execute the package for master data loads...like Over write Update
    what is missing? any thoughts on this??
    Regards

    Hi,
    how did you solve this issue, since we have a similiar problem when loading maser data using /CPMB/IMPORT_MASTER ..
    D
    okay, found the solution in OSS note 1359787 ...
    D
    Edited by: Dries Paesmans on Nov 10, 2009 11:24 PM

  • Edit - Create SubVI results in error "an input parameter is invalid [...] cannot save VI"

    I get this error with some frequency.  I select a bunch of my block diagram, create a subVI only to find that it is unsaveable.  Here are the steps I take to reproduce this:
    Select a portion of code
    Edit -> Create SubVI
    open the new subVI
    try to save it and this message pops up (without showing the Save dialog)
    I get past this by saving a snippet and making a new VI.
    I'm using LabVIEW 2012 on Windows XP, but I had it happen with LabVIEW 2011 as well.
    I read through this thread, but it's not the same situation because my message doesn't have an associated error code.  No variation of "Save As" has any effect, either.
    Has anyone else seen this behavior?  Have you any suggestions to help me resolve it?
    Jim
    You're entirely bonkers. But I'll tell you a secret. All the best people are. ~ Alice

    Greetings, Jim;
    I see the error happens with some frequency, is there anything that seems to bring that error to light or does it just seem to happen randomly when saving to a SubVI? That is to say, does it seem to happen when you are using/saving a particular set of VI's or a module or some such, or completely haphazardly? Is there any hardware that you are attempting to connect to in that VI as well?
    If you try to save the SubVI and get that error, can you simply save the main VI again without a problem? Finally, you have also seen this behaviour in 2011, did it happen with similar frequency?
    Cordially;
    Simon P.
    National Instruments
    Applications Engineer

  • Sup Blackberry - input parameter error

    Hi ,
    I am developing a blackberry application which fetches data from sap and displays it .
    It works fine when i give default value for my order number .
    when i create a editbox and map it to my parameter and then on click of a button i want to match the value entered in the editbox and display the result according to that value it throws a error saying input parameter is required , when i have entered value for that .
    i am using synchronization parameter concept for fetching the data at run time .
    how can it be done .
    Regards .

    Hi,
    This can be done and I did that a lot of times now. I know its not documented anywhere and even I tried to figure out for almost 3 days before I could achieve it.
    Actually the process includes creating a synchronization parameter for an MBO and mapping it to input/import parameters on MBO and then mapping these synchronization parameters to screen elements.
    Steps, considering a scenario where you want to display order details based on order number entered by user in a Edit box and on click on DISPLAYDETAILS button :
    1. Create MBO using some RFC/BAPI
    2. Go to properties and add synchronization parameters. May be you can prefix them with SV_ORDER just to understand that it is a synchronization parameter.
    3. Then you need to map the synchronization parameter to the input parameters on the MBO. With that your MBO is ready and you can deploy it.
    4. Now coming to device applicaiton, create a screen with a edit box and a button. Now go to button properties and there you can add various actions. One of the action is Sycnrhonize, select that and then it launches the wizard. In that wizard you need to map the edit box to the synchronization parameter SV_ORDER which you created in 2nd step.
    5. Deploy the application and you are all set to go.
    Regards,
    Siva.

  • Error in BEx Analyzer during F4 Value help

    Hello Experts,
    We are facing a issue where on pressing F4 in Bex Analyzer in variable selection for cost center hierarchy; the operation hangs. I dont get any short dump but following error messages in the analyzer itself
    RS_EXCEPTION Message Number 101
    Inconsistent Input Parameter (paratmeter: <unknown>, value <unknown>
    RSBOLAP Message Number 000
    Program error in class SAPMSSY1 method: Uncaught Exception
    We are on BI 7.0 SP17. I found a SAP note (1381562) which talks about similar error.
    The confusing part is this particular query works fine in Dev, Quality and Test systems but errors out only in production.
    Please let me know how relevant is this note. Also let me know if I should be looking at something else to correct this error.
    Thanks,
    Gaurav

    Hi,
    Please check your text file contains the exact same characteristics and key figures as defined in your planning funciton for your upload (also the sequence has to be the same)
    Regards,
    Marasa.

  • Passing multiple values to a single input parameter

    Hi folks,
    I have a Microstrategy query successfully passing input parameter to a calculation view.  For example I can pass a movement type to a material movements calculation view input parameter.  However if I try to pick more than one movement type the query then fails; 
    Generated SQL that works looks like this;
    select
    sum(a11.TOTALQUANTITY)  WJXBFS1
    from
    "_SYS_BIC"."MyPackage/CA_TEST_PASS_PARAMETER"
    ('PLACEHOLDER' = ('$$MoveType$$', '101')
    a11
    When choosing more than one value in Microstrategy the SQL now fails and looks like this;
    select
    sum(a11.TOTALQUANTITY)  WJXBFS1
    from
    "_SYS_BIC"."MyPackage/CA_TEST_PASS_PARAMETER"
    ('PLACEHOLDER' = ('$$MoveType$$', '101'),
    'PLACEHOLDER' = ('$$MoveType$$', '103'))
    a11
    If I cut and paste the SQL and run directly in HANA studio the error is;
    Could not execute 'select sum(a11.TOTALQUANTITY) WJXBFS1 from "_SYS_BIC"."MyPackage/CA_TEST_PASS_PARAMETER" ...' in 66 ms 361 µs .
    SAP DBTech JDBC: [2048]: column store error: search parameter error:  [2018] A received argument has an invalid value;TABLE/VIEW parameter: ( 'PLACEHOLDER'='$$MoveType$$, 103') not supported
    Is it possible to pass multiple values in a single parameter?  I'm using SP67 for this test.
    Thanks,
    -Patrick

    Ravi, also to answer one of your questions about how this will work in Microstrategy; I just heard back from my Microstrategy developer and he is trying MSTR Freeform SQL query with syntax like this;
    select (sumPAR_TEST.TOTALQUANTITY TOTALQUANTITY
    from "_SYS_BIC"."MyPackage/CA_TEST_PASS_PARAMETER"
    ('PLACEHOLDER' =('$$MoveType$$', '[Movement Type]')) PAR_TEST
    In this example [Movement Type] is the microstrategy prompt.  Unfortunately though it translates like this which is missing extra single quotes around each value;
    select     sum(PAR_TEST.TOTALQUANTITY)  TOTALQUANTITY
    from     "_SYS_BIC"."development.pr1959/CA_TEST_PASS_PARAMETER"
    ('PLACEHOLDER' = ('$$MoveType$$', ''101', '102''))   PAR_TEST
    instead of what we need which is;
    ('PLACEHOLDER' = ('$$MoveType$$', '''101'', ''102'''))   PAR_TEST
    So at this point we are not sure if this will be possible or not.
    -Patrick

  • Input parameter with default value, in OWB 10r2

    -I have a flow that load data from a determinate date, that date is a parameter. This flow is controled to be execute diary by a database job, And takes the parameter as sysdate.
    But I want that a user can set an determined date as input and override the default. (sysdate)
    I created a parameter in the START element , and set
    value as: TO_CHAR(sysdate,'dd-mm-yyyy'))
    The problem is that when the job execute the flow, an oracle error appear:
    ORA-01858: a non-numeric character was found where a numeric was expected ORA-02063: preceding line from FAMISANA@SOU_SEI_LOCATION1
    When I execute the flow and set a parameter input any date (21/07/2001) , thats works.
    So, how can I set the input parameter for have default a sysdate ?
    So thanks

    value as: TO_CHAR(sysdate,'dd-mm-yyyy'))You have created parameter as date then why you are converting it into char.
    and you can check the date format for you database also.
    Cheers
    Nawneet

  • Trying to get the input parameter of a web service fxn based on table value

    Hello--
    I am new to ADF and Jdev 11g (I am a forms developer). I had created a web service from a pl/sql stored db package. I can successfully execute a function with an input parameter from ADF Faces.
    Instead of the input parameter being enterable by the user, I would like it to be based on a selected ADF table column value. How would I correlate the selected row column value as the function input parameter?
    I played with an ADF output text based on the ADF table column with the PartialTriggers value set to the ADF table...which updates the output text based on the column selected. Do I use some sort of partial trigger on the input parameter?
    From a forms point of view, I am looking for the "Copy Value from Item" property :)

    Hi,
    Not sure if this would help you.
    But if your table is bound to a ViewObject, it will be easier to get the current selection.
    Supose your table is bound to iterator1.
    In your backBean code:
    DCBindingContainer dcBindings = (DCBindingContainer)getBindings();
    DCIteratorBinding iterator =dcBindings.findIteratorBinding("iterator1");
    Row row = iterator.getCurrentRow();
    Object selectedValue = row.getAttarbute(<value of the column you are looking for>);
    public BindingContainer getBindings() throws Exception {
    try {
    if (this.bindings == null) {
    FacesContext fc = FacesContext.getCurrentInstance();
    this.bindings =
    (BindingContainer)fc.getApplication().evaluateExpressionGet(fc,
    "#{bindings}",
    BindingContainer.class);
    return this.bindings;
    } catch (Exception ex) {
    displayMessage("Error occurred. Please contact your IT Adminstrator.");
    return this.bindings;
    Let me know if this helps.
    -Makrand

Maybe you are looking for

  • How can i get my photos back after i erased all content and settings

       Okay so i had a Iphone 5c and broke it so they shipped me a new one, And as i was trying to set my new one up the paper said to go to settings and back up my phone and then erase all content and settings from my damaged device, So i did. And for s

  • I am losing resolution when I resize or rotate a line I have drawn.

    Can anyone help me?  I have been using photoshop to turn my drawings into digital stamps for crafting.  I always import my image, then with the pen tool I re-draw it in photoshop.  Usually I can take say my eye I had drawn and resize it or rotate it

  • Flash EULA comes up in Arabic

    When I try to download Flash 11 to use with Mac OS 10.7.2, I get the DMG successfully. Then I double-click on the installer and it comes up with a link to the license. This link is (http://www.adobe.com/products/eulas/#flash_player). I then click on

  • Spanish accent characters are not displayed proper in excel file

    Hi I have written a program which displays one report file (.xls file ) on the browser. This report file is in spanish language and contains few accent characters like ("� � � � � � �"). These characters are not displyed properly in that excel file w

  • Itunes is not as user friendly as it seems

    i am not be able to delete unwanted apps from itunes ,its very difficult to sync pics, music and videos from computer to iphone.