Viewing a report from BW SAP GUI using report_view.aspx doesn't work

Hello,
when viewing reports in SAP GUI from our BW system no report as an output is showed. I can only see Infoview page and it doesn't matter whether I insert whole URL with report ID, client etc. or only report basic page.
http://<server_name>:8080/businessobjects/enterprise115/sap/infoview/report/report_view.aspx?bw_id=<report_id>&sap_sysid=<SID>&sap_client=<client>&language=EN&cmsname=<crystal_server_name>
http://<server_name>:8080/businessobjects/enterprise115/sap/infoview/report/report_view.aspx
This URL will prompt for password and then redirect me to Infoview .NET page only without report output. When I click on the report from InfoView everything is working well I can see the report output. Only from SAP GUI the URL link is not working. I configured /crystal/rptadmin details as per SDN Ingo's blog. I also configured SAP roles for folders in InfoView under path /SAP/2.0/. And all other post steps from Installation guide.
One OSS note 1219551 which refers to this problem doesn't help me either, altough I patched BOE XI R2 with latest SP6.
Version of Crystal report is BOE XI R2 with SP6. SAP system is NW 04 with BW component.
Does anyone have the same problem ?
Thanks.

Problem solved.

Similar Messages

  • How to open Crystal Report from the SAP GUI ?

    Hi experts,
        We have developed some reports for our ECC 6.0 system by using Crystal Report 2008 and SAP integration kit , these reports are published to BO edge 3.1 server.  To view the report, our user have to open IE and login Infoview first.
       For convenience, we want to open Crystal report from SAPGUI directly without login BOE, How can we do it? 
    Thanks.

    Hi
    please take a look here
    Crystal Reports
    Regards,
    STratos

  • Sending directions from osx to iOS using apple maps doesn't work!

    I don't see the option to send apple maps directions to my iphone.
    Both mac osx mavericks and ios7 are logged in with the same icloud id.
    Here's a screenshot of the apple maps app on OSX mavericks.
    https://s3.amazonaws.com/davelinhardt/Screen+Shot+2013-11-07+at+3.04.41+PM.png
    Why doesn't my iphone show up in the share options?

    Hi dlinhardt,
    Thanks for visiting Apple Support Communities.
    If you don't see your iPhone in Maps on OS X, and you've confirmed you're signed in with the correct iCloud account (Apple ID), try these steps from our troubleshooting article next:
    OS X Maps: Share menu doesn't list iOS devices
    http://support.apple.com/kb/TS5293
    3. Quit OS X Maps and try again.
    Quit the Maps app, then open it again.
    Click the Share button. If you still don't see your devices, continue to the next step.
    4. Sign in to FaceTime or Messages on your Mac.
    Sign in to either FaceTime or Messages. In Messages, you should be signed in to your iMessage account, not another type of account. If you're already signed in, continue to the next step.
    Restart your computer. After the computer restarts, you should be asked to enter your iCloud password and click Log In.
    If you still don't see your devices in Maps, quit Maps, then open it again and check for your devices once more.
    All the best,
    Jeremy

  • Can't view Crystal Reports from BW

    Hi,
    I'm installing SAP Integration Kit XI 3.1 SP3 with IIS.  I am able to publish reports from BW to BOE but not able view them from BW.  I followed the documentation to use report/report_view.aspx to define the viewer application in Content Administration Workbench.  But it is giving me a "The page cannot be found" error when I try to view Crystal Reports from BW.  I tried looking for the file report/report.aspx but cannot find it.  I was able to locate the file in SAP_CrystalReport_View/report_view.aspx.  I repointed the system to this path but it still giving me the same error. 
    Anybody here encountered this before?
    Thanks,
    Elijah

    Hi Ingo,
    - has the report being saved to BW and then published to BusinessObjects enterprise ?
        Yes, the report is being published from BW to BOE successfully.
    - did you import the ABAP Transports to the BW system ?
        I imported all the transports that came with the Integration Kit.  I'm not sure if the ABAP transport is one of them.
    - has the viewing service in transaction SICF been configured ?
        Yes, the top entry in the handler list is /CRYSTAL/CL_BW_HTTP_HANDLER.
    I did notice that the BW system is on a different subdomain than the web application server.  For example,
       BW system        -  bw01.us.mydomain.com
       BOE web server -   boweb.mydomain.com
    Would that affect the single sign on?

  • How to add entire new row at the top of table in pdf report from c# windows forms using iTextSharp

    Hi for past 3 days i was thinking and breaking my head on how to add entire new at top table created in pdf report from c# windows forms with iTextSharp.
    First: I was able to create/export sql server data in form of table in pdf report from c# windows forms. Given below is the code in c#.
    using System;
    using System.Collections.Generic;
    using System.Configuration;
    using System.Text;
    using System.Data;
    using System.IO;
    using System.Data.SqlClient;
    using System.Windows.Forms;
    using iTextSharp.text;
    using iTextSharp.text.pdf;
    namespace DRRS_CSharp
    public partial class frmPDFTechnician : Form
    public frmPDFTechnician()
    InitializeComponent();
    private void btnExport_Click(object sender, EventArgs e)
    Document doc = new Document(PageSize.A4.Rotate());
    var writer= PdfWriter.GetInstance(doc, new FileStream("Technician22.pdf", FileMode.Create));
    doc.SetMargins(50, 50, 50, 50);
    doc.SetPageSize(new iTextSharp.text.Rectangle(iTextSharp.text.PageSize.LETTER.Width, iTextSharp.text.PageSize.LETTER.Height));
    doc.Open();
    PdfPTable table = new PdfPTable(7);
    table.TotalWidth=585f;
    table.LockedWidth = true;
    PdfPTable inner = new PdfPTable(1);
    inner.WidthPercentage = 115;
    PdfPCell celt=new PdfPCell(new Phrase(new Paragraph("Institute/Hospital:AIIMS,NEW DELHI",FontFactory.GetFont("Arial",14,iTextSharp.text.Font.BOLD,BaseColor.BLACK))));
    inner.AddCell(celt);
    Paragraph para = new Paragraph("DCS Clinical Report-Technician wise", FontFactory.GetFont("Arial", 14, iTextSharp.text.Font.BOLD, BaseColor.BLACK));
    para.Alignment = iTextSharp.text.Element.TITLE;
    iTextSharp.text.Image png = iTextSharp.text.Image.GetInstance("logo5.png");
    png.ScaleToFit(95f, 95f);
    png.Alignment = Element.ALIGN_RIGHT;
    SqlConnection conn=new SqlConnection("Data Source=NPD-4\\SQLEXPRESS;Initial Catalog=DRRS;Integrated Security=true");
    SqlCommand cmd = new SqlCommand("Select t.technician_id,td.Technician_first_name,td.Technician_middle_name,td.Technician_last_name,t.technician_dob,t.technician_sex,td.technician_type from Techniciandetail td,Technician t where td.technician_id=t.technician_id and td.status=1", conn);
    conn.Open();
    SqlDataReader dr;
    dr = cmd.ExecuteReader();
    table.AddCell("ID");
    table.AddCell("First Name");
    table.AddCell("Middle Name");
    table.AddCell("Last Name");
    table.AddCell("DOB" );
    table.AddCell("Gender");
    table.AddCell("Designation");
    while (dr.Read())
    table.AddCell(dr[0].ToString());
    table.AddCell(dr[1].ToString());
    table.AddCell(dr[2].ToString());
    table.AddCell(dr[3].ToString());
    table.AddCell(dr[4].ToString());
    table.AddCell(dr[5].ToString());
    table.AddCell(dr[6].ToString());
    dr.Close();
    table.SpacingBefore = 15f;
    doc.Add(para);
    doc.Add(png);
    doc.Add(inner);
    doc.Add(table);
    doc.Close();
    The code executes well with no problem and get all datas from tables into table in PDF report from c# windows forms.
    But here is my problem how can i align Title(DCS Clinical Report-Technician wise) center of pdf report with image named:logo5.png immediately coming to it's right?.
    As the problem i am facing is my title or Header(DCS Clinical Report-Technician wise) is at top of my image named:logo5.png and not coming to it's center position of my image.
    Second the problem i am facing is how to add new entire row to top of existing table in pdf report from c# windows form using iTextSharp?.
    given in below is the row and it's data . So how do i add the given below row and it's data to my top my table in pdf report from c# windows forms using itextsharp?
    as you can see how i create my columns in table in pdf report and populate it with sql server data. Given the code below:
    Document doc = new Document(PageSize.A4.Rotate());
    var writer= PdfWriter.GetInstance(doc, new FileStream("Technician22.pdf", FileMode.Create));
    doc.SetMargins(50, 50, 50, 50);
    doc.SetPageSize(new iTextSharp.text.Rectangle(iTextSharp.text.PageSize.LETTER.Width, iTextSharp.text.PageSize.LETTER.Height));
    doc.Open();
    PdfPTable table = new PdfPTable(7);
    table.TotalWidth=585f;
    table.LockedWidth = true;
    Paragraph para = new Paragraph("DCS Clinical Report-Technician wise", FontFactory.GetFont("Arial", 14, iTextSharp.text.Font.BOLD, BaseColor.BLACK));
    para.Alignment = iTextSharp.text.Element.TITLE;
    iTextSharp.text.Image png = iTextSharp.text.Image.GetInstance("logo5.png");
    png.ScaleToFit(95f, 95f);
    png.Alignment = Element.ALIGN_RIGHT;
    SqlConnection conn=new SqlConnection("Data Source=NPD-4\\SQLEXPRESS;Initial Catalog=DRRS;Integrated Security=true");
    SqlCommand cmd = new SqlCommand("Select t.technician_id,td.Technician_first_name,td.Technician_middle_name,td.Technician_last_name,t.technician_dob,t.technician_sex,td.technician_type from Techniciandetail td,Technician t where td.technician_id=t.technician_id and td.status=1", conn);
    conn.Open();
    SqlDataReader dr;
    dr = cmd.ExecuteReader();
    table.AddCell("ID");
    table.AddCell("First Name");
    table.AddCell("Middle Name");
    table.AddCell("Last Name");
    table.AddCell("DOB" );
    table.AddCell("Gender");
    table.AddCell("Designation");
    while (dr.Read())
    table.AddCell(dr[0].ToString());
    table.AddCell(dr[1].ToString());
    table.AddCell(dr[2].ToString());
    table.AddCell(dr[3].ToString());
    table.AddCell(dr[4].ToString());
    table.AddCell(dr[5].ToString());
    table.AddCell(dr[6].ToString());
    dr.Close();
    table.SpacingBefore = 15f;
    doc.Add(para);
    doc.Add(png);
    doc.Add(table);
    doc.Close();
    So my question is how to make my column headers in bold?
    So these are my questions.
    1. how can i align Title(DCS Clinical Report-Technician wise) center of pdf report with image named:logo5.png immediately coming to it's right?.
    2. how do i add the given below row and it's data to my top my table in pdf report from c# windows forms using itextsharp?
    3.how to make my column headers in bold?
    I know that i have to do some modifications to my code but i dont know how to do it. Can anyone help me please.
    Any help or guidance in solving this problem would be greatly appreciated.
    vishal

    Hi,
    >>1. how can i align Title(DCS Clinical Report-Technician wise) center of pdf report with image named:logo5.png immediately coming to it's right?.
    2. how do i add the given below row and it's data to my top my table in pdf report from c# windows forms using itextsharp?
    3.how to make my column headers in bold?<<
    I’m sorry for the issue that you are hitting now.
    This itextsharp is third party control, for this issue, I recommended to consult the control provider directly, I think they can give more precise troubleshooting.
    http://sourceforge.net/projects/itextsharp/
    Thanks for your understanding.
    Regards,
    Marvin
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Creating CRM 7.0 Activity from ISU SAP GUI (CIC0)

    Hello Guys!
    I need to create CRM 7 Activity from ISU SAP GUI cic0 screen using actiion box. Can any one please help me out what would be the best way calling CRM 7 activity from ISU SAP GUI, with my understanding the CRM 7 would not support sap gui and have to use webclient technology.
    My scenario: Creating activity in CRM 7.0 from ISU GUI.
    Existing process is creating an activity in CRM 4 from ISU SAP GUI, now business would like to move from CRM 4 to CRM 7. I need to find out or give suggestions to business what would be the best approach or solution to create CRM 7.0 activity from ISU point of as business would not like to use CRM WebClient screen to create activities. I need help on how i can suggest the busines.
    Please help me out as i am new to ISU and hope you have understood my requirements.
    Thank you in advance
    Regards
    shankar

    Hi ,
    Kindly use the Transaction launcher service using the Customization :
    SPRO > CRM > UI Framework > Technical Role Definition > Transaction Launcher > Configure Transaction Launcher
    SPRO > CRM > Interaction Center WebClient > Basic Functions > Transaction Launcher > Configure Transaction Launcher (Wizard)
    Kindly read help documentation next to it for details.
    Hope this helps.
    Regards,
    Anup

  • To run a report from command line, when using jdbc-odbc bridge

    Hi,
    How to run a report from command line, when using jdbc-odbc bridge?
    Usually with tns, we do by "rwrun module=<> userid=<user>/<passwd>@tns".
    with odbc, we do by "rwrun module=<> userid=<user>/<passwd>@odbc:DSN"
    Please specify, what is command line arguments for jdbc-odbc bridge driver?
    Environment : Oracle 9i Report Builder on WinNT
    Database : Sybase
    Regards,
    Ramanan

    Hello Ramanan,
    Report Builder : connect JDBC Query in Report Builder is to through Connection Dialog in JDBC Query Editor. User can use a Sign on parameter (can use, default : P_JDBCPDS or can create new) to connect to JDBC Data Source. Connection once made will be mentioned and will be reused through out Reports Builder.
    JDBC PDS allows user to connect one or more same or different kind of databases.
    While running report through runtime or Server, user can pass the sign on parameter(connection string) value, like any other user parameter.
    Syntax for connection string : <username>/<password>@databaseURL . The syntax of database part of connection string depend on the type of JDBC Driver used to connect to Data Source while designing the JDBC Query. databaseURL refer to the location of the database and its format depend on the JDBCPDS river selected in design time while creating the JDBC Query.
    rwrun eg :
    rwrun report=jdbc_odbc.rdf destype=file desname=output.html desformat=html P_JDBCPDS=scott/tiger@database
    Server eg :
    http://server.com:8888/servlet/RWServlet?server=MyReportServer+report=jdbc_odbc.rdf+destype=cache+desformat=html+P_JDBCPDS=scott/tiger@database
    http :
    Please see ORACLE_HOME/reports/conf/jdbcpds.conf for more information.
    With Regards
    Reports Team

  • Error while creating report from BW SAP Query

    Hi
    While creating a report from BW SAP Query, I get the following error.
    "An error occured while creating a report template.No error"
    On opening the same query in BEx Analyser, i can see the fields and output.
    Help me on this issue.
    Thanks
    Eswari.

    Hello Garett,
    I've the same problem and have tried now to get the data with MDX-Query. The error message below appears:
    'No RFC-authorization for function group  /Crystal/MDX for User ...'
    So it seems to be a authorization problem. Which special authorization must be assigned to Crystal users in SAP BI?
    Thank you for your help.
    best regards
    Oliver

  • I pull fiftyfour bytes of data from MicroProcessor's EEPROM using serial port. It works fine. I then send a request for 512 bytes and my "read" goes into loop condition, no bytes are delivered and system is lost

    I pull fiftyfour bytes of data from MicroProcessor's EEPROM using serial port. It works fine. I then send a request for 512 bytes and my "read" goes into loop condition, no bytes are delivered and system is lost

    Hello,
    You mention that you send a string to the microprocessor that tells it how many bytes to send. Instead of requesting 512 bytes, try reading 10 times and only requesting about 50 bytes at a time.
    If that doesn�t help, try directly communicating with your microprocessor through HyperTerminal. If you are not on a Windows system, please let me know. Also, if you are using an NI serial board instead of your computer�s serial port, let me know.
    In Windows XP, go to Start, Programs, Accessories, Communications, and select HyperTerminal.
    Enter a name for the connection and click OK.
    In the next pop-up dialog, choose the COM port you are using to communicate with your device and click OK.
    In the final pop
    -up dialog, set the communication settings for communicating with your device.
    Type the same commands you sent through LabVIEW and observe if you can receive the first 54 bytes you mention. Also observe if data is returned from your 512 byte request or if HyperTerminal just waits.
    If you do not receive the 512 byte request through HyperTerminal, your microprocessor is unable to communicate with your computer at a low level. LabVIEW uses the same Windows DLLs as HyperTerminal for serial communication. Double check the instrument user manual for any additional information that may be necessary to communicate.
    Please let me know the results from the above test in HyperTerminal. We can then proceed from there.
    Grant M.
    National Instruments

  • After upgrading from ITunes6 on ITunes 7 my videos doesn´t work

    after upgrading from ITunes6 on ITunes 7 my videos doesn´t work. there are no error messages, popups or ballons. songs are no problem, only the videos?!
    Can somebody help me?
    Thanks
    Cross

    hmmmm. let's try checking to see if they will still play in your current version of QuickTime.
    in itunes, right-click on one of the videos that is causing the grief, and select "Show in Windows Explorer".
    right click the icon of the file in the Explorer window that comes up and select "Open With ...", and try to open it with your QuickTime player. does it play there or do you get funny business with that too?

  • Database error when trying to view Crystal Report from InfoView

    I am receiving the following error when I try to view or run a Crystal Report from the InfoView.  The report is based on an SAP InfoSet.
    "Failed to load database information."
    The report data can be refreshed with no trouble from within the Crystal Reports designer on my local machine, but the error occurs after it is published to the InfoView.  The same error appears when trying to import into Excel using LiveOffice.
    Server details:
    -Edge 3.1
    -Windows 2003 64-bit
    -SAP Integration kit installed
    Local Crystal Reports machine details:
    -Windows XP
    -SAP Integration kit installed
    -Crystal Reports 2008
    My steps to troubleshoot so far:
    -Checked Database Logon details in CMC for the report.  Username and password are entered correctly.
    -Cycled all CrystalReports background services off and on again from the CMC
    -Rebooted server
    Have I missed anything?  Any help would be appreciated.

    Hi,
    do you have any connectivity from your EDGE to the SAP System ? Like can you import roles or run a WebI ?
    Regards
    -Seb.

  • In need of help going from Windows SAP GUI to Mac/Java SAP GUI 7.20

    Hi Everyone, first post...I want to thank you in advance for any assistance you are able to provide.
    I got everything working except for 1 out of 6 servers I need to connect to - of course this is the most important one.
    It all comes down to the conversion of saplogon.ini to the new file format, instead of using the GUI to make a list I have created 6 individual .sapc files that I run directly. I found some converters but only had so much success with them, nothing solid and 100% full proof.
    I'm going to post my windows config files and maybe you can tell me why logging into this system GP8 doesn't work from my mac?
    saplogon.ini (I believe it's item 4 that is the full config for the server I'm trying to connect to)
    [Configuration]
    SessManNewKey=80
    MessageServerTimeout=10
    WithWizard=0
    ConfirmDelete=1
    NoEditFunctionality=0
    SapguiHexdumpActivated=0
    SapguiTraceActivated=0
    SapguiTraceLevel=1
    SapguiNTCmdOpts=
    [Router]
    Item1=
    Item2=
    Item3=
    Item4=
    Item5=/H/10.201.200.27/saprouter.fa.de/H/
    Item6=
    [Router2]
    Item1=
    Item2=
    Item3=
    Item4=
    Item5=
    Item6=
    [RouterChoice]
    Item1=0
    Item2=0
    Item3=0
    Item4=0
    Item5=0
    Item6=0
    [Server]
    Item1=171.18.85.21
    Item2=171.18.85.26
    Item3=GI7001.trans.de
    Item4=PUBLIC
    Item5=gtlson10.fa.biz
    Item6=gtlson19.fa.biz
    [Database]
    Item1=00
    Item2=01
    Item3=34
    Item4=88
    Item5=26
    Item6=21
    [System]
    Item1=3
    Item2=3
    Item3=3
    Item4=3
    Item5=3
    Item6=3
    [Description]
    Item1=ASNA PRD
    Item2=ASNA TST
    Item3=GI7
    Item4=GP8
    Item5=JPF
    Item6=JPW
    [Address]
    Item1=
    Item2=
    Item3=
    Item4=141.228.205.97
    Item5=
    Item6=
    [MSSysName]
    Item1=PRD
    Item2=TST
    Item3=GI7
    Item4=GP8
    Item5=JPF
    Item6=JPW
    [MSSrvName]
    Item1=
    Item2=
    Item3=
    Item4=gp8001.trans.de
    Item5=
    Item6=
    [MSSrvPort]
    Item1=
    Item2=
    Item3=
    Item4=sapmsGP8
    Item5=
    Item6=
    [SessManKey]
    Item1=-1
    Item2=-1
    Item3=-1
    Item4=-1
    Item5=-1
    Item6=-1
    [SncName]
    Item1=
    Item2=
    Item3=
    Item4=
    Item5=
    Item6=
    [SncChoice]
    Item1=-1
    Item2=-1
    Item3=-1
    Item4=-1
    Item5=-1
    Item6=-1
    [Codepage]
    Item1=1100
    Item2=1100
    Item3=1100
    Item4=1100
    Item5=1100
    Item6=1100
    [CodepageIndex]
    Item1=-1
    Item2=-1
    Item3=-1
    Item4=-1
    Item5=-1
    Item6=-1
    [Origin]
    Item1=USEREDIT
    Item2=USEREDIT
    Item3=USEREDIT
    Item4=MS_SEL_GROUPS
    Item5=USEREDIT
    Item6=USEREDIT
    [LowSpeedConnection]
    Item1=0
    Item2=0
    Item3=0
    Item4=0
    Item5=0
    Item6=0
    [MSWinPos]
    NormX=324
    NormY=263
    [MSLast]
    MSLast=GP8
    [Utf8Off]
    Item1=0
    Item2=0
    Item3=0
    Item4=0
    Item5=0
    Item6=0
    [EntryKey]
    Item1=
    Item2=
    Item3=
    Item4=
    Item5=
    Item6=
    [EncodingID]
    Item1=DEFAULT_NON_UC
    Item2=DEFAULT_NON_UC
    Item3=DEFAULT_NON_UC
    Item4=DEFAULT_NON_UC
    Item5=DEFAULT_NON_UC
    Item6=DEFAULT_NON_UC
    [ShortcutType]
    Item1=0
    Item2=0
    Item3=0
    Item4=0
    Item5=0
    Item6=0
    [ShortcutString]
    Item1=
    Item2=
    Item3=
    Item4=
    Item5=
    Item6=
    [ShortcutTo]
    Item1=
    Item2=
    Item3=
    Item4=
    Item5=
    Item6=
    [ShortcutBy]
    Item1=
    Item2=
    Item3=
    Item4=
    Item5=
    Item6=
    Another file I think is important: sapmsg.ini
    [Message Server]
    MSS=MSSAP00
    MST=SAPTST00
    MS1=SAPDEV00
    MSX=sapsbx99
    MSU=sapmsu99
    APP=apoapp00
    MBW=mssapbw
    APT=apotst00
    APS=aposbx00
    MB1=sapdevbw
    MBT=saptstbw
    P01=dryrun00
    MS2=sapms299
    MBX=sapsbxbw
    GP8=gp8001.trans.de
    Another file that may be important?
    SAPROUTE.ini
    [Router]
    sapprd=/H/10.201.200.21/H/saprouter.fa.com/H/
    gtlson10.fa.biz=/H/10.200.201.21/H/saprouter.fa.com/H/saprouter.fa.de/H/
    This is what my *.sapc file looks like after changing it up a few times, I am certain it is wrong:
    conn=/H/gp8001.trans.de/&clnt=401&expert=true
    Please tell me from all the info you have here what needs to take place for me to be able to connect to GP8. Can I do it from an sapc file? Do I have to configure other core files and go to my preferences and tell SAP to look at certain configs? I'm sure someone here can help me.
    Thanks so much for your time
    John
    Edited by: nstabl on Feb 27, 2012 10:07 PM

    Hello John,
    please try the "SAP GUI for Java Configuration Generator Scripts" available at http://scn.sap.com/docs/DOC-25456#section9 .
    For using the message server to connect to GP8, the information of the port number of the message server for GP8 is missing. For direct connection to GP8, it might work to use the connection string "conn=/H/gp8001.trans.de/S/3288" .
    Best regards
    Rolf-Martin
    Message was edited by: Rolf-Martin Woersinger
    update link, which was broken after SCN upgrade

  • How to add a report into the SAP-SCRIPT .using PERFORM ......ENDPERFORM

    My question is that How to add a report into the SAP-SCRIPT .
    by using PERFORM ......ENDPERFORM
    I don't know how to used it .

    Hi Sandeep,
    Please check this link
    http://help.sap.com/saphelp_40b/helpdata/en/d1/803279454211d189710000e8322d00/content.htm
    http://www.allinterview.com/showanswers/37425.html
    Calling ABAP Subroutines: PERFORM
    You can use the PERFORM command to call an ABAP subroutine (form) from any program, subject to the normal ABAP runtime authorization checking. You can use such calls to subroutines for carrying out calculations, for obtaining data from the database that is needed at display or print time, for formatting data, and so on.
    PERFORM commands, like all control commands, are executed when a document is formatted for display or printing. Communication between a subroutine that you call and the document is by way of symbols whose values are set in the subroutine.
    Syntax in a form window:
    /: PERFORM <form> IN PROGRAM <prog>
    /: USING &INVAR1&
    /: USING &INVAR2&
    /: CHANGING &OUTVAR1&
    /: CHANGING &OUTVAR2&
    /: ENDPERFORM
    INVAR1 and INVAR2 are variable symbols and may be of any of the four SAPscript symbol types.
    OUTVAR1 and OUTVAR2 are local text symbols and must therefore be character strings.
    The ABAP subroutine called via the command line stated above must be defined in the ABAP report prog as follows:
    FORM <form> TABLES IN_TAB STRUCTURE ITCSY
    OUT_TAB STRUCTURE ITCSY.
    ENDFORM.
    The values of the SAPscript symbols passed with /: USING... are now stored in the internal table IN_TAB . Note that the system passes the values as character string to the subroutine, since the field Feld VALUE in structure ITCSY has the domain TDSYMVALUE (CHAR 80). See the example below on how to access the variables.
    The internal table OUT_TAB contains names and values of the CHANGING parameters in the PERFORM statement. These parameters are local text symbols, that is, character fields. See the example below on how to return the variables within the subroutine.
    From within a SAPscript form, a subroutine GET_BARCODE in the ABAP program QCJPERFO is called. Then the simple barcode contained there (u2018First pageu2019, u2018Next pageu2019, u2018Last pageu2019) is printed as local variable symbol.
    Definition in the SAPscript form:
    /: PERFORM GET_BARCODE IN PROGRAM QCJPERFO
    /: USING &PAGE&
    /: USING &NEXTPAGE&
    /: CHANGING &BARCODE&
    /: ENDPERFORM
    / &BARCODE&
    Coding of the calling ABAP program:
    REPORT QCJPERFO.
    FORM GET_BARCODE TABLES IN_PAR STUCTURE ITCSY
    OUT_PAR STRUCTURE ITCSY.
    DATA: PAGNUM LIKE SY-TABIX, "page number
    NEXTPAGE LIKE SY-TABIX. "number of next page
    READ TABLE IN_PAR WITH KEY u2018PAGEu2019.
    CHECK SY-SUBRC = 0.
    PAGNUM = IN_PAR-VALUE.
    READ TABLE IN_PAR WITH KEY u2018NEXTPAGEu2019.
    CHECK SY-SUBRC = 0.
    NEXTPAGE = IN_PAR-VALUE.
    READ TABLE IN_PAR WITH KEY u2018BARCODEu2019.
    CHECK SY-SUBRC = 0.
    IF PAGNUM = 1.
    OUT_PAR-VALUE = u2018|u2019. "First page
    ELSE.
    OUT_PAR-VALUE = u2018||u2019. "Next page
    ENDIF.
    IF NEXTPAGE = 0.
    OUT_PAR-VALUE+2 = u2018Lu2019. "Flag: last page
    ENDIF.
    MODIFY OUT_PAR INDEX SY-TABIX.
    ENDFORM.
    Best regards,
    raam

  • How to Extract data and reports from the SAP BW warehouse

    Hi to All Guru's
    I am new to SAP BW. Can any one help me to know, How to Extract data and reports from SAP BW. Do we use any tools.  After Extracting the data from SAP BW how can we move all the data to Cognos.  It would be kind enough to provide me with any documentation or links.  Step by step procedure would be very much helpfull to me.
    Thanks
    Venu

    Hi Voodi
    Thanks for the quick response. I think Open hub is to extract the data from SAP BW, but what about sending this data into Cognos.  Can you please let me know in detail regarding answer. If possible send me any documentation or links regarding this.  Thanks for your concern.
    Venu

  • Diagnosing if the EUP is up from inside SAP GUI??

    What transaction code, will show you if users are logged in through the GUI or the Portal. Through sm04 you can see the session type as being "GUI" but how can I diagnose, from the SAP side whether users are able to get in through the portal. I always thought that a "RFC" (Remote Function Call) would show up as being the session type through sm04, if the user was coming in through the Portal…I'm a SAP Basis Admin, who only comes in through the GUI. Please advise..Thanks.

    Hello James,
    it depends what iViews are used. If the Users use RFC-IViews then you will see RFC Sessions. When they use a SAP Transactin iView you will see a GUI Session. But they can also use BSP IViews.
    Regards
    Gregor

Maybe you are looking for

  • PO showing wrong status

    Hi :  I have setup approval for PO. I have one PO in the worklist, it shows PO awaiting approval and whenni go and check detials in PO for the Approval view on the Header Data tab, it says No Approval Required. which is correct as per our setting. co

  • Update Notification Download Button Issue

    Hi, Not really sure if this should be in the General area or in the Bugs & Issues area... so please moderator(s) please move this if it needs it... Was just informed about an update to the Flash Player ... so hit the download and ran the installer...

  • Whether Forms/Reports Service is present in Midtier of Oracle AS 10.1.3

    Hi, Can anybody confirm whether Forms/Reports Service (i.e. Business Intelligence and Forms/Reports Service) is present in Midtier of Oracle AS 10.1.3? How do I check this fact from Oracel documentation. Regards Suresh Shinde

  • What does SQL write to that allow changes to be undone or rolled back in case of a system failure?

    What does SQL write to that allow changes to be undone or rolled back in case of a system failure?

  • How to mass relink photos?

    Hi there,      yesterday my muse disk become unusable disk X:\  (of course I had a backup) I have restored the muse file (photo gallery with 400 photos) that was in the lost disk folder x:\musefolder. The new disk has a permanent name D:\ so I restor