How to make an autorun report

Hi experts. Is there any way to make an autorun crystal report? I wanna make a report (.rpt) and compile it to .exe or something to auto execute it....
Thanks
Regards
Rolando

Thanks Gordon, I was thinking about execute the report with no designer neither SAP , maybe it's time to know about Crystal Server..
Regards,
Rolando

Similar Messages

  • How to make a downloadable report of application log file.

    Hi Every One,
    i am new to this ABAP environment, I have application logs in my system, i need to generate the reports based on my filter condition and i need to download them as file/report, For example;
    I need a Application Log report for:
    only Particular User
    only particular time
    only importent logs
    only errors
    like that....so on..
    Can any one give me step by step, how to make a report of application logs, i know only i can see logs use transaction CodeSLG1. I want to make report them.
    Thank you
    Regards
    Ravi

    Found answer in log itself

  • How to make cross Tab report for SAP B1

    Hello and Hi
    i trying to make cross tab report for SAP B1 but test column not appera in
    File >>New >>Cross Tab Report  start cross tab report creation wizard select database name and table
    but only numeric columns appear in available column fields , how will appearall fields including test fields..

    i got solution
    thanks google
    memo type field will not apper in list .use bellow  statment to convert in interger or char type
    convert(int,U_Dist_Sr_No) AS Dist_Sr,            CAST(U_Dist_Name AS varchar(250)) AS Dist_Name,

  • How to make a customised report format for SOD integration business rule

    Hi,
    the current reports outputed in SOD lack details that my colleagues need. How can I make a customized report with the needed details.
    I need to make sure that this report has fields such as the user id, username, system name, user group, access risk id.
    Thanks in advance.

    Hi Raphael,
    Please refer to SAP note 1538634 attached to this note is quite detailed pdf guideline how to customize reports in SAP GRC.
    Best regards, Andrzej

  • Can anybody tell me how to make daily activity report

    can anybody tell me how to make daily activity report

    Hi,
    Can you elaborate more about your requirement.
    With repect to which module are you talking about a report?
    Regards,
    Anji

  • How to make a crystal report in labwindows?

    i want to make a crystal report in labwindows ,do you know where i can get some example of crystal report? 

    Crystal Reports is a commercial software. According to Wikipedia, Crystal Reports is available as add-on software for Visual Studio 2010.
    I am not aware of such an add-on for LabWindows/CVI. You could have a look at the examples wordrpt.cws and excelreportdemo.cws

  • Need details on how to make custom ABAP report archive enabled

    Hi All,
    We are working in our project to make custom reports as archive enabled so that they can read archived data.
    Need some information on the below queries.
    1.Is there any function module to read selected data from archive file? For example i don't want to read the whole BKPF table data from archive file instead want to get belnr and bukrs only.
    2. What are the perfromance measure which can be taken while making an existing program archive enabled
    3. Important archiving tables which can help for the above.
    4. When i use the function module "Archive_open_for_read' then system displays a pop up to select the archive files based on the archive object.
    Considering that all the reports are run in background how do i make sure that in background run all the archive files are selected and processed.
    Thanks in advance for your valuable suggestions...
    Regards/Ajay

    Hi Ajay,
    1.  You have to create a separate field catelogus and AIS according to your requirement with the required fields you want . Because the standard structures and field catelogues contains many fields from all tables. So before doing the read operation you have to deactivate the standard AIS and activate your newly created AIS .
    2. Can you give some more details for this question to be answered.
    3. The important archiving tables used are ARCH_IDX,ARCH_RPRG,ARCH_DEF.
    4. While scheduling the Read process in batch mode , it will give you three criterias to be entered.
         . Spool Parameters
         (ii). Start date
         (iii). Archive selection of files.
        Unless you enter values for any one of these options , You cannot execute the batch job.
    Hope this would help you.
    Regards - Swarna.

  • Report Painter- How to make cost center report for Jun07-Jul08 ?

    Hi Experts,
    I need to make a P&L (Actual/ Plan) report for Jun 07 - Jul 08 by using Report Painter, but I'm having difficulty to make column for the next year period (2008) and some other things.
    We are using K4 Fiscal Year Variant in ECC 6.0.
    The layout is somehow like this:
    Header : Cost Center
                 Actual/Plan Report
                 June 2007 to July 2008
    Body:
    Cost Element     |   Total Actual   |   Total Plan |  Actual  June | Plan June .................Actual July | Plan July    
    xxxx       
    xxxx
    Account Group (total)
    xxxx
    xxxx
    Account Group (total)
    Grand Total  
    How to:
    a. make the header "June 2007 to July 2008" ?
    b. make the selection screen to provide parameter for June 2007 to July 2008? (e.g.: period 6 fiscal year 2007 to period 7 fiscal year 2008)
    c. provide layout (rows and columns) as described above? it should provide detail cost elements and also calculate it as the total per account group, then finally the Grand Total for all of account groups. 
    Thank you before,
    -=Meila.S=-

    Hi,
    1. Put Year and Month as your General Selection parameters
    2. In the label of the fields, if you put the parameter name with & before, it will display the value
    3. If you put cost element in General selection, it will come with a group, and when you selecting the group, the report does the sub-totals automatically.
    Regards,
    Eli

  • How to make Inactive Item Report throught Query

    HI,
    I want to make report which return Inactive Items.I want to displays those Items their transations is null.
    SAP B1 have report of Inactive Items Report.But it's based on Sales documents.I want Inactive Item report
    which is based on Inventory documents. Can any body tell me how can i get Inactive item report through
    Good Issue.
    Can any body help me in this regards
    Sohail Anwar Ali

    This is what I use, be sure to pick a date from the pick list.
    /* The Date Input (Hasn't Sold Since dd/mm/yyyy */
    DECLARE @TODAY TABLE(RepDate datetime)
    DECLARE @DAYLIMIT AS datetime
    INSERT INTO @TODAY
    SELECT DISTINCT T0.DocDate FROM OINV T0 WHERE T0.DocDate = [%0]
    SET @DAYLIMIT = (SELECT MAX(RepDate) FROM @TODAY)
    SELECT T0.ItemCode AS 'Item no',
                   T0.ItemName AS 'Description',
                   T0.CreateDate AS 'Date created',
                   T1.WhsCode AS 'Warehouse',
                   T1.OnHand AS 'On hand',
                   T1.AvgPrice AS 'Avg. price',
                                           (T1.OnHand * T1.AvgPrice) as 'Extended',
                   (SELECT MAX(TA.DocDate) FROM OINV TA INNER JOIN INV1 TB ON TA.DocEntry = TB.DocEntry
                                  WHERE TA.DocDate < @DAYLIMIT AND TB.ItemCode = T0.ItemCode) AS 'Last Inv. Date',
                   (SELECT MAX(TA.RlsDate) FROM OWOR TA INNER JOIN WOR1 TB ON TA.DocEntry = TB.DocEntry
                                  WHERE TA.RlsDate < @DAYLIMIT AND TB.ItemCode = T0.ItemCode) AS 'Last W/O Date'
    FROM OITM T0  INNER JOIN OITW T1 ON T0.ItemCode = T1.ItemCode
    WHERE T1.WhsCode NOT IN ('98 Ret','DropShip','Transit')
              AND T1.OnHand > 0
              AND T1.IsCommited <= 0
              AND T0.ItemCode
                        NOT IN (SELECT TB.ItemCode FROM OINV TA INNER JOIN INV1 TB ON TA.DocEntry = TB.DocEntry
                                            WHERE TB.ItemCode = T0.ItemCode AND TA.DocDate >= @DAYLIMIT)
              AND T0.ItemCode
                        NOT IN (SELECT TB.ItemCode FROM OWOR TA INNER JOIN WOR1 TB ON TA.DocEntry = TB.DocEntry
                                            WHERE TB.ItemCode = T0.ItemCode AND TA.RlsDate >= @DAYLIMIT)
    FOR BROWSE

  • How to make real-time report per subscriber ( SCE2020)

    From the link below Cisco SCA BB SNMP Real Time Monitoring User Guide, 3.1
    http://www.cisco.com/en/US/products/ps6135/products_user_guide_chapter09186a008084ddc8.html
    it only make report on the global bandwitdh does anyone have i 3rd party software or good document on how to do snmp real-time report per subscriber?
    Thanks in Advance.

    SCE platform supports a limited set of variables that may be configured via SNMP (read-write variables). Setting a variable via SNMP (as via the CLI) takes effect immediately and affects only the running-configuration. To make this configuration stored for next reboots (startup-configuration) the user must specify it explicitly via CLI or via SNMP using the Cisco enterprise MIB objects.
    For the further details for the SCE follow the below url which will help you:
    http://www.cisco.com/en/US/products/ps6134/prod_configuration_guide09186a008078b43a.html

  • How to make Captivate 5 report answers?  PLEASE HELP

    Hello,
    I'm trying to make Captivate 5 specify which questions the user got wrong when pulling a report from the LMS.
    I've done this in the past with Captivate 3 by doing the following:
    Create multiple question slides.
    Modify the Interaction ID of each question individually.I re-key the question in the "Interaction ID" field of each question slide.
    The Interaction ID of each question matches the question itself, all within the same course.
    When the user is done, I'm able to see not only how many questions they got wrong, but also identify which questions they got wrong (by name).  Unfortunately, I'm not able to do this in Captivate 5, as it only lets me add ONE Interaction ID for all the questions.
    So the real question I'm trying to ask is:
    Can I assign a different "Interaction ID" to each question within one project in Captivate 5?

    I added them individually.  However, I did start in Captivate 3 and then opened the project on Captivate 5 to finish it.  (I typically do this to Achieve some effects that I like in my questions slides, such as animated backgrounds).
    Anyway, I managed to make it work, but it seemed like a complicated work-around.  I had to:
    Click on one question and update the interaction ID
    Click on a "non-quiz" slide
    Click on the next question and upate the inteaction ID
    Click on a "non-quiz" slide
    Repeat the process for all questions/slides
    If I go from one question slide to another, it automatically updates the Interaction ID for all the slides I view. 
    I'll test creating a quiz in Captivate 5 from the start and see if that works.  Thanks for the help.

  • How to make an interactive report, non-interactive

    Hi,
    I have an interactive report. I have disabled every interactive control from the report by setting "include search bar" to NO and also at column level i didnt allow to sort or group or any other thing. Only problem is that when i click the column heading, i see a text box poping up and asks to enter some value so that it could filter the report and if i provide any value and pres enter, it returns message "ERR-1777: Page 1 provided no page to branch to. Please report this error to your application administrator."
    How can i disable this text box from appearing and making report fully non interactive. I don't want to rebuild the page as not interactive report and want to disable this popup from my current interactive report.
    Thanks
    Salman
    Edited by: Salman Qureshi on Aug 19, 2009 10:11 AM

    Hi Salman,
    You can "disable" the column links by hiding them.
    The simplest method would be to change the column heading to something like:
    &lt;/div&gt;&gt;div&lt;EnameThe link is created on a DIV tag that contains no text. The above will close this DIV and open a new one for the heading. As there's no text in the first DIV, the user can't see it nor click on it.
    Andy

  • How to make the matrix report in OBIEE

    Hi Friends,
    I had a requirement today to make the report which looks like Matrix.
    For example
    a= 5
    b=5
    a(Original)=5
    b(original)=5
    a(Yesterday)=4
    b(Yesterday)=4
    a(Last Week) =3
    b(Last Week) =3.I need to to show like this
    (original) (Yesterday) (Lastweek)
    a 5 4 3
    b 5 4 3
    Please help me friends.

    hi,
    i couldnt understand you data exactly, but you can use pivot option i think.

  • How to make multi-line report headings?

    Hi all,
    By default, Apex creates a single-line report heading for each column in a report.  To minimize white space, multi-line column headings are sometimes appropriate.  How can Apex be directed to split a column heading at certain place(s)?
    Thanks,
    Kim
    P.S. I'm running Apex 4.2.2. 

    See https://forums.oracle.com/message/11154533

  • How to make character mode reports in reports 6

    iam finding difficulty in setting the properties for the character-mode reports in reports 6.0!!how do i preview and print character mode reports in landscape mode
    (132*66)
    thanks in advance.
    jitendar

    thanx very much for ur advice sasha !!
    i changed the layout model to character mode but the main problem is that how do i change the pagesize of the screen to 132*66!
    at presenti can view only 80 chars screen!
    is there any answer to it !!! can i change this setting so as to view my 132 column report on the screen first and then print on the printer !!
    thanking in advance,
    jitu :-)

Maybe you are looking for

  • Can I use the "Apple DVI to Video Adapter" with the GeForce 8600M GT?

    It's all in the subject, folks. I've got an nVidia card, not ATI. Should I go ahead and buy the Apple DVI to Video Adapter to connect my MacBook Pro to my CRT Sony TV? Thanks. PS My May 2005 Powerbook G4 had both a DVI and sVideo connector. I used to

  • Bex Query not passing all rows to Crystal reports

    hello experts, i have created a bex query that shows all employees from the master data table and links to the cats table to show absence hours... in bex, all employees are showing and some of the employees have hours showing for sick time. this is k

  • Creation of Column view for Multiprovider failed

    Dear Experts, I'm facing an issue in TR import. The TR failed with the below error message. Creation of column view for XXXXX failed. XXXXX - Multiprovider System :BW on HANA (BW 7.4 SP06) If there's a way to resolve this error, please let me know. A

  • What are the benefits of 64-bit computing?

    What are the benefits of 64-bit computing? From what I understand, the only benefits are the ability of the OS to address memory ranges beyond 2GB. Or is it 4GB? I can't remember. Anyway, I have no intention of expanding my Intel MacBook's memory bey

  • Late 2013 MBP "Boot Camp x64 is unsupported on this computer model"

    Hey yall, some help would be fantastic. Got my brand new Late 2013 MBP (top end model with the Nvidia GeForce GT 750M) on Thursday and had no problems getting it set up.  Having gotten the OSX side all set up, last night I Bootcamped it. The new Boot