Report url parameters

I have a list item "My Reports" under "Reports" tab in the application. When this list item is active, it should show all the reports for that user.Using one of the many query screens (with bunch of parameters), the user will generate a report. The user should be able to give a name to this report and save it in the database as that particular users report. When the user logins next time, these reports should appear as hyperlinks when the user navigates to "My Reports" list item in the application. When the user clicks on any of the report links, the corresponding report should be displyed. How can I store the report url with all the parameters as a string in the database and display them as report links to the user?.
Thanks,
Surya

hey surya--
     i know that you and i already spoke about your hyperlink columns, but i'll just post that answer really quickly so others can follow:
because you opted to have a single report page that runs all of your users' stored queries, you were unable to take advantage of the links we allow you to generate after the fact as a column attribute. the work around for your approach was to code your htp.anchor calls right into your select statement that ultimately gets stored in your stored queries table. if you'd stored the individual report parameters instead of the query strings, you could direct users back to the custom report screen for each report. you'd then be able to use our column attribute linking.
...now onto remembering your users' sort-enabled column header preference...
you'd like your app to be able to remember the column by which your user last sorted his report so that he can then invoke his stored report using that same sort preference. it takes a bit of a hack to achieve this, but the approach certainly works:
if you create a report with sort-enabled column headers and click on the generated column headers, you'll find that we pass the sorting information back to the html db engine via the URL. the two bits of information that make this possible are the value for :REQUEST (the fourth value in our f?p= url syntax) and the fsp_region_id parameter that we tack onto the end of the URL. if you gather these two pieces of data, you can then construct a URL that would sort the resulting report the same way that your user last viewed it. the fsp_region_id part won't change for your report. it's the numeric id associated (behind the scenes) with your report region. you can get that number by clicking on your report region name from your page definition screen in the html db development environment. the last number in your URL that's shown on the resulting page is your region id. the value of :REQUEST is a little trickier to trap, but it's still doable. since your users are altering their sort preferences by clicking our column header links, they're not SUBMITting their pages with each click. because of this, you're not given an opportunity to trap the value of :REQUEST. you can get it after the fact, though, because we store it as an html db Preference value. the syntax to store the your users' last column sort preference into a local variable would be...
declare
l_pref varchar2(200) default null;
l_region_id number default 123456;
begin
l_pref := wwv_flow_preferences.get_preference (
p_preference => 'FSP'||wwv_flow.g_flow_id||
'_P'||wwv_flow.g_flow_step_id||'_R'||l_region_id||'_SORT');
end;
...so assuming you had a report region whose ID was 123456, the above code would trap the last sort preference for your current user's session. (you'd probably want to insert this value into your stored report table, so you can get to it later.) so now that you know the region_id and your user's last sort preference, you just have to put those values back into the right places in your URL to get things to work. as you know, the value for :REQUEST goes in the fourth slot in our f?p= URL syntax. then you throw in the extra "&fsp_region_id=123456" at the end of that URL (assuming your region's id was 123456). in your case, you're storing your full query in a table. you'd probably want to pass your report page some id to let it know which query to run off of. assuming your region id is 123456, your report page is 5, the id that your stored queries table needed for this user was 7, and your user lasted sorted by the third column of the query, this is the type of URL that you'd need to pass to the HTML DB engine...
http://htmldb.oracle.com/pls/otn/f?p=&APP_ID.:5:&SESSION.:fsp_sort_3:::P5_MY_STORED_QUERY_TABLE_ID:7&fsp_region_id=123456
...where &APP_ID. and &SESSION. are substituted appropriately for you by html db. i know this is a lot of info, so far, but there is one more twist to all this: it appears that the value stored as a preference reflects the opposite order of ascension as the one the user indicated. so if your user clicks the 3rd column header of your report to sort by that column, the REQUEST value passed to our engine would be fsp_sort_3. the value stored as a preference would be fsp_sort_3_desc. i know that's weird, but that's just how it goes. since we're hacking, here, we can't really complain ;-)
hope this helps,
raj

Similar Messages

  • Hide report URL parameters and it's vlaues

    hi every body
    how i can hide the value of parameter when call report in url
    http://server:port/reports/rwservlet? orientation=PORTRAIT&desformat=PDF&destype=cache&report=E:\stud_free\Form\emps.rdf&
    userid=scott/tiger@orcl&server=repserver&emp_no=7777&department_id=10
    those paramters can i hide by using cgicmd.dat file and put them into key ,it's good.
    orientation=PORTRAIT&desformat=PDF&destype=cache&report=E:\stud_free\Form\Card_stu_C.rdf&
    userid=scott/tiger@orcl&server=repserver
    but those parameters?
    emp_no=7777&department_id=10
    how i can hide it's values ??
    * notice that the values oh those parameters are variables that means i pass it's (values) at RUN TIME
    any help?

    You can't.
    1. Instead of calling a report directly like that, you could write a server side program (in jsp, php, or mod_plsql for instance) and POST the data to this program. This program then does the actual call to the report.
    Posted data is not seen in the URL.
    2. If you are calling reports from Forms, use run_report_object instead of calling the report via a URL.
    3. I remember there is a document on OTN somewhere that explains how to use a cookie to achieve the same. See if I can find it again....
    Ah, here it is:
    http://www.oracle.com/technetwork/developer-tools/forms/frmwebshowdoc-rep-128094.pdf
    However, this is a solution that works in Forms, since it uses a Forms Java Bean.
    Edited by: InoL on Sep 27, 2011 8:50 AM

  • How to parse crystal report query prompt value via url parameters

    HI All,
    I am creating a employee detail report in crystal report. The recordset is huge and i have created a parameter prompts in the query and thinking to parse the prompt value via url parameters. Not sure why i still could not make it works.
    for example, in my query panel i have created a prompt called "pwwid"
    and this is how i parse the prompt value via open document url.
    OpenDocument/opendoc/openDocument.jsp?sIDType=CUID&iDocID=AV8U6HlIq4FBl_MhcBwHqGI&lsSpwwid=12345678
    I read the sap documentation, this is how it parse the prompt value via url parameter. but it is not working for me and i am getting prompt to fill in the wwid whenever i run the reports.
    any idea why i am not getting this works?
    Regards,
    KeatAun

    Could you try:
    OpenDocument/opendoc/openDocument.jsp?sIDType=CUID&iDocID=AV8U6HlIq4FBl_MhcBwHqGI&lsSpspwwid=12345678
    -Abhilash

  • Migration Report from SQL 2008 R2 SharePoint Integration to SQL 2012 SharePoint Integration - Url Parameters (ReportViewer)

    Dear All,
    I have issues in Url Parameters in SharePoint Integrated Mode (Reporting in SQL Server 2012).
    Test Server - Working fine
    with URL Parameter
    1. SharePoint 2010 + SQL Server 2008 R2 Reporting - SharePoint Integration Mode
    2. I have 1 PageView Web Part to call a Reports. Eg:-
    http://myserver_Test/ReportServer/Pages/ReportViewer.aspx?http://myserver_Test/SSRS%20Reports/Report_1.rdl
    Production Server - Failed
    with URL Parameter
    1. SharePoint 2010 + SQL Server 2012 Reporting - SharePoint Integration Mode
    2. Same a Test Server, I have a PageView Web Part to call a Reports but failed with page not found. Eg:-
    http://myserver_Production/ReportServer/Pages/ReportViewer.aspx?http://myserver_Production/SSRS%20Reports/Report_1.rdl
    I have check the Reporting folder (C:\Program Files\Common Files\microsoft shared\Web Server Extensions\15\WebServices\Reporting) and can't found any web page as
    ReportViewer.aspx.
    Thanks

    Dear All,
    Did anyone know, how can I Use the HTML Viewer in SharePoint Integrated Mode for SQL Server 2012 Reporting.
    I'm able to user the HTML Viewer in SharePoint Integrated Mode with the Reporting is SQL Server 2008 R2.
    http://techpunch.wordpress.com/2008/09/17/sql-server-reporting-services-url-parameters-in-sharepoint-integrated-mode/
    I know there is possible to call a report with RSViewerPage, but my users are
    not happen with the UI of default SharePoint reports display (RSViewerPage).
    http://msdn.microsoft.com/en-us/library/a58b4ca6-129d-45e9-95c7-e9169fe5bba4(v=sql.110)
    Appreaciate you help.
    Thanks

  • Discoverer report with parameters and functions

    I am new to Discoverer. Is there a way to create a report (with parameters) of one line per customer such that the following data will be displayed for each customer?
    Among the parameters is: from_date (month & year) ,to_date
    The basic query gives totals for each date (month & year) for every customer.
    Among the fields displayed:
    1-customer_id,
    2-balance until from_date,
    3-total activity between from_date and to_date
    I have a function to calculate the total balance until from_date, but then I cannot get the total activity on the same line. I tried using another function and I tried using a total calculation but to no success.
    Is this possible?
    Thanks.

    Hi Markus
    You need to determine whether you can in fact call a Discoverer report using a URL before linking it in Portal. You need to run the report in Viewer first and then see copy the URL from the address line of the browser. Then you open another browser and paste the URL. You may well be prompted for a username and password but hopefully the correct report with the right parameters will then execute.
    Assuming this works you then paste the same URL link into Portal and you should be able to get the report to run.
    Best wishes
    Michael

  • How to pass multiple values to a single parameter in BW report URL

    Hi Experts,
    I am new to EP and learning .... i am stuck at one point where we need to pass multiple parameters to a BW report URL, this is the URL that we launch from BSP.... Suppose i have to pass different multiple values to a single parameter, how to do it....
    i m getting many answers to pass parameters to iviews, reports, but not specific to my case.. can u plz help me....
    Thanks in advance
    Priya Rai

    What is the prolem you are facing if you split the single date param as two parameters say startdate and enddate?
    If you pass as single string then you might have to split the same at reciever end.
    Are you trying any thing specific?

  • "Unable to find report specified by URL,Please verify that both Server URL and Report URL are correct". Performance Point Dashboard Designer (SP 2013), SSRS 2012 Report.

    Hello Everybody,
    I am using Sharepoint server 2013 , SQL Server 2012 SP1, PerfomancePoint and Reporting Services in SharePoint integrated mode.
    I built one report in SSDTusing an Analysis Services Cube. This report has 3 parameters. So the idea is use Dashboard Designer to use this SSRS Report and connect it with some PP Filters.
    The issue is that I am always obtaining "Unable to find report specified by URL,Please verify that both Server URL and Report URL are correct".
    I have the following settings in the PP Report:
    Server Mode: SharePoint Integrated
    SharePoint Site: http://MySharrepointSite:PortNumber/sites/bicenter
    Document library : Documents (selected from drop down, my report is deployed to document library)
    Report : report.rdl
    When I select the report from drop down list its giving the error in a pop up message box as "Unable
    to find report specified by URL,Please verify that both Server URL and Report URL are correct".
    I have tried to use the most simple report, only with one parameter, but is always displaying the error above.
    When I open the report directly from documents library its working fine and even it is working fine (
    when I deployed the report) but the issue is parameters are not showing.
    Any idea? Please help.
    Thanks in Advance.

    "Unable to connect to the server at CALYSTO\ReportService.
    Hello Tom,
    It should be "ReportServer" in the URL, not "ReportService".
    In "Reporting Service Configuration Manager" look up the correct URL. Open Internet Explorer with right-mouse click => "Run as Administrator" and open the URL, this should work. Navigate to "Side setting" (on top right side),
    go to tab "Security" and add your account with role "System Administrator". Afterwards you should be able to open the URL without running IE as admin.
    Olaf Helper
    [ Blog] [ Xing] [ MVP]

  • How to read URL parameters of one wdp component into other WDP component?

    Dear Experts,
    Can anyone let me know how to read URL parameters of one wdp component into other WDP component?
    My requirement is i have one standard WDP component with 3 URL parameters and i needto
    read that URL parameters along with their values in my Z-WDP component.
    Thanks
    SK

    Hi Santosh,
    You can read parameters send from one WebDynpro Component to another component by adding code in "HANDLEDEFAULT" Event Handler method ( Window )of your target Web Dynpro Component.
    data: lt_parameter             type tihttpnvp,
             ls_parameter             type ihttpnvp.
    lo_api_controller ?= wd_this->wd_get_api( ).
       call method lo_api_controller->get_message_manager
         receiving
           message_manager = lo_message_manager.
       clear : ls_parameter.
       refresh : lt_parameter[].
    * Read all URL parameters
       wdevent->get_data( exporting name = if_wd_application=>all_url_parameters importing value = lt_parameter ).
    if not lt_parameter[] is initial.
         clear : ls_parameter.
         read table lt_parameter into ls_parameter index 1.
         if ls_parameter-name = 'ACTION' and
            ls_parameter-value is initial.
           lv_flag = 'X'.
           clear : lo_msg.
           lo_msg = 'Action Parameter Missing in URL Link !'.
    *         report message
           call method lo_message_manager->report_error_message
             exporting
               message_text = lo_msg.
         else.
         endif.
    Best Regards
    Priyesh Shah

  • Link two reports using parameters

    Hi,
    We are using business object XI.
    I am trying to link two reports using parameters. I cannot use subreport option becuase inside the subreport I should link another report too. So,
    Report 1(High level summary)
    Report 2(Middle level summary)
    Report 3(Detail level)
    I tried to use hyperlink option and used following string.
    http://<server_name>/<Virtual Directory>/object.rpt?prompt0={?param1}&prompt1={?param2}
    Here is my question.
    1. Server name: Does it include port number??
    2. Virtual Directory: I am absolutely lost. I tried the "frsinput" directory the actual rpt file is storing. It is not working.
    Do you have general path??
    3. Parameters: I have 5 parameters to pass. 3 of them are Strings and the rest are DateTime.
    Basically, I need any tutorial about this kinds of things. The tutorial I have got only discribe link like "www.yahoo.com"
    BTW, is this even possible solution??

    Hi,
    I am trying to link two reports in the crystal report designer->deploy to the server->show in the DHTML viewer.
    When I create a URL from report A, it looks like "&" disapears. For example, I created a hyper link from report A using formula,
    http://server:port/........openDocument.jsp?sDocName=reportB&sType=rpt&paramName1="Trim(ToText({?param1},"#####"))"&paramName2="+Trim(ToText ({?param2},"#######"))
    But when I see the actual URL, all the "&" disappears so it looks like
    http://server:port/........openDocument.jsp?sDocName=reportBsType=rptparamName1="Trim(ToText({?param1},"#####"))"paramName2="+Trim(ToText ({?param2},"#######"))
    No wonder it is not working.
    I guess I need special protection for "&" sign. Do you know any?

  • Parameter of BI-Report URL

    Hi,
    now I have a BI-report ID:   0TPLB_0CSALMC02_Q009_V01
    I need to add this Report into the webgui of CRM-2007. For this purpose, in CRM 2007 we need to specify the paramters of the BI-report-URL. But I have no idea , how to know which parameter we shall use here.
    I have looked through the document "Web API Reference" , but it can not tell me, which BI-report needs which parameters.
    Thanks a lot
    ss

    Here is an example code for this badi implementation:
    METHOD if_ex_bsp_dlc_fs~get_bi_rep_parameter.
      DATA: lr_bol_entity TYPE REF TO cl_crm_bol_entity,
            lr_value_node TYPE REF TO cl_bsp_wd_value_node,
            lr_collection TYPE REF TO if_bol_bo_col,
            lv_repid TYPE string.
    **this is only a example
      TRY.
          lr_bol_entity ?= iv_data_collection->get_first( ).
          lr_value_node ?= iv_data_collection->get_next( ).
          IF lr_value_node IS BOUND AND lr_bol_entity IS BOUND.
            lv_repid = lr_value_node->get_property_as_string( 'REPID' ).
            IF lv_repid = 'SAMPLE7'.
              REPLACE '&1' IN cv_addparameter WITH '0CRM_SOLDTO'.
              REPLACE '&2' IN cv_addparameter WITH '156'.
            ENDIF.
          ENDIF.
        CATCH cx_sy_move_cast_error.
      ENDTRY.
    ENDMETHOD.

  • Opening IE from application with give url parameters

    Hello,
    I have an application which needs to open IE and send it to a particular URL with cergain URL parameters. I use the exec() method of Runtime, IE opens up, BUT the url is truncated. Everything after and including the first '&' is cut off, thus causing errors in the jsp page it is trying to get.
    Here is the code:
    String parameter = " http://192.168.10.202/reports/reportgenman.jsp?S=" +
    Integer.toString(TradeIDGenerator.getClientID()) +
              "&cn=snoopy&cp=1252&lan=eng&acctount=" + account +
              "&from=" + getStartTime() +
              "&till=" + getEndTime();
    Runtime newsRuntime = Runtime.getRuntime();
    try{
    String osName = System.getProperty("os.name");
    Process ieProcess = null;
    if( osName.equalsIgnoreCase("WINDOWS 2000") || osName.equalsIgnoreCase("WINDOWS NT") )
    ieProcess = newsRuntime.exec("cmd /c start " + parameter);
    else if( osName.equalsIgnoreCase("WINDOWS 95") || osName.equalsIgnoreCase("WINDOWS 98") || osName.equalsIgnoreCase("WINDOWS ME") )
    ieProcess = newsRuntime.exec("start " + parameter);
    }catch(IOException ie){e.printStackTrace()}
    This code opens the Explorer with the following URL
    http://192.168.10.202/reports/reportgenman.jsp?S=6598745
    Where did the rest go?
    Please help.
    Thank you,
    Elana

    HI
    Place the parameter between quotes as shown below
    ieProcess = newsRuntime.exec("cmd /c start iexplore.exe " +
    "\"" + parameter + "\"");
    If you do not place double quotes, the URL will be truncated because of the presence of ampersand. Try the same command in command prompt it will not work.
    This will work.
    Regards
    Balasubramaniyan Krithivasan
    Hello,
    I have an application which needs to open IE and
    d send it to a particular URL with cergain URL
    parameters. I use the exec() method of Runtime, IE
    opens up, BUT the url is truncated. Everything after
    and including the first '&' is cut off, thus causing
    errors in the jsp page it is trying to get.
    Here is the code:
    String parameter = "
    http://192.168.10.202/reports/reportgenman.jsp?S=" +
    Integer.toString(TradeIDGenerator.getClientID())
    D()) +
              "&cn=snoopy&cp=1252&lan=eng&acctount=" + account +
              "&from=" + getStartTime() +
              "&till=" + getEndTime();
    Runtime newsRuntime = Runtime.getRuntime();
    try{
    String osName =
    ring osName = System.getProperty("os.name");
    Process ieProcess = null;
    if( osName.equalsIgnoreCase("WINDOWS
    Case("WINDOWS 2000") ||
    osName.equalsIgnoreCase("WINDOWS NT") )
    ieProcess = newsRuntime.exec("cmd /c> time.exec("cmd /c start " + parameter);
    else if(
    else if( osName.equalsIgnoreCase("WINDOWS 95") ||
    ) || osName.equalsIgnoreCase("WINDOWS 98") ||
    osName.equalsIgnoreCase("WINDOWS ME") )
    ieProcess = newsRuntime.exec("start> ntime.exec("start " + parameter);
    }catch(IOException ie){e.printStackTrace()}
    This code opens the Explorer with the following URL
    http://192.168.10.202/reports/reportgenman.jsp?S=65987
    5
    Where did the rest go?
    Please help.
    Thank you,
    Elana

  • Auto Run ignores URL parameters and uses Defaults on first run

    We have BI Publisher 11g standalone (not OBIEE).
    We have a suite of BI Publisher reports, all set up on data sets with default parameters.
    All reports have Auto Run enabled and caching disabled.
    The reports are run from a Flex UI application using a URL i.e. URLVariables and URLRequest and navigateToURL.
    The required parameters for any report are read from BI Publisher using the web services, then the user makes their selections in our custom UI.
    We use:
                             urlVariables['_xpf'] = null;
                             urlVariables['_xpt'] = 0;
                             urlVariables['_xf'] = 'html';
                             urlVariables['_xmode'] = 1;
    The first time any user runs any report in the application the report is generated but with the default parameters NOT their selected values, and it displays the parameter controls when the settings as per above say it should NOT.
    Any report generation after that is fine - it runs with the user's nominated parameters values, and it does not display the parameter controls.
    Originally we thought it might be caching so along with all report caching settings being disabled, we introduced a parameter to force the uniqueness of each report URL i.e.
                             urlVariables['noCache'] = new Date().getTime();
    In Safari, if we Reset Safari then restart the app in the same browser window we can reproduce the problem.
    Any suggestions please?
    Thanks

    I'm not sure where the "Enable Document Cache" setting is?
    All reports have caching disabled - so for each report in its Report Properties, all items on the Caching tab are checked off.
    i.e.
    Enable Data Caching - off
    User Level - off
    Document Caching - off

  • Parameter for BI-report-URL

    Hi,
    I need embed a BI Report in a factsheet of CRM 2007. I have absolute no idea about BI. So, now I have a stupid question.
    Given  a BI-report-ID ,e.g.
      0TPLB_0CSALMC02_Q009_V01, but it is still necessary to fill out the so called parameters for BI-Report-URL.  How can I know, which parameters are to be passed? Where can I find the parameter?
    Thanks in advance
    yy

    Hello Holger,
    it is a pretty good hint. thanks  and point awarded!
    I looked through the web API reference, mentioned in IMG guide .  But I have still the question:
    Does a BI report accept only specific parameters ? just like a method , function ....
    I mean, whether there is a table, where all corresponding parameter are listet for each BI-report ID .
    Additionally,
    Where are some specific parameter names declared? For example  "0Country". How can I know, that the "0Country" refers  exactly to  country, instead of other concepts. 
    Thanks a lot
    Siwei

  • Using a BSP page to hide report url ?!

    Hello everybody,
    I would like to 'hide' exact query url.
    I have found in SICF transaction external aliases but I can replace only a part of my url, ie :
    http://host:port/sap/bw/bex?parameters => http://host:port/test?parameters
    I would like to replace all the url in :
    http://host:port/sap/bw/bex?parameters  => http://serveuralias/
    This url has to be the same for each BW reports ... (little bit stupid i think but ...)
    How can i do this ?
    We told me that we can parameter a BSP page in SICF, on bex service, which call bw reports and thus we should only see the bsp url in IExplorer and not BW report url. Is it possible ?
    Thanks a lot,
    CG.

    hi tom,
    can u tell which method u r using for URL parameter passing?
    regards,
    kamaljeet

  • Crystal Reports URL Reporting Parameter promptOnRefresh in JSP

    I'm trying to run crystal reports from a JSP file that redirects using a URL string, but the promptOnRefresh=0 parameter that I pass doesn't seem to be preventing the report from prompting for parameters when the report viewer refresh button is hit.
    I'm running BO Enterprise 3.1. In Infoview, all of my report URLs forward their report IDs to a JSP page, (z_dw.jsp), which reads the infoview cookie for a logon token, and creates an IEnterpriseSession to get an enterprise token and the user's info. The JSP then redirects to view the desired report using the URL pattern below:
    http://<server>:<port>/CrystalReports/viewrpt.cwr?id=<reportID>&apstoken=<enterpriseToken>&promptex0="<username>"&promptOnRefresh=0
    The actual Java code to construct this URL is below:
    String redirectStr = "http://<server>:<port>/CrystalReports/viewrpt.cwr?id=" + request.getParameter("rpt")
      + "&apstoken=" + enterpriseToken
      + "&promptex0=\"en" + userName + "\""
      + "&promptOnRefresh=0";
    This forwards to the desired report and prompts for needed parameters correctly. Unfortunately, if the report is refreshed using the report viewer refresh button, all of the parameters are promted for including the reportID, which our users wouldn't know. In the xi3-1_url_reporting_opendocument_en(2010).pdf guide, it mentions that the 'promptOnRefresh' parameter can be set to 0 to prevent this from happening, however it didn't seem to work in my case.
    If anyone can advise me on how to fix this problem or how to disable the report viewer refresh button through a URL string, I would be very grateful.

    This turned out to be a valid bug, and the SAP Design Team fixed it in Fix pack 2.6 for BOXI 3.1 in response to this issue. If you encounter something similar, just upgrade to the latest fix pack and this problem should be taken care of.

Maybe you are looking for

  • Table of Contents / Bookmarks Jump to Middle of Page Instead of Heading

    I generated a Table of Contents in InDesign, but when I export to the PDF and click on either the actual text link in the table of contents or on the bookmark in the lefthand column, it jumps to the middle of the page that the article is on instead o

  • Refresh internal table records in web dynpro

    Hi Guru's I am facing an issue in web dynpro abap. in my application there is a button called OPEN. when i click on open button internal table records should be refreshed. so i have written code like this DATA lo_COMPONENTCONTROLLER TYPE REF TO IG_CO

  • WRE54G - WRT54GX4 - Issues!

    I have had this range expander for approximately 4 years now.  It works, I mean blue lights and all and I can connect to it, but I could never access the web utility.  I tried to plug it into the router, results in a lost connection. Tried changing t

  • Bapi message type e

    I am trying to execute the following program.i am getting an exception here: I am using crm5.2 I AM GETTING BAPI_MTYPE AS E. JCO.Structure returnStructure = function.getExportParameterList().getStructure("RETURN"); JCO.Structure returnStructure = fun

  • Oracle9iAS Containers for J2EE user's guide doc

    where can i found it? i need it to know how to config server.xml and application.xml, the otn dont have it but other pdf refer to it, it is really sick.