Embedding a report in iproc

Hi,
Need help. I have a requirement where i should embed a report in iProc that shows all requisitions for a department.
Any idead how this can be done.
thanks

If you are on 11.5.10 -
what Ram has said in the thread below on the personalization is valid and you should follow that, iProcurement pages have been migrated completely to OA, so personalization should work well.
Re: Adding item to exiting AK Region
If you are on 11.5.9 -
Follow these steps
1. Do a view source from your browser on that page to find the region that the item is located in the xml source file, it would be something like PORXXXXX.xml.
2. Open the XML file and find the AK Region, it will be something like POR_WHATEVER_REGION.
3. Go to AK Region form, using the AK Developer responsibility and query for the region that is obtained in step 2 above
4. Navigate to the Region Item form and add whatever item you want to enter, set the node display flag to ON, save the definition.
You should bounce the mid-tier apache before testing the application.
Please note that this is not going to be upgrade-safe.
Thanks,
Tapash

Similar Messages

  • How to embedded oracle report data in email body from forms?

    Hi,
    I am working on oracle forms and report 10g and i am new to this. I want to knw How to embedded oracle report data in email body ?
    Regards
    Shruti

    I have uploaded a sample . This might help
    http://www.alexyscorp.com/send_report_email.zip

  • Where is the parameter panel on the embedded Crystal Report preview in Visu

    Where is the parameter panel on the embedded Crystal Report preview in Visual Studio?
    I found a tweet on google about this.. but the link is invalid.. and I could not find the article on SDN.
    KB #1486469 - Where is the parameter panel on the embedded Crystal Report preview in Visual Studio? http://tinyurl.com/22thlcg
    How do I the show parameter dialog in either WPF or Winforms viewer of Visual Studio 2010.
    Parameters are not even visible in the Parameters Side panel. It is empty too..
    I see two classes ParameterPrompting and ParameterPrompt both, on initialization throws exception.. even to manually invoke them...
    Is it permanently removed?

    Hello,
    Seems like a reported Bug.
    Please check:
    Re: CRVS2010 - Hide Group Tree and Parameter Panel
    A possible woraround but you need to change as per your need:
    CRVS 2010 BETA - WPF Viewer - How to hide SidePanel?
    Hope it helps.
    Thanks.

  • Embedding Crystal Reports with parameters in web page

    Hi,
    I have created a sample report file and configured it with a parameter field. On embedding this report file in the web page, as expected I am prompted to enter value for the parameter. After entering value and clicking OK, CrystalReportViewerServlet delegates the call to the custom JDBC connector implementation which is the data provider. However, the web page doesnu2019t show the retrieved resultset but shows a page with some text like this:
    {"update":{"children":[{"children":[
    {"args":{"curPage":1,"numPages":"1"},"cons":"bobj.crv.newSelectPageControl"},{"args":{"searchText":""},"cons":"bobj.crv.newSearchTextControl"}
    ],"cons":"bobj.crv.newToolbar"},{"args":{"displayDrilldownTab":true,"initTabIdx":0},"children":[{"args":{"isMainReport":true,"label":"Main Report","viewStateId":"1"},"children":[{"args":{"content":"\r\n 
    On debugging I could see, that the parameter value from the prompt is correctly passed from the CrystalReportViewerServlet to the custom Connector (i.e., the sql query is updated with the parameter value) and the connector fetches the data also.
    I also tried embedding another .rpt file with few parameter fields configured (where user input values are just passed to the details section of the report for display). However on running this web page also I get the same error.
    Report files with no parameter fields configured are working fine when embedded in web page.
    Any thoughts would be appreciated.
    Regards,
    Ria

    I would take a look at running our simple [sample application |http://www.sdn.sap.com/irj/boc/index?rid=/library/uuid/307224d2-3d11-2c10-fe86-d87bab901bee&overridelayout=true]that views reports to see if you have the issue there.

  • Copy doesn't work with embeded sub report in CR For Visual Studio 2010 SP2

    Copy feature doesn't seems to work with embeded sub report content in CR For Visual Studio 2010 SP2. I am using a winform app .net 4.0. I am not able to select the individual fields in the embeded sub report . It always select the whole sub report and it is not copying anything. Please let me know how to enable the copy feature for elements in  embeded sub report.

    I understand your description. Let me do a quick test of this later on today and get back....
    Ludek
    Follow us on Twitter http://twitter.com/SAPCRNetSup
    Got Enhancement ideas? Try the [SAP Idea Place|https://ideas.sap.com/community/products_and_solutions/crystalreports]

  • How to connect SQL SHAPED Child RecordSet to A VB6 Embeded Sub Report?

    Please Help me in connect SQL SHAPED Child RecordSet to A VB6 Embeded Sub Report.
    Here is the Code I am currently Using in VB6 SP6.
    I want to Connect to "Command1" Child Recordset with "item" Sub Report.Please Help Me.
    Option Explicit
    ' The ADO connection to the local database.
    Public oConn As ADODB.Connection
    Public ocmd1 As ADODB.Command
    Public ocmd2 As ADODB.Command
    Public ocmd3 As ADODB.Command
    Dim rs As ADODB.Recordset
    Dim rs_sb1 As ADODB.Recordset
    Dim rs_sb2 As ADODB.Recordset
    Public invoice_report As New CrystalReport1
    Public itemsub_report As Report
    Public servicesub_report As Report
    Public sConnectString As String
    Public strSQL As String
    Dim ADOrs As ADODB.Recordset
    Private Sub Form_Load()
    minvno = 3
    'msubtype_id = 16
    'Create ADO Connection object
    Set oConn = New ADODB.Connection
    sConnectString = "Provider = MSDataShape;Data Provider=Microsoft.Jet.OLEDB.4.0;" & "Data Source=" & App.Path & "\stocks\business.mdb;" & "Persist Security Info=False;" & "User ID=Admin;" & "Jet OLEDB:Database Password=apple14;"
    oConn.Open sConnectString
    'Create ADO Command object
    Set ocmd1 = New ADODB.Command
    Set ocmd1.ActiveConnection = oConn
    ocmd1.CommandText = " SHAPE {SELECT invoices_customer., contacts., invoice_subtypes.* FROM invoices_customer, contacts, invoice_subtypes WHERE invoices_customer.contact_id = contacts.contact_id AND invoices_customer.subtype_id = invoice_subtypes.subtype_id AND invoices_customer.inv_no = " & minvno & " AND invoices_customer.type = 'service'} AS invoice_customer APPEND ({SELECT * FROM `item_customer`} AS Command1 RELATE 'inv_no' TO 'inv_no','invoices_customer.subtype_id' TO 'subtype_id') AS Command1,({SELECT * FROM `service_customer`} AS Command2 RELATE 'inv_no' TO 'inv_no','invoices_customer.subtype_id' TO 'subtype_id') AS Command2"
    ocmd1.CommandType = adCmdText
    Set rs = New ADODB.Recordset ' Recordset for the main report
    Set rs = ocmd1.Execute
    Dim crs As ADODB.Recordset
    Set crs = rs.Fields("Command1").Value
    'Set crs = rs!command1.Value
    Me.Caption = crs.RecordCount
    ' Add the datasource to the report
    invoice_report.Database.AddADOCommand oConn, ocmd1
    ' Connect the recordset to the main report
    invoice_report.DiscardSavedData
    invoice_report.Database.SetDataSource rs, 3, 1
    invoice_report.AutoSetUnboundFieldSource crBMTName
    If rs.RecordCount > 0 Then
    With invoice_report
    .Field1.SetUnboundFieldSource ("{ADO.date}")
    If rs("post") = "None" Then
    .Field2.SetUnboundFieldSource ""
    Else
    .Field2.SetUnboundFieldSource ("{ADO.post}")
    End If
    .Field4.SetUnboundFieldSource ("{ADO.name}")
    .Field5.SetUnboundFieldSource ("{ADO.address}")
    .Field6.SetUnboundFieldSource ("{ADO.mpay}")
    If rs("mpay") = "Cash" Then
    .Text2.SetText ""
    Else
    If rs("mpay") = "Cheque" Then
    .Text2.SetText "Cheq.Date"
    .Field7.SetUnboundFieldSource ("{ADO.cheque}")
    .Field8.SetUnboundFieldSource ("{ADO.bank}")
    .Field9.SetUnboundFieldSource ("{ADO.cheque_date}")
    Else
    If rs("mpay") = "Credit Card" Then
    .Text2.SetText "Exp.Date"
    .Field7.SetUnboundFieldSource ("{ADO.ccard}")
    .Field8.SetUnboundFieldSource ("{ADO.bank}")
    .Field11.SetUnboundFieldSource ("{ADO.cctype}")
    .Field9.SetUnboundFieldSource ("{ADO.exp_date}")
    Else
    End If
    End If
    End If
    .Field10.SetUnboundFieldSource ("{ADO.vno}")
    End With
    Else
    End If
    invoice_report.Subreport1.OpenSubreport.Database.AddADOCommand oConn, ocmd1
    'Set itemsub_report = invoice_report.Subreport1.OpenSubreport
    Set itemsub_report = invoice_report.OpenSubreport("item")
    ' connect the other recordset to the sub-report
    itemsub_report.DiscardSavedData
    itemsub_report.Database.SetDataSource rs, 3, 1
    itemsub_report.AutoSetUnboundFieldSource crBMTName
    If rs.RecordCount > 0 Then
    With itemsub_report
    '.Text1.SetText "Invoice - " & rs("subtype")
    .Text1.SetText "Invoice - " & itemsub_report.Database.Tables(1).Fields(41).Name
    .Field2.SetUnboundFieldSource itemsub_report.Database.Tables(1).Fields(41).Name
    ' .Field1.SetUnboundFieldSource ("{ADO.Command1-qty}")
    '.Field2.SetUnboundFieldSource ("{ADO.Command1-brand}")
    .Field3.SetUnboundFieldSource ("{ADO.Command1-brand_id}")
    .Field4.SetUnboundFieldSource ("{ADO.Command1-category}")
    .Field5.SetUnboundFieldSource ("{ADO.Command1-price}")
    .Field6.SetUnboundFieldSource ("{ADO.Command1-value}")
    .Field7.SetUnboundFieldSource ("{ADO.job_no}")
    End With
    invoice_report.Field12.SetUnboundFieldSource ("{ADO.item_charge}")
    Else
    End If
    invoice_report.Subreport2.OpenSubreport.Database.AddADOCommand oConn, ocmd1
    Set servicesub_report = invoice_report.Subreport2.OpenSubreport
    ' connect the other recordset to the sub-report
    servicesub_report.DiscardSavedData
    servicesub_report.Database.SetDataSource rs, 3, 1
    servicesub_report.AutoSetUnboundFieldSource crBMTName
    If rs.RecordCount > 0 Then
    With servicesub_report
    .Text1.SetText "Service Charges"
    .Field1.SetUnboundFieldSource ("{ADO.Command2-desc}")
    .Field2.SetUnboundFieldSource ("{ADO.Command2-service_charge}")
    .Field3.SetUnboundFieldSource ("{ADO.Command2-total_scharge}")
    End With
    invoice_report.Field12.SetUnboundFieldSource ("{ADO.item_charge}")
    Else
    End If
    invoice_report.Text3.SetText "Total Bill Value ="
    invoice_report.Field13.SetUnboundFieldSource ("{ADO.bill_value}")
    CRViewer1.ReportSource = invoice_report
    CRViewer1.ViewReport
    End Sub

    Hi lalantha,
    It looks like you are using the RDC as your report engine. The RDC has been deprecated since version 9 meaning there has been no new funcitonalty added to it. There is no option in the RDC to set location to a Command object, it was added to RAS in Cr Xi R2 ( 11.5 ).
    Only work around is to make a connection to the Database directly or using a disconnect record set, there may be other ways but it will require you to rebuild your report. We don't have the ability to map a report that used a COmmand object to another data source.
    Thank you
    Don

  • Best Practice for embedding webi reports in hyperlinks..

    SAP Community
    What is the best practice for embedding hyperlinks (email) from webi and sending to a user?so the users can quickly consume the report with minimal effort (click link and launch infoview/report).
    John

    As mentionned already,  BI has it's own inbox, and/or SMTP integration for broadcasting.
    Else, if you go to Folders, right click on your report instance, then select "Copy URL" (or 'docuemnt link' i cannot remember the exact term.)  - that woudl give you an open document link to invoke the viewer .
    Regards,
    H

  • Placed PDF (with embedded fonts) reports fonts not available!

    Hi,
    Can anyone tell me why Illustrator CS (I know it's old) should report Fonts missing when the PDF I have placed has definately got the fonts embedded.
    The PDF was made in InDesign CS4 using the default [High Quality Print] setting. If I look at the properties of the created PDF it lists all the fonts as being embedded subsets.
    I know I can get around this by outlining the text but I shouldn't have to.
    Thanks
    Simon Kemp

    So, Illustrator will always require the fonts present and will disregard any embedded fonts?
    That's pretty much it. Remember: Illustrator is not a PDF viewing program. It wants to let you edit the document. PDF is essentially a document exchange format and not really intended for editable content (beyond the extent Acrobat enables). Font designers want you to buy their products if you're going to be doing anything other than reading the text.
    The link-place-flatten trick is good to have in your bag of tricks, but I am not alone in recommending you do not blindly outline all type. Aside from making it nearly impossible for an output service provider to make a possibly necessary last-minute correction, you will not get the proper hinting with very small type. Moreover, if you're dealing with a large amount of text, you'll end up with huge files.

  • Change Page Title of embedded DS reports in the portal

    Dear all,
    we have our Design Studio Reports embedded in the Portal. The title of the browser window is the title of the navigation entry you are navigating to.
    We have a demand where we need to overwrite the title from within the Design Studio Report to add a specific pattern to the title of the browser.
    as an Example:
    Name of the navigation entry: Report XY
    Current browser title: Report XY
    Target browser title: [DS] Report XY
    I know from the ABAP Web Dynpro and CRM WebUI that there are standard functions to influence the title with customer code, when they are embedded in the portal.
    Is there any way (hopefully without the use of the SDK) to influence the browser window title from Design Studio Reports when embedded in the Portal?
    Thanks a lot and best regards
    Fabian

    All the links which is mentioned above is either they are doing it in code behind or javascript like document.title.
    I want to change dynamically using ECMA script. the point i found here is if you use the below code you will get an error saying list "Pages" does not exists in the SharePoint site.
    clientContext.Web.Lists.GetByTitle("Pages");
    So i am wondering how can we change the page title of SharePoint hosted app ( Default.aspx) dynamically
    Say example i have one text box and submit button. when give the title in the text box and click on submit  the title should reflect in the page.
    Navaneeth

  • Embedded BI - Reporting Functionalities and Performances

    Hi,
    there are Reporting functionalities that are available only for Embedded BI/external BI or they are the same?
    IMPORTANT: there are differencies in Reporting on ERP Tables with Virtual Infocube use if BI is embedded/not embedded?  There are different types of access RFC, batch...?
    Points if useful.
    Thanx, Claudio

    Claudio,
    I dont know if I understood the other half of your question.
    1. Reporting on ERP tables with virtual cube.....: YES, there will be a huge performance difference if you try to access data remotely than getting the data to BI and then access.
    2. Type of Access RFC, batch: In BI you can use a feature called reporting agent / broadcasting where by the reports can be pre calculated, schedules to run in the background and even mail the result set to the users.
    I dont know if i understand your question properly.
    Ravi Thothadri

  • How to view flash embedded crystal reports?

    Dear Experts,
    I created a simple flash (SWF) file using xcelsius 2008 & Crystal Report Data Consumer data connectivity.
    I embedded this flash object in a crystal report and checked the preivew. Every thing works fine in the Crystal Reports preview.
    But when I opened in my CR viewer for the same crystal report having flash file embedded, the flash files are not shown at all (checked with downloaded CR Viewer and my application viewer).
    After searching this forum and related documentation, I came to know from Crystal Reports 2008 FAQ that Crystal Reports 2008 Viewer (.NET winform viewer)- Doesnu2019t supports embedded Flash and and .NET WebForm viewers supports Crystal Reports with embedded flash.
    I tried exporting to HTML format to see whether my flash files are working. Yes it is working in HTML exported. So, is it is using .Net WebForm viewer to display HTML exported files.
    Is .Net WebForm viewer available as a seperate download?
    Thanks in advnace for your help.
    Regards
    Satish

    Hi Satish,
    The .Net WebForm viewer isn't available as a separate download. When Crystal Reports Developer is installed then the  .Net WebForm viewer gets integrated with Visual Studio automatically.
    Please try with the Crystal Reports Developer version and update us if you have any further queries.
    Thanks!

  • Summary listing embedded in report detail

    Post Author: scourge
    CA Forum: Crystal Reports
    I have a CR9 report that is a Job Traveller.  It has a header area with the Job Information, currently below that is the 'detail' information, which is each operation listed, with barcode and other detail information below.  Embedded in the detail of the report is a subreport that is used to pick up notes from the ERP system and print them on the Traveller.
    A a request has been made to print some summary data between the header and the detail of the report.  What is needed is to print a line for each operation along with the description of the operation and some 'clear' area for the user to make notes in.  Then this would be followed up by the actual existing detail of the report, the same operation numbers listed in order with the same detail. 
    I do not know how to make this work.  I already have one sub-report and CR only allows one in a report.  How can I do what I want to do with this?  Any ideas would be greatly appreciated.
    thanks
    scourge

    Yes, you can suppress tha printing of the detail frame with a user parameter if they requested such. The suppressing PL/SQL code could go in format trigger property returning a false if it needs to be hidden/suppressed.
    good luck,
    Srinivas

  • Embedded BI - Reporting

    Hi,
    can someone help me to understand better the new potentiality of "embedded BI" for auth, queries, reporting....
    Points to every useful answer.
    Thanx,
    Claudio

    up

  • Visual Studio 2005, embedded Crystal Report problem

    I am very new at .NET, and this is my first post to this forum.
    I've created a Crystal Report within a project using Visual Studio 2005 Professional Edition, on a Windows XP machine.  I set the report as the ReportSource for a CrystalReportViewer on the main form.  I can see data in the report in design view when I right-click on any of the fields and click "Browse Field Data".  But when I preview the report, or run it in the application, all I see are the column headings and report title.  I am hoping I am leaving out something obvious.  I've researched this for two days without success. 
    The report's detail section is NOT suppressed, btw.
    FYI (although I think it might not be relevant, because I don't see the data when I preview it in Visual Studio either) the report is displayed in the application when a button is clicked, as follows:
        Private Sub cmdRunLog_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles cmdRunLog.Click
                CrystalReportViewer1.DisplayToolbar = True
                cmdRunLog.Text = "Hide Run Log"
                cmdUpload.Enabled = False
                cmdReports.Enabled = False
                cmdManualRun.Enabled = False
                CrystalReportViewer1.Visible = True
                CrystalReportViewer1.Height = 600
                CrystalReportViewer1.Width = 1000
                CrystalReportViewer1.Left = 10
                Dim strReportSQL As String = "Select * From dbo.PositivePayRunLog"
                Dim DA As New SqlDataAdapter(strReportSQL, conPP)
                Dim DS As New DataSet
                'Variable to assign the report name
                Dim strReportPath As String
                DA.Fill(DS)
                strReportPath = "c:\Positive Pay\PositivePayRunLog.rpt"
                If Not IO.File.Exists(strReportPath) Then
                    _ErrorText = "Unable to locate report file:  " & strReportPath
                    ' Throw (New Exception("Unable to locate report file:" & vbCrLf & strReportPath))
                    GoTo cmdRunLog_Click_Error
                End If
                Dim rptDocument As New CrystalDecisions.CrystalReports.Engine.ReportDocument
                rptDocument.Load(strReportPath)
                rptDocument.SetDataSource(DS.Tables(0))
                rptDocument.Refresh()
                CrystalReportViewer1.ShowRefreshButton = False
                CrystalReportViewer1.ShowCloseButton = False
                CrystalReportViewer1.ShowGroupTreeButton = False
                CrystalReportViewer1.ReportSource = rptDocument
    end sub
    I'm hoping that this is a common problem with an easy answer
    Thanks,
    John Sandin

    >
    Jason Everly wrote:
    > Did you design the report using OLEDB or ODBC instead of against the schema of the dataset you are passing?  It could be seeing data from the database when browsing.
    >
    > Technically you should design the reports against the schema of the dataset you are going to be passing, not against ODBC or OLEDB.
    >
    > You can usually get away with passing datasets to a report created against OLEDB, but if issues occur then you need to redesign them against the ds schema.
    >
    > Jason
    I have done both, but I was currently using OLEDB.
    I redesigned the report to use a dataset containing the correct data.  Now,  when I browse the fields, I see nothing.  When I preview the report, I see what appears to be dummy data (a list of colors, etc).
    But the GOOD news is:  When I run the report in the application, I see the correct data!
    Thanks!  I think I'm good to go now.  I will also apply the other suggestions, and try to simplify things.

  • Embedding Crystal report in Form builder

    Hi,
    I want to call Crystal report 8.5 rpt files from my form builder application(6i)
    using activex component.
    But i don't know how to set properties programatically.
    Could any one can tell me were i could found this document.
    pls help me to sove this problem.
    Regards
    Seema Shah

    Hi !!
    I had this problem two weeks ago and i couldn't resolve it .
    So I will give U the solution :
    U must use Visual Basic.
    Indeed u need VB to call an ocx object correctelly.
    In forms u must create a document .ini that pass in parameter the dsn connection of ur forms, the sql clause, and the reportfilename.
    If U want I can give U the utility creata in VB, and all the councils for u to manage using Crystal reports.
    So mail me at [email protected] for more details.
    Best regards
    Vincent

Maybe you are looking for