Parameters in a fonction

Hi all,
I have a problem, I need to know the name and the value of the parameters I'm using in a method, by example:
void method1 (int a, int b, int c)
// in this part I need to know dinamycally that I have (int a, int b, int c) as parameters
The point is that I need to send those names and values to a file, but the method can be changed to:
void method1 (int a, int b, int c, int d)
// in this part I need to know dinamycally that I have (int a, int b, int c, int d ) as parameters
Any idea
Merci!!!

// in this part I need to know dinamycally that I have
(int a, int b, int c, int d ) as parametersI think I vaguely understand what you're getting at, but no, there's no way of knowing this. There's certainly no way of knowing the names of the parameters.
The types, maybe - you can create a new local Exception, and get its stack trace, and look at element 0 for the method name, and parse it.
So you'll have to resort to some sort of programmer-maintained information at the start of each such method.
For instance, in one of my APIs, I wanted to log each call and its parameters. So I created a "logging" class that is passed a method name, and gets an appropriate Logger for it, and then a "logEntry()" and "logExit()" method to log the entry and exit. The way I call it is as follows:
  public boolean login(String applicationName, String userName, String password)
    // throws ...
      CommonAPI.LogInfo logInfo = CommonAPI.apiLogger("App", "login");  // the method is App.login()
      if (logInfo != null) {
        logInfo.logEntry(new String[]{"applicationName","userName","password"},
                         new Object[]{applicationName,userName,"********"});
  }Notice how I pass this logging routine an array of parameter names, and an array of parameter values.
You can adopt a similar idiom in your code..

Similar Messages

  • Smartform LE_SHP_DELNOTE

    hi expert,
    I would like to preview a smart form (namely LE_SHP_DELNOTE), using its associated fonction module (/1BCDWB/SF00000006). Nevertheless, I do not understand what I have to give as entry parameters to this fonction (IS_DLV_DELNOTE,type LEDLV_DELNOTE and IS_NAST, type NAST).
    Does any one know what those two parameters are, and how I can make this fonction module work?
    thanks a lot in advance.
    regards,
    Pierre

    Check if your data is ok, meaning that you indeed have an address maintained for the ship-to of this delivery.
    Hope it helps,
    Leonardo De Araujo

  • Msg_Alert : what's mean ??

    Hi,
    what are the parameters of this fonction : Msg_Alert.
    In fact I have this :
    Msg_Alert ('message', 'E', True),
    Msg_Alert ('message', 'W', False),
    what mean E, W,... and True ,False
    Thanks lot

    Alert Style
    E=Stop
    W=Caution
    I=Note
    True: generation error (Raise form_trigger_failure)
    false : no generation error
    Spanish.
    Yo hice unos cambios a esa función, si te interesan mandame un email a [email protected]

  • Producing warnings when cvi function parameters do not match function prototypes

    Is there a function prototype in cvi code which would generate an error/
    warning that my parameters do not match those of the function prototype. I
    am using MSVC 6 for development.
    Ed Manlove
    [email protected]

    There is a parameter in the Options>>Build Options menu that do that : check "Require fonctions prototype".
    I think that a function can't do that because you have to check that during the compilation. If you want to check parameters at the run time ( like , scanf function ) you have to do by yourself inside the function.

  • Simple Transformations : Table parameters

    Hi experts,
    I'm working on a Simple Transformations and I can't figure out how to access a table parameter from it.
    The Help section on the PARAMETERS addition for the instruction CALL TRANSFORMATION says :
    You can use this addition to bind ABAP data objects e1 e2 ...
    to the parameters p1 p2 ... of an XSL transformation or a
    Simple Transformation. All elementary data objects and object
    references are permitted.
    And then :
    Instead of using a static parameter list, you can specify the parameters
    dynamically as value pairs in the columns of the internal table ptab that has
    one of the following types from the type group ABAP
    That is what I am trying to use.
    Here is an example I'm trying to make work :
    ABAP :
      DATA : partab TYPE abap_trans_parmbind_tab,
                  s_par TYPE abap_trans_parmbind,
                  lv_xstring TYPE xstring
      CLEAR s_par.
      MOVE 'PAR1' TO s_par-name.
      MOVE 'HELLO' TO s_par-value.
      APPEND s_par TO partab.
      CLEAR s_par.
      MOVE 'PAR2' TO s_par-name.
      MOVE 'WORLD' TO s_par-value.
      APPEND s_par TO partab.
      CALL TRANSFORMATION ztrans_test
          SOURCE
               root = 'IT WORKS !!'
          PARAMETERS
            partab = partab
      RESULT XML lv_xstring.
    Transformation :
    <tt:root name="ROOT" type="?"/>
    <tt:parameter name="PARTAB"/>
    <tt:template>
    <VALUES>
    <VALUE_SOURCE>
            <tt:value ref="ROOT"/>
    </VALUE_SOURCE>
    <VALUE_PARAM>
    <tt:value ref="PAR1"/><tt:value ref="PAR2"/>
    </VALUE_PARAM>
    </VALUES>
    I tried several instructions in the transformations but I never access the values in the table.
    I want to use this fonctionality instead of an exhaustive list of parameters.
    Can somebody please tell me how to do that ?
    Thanks in advance !
    Regards,
    --Yohann.
    Edited by: Yohann Camp on Feb 10, 2012 8:21 AM

    Hi,
    try like this,i think it may help you.
    ABAP:
    CALL TRANSFORMATION ztrans_test
          SOURCE
               root = partab
         RESULT XML lv_xstring.
    Trnsformation:
    <tt:root name="ROOT" type="?"/>
    <tt:template>
    <VALUES>
    <VALUE_SOURCE>
            <tt:value ref=".ROOT"/>
    </VALUE_SOURCE>
    <VALUE_PARAM>
    <tt:value ref="NAME"/>
    <tt:value ref="VALUE"/>
    </VALUE_PARAM>
    </VALUES>
    Thanks,
    Rajesh.

  • Help on fonction Write to spreadsheet file

    Hello,
    I come on this forum to find a solution for my issue.
    I have made a VI which acquires an input voltage and where the user can modify some parameters.
    For each iteration of my while loop, I want to save the data in a csv file that's why I'm using the fonction Write to spreadsheet file.
    But when I want to use this saved datas in csv format with Excel, the data were saved in string format so not a numeric. My purpose is to have some numerical datas and not strings because I can't do graphics or calculs.
    As you can see on the csv saved file, only the iterations of the while loop (column C) are in a numerical format.
    Here is my problem, thank you in advance for your help
    Attachments:
    VI.png ‏22 KB
    Excel_saved_file.png ‏11 KB

    Looks like you're using regional decimal signs, try "%.;.3f" as format
    /Y
    LabVIEW 8.2 - 2014
    "Only dead fish swim downstream" - "My life for Kudos!" - "Dumb people repeat old mistakes - smart ones create new ones."
    G# - Free award winning reference based OOP for LV

  • Appel d'une dll avec un callback d'une autre fonction

    Bonjour.
    J'ai une carte d"acquisition vidéo dont je souhaite réaliser les drivers sous labview. Une DLL est fournie avec le manuel SDK d'utilisation.
    Mais je coince à ce niveau :
    Register Draw callback function: RegisterDrawFun()
    API:
    int RegisterDrawFun(DWORD nport, DRAWFUN(DrawFun), LONG nUser)
    Parameters:
    DWORD nport Channel Index
    DRAWFUN(DrawFun) callback function
    LONG nUser user data
    Callback function explanation:
    void CALLBACK DrawFun(LONG nPort,HDC hDc,LONG nUser)
    nPort channel number
    hDc devide context of offscreen surface is similar to the DC of display window
    nUser user data
    Return Values:
    If the function succeeds, the return value is 0.
    Remarks:
    When the video is previewed with offcreen mode, the application call this function to get the device context of offscreen surface so that the application can draw lines, strings, rectangles on the surface of video.
    C'est le callback de la fonction "drawfun"  que je ne sais pas mettre en oeuvre. Et dans quelle DLL de windows ce trouve cette fonction car elle n'est pas dans la DLL fournie.
    Pourriez vous aussi me dire , comment obtient t'on le "handle" d'une valeur contenu dans un indicateur pour le donner en argument d'un appel à une DLL.
    Merci d'avance pour votre aide.
    Cordialement,
    MH.

    Dupliqué >> http://forums.ni.com/t5/LabVIEW/appel-d-une-dll-av​ec-un-callback-d-une-autre-fonctionappel-d-une/m-p​...

  • Appel d'une dll avec un callback d'une autre fonctionappel d'une dll avec un callback d'une autre fonction

    Bonjour.
    J'ai une carte d"acquisition vidéo dont je souhaite réaliser les
    drivers sous labview. Une DLL est fournie avec le manuel SDK
    d'utilisation.
    Mais je coince à ce niveau :
    Register Draw callback function: RegisterDrawFun()
    API:
    int RegisterDrawFun(DWORD nport, DRAWFUN(DrawFun), LONG nUser)
    Parameters:
    DWORD nport Channel Index
    DRAWFUN(DrawFun) callback function
    LONG nUser user data
    Callback function explanation:
    void CALLBACK DrawFun(LONG nPort,HDC hDc,LONG nUser)
    nPort channel number
    hDc devide context of offscreen surface is similar to the DC of display window
    nUser user data
    Return Values:
    If the function succeeds, the return value is 0.
    Remarks:
    When the video is previewed with offcreen mode, the
    application call this function to get the device context of offscreen
    surface so that the application can draw lines, strings, rectangles on
    the surface of video.
    C'est le callback de la fonction "drawfun"  que je ne sais pas mettre
    en oeuvre. Et dans quelle DLL de windows ce trouve cette fonction car
    elle n'est pas dans la DLL fournie.
    Pourriez vous aussi me dire , comment obtient t'on le "handle" d'une
    valeur contenu dans un indicateur pour le donner en argument d'un appel à
    une DLL.
    Merci d'avance pour votre aide.
    Cordialement,
    MH.

    Salut,
    Tu dois utiliser un "Call Library Function Node".  Je ne saurais comment traduire en francais. 
    Ca se situe a l'interieur des fonctions de connectivite sous libraries et executables.
    Lorsque tu installes le "Call Library Function Node" sur ton diagramme, tu dois par-apres le configurer.
    Tu cliques (2x) sur l'icone et tu choisi la fonction dll auquel tu veux envoyer des valeurs.  Une fois choisi, tu peux joindre les parametres.

  • Comment fonctionne le moteur de recherche d'applications sur le Store? how's working the search engine of App.Store?

    Bonjour,
    je suis un étudiant documentaliste et je réalise un travail sur l'app store et la recherche des applications.
    Sauriez vous où je pourrais trouver des informations sur le fonctionnement du moteur de recherche du Store et sa manière de classer les applications?
    Sur le theme de la recherche d'applications, je cherche a savoir si des mots-clés sont associés aux applications, et si oui, le sont ils par l'auteur ou par Apple? Ces mots-clés sont ils libres, ou proviennent ils d'une liste prédéfinie? L'idée serait de savoir le lien entre les termes utilisés par les utilisateurs lors de leurs recherches,et ceux utilisés par apple pour classer les applications et determiner si elles correspondent a tel ou tel mot utilisé par l'utilisateur. J'ai deja vu que lorsque l'on faisait une recherche, on avait des propositions de termes de recherche, par exemple.
    Je cherche aussi des informations sur le fonctionnement du moteur de recherche et sur les applications proposées. Y a t'il des criteres, tels que la popularité, le nombre de mise à jour, de téléchargement,l'avis des utilisateurs, etc, qui jouent dans ce qui determine qu'une application est proposée en priorité plutot qu'une autre?
    De manière paralèlle, qu'est ce qui détermine l'ordre des applications proposées dans les catégories, genre finances, productivité, etc? (vu que ce n'est ni le fait que ce soit gratuit-payant, ni par ordre alphabetique)
    I am a student librarian making a dissertation on the ipad. I seek to know how the App Store works when we are researching applications, and how  are sorted the applications in the Store and the differents big categories (financial, well-being, etc)
    That is to say, if keywords are associated with applications available online, and if so, are they chosen by the author of the app, or imposed by Apple? these keywords are they free or do they partient a reference list? (thesauri, authority list, etc.)
          I am also looking for information on the operation of the search engine and proposed applications. are there any criteria such as popularity, rating by users, the number of download and update on the overall quality, etc.? The idea would be to have an overview of what determines which applications are offered in priority and according to what connditions. In sum, the parameters a librarian should take into account to optimize the search for an ideal application for a given need.

    Bonjour,
    je suis un étudiant documentaliste et je réalise un travail sur l'app store et la recherche des applications.
    Sauriez vous où je pourrais trouver des informations sur le fonctionnement du moteur de recherche du Store et sa manière de classer les applications?
    Sur le theme de la recherche d'applications, je cherche a savoir si des mots-clés sont associés aux applications, et si oui, le sont ils par l'auteur ou par Apple? Ces mots-clés sont ils libres, ou proviennent ils d'une liste prédéfinie? L'idée serait de savoir le lien entre les termes utilisés par les utilisateurs lors de leurs recherches,et ceux utilisés par apple pour classer les applications et determiner si elles correspondent a tel ou tel mot utilisé par l'utilisateur. J'ai deja vu que lorsque l'on faisait une recherche, on avait des propositions de termes de recherche, par exemple.
    Je cherche aussi des informations sur le fonctionnement du moteur de recherche et sur les applications proposées. Y a t'il des criteres, tels que la popularité, le nombre de mise à jour, de téléchargement,l'avis des utilisateurs, etc, qui jouent dans ce qui determine qu'une application est proposée en priorité plutot qu'une autre?
    De manière paralèlle, qu'est ce qui détermine l'ordre des applications proposées dans les catégories, genre finances, productivité, etc? (vu que ce n'est ni le fait que ce soit gratuit-payant, ni par ordre alphabetique)
    I am a student librarian making a dissertation on the ipad. I seek to know how the App Store works when we are researching applications, and how  are sorted the applications in the Store and the differents big categories (financial, well-being, etc)
    That is to say, if keywords are associated with applications available online, and if so, are they chosen by the author of the app, or imposed by Apple? these keywords are they free or do they partient a reference list? (thesauri, authority list, etc.)
          I am also looking for information on the operation of the search engine and proposed applications. are there any criteria such as popularity, rating by users, the number of download and update on the overall quality, etc.? The idea would be to have an overview of what determines which applications are offered in priority and according to what connditions. In sum, the parameters a librarian should take into account to optimize the search for an ideal application for a given need.

  • Retriving only hidden parameters from request.getParameter

    Hi,
    I want to retrive only the hidden parameters from previous JSP page into current JSP page. The problem here is that my hidden parameters in privious page are dynamically generated (parameter names are decided based on values retrived from the database) and I cannot retrive them using "request.getParameter(<parametername>)"
    Can I find the parameter type (i.e. text box, text area, checkbox, radio or hidden) from the request.getParameter() or request.getParameterNames() methods? or is there any other way to find it.
    Thanks in advance for any help

    You can use the getParameterNames() or getParameterMap() methods from javax.servlet.ServletRequest to get all the parameters in the request. Even if they're dynamically generated, and you don't know the names in advance, these methods will ferret them out.
    getParameterMap() returns name String, values String [] pairs, so you'll have to work with String arrays to get the input out. It's got to be that way to accomodate checkboxes and other HTML form elements that can send more than one value for a given name.
    I prefer getParameterMap, because I don't like using Enumerations as much. - MOD

  • [Interface] - Passing variety parameters/input to PL/SQL report

    Hi,
    I've the PL/SQL report which can allow passing in the parameter, i use '&'.
    the report is given to the end user who do not have the IDE for PL/SQL. the machanism of the report is generated into the spool file and import into excel format.
    now i am wondering how to create a tool using SQL or PL/SQL to allow the end user to choose the parameter(s) dynamically and passing into the PL/SQL to generate the report based on the input selected.
    the parameters like below:
    package code :
    week no :
    year :
    department :
    all the above parameters, the data would be selected from the existing lookup table. the user is allow to select more than 1 input for specified parameter for instance i want to spool report for week 1 until week 5.
    pls advise any solution on this topic. thanks

    hi scoot,
    thank for reply.
    yep, i'm using sql*plus and also sql navigator 4.0 .
    the user don't have the software to interact. i'm thinking of build an simple interface using VB and passing in the parameter then initiate the sql*plus to run the program in background mode.
    but if you have any other solution which not need to use other software to wirte such program , pls let me know immediately. thank

  • Report should prompt me for parameters, please help.

    Hi All,
    I am using Crystal version 10, So is there any way I can get the behaviour of my parameters as dynamic parameter? I have this requirement because when I am deploying the Report on BO server, and try to open the report from InfoView, it is not prompting me for parameters, rather it is giving me the copy which we had scheduled earlier. To get the fresh data with different parameters, we again need to schedule the report.
    What I want is simple, Whenever user clicks on the report link in infoview, I should be promted for the parameters my report is using.
    Please help..
    Thanks
    -Azhar

    Hi
    It would prompt whenever it's refreshed.
    You can refer to Business View manager guide from [here|http://help.sap.com/businessobject/product_guides/boexir2/en/xir2_bv_admin_en.pdf ] for detailed information.
    Hope this helps!!
    Regards
    Sourashree

  • How to avoid the parameters accepting screen generated by crystal report

    Hi ,
    I designed one rpt file which will take one parameter and trying to run that file from java servlets. But I am getting one problem. I am passing parameters from jsp and setting those to the crystal report but, instade of generating the report, it is generating one jsp page which is having text feild , after enter the parameter value onece I submit this page then only I am getting required output.
    anybody please help me in this. Below I am placing my code.     
                   ReportClientDocument reportClientDocument = new ReportClientDocument();
                   CrystalReportViewer viewer = new CrystalReportViewer();
                   ServletContext cxt = req.getSession().getServletContext();
                   String fileName = "C:/Documents and Settings/Administrator/Desktop/lib-so/ix_sample2.rpt";
                   try
                        String realPath = fileName;
                        reportClientDocument.open(realPath, 0);
                        viewer.refresh();
                        viewer.setReportSource(reportClientDocument.getReportSource());
                   catch(Exception e)
                        System.out.println("inside catch block...");
                        e.printStackTrace();
                   IReportSource reportSource = reportClientDocument.getReportSource();
                   Fields oFields = new Fields();  
                   ParameterField portfolio = new ParameterField();
                   portfolio.setName("Portfolio");
                    Values oValues = new Values();
                      ParameterFieldDiscreteValue oParameterFieldDiscreteValue = new ParameterFieldDiscreteValue();
                       oParameterFieldDiscreteValue.setValue(new Integer(16));
                       oValues.add(oParameterFieldDiscreteValue);
                       portfolio.setCurrentValues(oValues);
                       portfolio.setReportName(fileName);
                       oFields.add(portfolio);
                          viewer.setOwnPage(false);
                               viewer.setParameterFields(fi);
                       try {
                             viewer.processHttpRequest(req, res, cxt, res.getWriter());
                             viewer.dispose();
                       catch (ReportSDKExceptionBase e) {
                             e.printStackTrace();
    thanks,
    Mallikarjun
    Edited by: mallikarjuna.ch1 on May 17, 2009 9:58 AM

    Thanks a lot for worthful suggetion Neeraj.
    I got resolved my problem. I have one more issue, please give a clarification about that.
    my doublt is,
    For parameterized rpt file running purpose I need to set the database details . every jar file is placed in application lib only. And my CRConfig.xml file also placed bellow.
                  <?xml version="1.0" encoding="utf-8"?><CrystalReportEngine-configuration>
        <timeout>1</timeout>
        <ExternalFunctionLibraryClassNames>
              <classname> </classname>
              <classname> </classname>
        </ExternalFunctionLibraryClassNames>
    <keycode>B6W60-01CS200-00GCPT0-0JY1</keycode>
    <Javaserver-configuration>
    <DataDriverCommon>
         <JavaDir>D:\inventex\crystal_report\Business Objects\j2sdk1.4.2_08\bin</JavaDir>
        <Classpath>$</Classpath>
         <IORFileLocation>$</IORFileLocation>
         <JavaServerTimeout>1800</JavaServerTimeout>
         <JavaServerStartupTimeout>30</JavaServerStartupTimeout>
         <JVMMaxHeap>64000000</JVMMaxHeap>
         <JVMMinHeap>32000000</JVMMinHeap>
         <NumberOfThreads>100</NumberOfThreads>
    </DataDriverCommon>
    <JDBC>
         <CacheRowSetSize>100</CacheRowSetSize>
         <JDBCURL>jdbc:sqlserver://10.0.0.65:1433;DatabaseName=reportmanager</JDBCURL>
         <JDBCClassName>com.microsoft.sqlserver.jdbc.SQLServerDriver</JDBCClassName>
         <JDBCUserName>malli</JDBCUserName>
         <JNDIURL></JNDIURL>
         <JNDIConnectionFactory></JNDIConnectionFactory>
         <JNDIInitContext>/</JNDIInitContext>
         <JNDIUserName>weblogic</JNDIUserName>
         <GenericJDBCDriver>
              <Default>
                   <ServerType>UNKNOWN</ServerType>
                   <QuoteIdentifierOnOff>ON</QuoteIdentifierOnOff>
                   <StoredProcType>Standard</StoredProcType>
                   <LogonStyle>Standard</LogonStyle>
              </Default>
              <Sybase>
                   <ServerType>SYBASE</ServerType>
                   <QuoteIdentifierOnOff>OFF</QuoteIdentifierOnOff>
                   <DriverClassName>com.sybase.jdbc2.jdbc.SybDriver</DriverClassName>
                   <StoredProcType>Standard</StoredProcType>
                   <LogonStyle>MySQL</LogonStyle>
              </Sybase>
         </GenericJDBCDriver>
    </JDBC>
    <XML>
         <CacheRowSetSize>100</CacheRowSetSize>
         <PreReadNBytes>4096</PreReadNBytes>
         <XMLLocalURL></XMLLocalURL>
         <SchemaLocalURL></SchemaLocalURL>
         <XMLHttpURL></XMLHttpURL>
         <SchemaHttpURL></SchemaHttpURL>
    </XML>
    <JavaBeans>
        <CacheRowSetSize>100</CacheRowSetSize>
         <JavaBeansClassPath></JavaBeansClassPath>
    </JavaBeans>
    </Javaserver-configuration>
    </CrystalReportEngine-configuration>
    still it is showing "Error finding JNDI name (sql server) " error. I am solving this problem setting these paramers through program.

  • SSRS with DAX - parameters multivalue vs total element

    Hi all,
    I'm using SSRS on top of a SSAS tabular model to create intuitive dashboards for management department.
    One thing I'm struggling with is the lack of a "total" on parameters. What I'm doing is, based on the fact table, I create the datasets that will feed each parameter, so it only has the dimension members available on the fact table. That is fine
    performance wise, you only have 1 element and it renders very quickly.
    For a management perspective at a higher level it is important to view the totals to have the big picture of the information. In my project we are in a University, so I have the parameters Year, school (there are several schools in the university campus)
    and the course (computer sciences, math, statistics, etc).
    At first glance, if I'm a course coordinador I want to pick my course and have a global view, and I'm achiveing that, but imagine now, that I am the school coordinator, or the university coordenator.
    I want to see the aggregate values by all courses or by all schools.
    In my view I have 2 ways to do this and I come from a tradition cubes background:
    1 - I would use the all element the cubes hierarchy have on each attribute
    2 - I would use multivalue parameters with StrToSet (worse performance)
    Using DAX what is your approach?
    Best regards

    Hi AsifMehmood,
    Per my understanding you have create an SSRS report with SharePoint list, now you don’t know to create the distinct parameters by using CAML query,  right?
    For the CAML language doesn’t have any reserved word (or tag) to set this particular filter to remove duplicate results, but we can use the custom code to do this function. I have tested on my local environment and we can do that by create one hidden parameter(Param1)
    to get all the values from the fields which will  add the filter and then create another parameter(Param2) to get the distinct values based on the Param1, we use the custom code to do the deduplication.
    Step by Steps information in below thread for your reference to create the parameters and the custom code:
    "How to get distinct values of sharepoint column using SSRS"
    Other similar thread for your reference:
    https://audministrator.wordpress.com/2014/02/17/sharepoint-list-add-distinct-parameter-value/
    If your problem still exists, please feel free to ask and also try to provide us more details information.
    Regards
    Vicky Liu

  • Error while creating a BO Universe (using IDT) on top of SAP HANA Calculation View with Input Parameters

    Hi All..
          We are trying to create a Universe (using IDT-Version4.0) on top of the HANA Calculation view. The Calculation view has 4 input parameters, So
    in Universe side we have created the respective prompts. For the creation of derived table we have used the following code
    SELECT *
    FROM "_SYS_BIC"."<schema_name>.<CV_Calculation_View_test>"
    'PLACEHOLDER'=('$$IP_A$$','@Prompt(A)'),
    'PLACEHOLDER'=('$$IP_B$$','@Prompt(B)'),
    'PLACEHOLDER'=('$$IP_C$$','@Prompt(C)'),
    'PLACEHOLDER'=('$$IP_D$$','@Prompt(D)')
    While validating the above code we are getting an error.
    I have attached the snapshot of that error for your reference. Please find the attachment and help me in resolving it.
    Thanks in advance.

    Hello George,
    I don't have any personalization set on the info space. Also I am using mapped Account in BI to connect to HANA. The confusing part is that it is able to validate the infospace with the input parameters and index it. However query does not return any results. I even tried running the same query which explorer sends to HANA in the SQL editor and there too the same results,the query does not return anything. The model does return data when I do a data preview and if accessed from other tools like AAO.
    Also when I use SSO connection to HANA, indexing of the infospace fails. Where can I see the error log?
    Thanks,

Maybe you are looking for

  • 23" HD display went black. What now?

    HELP! Is there a DIY diagnostic protocol for a dead 23" Apple Cinema HD Display (2 yrs old)? I use my system everyday in my work, so, I've got to be sure that packing this giant thing up and sending it off for weeks (?) is absolutely the LAST RESORT

  • How to take a backup manually in oracle 11g express edition?

    how to take a backup manually in oracle 11g express edition? i want to take backup of a database and want to restore later on on a different computer .

  • CRMOD Presentation variable scope and usage in drilldown report

    Hello dear all, I have dashboard and presentation variables on dashboard promt. When selecting these presentation variables all work fine within dashboard. But when I drilldown to another report that also uses these presentation varibales its not wor

  • Problems with getWidth() and getHeight() in class Canvas

    Hi, i am developing MIDlets with Sun Studio4 One Update1 (Mobile Edition). Here is a simple example Code for my Problem: class MyCanvas extends Canvas     public void paint(Graphics g)         //Clear the Display         g.setColor(0,0,0); //black   

  • Why use int over double?

    i am using the book beginning java 2. and there is a example showing how the math class works the program calculates the radius of a circle in feet and inches given that the area is 100 square feet: public class MathCalc public static void main(Strin