Questions tagged [input-parameters]
65 questions
0
votes
0 answers
How to make number of equally sized bins as input for histogram in tableau
I have created a histogram
I am able to give bin size as input parameter
But i want user to input number of bins (x).
Result should have x number of equally sized bins
Please help me with this

manoj rao
- 1
- 1
0
votes
2 answers
Excel vba SQL Stored procedure calling with input parameters
Thank you in advance. I am trying to run a stored procedure from excel which accepts input parameters and it is giving error Run-time error '-2147217900 (80040e14)' automation error.
Set cmd1 = New ADODB.Command
With cmd1
…

ABCD
- 21
- 5
0
votes
1 answer
I have two input and one output parameter, how can I show data in grid view using a stored procedure?
Procedure name: AGENCY_STATE_REPORT
Input:
(frm_date date,
to_date1 date)
Output;
p_cur out SYS_REFCURSOR
My C# code:
public DataTable retdt1(string frmdate,string todate)
{
try
{
// Logfile("retdt", query);
…

gowtham
- 1
- 2
0
votes
1 answer
angular-cli: Error during data binding <> @Input property is null
I've read every single forum about this but still can't get this to work.
I have 1 parent component and want to load a few child components within (passing different input params for each one).
My application is setup the following way:
my…

john.acb
- 173
- 2
- 12
0
votes
0 answers
Set session in foreach loop is not working
Am trying to set a session in foreach loop when users post a form so when they refresh the page the post values won't lost, but the session is not saving.
My Code

Peter
- 1,860
- 2
- 18
- 47
0
votes
0 answers
Implement this structure in MATLAB function using "inputParser"
Suppose that I have a function that has a required input (data) and one optional input (op). The op can accept these strings: x and y. The default value of x and y (If the user doesn't insert a value for that) is 1 and 2. But user can insert this…

Eghbal
- 3,892
- 13
- 51
- 112
0
votes
1 answer
SSRS does not work when input parameter has a + sign
I'm creating a report which has as input parameters: id and name. These parameters are used in the where clause of the select from which I get the records to display in my list.
The problem is that if there is a + sign into the name the parameter…

Camilla
- 949
- 2
- 14
- 26
0
votes
2 answers
Using SAP HANA CV with Input Parameter in BO Design Studio
I wanted to know how can I use a Calculation View that has input parameter (from SAP HANA) as a data source in BO Design Studio.
How will I get prompt for input parameter in Design studio that I create in SAP HANA.

JERRY
- 3
- 1
- 4
0
votes
1 answer
how can pass custom params to rest get url?
I need to have a URL for passing parameters to my rest server like below:
http://localhost:8080/myprojectName/resrtApp?Name=$Name&LastName=$LastName&Message=$Message&UserId=$UserId
I used jersey for my rest server. how can I define this pattern in…

zorro6064
- 484
- 2
- 7
- 18
0
votes
1 answer
transform categorical predictors to numerical variable matlab
I am new to matlab.
I have a categorical input predictor(X) and the set of past results (Y, binary).
I would like to convert it to numeric variable in the following method.
For each category calculate the average of Y and replace the value with the…

Ron
- 1
0
votes
3 answers
Function should have input parameters?
Is it mandatory to pass input parameters for all the user defined functions?
We know, Stored procedure has both input and output parameters.
Function has only input parameters.
We can write a stored procedure without using these parameters too..
Is…

thevan
- 10,052
- 53
- 137
- 202
0
votes
1 answer
what is best option to pass parameters in REST api - POST type of method?
I am designing a REST api for creating a resource using POST method.
This create call accepts 4 parameters which are mandatory but not logically related to each other.
So I have two options to accept these 4 input parameters as -
Part of request…

Bruso
- 803
- 3
- 12
- 25
0
votes
1 answer
WSO2 DSS : Setup data service using Oracle stored procedure/function that has an array of string/varchar2 as input parameter
I'm a database developer and we're using WSO2 Data Service Server to build web services based on Oracle stored procedure calls. One of the stored procedures takes an array as an input parameter.
Unfortunately DSS is unable to map array this input…

user3776505
- 1
- 2
0
votes
2 answers
JasperReports Server: Multi select query in report using input parameter
Please help me to pass a input parameter in my report so that i can use a multi select query with the use of parameter.
In my report i am using $x{IN,ADMIN1,admins} but getting
error: wrong type java.lang.string for parameter admins, admins…

user3664402
- 3
- 1
- 3