Create a Crystal Report listing all the crystal reports in CMS

How do I create a Crystal Report listing out all the Crystal reports in a specific folder in CMS?

Hi Mauren,
You can each report at a time with in the folder of the CMC.
Multiple reports cannot be done and feature is not avaialable.
Thanks,
Naveen.

Similar Messages

  • How to delete all the crystal reports from SAP B1 ?

    Dear Experts,
    I have one problem and I need to Delete all the Crystal PLD's and Crystal Reports from SAP B1.
    I can delete a PLD or Report using delete option from Report and layout manager or layout designer.
    But I need to select delete option for each PLD and It makes very time.I have some 200 Reports and I need to delete fully.
    Is there any possible to multi delete option in SAP B1?
    I have searched many but i will not receive proper solution. Any one can explain how to do This?
    Thanks ,
    Karthikeyan.P
    MSBI Developer-Chennai

    Dear Karthikeyan,
    Manual deletion is actually the most safe way to delete them. If you try update B1 tables directly, you are against SAP support rule.
    Thanks,
    Gordon

  • Need to list all the reports in enterprise XIR1

    Hi,
    My requirement is to list all the reports available within folders their sub-folders?
    For ex: Folder A has sub folder B->Sub folder B has another sub Folder C->in which the reports are available some thing like a two-level hierarchy.
    Is this possible?
    Thanks!!!

    some sample queries for Query Builder:
    Get a list of all WebIntelligence reports:
    Select SI_ID, SI_NAME From CI_INFOOBJECTS Where SI_PROGID='CrystalEnterprise.Webi' And SI_INSTANCE=0
    Get a list of all Crystal Reports:
    Select SI_ID, SI_NAME From CI_INFOOBJECTS Where SI_PROGID='CrystalEnterprise.Report' And SI_INSTANCE=0
    Get a list of all universes:
    Select SI_ID, SI_NAME, SI_KIND From CI_APPOBJECTS where SI_KIND ='Universe'
    Get list of All Users by log on ID and Full Name:
    SELECT SI_ID, SI_NAME, SI_USERFULLNAME FROM CI_SYSTEMOBJECTS WHERE SI_PROGID='CrystalEnterprise.USER'
    Get list of all groups:
    Select SI_ID, SI_NAME from CI_SYSTEMOBJECTS Where SI_KIND='UserGroup'
    get list of all folders:
    Select SI_ID, SI_NAME From CI_INFOOBJECTS Where SI_PROGID='CrystalEnterprise.Folder'
    get list of all categories:
    SI_ID, SI_NAME From CI_INFOOBJECTS Where SI_KIND='Category'
    get list of all personal categories:
    Select SI_ID, SI_NAME From CI_INFOOBJECTS Where SI_KIND='PersonalCategory'

  • Creating a report of all the errors occured while loading legacy data

    hi  guys,
    i am using Bapi to load legacy data .
    how can i  list all the errors that occur during the transfer .
    i want to see  all the errors that occured and  create a report .
    thanks .

    Hi look at this code... you will get an idea
    CALL FUNCTION 'BAPI_BUPA_FS_CREATE_FROM_DATA2'
        EXPORTING
    *   BUSINESSPARTNEREXTERN              =
          partnercategory                  = c_2
          partnergroup                     = c_rp
          centraldata                      = wa_centraldata
        IMPORTING
          businesspartner                  = w_partner
       TABLES
          return                           = it_return.
    * Check for errors
      CLEAR wa_return.
      READ TABLE it_return INTO wa_return WITH KEY type = c_e.
      IF sy-subrc EQ 0.
        CALL FUNCTION 'FORMAT_MESSAGE'
          EXPORTING
            id        = wa_return-id
            lang      = sy-langu
            no        = wa_return-number
            v1        = wa_return-message_v1
            v2        = wa_return-message_v2
            v3        = wa_return-message_v3
            v4        = wa_return-message_v4
          IMPORTING
            msg       = wa_return-message
          EXCEPTIONS
            not_found = 1
            OTHERS    = 2.
      ENDIF.                               " IF sy-subrc EQ 0

  • How to Create Interactive report lists for the gross sales, credit ....

    How to Create Interactive report lists for the gross sales, credit returns, and gross weight for the               customer for the current year and comparing the same with that of the previous year for the same period.....
    plz tell me steps to accomplish this....plz ...give me the detail description..plz......many many thnx in advance...

    Hi raja,
    Display a checkbox , customer number on the basic list and also set a GUI STATUS  on the basic list.....
    Select the customer by checking the checkbox and click on the button you create in the GUI status....
    Write the desired code to be displayed in
    AT USER-COMMAND even checking the sy-ucomm....
    so this would make you to into interactive list...
    Hope this would help you.
    Regards
    Narin Nandivada

  • Using ms project 2007 and vba macro to list all the custom fields used in the project?

    Hi,Using ms project 2007 vba macro, I would like to be able to list all the custom fields used in the project and their corresponding field names. e.g. let us say I create a calculated duration field and name it "expected duration" and the name
    of the field I select is Duration1.
    I am trying to write a macro that will list all the used custom fields such as the result would look like:
    Duration1 ---> "expected duration"
    Text1       ---> "anything"
    Flag1        ---> "....."
    Number1  ---> "..............."
    Can anyone provide me with the solution?
    Regards,
    Chuck

    John,
    I found this module, which provides the the list of custom fields used in the project but does not provide the name given to the field. Here below is the module and hope you could help me achieve this by modifying the macro to list the renamed field.
    ' MSP Checks all Custom Task Fields
    Sub checkfields2()
    'This macro will check and report out which custom task fields are used
    'It requires Project 2002 and above as it relies on the GetField
    'and FieldNameToFieldConstant methods which were not introduced until
    '2002.
    'It does not include resource fields, however it is a simple matter to
    'do it by replacing the pjTask constant with pjResource.
    'Copyright Jack Dahlgren, Oct. 2004
    Dim mycheck As Boolean
    Dim myType, usedfields As String
    Dim t As Task
    Dim ts As Tasks
    Dim i, it As Integer
    Set ts = ActiveProject.Tasks
    usedfields = "Custom Fields used in this file" & vbCrLf
    myType = "Text"
    usedfields = usedfields & vbCrLf & "--" & UCase(myType) & "--" & vbCrLf
    For i = 1 To 30
    mycheck = False
    it = 0
    While Not mycheck And (it < ts.Count)
    it = it + 1
    If Not ts(it) Is Nothing Then
    If ts(it).GetField(FieldNameToFieldConstant(myType & i, pjtask)) <> "" Then
    usedfields = usedfields & myType & CStr(i) & vbCr
    mycheck = True
    End If
    End If
    Wend
    Next i
    myType = "Number"
    usedfields = usedfields & vbCrLf & "--" & UCase(myType) & "--" & vbCrLf
    For i = 1 To 20
    mycheck = False
    it = 0
    While Not mycheck And (it < ts.Count)
    it = it + 1
    If Not ts(it) Is Nothing Then
    If ts(it).GetField(FieldNameToFieldConstant(myType & i, pjtask)) <> 0 Then
    usedfields = usedfields & myType & CStr(i) & vbCr
    mycheck = True
    End If
    End If
    Wend
    Next i
    myType = "Duration"
    usedfields = usedfields & vbCrLf & "--" & UCase(myType) & "--" & vbCrLf
    For i = 1 To 10
    mycheck = False
    it = 0
    While Not mycheck And (it < ts.Count)
    it = it + 1
    If Not ts(it) Is Nothing Then
    If Left(ts(it).GetField(FieldNameToFieldConstant(myType & i, pjtask)), 2) <> "0 " Then
    usedfields = usedfields & myType & CStr(i) & vbCr
    mycheck = True
    End If
    End If
    Wend
    Next i
    myType = "Cost"
    usedfields = usedfields & vbCrLf & "--" & UCase(myType) & "--" & vbCrLf
    For i = 1 To 10
    mycheck = False
    it = 0
    While Not mycheck And (it < ts.Count)
    it = it + 1
    If Not ts(it) Is Nothing Then
    If ts(it).GetField(FieldNameToFieldConstant(myType & i, pjtask)) <> 0 Then
    usedfields = usedfields & myType & CStr(i) & vbCr
    mycheck = True
    End If
    End If
    Wend
    Next i
    myType = "Start"
    usedfields = usedfields & vbCrLf & "--" & UCase(myType) & "--" & vbCrLf
    For i = 1 To 10
    mycheck = False
    it = 0
    While Not mycheck And (it < ts.Count)
    it = it + 1
    If Not ts(it) Is Nothing Then
    If ts(it).GetField(FieldNameToFieldConstant(myType & i, pjtask)) <> "NA" Then
    usedfields = usedfields & myType & CStr(i) & vbCr
    mycheck = True
    End If
    End If
    Wend
    Next i
    myType = "Finish"
    usedfields = usedfields & vbCrLf & "--" & UCase(myType) & "--" & vbCrLf
    For i = 1 To 10
    mycheck = False
    it = 0
    While Not mycheck And (it < ts.Count)
    it = it + 1
    If Not ts(it) Is Nothing Then
    If ts(it).GetField(FieldNameToFieldConstant(myType & i, pjtask)) <> "NA" Then
    usedfields = usedfields & myType & CStr(i) & vbCr
    mycheck = True
    End If
    End If
    Wend
    Next i
    MsgBox usedfields
    End Sub
    This is what the module gives me. But I would like to have beside Text 1 the name that is shown as below. e.g Text1 is "Test".
    Would you mind helping me achieve this?
    Thanks in advance.
    Chuck

  • List all employees that report to a Supervisor Hierarchy

    Hi
    I am trying to write a report in discoverer which lists "All reports" for a Manager.e.g. a Director of a Company will have direct reports and then the direct reports will have people reporting to them and so on all the way down the hierarchy tree.
    I can do the direct reports quite easily by including Supervisor name in the report .
    I am not having much joy with trying to report on the people that reports to the direct reports and so on.
    Any advise would be appreciated .
    Many Thanks in Advance
    Edited by: user650649 on 30-Nov-2010 03:47

    I have used Oracle's Hierarchical Query functionality in custom Discoverer Folders to provide hierarchical reports such as this. You can Google on "Oracle Hierarchical Query" and get very good information including basic examples of how to use this. Reply to this if you need additional help as I think I can quickly create the SQL and I can probably use it in the future.

  • How to list all the notes

    HI,
    Is there some way to report o list all the notes for all account or contacts?
    thanks

    We have similar requirements and we used integration to pull all the notes and then create reports for them from outide of CRMOD.
    Good Luck,
    Thom

  • How can I list all the domains configured for Weblogic Servers?

    How can I list all the domains configured for Weblogic Servers?
    I saw a note, which says the following:
    "WebLogic Server does not support multi-domain interaction using either the Administration Console, the weblogic.Admin utility, or WebLogic Ant tasks. This restriction does not, however, explicitly preclude a user written Java application from accessing multiple domains simultaneously."
    In my case, I just want to list all the domains, is that possible by using any scripts?
    Thanks
    AJ

    If you use WLS Node Manager and the Config Wizard was used to create the domains, then the list of domains should be in a location like this:
    <MIDDLEWARE_HOME>\wlserver_10.3\common\nodemanager\nodemanager.domains
    Enterprise Manager Grid Control also has support for multi-domain management of WLS in a console.

  • Can we list all the users or groups with there rights on the universe\s

    Can we list all the users or groups with there rights on the universe\s using query builder.
    Can we do the same by using auditor reports.
    PLZ  help

    Thanks ,
    It can be acihived by using secuirty viewer.
    Thanks again

  • Listing all the Spotlight comments

    There was a wonderful widget called Tagbag! (http://www.apple.com/downloads/dashboard/business/tagbag.html) that listed all the words inside the "Spotlight comments" field, but it doesn't works anymore in Leopard. Also, the developer doesn't updates it for 3 year now, and I doubt he will. I tried Tagbot, but the "import tags" kills the app in Leopard.
    So, is there any other way to create a list of tags from the "Spotlight comments" field that exists in all my files?

    You should never make use of sun.* packages directly, see:
    http://java.sun.com/products/jdk/faq/faq-sun-packages.html
    To get a list (NLST command) then open a URL connection to ftp://user:[email protected]/dir/motd;type=d as per section 3.2.2 of RFC 1738. Alternatively use a third-party ftp client (there are many).

  • How to write query to list all the employees of deptno 20

    Hi ,
    I am new to Oracle...Recently I got job.... Could you please help me....
    How to write a query for
    1) List all the Clerks of Deptno 20 and
    2) List the emps along with their exp and whose daily salary is more than 100rs

    its not wrong that you ask , but this is basic question and my suggestion is to start reading some manual specially since you got job , Read oracle documentation gogole what you want if you didn't find any answer post here and we will help you .
    Check this link
    http://www.oracle-dba-online.com/sql/oracle_sql_tutorial.htm
    http://www.w3schools.com/sql/default.asp
    http://www.java2s.com/Tutorial/Oracle/CatalogOracle.htm
    And you will find more & more .. create your own vmware oracle provide with learning database called XE (express edition) test it and hope this information is useful for you

  • Permission to execute syslogins to non sysadmins, to list all the logins

    Hi All:
    How can we grant the permission to non sysadmin user to pull the report of all the existing SA's on the server.
    With Sysadmin role i m able to execute the query but when non-sysadmins are running they are not getting full result what i m seeing...
    The following permission already granted on master DB:
    1) Readonly, View server state, Execute and select permissions
    Query:
    select SL.name
    from syslogins SL
    INNER JOIN sys.server_principals SP
    ON SL.name = SP.name
    where SP.is_disabled <>1 and SL.sysadmin = 1
    Thanks,
    Thanks, Satish Kumar. Please mark as this post as answered if my anser helps you to resolves your issue :)

    VIEW ANY DEFINITION should do, although I fail to see why you need to expose this information to non-sysadmin users. See repro with an improved query below:
    CREATE LOGIN yngve WITH PASSWORD = 'malmsten'
    go
    EXECUTE AS LOGIN = 'yngve'
    go
    SELECT sp.name
    FROM sys.server_principals sp
    WHERE sp.is_disabled = 0
    AND EXISTS (SELECT *
    FROM sys.server_role_members mb
    JOIN sys.server_principals sp2 ON mb.role_principal_id = sp2.principal_id
    WHERE mb.member_principal_id = sp.principal_id
    AND sp2.name = 'sysadmin')
    go
    REVERT
    go
    GRANT VIEW ANY DEFINITION TO yngve
    go
    SELECT sp.name
    FROM sys.server_principals sp
    WHERE sp.is_disabled = 0
    AND EXISTS (SELECT *
    FROM sys.server_role_members mb
    JOIN sys.server_principals sp2 ON mb.role_principal_id = sp2.principal_id
    WHERE mb.member_principal_id = sp.principal_id
    AND sp2.name = 'sysadmin')
    go
    REVERT
    go
    DROP LOGIN yngve
    Erland Sommarskog, SQL Server MVP, [email protected]

  • List Of the WEBI Reports

    Hi all,
    I want find out the list of the WEBI Reports which are exported to Excel / PDF..
    please let if you have any idea..
    thnaks in advance,,,
    Reddeppak

    I guess you can do it from Acitivity universe or query Builder
    You can write below query in query builder:
    SI_KIND for CI_INFOOBJECTS includes 'Webi', 'Pdf', 'Excel', 'Folder', 'FullClient', 'FavoritesFolder', 'Inbox', 'PersonalCategory', 'Shortcut', 'MyInfoView', 'AFDashboardPage'
    I guess this link may help out better
    http://www.forumtopics.com/busobj/viewtopic.php?t=162461

  • How to print/list all the groups/users present in Weblogic using Java code

    Hi,
    Weblogic version : 11.1.1.5
    How to print/list all the groups/users present in Weblogic using Java code
    I want to make a remote connection to Weblogic server and print all the users/groups present in it.
    I have gone through the below mentioned site, but I cannot use the same approach since most of the API' are deprecated for example "weblogic.management.MBeanHome;"
    http://weblogic-wonders.com/weblogic/2010/11/10/list-users-and-groups-in-weblogic-using-jmx/
    Thanks in advance,
    Edited by: 984107 on 05-Feb-2013 05:26
    Edited by: 984107 on 05-Feb-2013 22:59

    see this http://www.techpaste.com/2012/06/managing-user-groups-wlst-scripts-weblogic/
    Hope this helps.

Maybe you are looking for

  • 3D Plot Color Ramp - Colors to Values

    Hi all, The Color Ramp for 3D plots only displays 3 values; not all values for every displayed color is shown (see below). The actual values associated with each color is available via the 3D Plot Properties dialog (during edit). How can I access the

  • Windows 7 crashes on boot repeatedly after 10.9.2 upgrade

    As the title says, after running the 10.9.2 upgrade last night, it's impossible to boot up into Windows 7. Just preceding the login screen, my MacBook Pro restarts itself. A following Windows boot attempt brings up the "recovery" screen where you're

  • Photoshop Elements 12 License agreement

    I'm trying to decide wether to get the App Store or «full» version of Photoshop Elements. With the App Store version I can install on all my macs, which is nice. Do any of you know if I can do the same with the full version? Regards G. Helland

  • Issues with iphone 5 driver in windows 7

    my iphone 5 appears under devices but it says driver is not installed although I've uninstalled and re-installed itunes twice already and both times when I plugged phone in, it said driver installed successfully, help!! 

  • I HAVE A NOKIA 5130 AND I WANT TO COPY ALL MY MSGS...

    CAN SOMEONE TELL ME HOW CAN I COPY TEXT MSGS FROM MY MEMORY CARD TO PHONE IN NOKIA 5130?