No Program generated after creation of new report via Report Painter

Hello,
I have created a new report after copying an existing report from report painter GRR1. The new report has also been assigned to a new Report Group relevant to the same library.
There is no Syntax error. The only change has been to the Title of the report.
However when I am trying to execute the report nothing happens. ABAP found that no program has been generated by SAP for this mew rpeort. We confirmed this by searching with my user ID in table TRDIR.
However there is no trace of it.
We have tried to execute the report from GRR3 & GR53 (report group). The report & report group is having the same attributes as the old one.
Unless the report is in executable stage we are not able to go to the Selection screen & finally from the Technical Information to the program name.
Please could you let me know what can be the possible cause for this & how can we resolve the same.
Thanks & Regards
Shreenath

@JoeSchmoe115:  Thanks for your suggestion.  Using a web service or WCF service would still mean dealing with potential timeouts for very large reports (granted you can adjust those timeouts).    
I think an approach using a console app could work, but rather than having the web app spawn it, an alternative would be to do the following:  (1) have the web app insert report generation requests (including all necessary report parameters) into
a database table, and (2) have a console app, periodically invoked by Windows Task Scheduler, which reads that database table and then uses the SSRS API as you describe to generate the report, save the byte stream to a file, and finally send
the e-mail notification to the user.  
mkedwards
What you've described will work but saving report generation requests in separate table may not be necessary. I don't have much experience with web services but can they just spawn C# console app with needed parameters and exit without waiting for console
app to complete?
The positive side of using database to store report generation requests is that you would have complete log of all requests. Your console app can then update database with completion status.

Similar Messages

  • Configuration steps involved after creation of new personnel subarea in sap hr module

    Dear Friends,
    Let me know what all config to be done after creation of a new personnel sub area in SAP HR module?
    So that all infotypes including IT0007 & IT0008 are captured for hiring an employee & running the payroll ?
    Reg,
    TD

    Hi Tanuja,
    Normal customization only you have to do for every PA & PSA. if you don't have the steps i will give you the steps.

  • Creation of new conditions in reports

    hi,
    plz tell me the steps in creating new conditions in reports.what is the difference b/n conditions and new conditions?
    thanks ,
    jack

    Hi Jack,
    You can formulate conditions in the query designer to make data analysis more efficient. In the results area of the query, the data is filtered according to the conditions so that only the part of the results area that you are interested in is displayed.
    Procedure
    Choose New Condition. (You can find this menu entry in the Query Designer toolbar under This graphic is explained in the accompanying text to the right of This graphic is explained in the accompanying text Condition). The Define Condition dialog box appears.
    Specify a name for the condition in the Description field.
    Note:If you only want to define the condition and not execute it actively in the query, remove the check from the active, which was set by default.
    You now have the following options:
    If the condition lines below are to be evaluated independent of one another for all of the characteristics in the drilldown and you want to use the same condition for multiple characteristics of the query, select Evaluate Conditions Below for All Characteristics in the Drilldown Independently.
    You can choose from the following operators for threshold conditions:
       Is equal to
    -         Is not equal to
    -         Is less than
    -         Is greater than
    -         Is less than or equal to
    -         Is greater than or equal to
    -         Is between (is in the interval)
    -         Is not between (is not in the interval)
    These operators demand a floating point number as a value. For the operators is in interval and is not in interval, you must enter a value area, that is, a lower and an upper threshold value.
    You can choose from the following operators for ranked list functions:
    ¡        Top N
    ¡        Bottom N
    ¡        Top percent
    ¡        Bottom percent
    ¡        Top sum
    ¡        Bottom sum
    You can find additional information about using operators for range lists under Conditions.
    http://help.sap.com/saphelp_erp2004/helpdata/en/43/b57138c1afbd20e10000009b38f889/frameset.htm
    Regards
    Hari

  • Sending an email after creation of new role

    Whenever new role is created in Transaction PFCG I need to email to all the users.
    There is no User-Exit in PFCG and we can't create any new Program for this.
    So how it will be done?
    If anyone worked on it please reply to this as soon as possible.

    hi Zahid Khan,
    as said i tried the same.
    i have created a button "send" action :submit.
    and also have created a process"send mail" with the folloing code
    DECLARE
    l_body CLOB;
    BEGIN
    l_body := 'Thank you for your interest in the APEX_MAIL package.'||utl_tcp.crlf||utl_tcp.crlf;
    l_body := l_body ||' Sincerely,'||utl_tcp.crlf;
    l_body := l_body ||' The APEX Dev Team'||utl_tcp.crlf;
    apex_mail.send(
    p_to => '[email protected]',
    p_from => '[email protected]',
    p_body => l_body,
    p_subj => 'APEX_MAIL Package - Plain Text message');
    APEX_MAIL.push_queue;
    END;
    and , Process Success Message as "done" and When Button Pressed (Process After Submit When this Button is Pressed): "SEND" WITH Process Point : "ON SUBMIT AFTER COMPUTATIONS AND VALIDATION"
    The process is running.., getting the """success message""" but unable to""" get the mail""".(tried different combinations of mail ids)
    any help !!!

  • Refresh table after creation of new Toplink BO

    Hi,
    i have the following Problem and i hope someone can help me. I use ADF11g/Taskflows with TopLink-mapped BOs (no ADF BC).
    Consider following Taskflow(s):
    main activity is a jsff-page (view) showing a table of BOs. From this view there are two action-outcomes defined called "edit" and "create". The edit-action calls another Taskflow constisting of one pageFragment showing the detailForm of the given BO. This Taskflow has one input and one output parameter (the BO to edit) and has two exists called "save" and "cancel". The add-Action calls a Method called "createNewBO" first and then calls the mentioned Taskflow also. Every Taskflow has ist own managed Bean in the pageFlowScope working as a Controller and DataControl for the TaskFlow and directly included views.
    The edit-action works fine. The add action also except that the table from the default activity of the first taskflow does not refresh after return from the second Taskflow. I tried to set the Refresh-Property in the PageDef to all possible values in combination with the RefreshCondition but no combination works. I can make a manual refresh or change the sorting then the new BO is shown in the table.
    Is there a possibility to call a refresh of a jsff from a taskflow or can i force the refresh on entering the jsff?
    I'm really stuck and appreciate any help ;)
    Friedrich

    You can try this:
    - on your taskflow diagram select the page that contains the table you want to refresh, and add a Page Parameter (from #{true} to #{viewScope.refresh})
    - in pageDef for that page add one invokeAction in executables and point it to methodAction that fills the iterator you want to refresh
    - for newly created invokeAction, set Refresh to ifNeeded and Refresh condition to #{viewScope.refresh}
    This should refresh the iterator each time the page (fragment) is loaded.
    Hope this helps!
    Pedja

  • WPC Problem after creation of new Site - no "Edit Page" Link available

    Hello,
    I have a problem with WebPageComposer (WPC) and Edit Page link.
    We are currently on EP 7.01 SP6.
    (I have the wpc_editor_role for my user)
    I am doing the following:
    1) I create a new site, (derived permissions for all folders is wpc_editor_role - Full Control),
    2) I Create some article within its Site Content folder
    3) I create a new web page in its Web Pages folder
    4) assign the article to the web page and publish it
    5) add web page within Site Navigation as a new node
    6) I used Publish Site Navigation
    After clicking on the web page within Web Pages folder it does a preview.
    Our older WPC content does display the Edit Page link - the new one does not.
    What step am I missing here?
    Maybe it is an upgrade issue?
    Best Regards, Thomas
    P.S.: copying one of our older WPC pages into my new site + renaming it via KM + removing old content + assigning new one does display the correct link after publishing it! Any indeas?

    Dear Thomas,
    It sounds like your are doing all the right actions, I don't think that your missing any step in the process, but please consider the following.
    Are you using a custom WPC layout template? The reason I ask is that I have developed a number of WPC custom templates and in some circumstances I have needed to remove/hide the "pageheader" section of the template. This action removed the links from displaying at the top of the page. Try creating and publishing a web page using a SAP standard WPC layout and see if the edit link appears once the page is published.
    The editing and preview page views do not display the "edit" link, they only display the other page header links that can be assigned to a page. The edit link is only visible when viewing the page via the portal, not in edit mode. Another question, was the deployment of KMCWPC successful and without error? I have experienced issues where the deployment did not fully complete, causing some subtle issues regarding publishing of WPC content and redeploying KMCWPC fixed the issue. I hope this helps.
    Best Regards,
    Chris

  • Essbase client missing after creation of new windows user profile

    I created a new windows user profile after an apparent corruption of my old one. However, when I open Excel, the Essbase client (add-in) is gone. Smartview is still there. The client doesn't show up after registering Essbase Add-In is executed. I can add the client by navigating to C:\Hyperion\products\Essbase\EssbaseClient\bin and selecting essxleqd.xla and essxcln.xll. The add-in then appears to be installed. However, when I try to connect to Essbase, the connection dialog box does not show up. I'm on version 11.1.1.3 and Excel 2007.
    Is there a way to resolve this short of re-installing the client? Any advice would be appreciated.
    Thanks in advance.
    dave

    I remember the Essbase add-in used to be a small executable of a few MB that was easy to install. It's my understanding that they went to the global installer where they include various product assemblies. The files needed to run the global installer for a simple add-in amount to close to about 4GB in size. Our VPN for remote users is very slow and takes forever to install. I see ther is still a small executable for the Smartview install. Is there a small executable for the Essbase add-in somewhere that I'm not aware of? I can reinstall if that's what it takes. I was hoping there might something a bit less time consuming.
    Thanks John.
    Edited by: DAS80220 on Jun 28, 2011 7:50 AM

  • Custom code after creating a new user via CUA

    Hi experts!
    In our landscape we are using CUA for adding users in CRM 7.0. A new requirement is to adjust some default Web UI related settings for every new user created. There is no standard customizing setting for that, but it is possible to programmatically set prsonal settings using cl_pers_admin class' set_data method.
    The question is if there is any BADI or User Exit for user creation procedure? If it is present, wouldn't it conflict with CUA routines? Many thanks in advance.

    No. Not the main Library folder. Make absolutely sure you are in the Home Library folder and not the main Library folder.
    Your Home Library folder is hidden in Lion. To get to it, in the Finder menu, select GO and hold the option key down. Select Library in the submenu. The Finder window will open in your Home Library. This is where your user prefs are stored.
    Once there, you will see the Preferences folder. Open it up, select all items within it and move them to the trash. You will need to restart in order for the new Finder preferences to be recreated.
    Once you restart, then you will be back to the default preferences to the system and all applications. And yes, it will affect all settings including your Dock, just as logging into a new user. You will have to reset everything there also.
    If you wish to do a selective method, instead of deleting all preferences, try deleting the one associated with your problem. Screen saver problems should be affected by the system preferences, so try deleting this:
    com.apple.systempreferences.plist
    com.apple.systempreferences.plist.lockfile
    Note that when you delete system file preferences, a restart will be required. For applications, just quit the application before trashing preference files.

  • All menus greyed out after transfer to new computer via Migration Assistant

    Hi!
    My collegue just moved all his stuff to a new computer using the Migration Assistant.
    All seem to work fine except Apple Remote Desktop 3 which start up, but the main window isn't shown and the menus are all grey.
    We have tried to re-install and also tried to toss everything that's related to ARD (Like the ”Remote Desktop” folder in /Library/Application Support/Apple and the ARD prefs. file in ~/Library/Preferences) and re-installed again, but still the same.
    Any ideas?
    A permission problem somewhere perhaps?

    It helped to do this command:
    +sudo rm -rf /var/db/RemoteManagement+
    Found here:
    http://support.apple.com/kb/HT2577
    This let us type in the serial number again when starting up the ”Remote Desktop.app” and all seems fine.

  • How to view / edit other users subscriptions to reports via report admin user ?

    Is there a built-in GUI means or power tool to access a list of all the users' subscriptions to reports in SQL 2012 ?
    It seems that report admin can only view his own subscriptions, same as any other user via "my subscriptions", but no found option for report admin user to view or manage susbcriptions of other users.
    How would u recommend to view the list of all the subscriptions to reports in SSRS, and as necessary to
    also manage them ?
    p.s. Is there a GUI for this in SQL 2014 ?
    Thanks

    Hi moital,
    According to your description, you want to access a list which contains all users subscriptions and edit them. Right?
    In Reporting Services, we have a table named "Subscription" in the ReportServer database. It includes all the information of each subscription. Please go to SQL Server Management Studio and try the query below in ReportServer database:
    select c.UserName,b.SubscriptionID,a.ItemID ReportID,a.Path,a.Name ReportName
    from Subscriptions b inner join Catalog a on a.ItemID=b.Report_OID inner join Users c on b.OwnerID=c.UserID
    It will return us each subscription with corresponding ReportName, UserName and Path:
    Then we can go to the Report based on the path if we need to edit the subscription. We don't have build-in GUI for any version SQL, but this can be a good method to get the list of subscriptions.
    If you have any question, please feel free to ask.
    Best Regards,
    Simon Hou
      

  • Document Series Error after creation of a new Posting Period

    Hi
    While Creation of a new Document Series for user created UDO (after creation of new Posting Period
    with Period Indicator) on update its showing a message box
    "Application Error occurred, Dump file created in path  C\Program Files\SAP\..\Log......"
    And soon SAP B1 gets exit.
    Can any one help me to come out of this problem.

    Hi,
    Whenever Dump file created, it is high time to log a message to SAP support.  This problem is beyond forum function.
    Thanks,
    Gordon

  • WEBI Report Error After Adding 2 New Servers to BOE

    There were two new servers added to the existing BO enterprise application. Both these servers have the Web Intelligence job server and Web Intelligence report server services running on them. Eversince these servers have been added we have been encountering the following error
    Creation Time: 1/11/2009 11:40 PM
    Start Time: 1/11/2009 11:40 PM
    End Time: 1/11/2009 11:40 PM
    Server Used: LXW0D38C.Web_IntelligenceJobServer
    Error Message: 0: (CS) :DBDriver failed to load : D:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\dataAccess\connectionServer\dbd_oci8.dll (The specified module could not be found. ) An internal error occurred while calling the 'processDPCommands' API. (Error: WIS 30270) BOException caught:RESULT=80004005;WHAT=RefreshBatch failed
    The job server mentioned in error message may not necessarily be job server created on the new servers. In the above example the server listed with the job server running on it has BOE installed on the C drive
    I do want to point out that when I turn off the job servers and report servers on the newly installed machines this problem goes away
    I am assuming that an old job server may assign a task the the new webi intelligence report server to execute a query and the problem shows up
    Am I possibly missing a setting in the WEB Intelligence report server?
    Is there something that can be done to fix the issue?
    We are currently at BOXIR2 SP3.6 which is installed on Windows 2000 Server with SP4
    Thank You
    Shariq

    Alan,
    I used remote desktop to access each of the servers and I am able connect to the oracle databases that the BOW accesses from both SQLPLUS as well as ODBC. I also opened up designer and was able to successfully connect to each of the universes
    I have placed the -trace option on the WEB Intelligence Report servers and going to try to find what kind of output this newly installed BOE software generates
    Can you think of anything else?
    Thank You
    Shariq

  • Programs generated using ABAP query vanishes after upgrade

    Hi all,
    The programs generated using abap query in sq01 vanishes after upgrading from 4.6C to ECC 6.0 system.
    Is this a know issue, do we have a solution for this?
    Can anyone help
    Thanks
    Senthil

    Hi,
    Try to generate the Queries again in the new system...using the FM : RSAQ_GENERATE_PROGRAM
    The input needed is the Query name and the usergroup...The details can be obtained from the table AQLQCAT(local queries areas) and AQGQCAT(global areas queries).
    Once you generate the query , a program gets created...
    if you have lots of queries to be genretated, write a custom report by fetching the data from the above tables and use the FM to generate the same...
    Hope this helps you..
    Reward if useful
    Regards
    Shiva

  • Creation of new button on same page after insert command

    Hello All,
    I have an application running on apex.oracle.com where my workspace name is shruti_work,username is [email protected] and password is buwigi. The application name inside this is "app2"
    I am trying to achieve one functionality there but unable to get it so felt like seeking an help from experts here. I have two forms there one page1 form which is simplly made on an html region with go button which is navigating the page 1 items value to page 2 but simply passing their address witout updting the database table.
    In Page 2 i created page on a table or view, which made some extra buttons which i dont want like applychanges ,delete button, cancel button. I created a create button even which is updating my database with insert sql command. What i am seeing is after my create button is pressed i got navigated to same page 2 which i want to but the applychange button, cancel and delete button got appeared. I dont get the idea why it is so. i have checked the buttons even i didnt found anything there.
    All i want is when i press create button in page 2, my database get update and at the same page (2) a new button get appears which i have to use for other things. Approaching to this solution i created a button with giving databse action update and condition to this button "value of item in expression 1 is not null" and in expression 1 i passed p2_id...... but my new button is not getting created.
    Any help on this?

    Hi Jeff,
    I dont want applychanges button and delete button in my page 2. But when i created form on a table or view this but got created and i cannot delete it even. When i am navigating my page from page 1 to page 2 and filling the fields in page 2 and clicking create button, at that time i want after updating my table and running my plsql process which i have created which you can see in page processing, my button at same page get generate which i will use to navigate to other form. This button which i want to generate after clicking my create button will be meaningful only if my record get inserted in table. so that is why i want it at that time.
    I dont want any report so i am not creating form on a table or view

  • Locale Settings lost on mobile client 7.8.2.14 after creation of BIP report

    Hi All,
    we went live with BI Publisher reports (Siebel 7.8.2.14) at the beginning of June.
    Now some of our users are having trouble with their mobile web client.
    For example our colleagues in Poland have their Windows XP regional settings set to "Polish". It will make Siebel use date format for all date fields (e.g. activity start date) display as YYYY-MM-DD - this works just fine until user is creating a BIP report. After successfull report creation, all locale settings in the mobile client are lost. Instead of YYYY-MM-DD, the dates are displayed in DD.MM.YYYY and creation of new records produces and error. Also, currency and number formats are mixed up.
    I assume it's a bug - anyone hit this before?
    Edited by: Penky on Jun 17, 2011 11:38 AM

    Yes, we finally decided to do so!
    The main reason was that we had a lot of new report change requests and did not want to do the work twice (now in Actuate and then again in BIP). Also we plan our 8.x upgrade for second half of 2011 so this was already some kind of preparation, so we can completely focus on the upgrade afterwards and don't need to hassle around with the reports as well.
    issues we're still facing include "user's are not able to run reports after they change their position" or "List reports can only be run for few records, otherwise the search spec hit's an IO field's length limitation" or "report popup can not be suppressed although there's no useful information in it" (not to forget the one described in this thread) and some others.
    Well ... after 1 1/2 years since I downloaded the first integration QF the BIP journey still does not end - it's like it just started :)

Maybe you are looking for