BI Beans Print/Export

In the BI Beans examples, the print and export functions when you press the button it is opened in the existing window. Is there a way to change this so that when you press the print or export button it opens a new window with the function?

HI thanks 4 replying .
But its not what we need .We want somthing similar to Oracle Viewer Printable page option (like a hyperlink of the printPreview option which will redirect the user to preview the report).
Kindly c this option in Discoverer Viewer.We need such kind of component in Oracle jdevloper BI beans.

Similar Messages

  • Report Print & Export Issue (File Download Box appears)

    We send a URL to Crystal Enterprise which runs a script, logs on, finds folder, finds report and displays in the Crystal report viewer. All that works fine....
    However, when you select the print icon or the export icon a Windows Internet Explorer box to select page range etc. and then when you say OK, you recieve a File Download Box asking to Open/Save/Cancel one of the following:
    Print - Name: CrystalViewer.pdf, and Type of pdf_auto_file
    Export - Name: CrystalViewer.rpt, and Type of CrystalReports
    I have no IDEA what he is trying to do but he sure ain't printing.  I can only assume that I have a missing part that he is trying to download at the time of print/export. Or that there is something set in the script that is killing me...
      Sub ViewReport( iStore, id, token)  
      URI = "./viewer/en/viewreport.csp?id=" & id & "&token=" & token & GetPrompt
       Set viewer = Server.CreateObject( "CrystalReports.CrystalReportViewer" )
       Set rptFactory = iStore.EnterpriseSession.Service("", "PSReportFactory")
       Set rptSource = rptFactory.OpenReportSource(CInt(id))
       ' Set the viewer's properties to prepare it for viewing.
       With viewer
          .ReportSource       = rptSource
          .EnterpriseLogon    = iStore.EnterpriseSession
          .URI                = URI
          .ISOWNPAGE          = TRUE
          .ISOWNFORM          = TRUE
          .HasPrintButton     = TRUE
          .ISDISPLAYPAGE      = true
          .isdisplaytoolbar   = true
          .isDisplayGroupTree = true
          .GroupTreeWidthUnit = 1
          .GroupTreeWidth     = 17
          .HasRefreshButton   = true
          .HasExportButton    = true
          .ParameterFields    = GetParams
       End With
        If Err.Number <> 0 Then
          'There was an error setting up the viewer.
          Response.Write "<p>Unable to create report viewer. " & Err.number
       Else
          'Process the request and launch the viewer.
          viewer.ProcessHttpRequest Request, Response, Session
          'viewer.refresh
       End If
    End Sub
    Help me???

    Please re-post if this is still an issue to the .NET Development - Crystal Reports Forum or purchase a case and have a dedicated support engineer work with you directly

  • Print, Export and Page Navigation Buttons in the Report

    When I view a report through CR4E, the generated report has 3 buttons namely Print, Export and Page Navigation buttons. But when I click on either of the buttons I get a &#39;null pointer exception&#39;. This is a critical error as I am unable to navigate past the first page. Do I have to add code to these buttons? If not, why am I getting an error? Kindly solve my problem as soon as possible.

    <p>Looking at your code it appears that you are storing the ReportSource in session prior to passing in the ResultSet. This will create a problem when a postback is made on  the viewer page (which all of the viewer actions do). If you look at the sample code which is generated when you use the JSP Page Wizard you will notice that the ResultSet is passed to the ReportClientDocument object prior to it being stored in session. Then, when the page is called again this object is retrieved and the ReportSource is used by the viewer. You can quickly run the test using one of our sample reports to see what I am talking about. The code below was generated using the Consolidated Balance Sheet.rpt and did not experience any problems doing any of the viewer actions.</p><%@page import="com.businessobjects.samples.JRCHelperSample,<br />com.crystaldecisions.report.web.viewer.CrystalReportViewer,<br />com.crystaldecisions.reports.sdk.ReportClientDocument,<br />com.crystaldecisions.sdk.occa.report.application.OpenReportOptions,<br />com.crystaldecisions.sdk.occa.report.lib.ReportSDKExceptionBase,<br />com.crystaldecisions.sdk.occa.report.reportsource.IReportSource,<br />java.sql.Connection,<br />java.sql.DriverManager,<br />java.sql.ResultSet,<br />java.sql.SQLException,<br />java.sql.Statement"%><%<br /><br /><br />    try {<br /><br />        String reportName = "Sample Reports/Consolidated Balance Sheet.rpt";<br />        ReportClientDocument clientDoc = (ReportClientDocument) session.getAttribute(reportName);<br /><br />        if (clientDoc == null) {<br /><br />            clientDoc = new ReportClientDocument();<br />            <br />            // Open report<br />            clientDoc.open(reportName, OpenReportOptions._openAsReadOnly);<br /><br />  <br />            {<br />                // **** POPULATE MAIN REPORT ****<br />                {<br />                     // Connection Info for fetching the resultSet<br />                    String connectStr = "jdbc:derby:classpath:/Xtreme";<br />                    String driverName = "org.apache.derby.jdbc.EmbeddedDriver";<br />                    String userName = "dbuser";        // TODO: Fill in database user<br />                    String password = "dbpassword";    // TODO: Fill in valid password<br /><br />                    String query = "SELECT CUSTOMER_NAME FROM APP.CUSTOMER WHERE COUNTRY = &#39;Australia&#39;";<br /><br />                    <br />                    String tableAlias = "FINANCIALS";        // TODO: Change to correct table alias<br /><br />                     <br />                    JRCHelperSample.passResultSet(clientDoc, fetchResultSet(driverName, connectStr, userName, password, query),<br />                        tableAlias, "");<br />                }<br /><br /><br />            }<br />        <br />            // Store the report document in session<br />            session.setAttribute(reportName, clientDoc);<br /><br />        }<br /><br /><br />            {<br />                // Create the CrystalReportViewer object<br />                CrystalReportViewer crystalReportPageViewer = new CrystalReportViewer();<br /><br />                //    set the reportsource property of the viewer<br />                IReportSource reportSource = clientDoc.getReportSource();                <br />                crystalReportPageViewer.setReportSource(reportSource);<br /><br />                // set viewer attributes<br />                crystalReportPageViewer.setOwnPage(true);<br />                crystalReportPageViewer.setOwnForm(true);<br /><br />                // Process the report<br />                crystalReportPageViewer.processHttpRequest(request, response, application, null); <br /><br />            }<br />            <br /><br />    } catch (ReportSDKExceptionBase e) {<br />        out.println(e);<br />    } <br />    <br />%><%!<br />// Simple utility function for obtaining result sets that will be pushed into the report.  <br />// This is just standard querying of a Java result set and does NOT involve any <br />// Crystal JRC SDK functions. <br /><br />    private static ResultSet fetchResultSet(String driverName,<br />            String connectStr, String userName, String password, String query) throws SQLException, ClassNotFoundException {<br /><br />        //Load JDBC driver for the database that will be queried    <br />        Class.forName(driverName);<br /><br />        Connection connection = DriverManager.getConnection(connectStr, userName, password);<br />        Statement statement = connection.createStatement(ResultSet.TYPE_SCROLL_INSENSITIVE, ResultSet.CONCUR_READ_ONLY);<br /><br />        //Execute query and return result sets<br />        return statement.executeQuery(query);<br /><br />}%><p>Try using the code generated from the wizard to see if it works for you as well. </p><p>Regards,<br />Sean Johnson (CR4E Product Manager) </p>

  • Crystal Report/STRUTS: Error (404) when clicking on Control Buttons (Print, Export, Next, Previous, etc...) on report viewer

    Post Author: jwenny
    CA Forum: Deployment
    Need help badly!!!
    We are using the crystal reports plugin for STRUTS.
    We are able to display the report in the crystal report viewer.  However, when we click any control buttons (print, export, etc...), then we get:
    JSPG0036E:  Failed to find resource /Report-viewer.jsp
    We then moved Report-viewer.jsp to the WebContents folder (root directory) and got a different error when we clicked any control button:
    Error:  400 page not found
    Does anyone know how to solve this problem?  For instance, is there a setting or parameter that needs to be set?
    Greatly appreciate any help!

    HI,
    Whenever we print the viewer does an auto postback, I believe due to this some of the values are getting missed. Moreover we are referring to the viewer and reportdocument object, it seems. So can you try this simple code in an application to see if it helps:
    ReportDocument rdoc = new ReportDocument();
    rdoc.Load("C:\TASKECrystalReports\Intraday.rpt");
    rdoc.SetDatabaseLogon("uid","pwd");
    rdoc.SetParameterValues("parameter name","value");
    CrystalReportViewer.ReportSource = rdoc;
    Helps?
    Thanks.

  • Cannot Print/Export to PDF in OBIEE 11G

    Hello,
    Since upgrading to OBIEE 11g (currently on 11.1.1.6) I have random occasions where I am unable to print a whole page or even export a single report to PDF. We experienced this when on 11.1.1.5 but all I get is an "Internet Explorer cannot dispaly this page" It is not related directly to IE as I am able to reproduce the error with Firefox as well.
    Has anyone else seen and overcome this issue? I have been unsuccessful finding any information on this in Oracle's support KB. Any help or suggestions would be greatly appreciated.

    It has been a while since I have checked this. Sorry for any delay. We have attempted to rearrange items however have had no luck.
    On small break through we have is that we have a custom link setup using Microsoft IIS on our server so we can access the application from outside of our network rather than just internally. We have found that we only have the print/export issues when using this external link so there may be an issue with our IIS configuration. Just throwing that one out there in case anyone has had a similiar issue with IIS configuration and found a fix.

  • Crystal ReportViewer not showing on the browser but the tool bar appears with Print, export etc.

    Hello
    I am struggling on displaying the Report on the Browser. I am using Visual Studio 2010 and loaded my development box with client Tools.
    I am calling a report which is hosted on a Crystal Enterprise Server 13 on a remote location.
    The problem I am having right now is I am able to connect to the report without issues and able to see the Control Toolbar like "Print", "Export" icons etc. On clicking on Print or "Export" it is perfectly working as expected with Data. But the Crystal Report View does not show the report on the browser. Not sure why that is happening. is there anything I am missing? Code also pasted below. Please review and do help me quickly in providing an answer as soon as possible please.
    All the references are of CrystaDecisions 14.0.35000 versions.
    Running the application from my Visual Studio. PLEASE HELP!!
    SessionMgr ceSessionMgr = new SessionMgr();
                EnterpriseSession ceSession = ceSessionMgr.Logon("username",
                                        "password",
                                        "servername:port", "Enterprise");
                EnterpriseService ceEnterpriseService = ceSession.GetService("", "InfoStore");
                InfoStore ceInfoStore = new InfoStore(ceEnterpriseService);
                EnterpriseService ceRASFactoryService = ceSession.GetService("", "RASReportFactory");
                object rrfObject = ceRASFactoryService.Interface;
                InfoObjects ceInfoObjects = ceInfoStore.Query("SELECT * FROM CI_INFOOBJECTS WHERE SI_PROGID='CrystalEnterprise.Report' AND SI_NAME='WMS_TIMESHEET'");
                InfoObject ceInfoObject = ceInfoObjects[1];
                ReportAppFactory myReportAppFactory = (ReportAppFactory)rrfObject;
                myReportClientDocument = myReportAppFactory.OpenDocument(ceInfoObject.ID, 0);
                reportAreaController = myReportClientDocument.ReportDefController.ReportAreaController;
                reportSource = myReportClientDocument.ReportSource;
                CrystalDecisions.ReportAppServer.DataDefModel.ConnectionInfo connInfo = new CrystalDecisions.ReportAppServer.DataDefModel.ConnectionInfo();
                CrystalDecisions.ReportAppServer.DataDefModel.ConnectionInfos connInfos = new CrystalDecisions.ReportAppServer.DataDefModel.ConnectionInfos();
                CrystalDecisions.ReportAppServer.DataDefModel.PropertyBag propertyBag = new CrystalDecisions.ReportAppServer.DataDefModel.PropertyBag();
                propertyBag.Add("Database DLL", "crdb_odbc.dll");
                propertyBag.Add("Server Name", "WMS");
                connInfo.Attributes = propertyBag;
                connInfo.UserName = "xxxxx";
                connInfo.Password = "xxxxx";
                connInfos.Add(connInfo);
                myReportClientDocument.DatabaseController.SetConnectionInfos(connInfos);
                //if (IsPostBack)
                //SetReportData(295286);
                //myReportClientDocument.DatabaseController.logon(userId, password);
                myReportClientDocument.DatabaseController.logon("xxxxx", "xxxxx");
                Session.Add("ceSession",ceSession);
                Session.Add("ReportClientDocument",myReportClientDocument);
                CrystalReportViewer2.Visible = true;
                CrystalReportViewer2.EnterpriseLogon = Session["ceSession"];
                //CrystalReportViewer2.ReportSource = ceReportDocument;
                if (myReportClientDocument == null)
                    CrystalReportViewer2.ReportSource =  (ReportClientDocument) Session["ReportClientDocument"];
                else
                    CrystalReportViewer2.ReportSource = myReportClientDocument;
                CrystalReportViewer2.HasCrystalLogo = false;
                CrystalReportViewer2.HasExportButton = true;
                CrystalReportViewer2.HasPrintButton = true;
                CrystalReportViewer2.HasGotoPageButton = true;
                CrystalReportViewer2.HasPageNavigationButtons = true;
                CrystalReportViewer2.HasRefreshButton = true;
                CrystalReportViewer2.HasSearchButton = true;
                CrystalReportViewer2.HasToggleGroupTreeButton = true;
                CrystalReportViewer2.BestFitPage = true;
                CrystalReportViewer2.DisplayPage = true;
                CrystalReportViewer2.DisplayToolbar = true;
                CrystalReportViewer2.EnableDrillDown = true;
                CrystalReportViewer2.DocumentView = DocumentViewType.WebLayout;
                CrystalReportViewer2.RequestContext.FetchFromServer = true;
                //CrystalReportViewer2.ReuseParameterValuesOnRefresh = true;
                //CrystalReportViewer2.Width = 350;
                //CrystalReportViewer2.Height = 350;
                CrystalReportViewer2.Page.Title = "The information contained below is not for use or disclosure outside Convergys Corporation except under written agreement.";
                CrystalReportViewer2.PrintMode = CrystalDecisions.Web.PrintMode.ActiveX;
                CrystalReportViewer2.Zoom(400);

    Hi,
    What browser version are you using?
    Could you view the report from launchpad from the same browser?
    Could you try a different browser version?
    In IE, could you try using compatibility mode?
    - Bhushan
    Senior Engineer
    SAP Active Global Support
    Follow us on Twitter
    Got Enhancement ideas? Try the SAP Idea Place

  • How to include Print & Export Buttons in VC

    Hi
    I developed 1 Dashboard with Tables(4) & Graphs(4).
    My requirement is to include  PRINT & EXPORT TO PDF BUTTONS so that users can Print or export the all the items in dashboard or particular item to a PDF
    Please advise how can i achieve this
    Thanks

    Hi
    Refer the link below. Detail procedure of exporting the data to clipboard,excel & PDF isgiven -
    http://sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/805709cb-ec97-2910-04b8-f3d6303d8d3b
    (Check the appendix at the end of this document, that is also important)
    Also if you want to print the dashboard follow th steps below -
    1. Include one form & right click on it & go to 'Toolbars'
    2. Create Button in it & assign the system action 'Print'
    3. You will get various options for it (Print Table, Print Whole page etc.)
    4. Select Print Whole page.
    5. When you execute thei model in run time you will get one button in that. When user clicks this button, he will get normal print popup window which we get before printing anything.
    Regards
    Sandeep

  • Looking for a way to automate a print/export function

    I have a document with a 1000 pages, and want to print/export in 10 page ranges (i.e. 1-10, 11-20, 21-30, etc.) to end up with 100 individual files. Is there a way to do this one time as oppose to print/export 100 times?

    The script method would work, however for my post, I used a generic example. The real project would be many documents with various page counts and various ranges. The range would be consistent throughout that document, but it could be every 2 pages, every 4 pages, every 8 pages, etc.
    I did check the scripting forum, and there is a script posted to print every page to file. I imagine I could modify this one, but at this moment without knowing all the page factors involved, I don't know if the script method is the most viable.
    What I was really wishing for... a magical code that could easily be entered into the Page Range field that would separate as needed.

  • Print ,Export etc options not working on dashboard level in 11g OBIEE ?

    Hi
    I have multiple analyses on a dashboard and now i want to add print,export etc links on dashboard level but when i try to do this with following steps
    1- Edit dashboard > Tools > Dashboard properties > Dashboard Report links
    Select Print , Export etc options click ok button and save dashboard
    But when i run the dashbord these options(Print , Export etc) comes with every analysis but i want it only on dashboard level comes one time only for whole dashboard.
    Any help about it ?
    Its urgent
    Thank you

    Hi,
    go to edit dashboard--->
    --->look at u r answres repot properties ---->just right click and select report link then check it
    customised ---> select pdf ,print what ever u want
    i.e
    Analysis level — The link settings apply only to the particular analysis.
    To specify the report links at the analysis level, click the Properties button for the analysis in the "Page Layout area" of the Dashboard builder and select Report Links
    THanks
    Deva
    Edited by: Devarasu on Mar 15, 2012 6:54 PM

  • How to control actions printing,export in discoverer viewer for user

    Hi
    we use discoverer viewer .I want to control Printing,export,send email options
    for user for a worksheet.Hoe to do this. thru Enterprise Manager apps server control , i tried to change the settings , but i guess thats for all the users and all the workbooks.
    how do i set this for user??
    rgds

    Hi
    Yes, the settings you can apply are global and will affect all users. You cannot restrict these by user. Sorry.
    Best wishes
    Michael

  • Updated CC to 2014 lost printer export option unless choose non-2014 CC version-any thoughts?

      Hello,
    After updating to new CC 2014 version noticed it opened on my # 1 monitor instead of #2 Cintiq tablet.Upon going to send image to Canon export module through Photoshop,I noticed it was missing(print module).
    Windows program window shows(#1) Adobe Photoshop CC (64 Bit)  and (#2) Adobe Photoshop CC 2014
      I went back to original CC version(#1) and it opened on correct monitors and Canon driver is where it should be.Tried dropping export file into 2014 vers. (#2)but didn't help.
      I have been able to set .tiffs to Photoshop CC(#1) as default,but jpegs will only open on CC 2014 (#2).
    "Original" vers. (#1) shows following in system info;
    Adobe Photoshop Version: 14.2.1 (14.2.1 20140207.r.570 2014/02/07:23:00:00) x64
    Operating System: Windows 7 64-bit
    Version: 6.1 Service Pack 1
    I hope I don't have to open CC 2014 to use the new tools then open the older version to get to my printer export plug-in.

    I do not know what you mean by printer export option or print module.  I do not have a cintiq Display I have two displays and a Wacom intuos Pro.and have a Epson printer not a cannon printer.  I keep my Photoshop Paletts on my 720P size display and Photoshop main window on my 1080p size display. I run windows 7 Pro. I have no Problem with CC 2014 menu File>Print (Ctrl P).  Look at my 1080P size screen capture. View screen capture in a new tab an scale to actual pixels.  The site scales image poorly. Do you have the correct device drivers installed on you windows 7 system for your printer?

  • Notes won't let me export all my notes at once. I have to select each one and print/export them. Is there a way to select all and have them export as a PDF?

    Notes -Export Question:I have to select each Note  and print/export them. Is there a way to select all the notes and have them export as a PDF

    http://www.igeeksblog.com/export-notes-in-mac-os-x/
    A friend found this for me, I searched SO MANY HOURS but somehow never found this on my own. I love it. It's a download of an app called "Notes Exporter" YAY

  • Printing/Exporting with "Green Bar" styling

    Hello,
    I am currently using OBIEE 11.1.1.6 and have multiple reports that utilize the alternating row "green bar" styling. The issue I have is that when a user prints to PDF or exports to Powerpoint, the green bar styling does not come with. All the rows are plain white. If they export to Excel it is even worse as the rows that should have the green fill are white and lose all the borders on the cells. I have tried with both the "All Columns" and "Innermost Column" and neither make a difference.
    Does anyone have any suggestions for fixing this or a workaround to get the green bar styling to print/export properly?

    Hi,
    refer the link:
    http://obiee101.blogspot.in/2009/05/obiee-customization.html
    Plz mark if it helps you.........

  • How to remove connect and workbook link after pressing Save as,Print,Export

    I have to remove the connect link and workbook link which appear AFTER pressing Save as,Printable Page,Export in a discoverer viewer report. I had already removed the link in the report itself with changing the uix files, but after pushing the link for export, save as or print the link Connect and Workbook still appear.
    I know that I have to change something in UIX Files, but which one and what I have to change...? Have anyone an idea? Thanx for fast reply, it´s a urgent problem.
    in addition: In metalink,otn and google were no solution...

    If the tone really is a single (or at least narrow band) frequency like the picture shows, I'd try the Notch Filter on the Audition/Effects/Filter and EQ menu.  It might take some playing around to get the exact frequency and tweak the amount of cut you apply vs. the effect it will have on surrounding frequencies--but if you can get the right balance, you can then easily apply this to the whole of every file.
    Sorry, can't help on the Premiere Pro question since I only use Audition.

  • Print/Export on toolbar no functionality in Report viewer - please help

    I am not able to get any functionality out of the toolbar icons Print and Export on the crViewer built in toolbar.  When I click on the buttons I get the Yellow Java triangle in the bottom left corner.  The message details is "object does not support this action"
    I am using:  Crystal Reports XI with all service packs.  visual studio 2005 with all service packs.  This is a .NET application with visual basic as the language for a web based application.
    Please let me know what I need to add to get this functioning.  Thanks,
    In my WEB config I have:
    <httpHandlers>
    ~some others not related to crystal
    <add verb="GET" path="CrystalImageHandler.aspx" type="CrystalDecisions.Web.CrystalImageHandler, CrystalDecisions.Web, Version=11.5.3700.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"/>
    </httpHandlers>
    <assemblies>
    ~others not crystal
    <add assembly="CrystalDecisions.CrystalReports.Engine, Version=11.5.3700.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"/>
    <add assembly="CrystalDecisions.Enterprise.Framework, Version=11.5.3300.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"/>
    <add assembly="CrystalDecisions.ReportAppServer.ClientDoc, Version=11.5.3300.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"/>
    <add assembly="CrystalDecisions.Shared, Version=11.5.3700.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"/>
    <add assembly="CrystalDecisions.Enterprise.InfoStore, Version=11.5.3300.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"/>
    <add assembly="CrystalDecisions.Web, Version=11.5.3700.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"/>
    <add assembly="CrystalDecisions.ReportSource, Version=11.5.3700.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"/>
    <add assembly="System.Drawing.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/></assemblies>
    In order to get the icons working I copied apsnet_client\cyctem_web\2_0_50727\crystalreportviewers115 all files and folders to my project. 
    I have included the path in both:
    GroupTreeImagesFolderUrl="/aspnet_client/System_Web/2_0_50727/crystalreportviewers115/images/tree/"  ToolbarImagesFolderUrl="/aspnet_client/System_Web/2_0_50727/crystalreportviewers115/images/toolbar/" DisplayBottomToolbar="False" HasCrystalLogo="False"  />

    Yes, that is good info. I am still not sure if you are using custom or default websites(?).
    On your development computer, open IIS (Start | Run -> Inetmgr). Is your application installed under default websites or under a custom web site?
    I suspect you are using custom web site and the aspnet_client folder and it's subfolders are not included under the custom website. E.g.; default web site will use files from c:inetpubwwrootaspnet_client. Ensure that the aspnet_client folder and it's subfolders are copied under the custom website. Also, have a look at [this|https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/50aa68c0-82dd-2b10-42bf-e5502b45cd3a] article. It explains the aspnet_client folder and it's subfolders in some detail.
    Ludek

Maybe you are looking for

  • Problem installing ActiveX viewer in Windows 7

    Hello, We downloaded the public beta of Windows 7 today and I am getting an error in our web application when it tries to install the Crystal Reports XI ActiveX report viewer (version 11.0.0.1424 of crviewer.dll).  IE8 will issue its normal prompt to

  • How to redirect the portal Logon page..IMP

    Hi Frndz.. I want to know how i can change the Portal default logon page, means when ur giving url on browser like http://host:port/irj/portal it  will directs us to default portal logon page that we r familiar. As per my requirement when we call the

  • Bank name in the pay slip

    Hi i wanted display bank name in the payslip. i have usedd single fields where throug XBT table i brought field BANKL. here i am able to get the bank key but not name of the bank. According to key i want to bring the bank name since we are using two

  • Cannot find line where veiw,or bookmark is on top of page

    very top of page has the word veiw and bookmark but the line has disapeared

  • 802.1x Wireless - Enforce user AND machine authentication

    I am using ACS v5.6 and I'd like to confirm that it is not possible to enforce both user and machine authentication against AD before allowing wireless access to Windows 7 clients, using PEAP/MSCHAPv2 and the built-in 802.1x supplicant. The only work