Viewing Crystal 2008 ActiveX  on Access 2007 forms

Ok, i am a little confused as there seems to be a some doubt whether Crystal 2008 ActiveX can be used on Access forms. Another thread even has a reply that mentions that the ActiveX control is no longer included in Crystal Reports 2008..... Take a look at this, you can clearly see i have embedded the 2008 ActiveX control onto an Access form. link:[http://www.moktar.pwp.blueyonder.co.uk/AX.JPG]
I have just installed 2008 and will get round to looking at this, however in my brief look, i couldnt see the run time library for 2008. By all accounts you can freely distribute the run time files for Crystal Reports 2008 as MSI or exe packages to your clients. I hope this is the case and i can get the ActiveX working.
If anyone has some information on this subject i will welcome reading it.
This is how its used to be done;
1) Open the Access form in design view.
2) Click on Add Tool button on the toolbar.
3) Select Crystal Reports ActiveX toolbar control from the list of controls.
4) Place the control on the form.
5) Click on the View Code toolbar button to open the code for the form
6) Choose u2018Referencesu2019 from the u2018Toolsu2019 menu
7) Select u2018Crystal Reports ActiveX Design and Runtime Library 11.Xu2019 from the list of references and add to the project.
8) On the Form_Load() event, please use the code given below to pass the report to the viewer:
Dim crReport as CRAXDRT.Report
Dim crApplication as New CRAXDRT.Application
u2018 Use the appropriate path for the report
Set crReport = crApplication.OpenReport(u201CC:\Report1.rptu201D)
u2018 ReportSource property and ViewReport method will not be displayed on the viewer control
CrystalActiveXReportViewer0.ReportSource = crReport
CrystalActiveXReportViewer0.ViewReport
'Hey Presto, the Crystal control on the Access form is now displaying a report. However, you had the age old issue of distributing the runtime files to clients that dont have crystal reports installed, and even more so of an issue, as this is Access and no method of doing it. I was hoping that 2008 with its MSI and EXE versions of the runtime files would solve this age old problem.
Thanks
Simon.

Hello Simon,
The RDC was retired after Crystal Reports XI R2 and no longer exists in CR 2008.
The viewer control you are seeing is not meant for RDC applications.
You will need to move to Java or .NET if you plan on using CR 2008.
Best Regards,
Jason

Similar Messages

  • Server 2008 and MS Access 2007 Scheduled Task

    I have a Server 2008 with MS Access 2007 installed.
    I created a task that is designed to lanuch Access, open a designated database, and run a macro. The macro calls a function within the database that generates a series of reports in PDF format for use in a web app.  The task was created to
    run a local user, with credentials stored.  This whole process has been running fine for many months.  A recent group policy change has caused this to now stop.
    The GP now states that user credentials can no longer be stored.  I changed the task so that it is to run as SYSTEM but this is not working either.  It seems access is launching as SYSTEM, I can see this in the task manager, but it does not seem
    to open my database since no .ldb is being created.  I also added logging code to my function and nothing ever gets in there.  I think the issue is that there is no profile for SYSTEM, so when access starts running it's looking to build a profile
    for that user.
    Does anyone know how I can make this work?

    Hi Scott,
    Based on my research, the functionality of storing password for some Group Policy Preferences is being removed because the password was stored insecurely.
    Especially for Scheduled Tasks and Data Sources, we will be unable to achieve the same goals that were available through the non-secure functionality of Group Policy Preferences passwords.
    As a workaround, scheduled tasks still can run in the context of the local service. 
    More information for you:
    MS14-025: Vulnerability in Group Policy Preferences could allow elevation of privilege: May 13, 2014
    http://support.microsoft.com/kb/2962486/en-us
    Best Regards,
    Amy

  • Reader X in Access 2007 form using VBA - GetPageNum

    I have inserted the ActiveX control for the reader into a form in Access 2007. How do I determine which page of the PDF is currently being displayed? I understand that the method "GetPageNum" is for AcroExch.AVPageView, how do I get to the AV page view?
    Thank you in advance!
    Janet

    I think you need either the SDK or Scripting forums
    http://forums.adobe.com/community/acrobat

  • View Crystal Report Layout for my UDO Form

    Hi all,
    I try to view a report created for my UDO form. I set all settings in Administration -> Setup -> General -> Report and Layout Manager. Now I wonder what should be assigned to  eventInfo.LayoutKey. I tried assigned report's DocCode from RDOC, DocEntry of my UDO object or UDO Code but nothing works. Always get an error: Incorrect format of argument or something like that - I didn't get an error in English so I tried to translate it.
    How to show a report layout for my UDO form?
    Regards
    Szymon Lipnicki

    Hi and thanks for Your reply.
    Help file contains example how to open report layout prepare in Crystla Reports designer for UDO form.
    //Add Layout Key Event Handler
    SBO_Application.LayoutKeyEvent += new SAPbouiCOM._IApplicationEvents_LayoutKeyEventEventHandler(SBO_Application_LayoutKeyEvent);
    void SBO_Application_LayoutKeyEvent(ref SAPbouiCOM.LayoutKeyInfo eventInfo, out bool BubbleEvent)
        BubbleEvent = true;
        if (eventInfo.ReportTemplate == "A001" && eventInfo.ReportCode == "A001001")
            eventInfo.LayoutKey = 1; //Set the key of the layout
    I am using SAP 8.81.
    Regards
    Szymon

  • Simultaneously Connecting Multiple Tables of the same Database to Textboxes of the same Form using a single ADO Control Code using VB6 Enterprise Edition and MS Access 2007

    Iv 10 Tables consisting of atleast 10 fields each in a single Database. Bt, Im only able to connect 1 table at a time to a form using an ADO Control. Im able to add data from table 'student' to text-boxes in my form. Bt, hw can I add data from field(0) of
    Table 'Student' to Textbox1 and data from field(0) of Table 'Marks' to Textbox2 using VB6??
    This is the current sample coding iv got to connect a single table to a form:
    Global con As New ADODB.Connection
    Global rs As New ADODB.Recordset
    Public Function Connect()
    If con.State = 1 Then con.Close
    con.Open "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" + App.Path + "\bca.mdb;Persist Security Info=False"
    End Function
    Private Sub Add_Click()
    If rs.State = 1 Then rs.Close
    rs.Open "select * from student", con, adOpenDynamic, adLockOptimistic
    rs.AddNew
    rs.Fields(0) = (Text1.Text)
    rs.Fields(1) = (Text2.Text)
    rs.Fields(2) = (Text13.Text)
    rs.Fields(3) = (Text4.Text)
    rs.Fields(4) = (Text5.Text)
    rs.Fields(5) = (Text6.Text)
    rs.Fields(6) = (Text7.Text)
    rs.Fields(7) = (Text8.Text)
    rs.Fields(8) = (Text9.Text)
    rs.Fields(9) = (Text10.Text)
    rs.Fields(10) = (Text11.Text)
    rs.Update
    MsgBox " Record Added"
    End Sub
    What can I do to add fields from 2 different tables to different text boxes within the same form using a single ado control using vb6 and MS Access 2007??

    Hi,
    Since VB6 product is not supported in this forum, you may go to these forums for support:
    #Where to post your VB 6 questions
    http://social.msdn.microsoft.com/Forums/en-US/6a0719fe-14af-47f7-9f51-a8ea2b9c8d6b/where-to-post-your-vb-6-questions
    Thank you for your understanding.
    Best regards,
    Franklin
    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.

  • Access Services forms/views in SharePoint 2013

    So, in my enterprise we're about to upgrade to SP 2013 from 2010, and Office 2013 from 2007. Should be a hoot!
    I'm interested in learning more about Access Services. I undertand that Access Services forms, now called views, are based on HTML 5. Can we present an Access form/view in the browser that has conditional formatting like we're used to in InfoPath--the ability
    to show/hide form sections based on conditions?
    Thanks!
    Leon
    Leon Bryant

    Yes. It is possible but not as flexible as InfoPath. We can still use Infopath BTW.
    Please refer these link
    How to Create Conditional Formatting
    in Access 2013
    SharePoint 2013:
    Access Services
    Creating SharePoint Forms with
    Access 2013 Web Apps
    The Pros and Cons of the Access App for SharePoint 2013
    Please 'propose as answer' if it helped you, also 'vote helpful' if you like this reply.

  • Crystal 2008 for VS 2010 - Report formatting issues in viewer (extra space)

    Hello,
    We have a Windows Form application developed in VS 2010 using the Crystal 2008 for VS 2010 runtime. We are having issue with extra spaces in text objects. For example: in a report header we have an object that has text similar to this:
    This report will print a list of all Serial Numbers in the Serial Table that are missing related Serial Meter records.
    When we run it within Crystal 2008 Designer, it looks great; however, when we run it from the Windows Viewer we developed, it looks like this:
    This report will print a list of all Serial Numbers in the Serial Table that are missing related Serial Meter records    .
    The viewer places extra spaces between records and the period (.).  We also noticed it places spaces in phone numbers:
    952 -555-555
    There's an extra space between the 2 and the dash (-).
    One thing we noticed is, if you change the viewer zoom to 98%, then the extra spacing goes away.
    We just upgraded to SP1 for Crystal 2008 for VS 2010 and still the same issue. We are referencing these DLLS: CrystalDecisions.CrystalReports.Engine.dll, CrystalDecisions.ReportSource, CrystalDecisions.Shared, and CrystalDecisions.Windows.Forms all version are 13.0.2000.0.
    Any help would be great.
    Thank you,
    Tyler

    Hi Tyler,
    I copied the text from your other post into a new report and changed the fonts and previewed in my C# test app and I don't see the problem.
    "We have a Windows App that we just converted to .NET 4.0 and updated the viewer to the Crystal Reports Viewer in VS 2010. When we 952-555-555 open a report that has a large block of static text in paragraphs left-aligned the spacing around punctuation is awful - there's almost a tab's worth of space between the last letter and the period. U.S. looks like US. This happens both with reports that were created in VS2008 and ones that were created in VS2010. It is only a problem in the viewer's display - if we print to a printer or export to PDF the spacing around punctuation is fine. It's also not a problem on our development workstations which are running Windows 7, but is a problem on our test servers which are running Windows 2003 Server. I ran the modules tool and found that the version of usp10.dll does match what the previous thread said it should be and it's coming from the c:\program files\sap businessobjects\crystal reports for .net framework 4.0\common\sap businessobjects enterprise xi 4.0\win32_x86\ folder. On my development machine when I run the modules tool I notice that a second instance of usp10.dll is called which is the version installed with Windows 7. We've tried changing fonts but none of the ones we've tried (originally in Times New Roman, 12, tried Arial, Times and various sizes) have made a difference. We also tried changing the print options with no improvement. The only thing that makes it slightly better is full-alignment but our customer insists that it be left-aligned."
    I threw in the telephone number also you noted in this post.
    I created a new report and copied the text above into a text object and then previewed. I then changed the fonts to various types and I don't see the problem.
    I also used Courier New because it's a fixed font layout, meaning the same letter always uses the same amount of space, and it shows just fine also.
    I've seen issues where the Video driver and screen size can affect the spacing. Usually updating the Video driver or changing your screen resolution resolves the problem.
    What Video Drivers and Monitor are you using?
    And What OS?
    Thank you
    Don

  • Can not see two fields in Crystal 2008 Developer explorer/designer view

    I am currently developing crystal 2008 reports against the salesforce.com database using version 12.0.0.683 CR Developer Full version. I am using an updated driver that was provided in July or Aug 08 in order to view self referencing fields. The problem is that when I try and report against one of the tables (lead history) I cannot view two of the fields (New Value and Old Value)? I can see these two field (New Value and Old Value) in the database expert as the last two fields in the actual table, but the two fields are missing when I go into the explorer/designer view. In Salesforce, these two fields can not be filtered on, but I can export all the values in this table using Salesforece Apex data loader.

    Please re-post if this is still an issue to the OnDemand Forum or purchase a case and have a dedicated support engineer work with you directly

  • Crystal Reports 2008 can't access R/3 queries

    Hi there,
    My company is in the middle of SAP implementation and our go-live is in 2 months. We don't have a BW system in place and are (for the most part) using the Standard SAP Reports available out of the box to facilitate the requirements of the different business users. But as we all know, there are always some reports that require customization. So, for that we decided to use Crystal Report 2008 (ver. 12.3.0.601) to design custom reports while accessing data from the Standard SAP Tables. I am able to access the Standard SAP Tables in R/3 (built on Oracle database) and the fields in those tables from the Crystal Report 2008 Database Expert option and have created an A/R Aging Report successfully. However, while working on my second report (GL Journal Entry By Invoice#) I am struggling to maintain and improve the query execution time since I am accessing data from huge standard FI-CO tables (BSEG, BSID, BSAD). Our 3rd party implementation team has already designed a custom report in R/3 that is available in all the clients using the T-Code in NetWeaver for the end users but it's missing some fields that the end users would need for go-live and it's not possible to ask the 3rd party implementation team to make the needed changes to the already customized report (for whatever reasons). And, that's why, I am asked to customize this report in Crystal. I suspect the execution time is so bad in Crystal because of lack of filtering of the data when I am pointing at the huge Standard Tables. I would have added some SQL clause and filters to bring in only the required fields from the table into the Crystal environment but I don't have that option since the R/3 system is sitting on Oracle. I have couple questions:
    1) Would it be advantageous to build the custom Crystal Report on top the custom R/3 report that is already in place since in the R/3 report I can create a default variant with the conditions I want and it gets executed every time I call it in Crystal giving me only the data I am interested in? And, is it even possible?
    2)  Why am I not able to see the R/3 custom report from the Database Expert option even though the report is accessible from NetWeaver? I am able to access all the Standard SAP Tables from Database Expert in Crystal 2008.
    And I forgot to add, we don't have an ABAP expert in house to create ABAP function modules that might help me filter the data in the R/3 system.
    Is there any suggestions that will get the job done? Am I doing anything wrong here?
    Sorry for the long story but I wanted to give you guys a full background of the issue.
    Any help will be greatly appreciated.
    -RBora

    RohitBora wrote:
    Hi there,
    > My company is in the middle of SAP implementation and our go-live is in 2 months. We don't have a BW system in place and are (for the most part) using the Standard SAP Reports available out of the box to facilitate the requirements of the different business users. But as we all know, there are always some reports that require customization. So, for that we decided to use Crystal Report 2008 (ver. 12.3.0.601) to design custom reports while accessing data from the Standard SAP Tables. I am able to access the Standard SAP Tables in R/3 (built on Oracle database) and the fields in those tables from the Crystal Report 2008 Database Expert option and have created an A/R Aging Report successfully. However, while working on my second report (GL Journal Entry By Invoice#) I am struggling to maintain and improve the query execution time since I am accessing data from huge standard FI-CO tables (BSEG, BSID, BSAD). Our 3rd party implementation team has already designed a custom report in R/3 that is available in all the clients using the T-Code in NetWeaver for the end users but it's missing some fields that the end users would need for go-live and it's not possible to ask the 3rd party implementation team to make the needed changes to the already customized report (for whatever reasons). And, that's why, I am asked to customize this report in Crystal. I suspect the execution time is so bad in Crystal because of lack of filtering of the data when I am pointing at the huge Standard Tables. I would have added some SQL clause and filters to bring in only the required fields from the table into the Crystal environment but I don't have that option since the R/3 system is sitting on Oracle. I have couple questions:
    >
    > 1) Would it be advantageous to build the custom Crystal Report on top the custom R/3 report that is already in place since in the R/3 report I can create a default variant with the conditions I want and it gets executed every time I call it in Crystal giving me only the data I am interested in? And, is it even possible?
    No - this is not possible; you can only report in Crystal against ECC tables, ABAP functions, and SAP Query/Infosets
    > 2)  Why am I not able to see the R/3 custom report from the Database Expert option even though the report is accessible from NetWeaver? I am able to access all the Standard SAP Tables from Database Expert in Crystal 2008.
    ABAP Reports are not a datasource in Crystal
    >
    > And I forgot to add, we don't have an ABAP expert in house to create ABAP function modules that might help me filter the data in the R/3 system.
    > Is there any suggestions that will get the job done? Am I doing anything wrong here?
    > Sorry for the long story but I wanted to give you guys a full background of the issue.
    >
    > Any help will be greatly appreciated.
    >
    > -RBora
    Hello,
    Those are some big tables to be reporting against in Crystal
    Have you considered creating an InfoSet using logical database BRM (Financial Documents) that could then be used to report against Crystal?
    We do use Crystal / SAP Query against the logical database BRM as an InfoSet and so far we haven't seen the performance issues you are describing.
    Also, have you considered upgrading to Crystal Reports 2011?  Not sure that it would help the performance issues you are describing.
    Regards,
    Tammy

  • Opening and populating a PDF form with VBA code in Access 2007

    I had posted this in Acrobat Windows.  It was suggested this (and the SDK forum) may be a better forum ...
    I'm trying to load and then populate a PDF form programmatically using Access/VBA.  I'm patterning this after code that worked fine in Acrobat 5.0 but is throwing errors in Acrobat 9.  We're using Access 2007 on Windows XP and Vista computers.
    The Access project has a reference to Adobe Acrobat 9.0 Type Library.  Attached is a jpg showing all the references in the Access project.
    The error "Object variable not set (Error 91)" is happening with this statement:
    Set PDDoc = AVDoc.GetPDDoc
    Here is the code I'm trying to use.  I've always been a little fuzzy exactly which objects need to be created and the sequence they need to be created in.  Once I got it working in Acrobat 5 I left it alone.
        Dim WshShell As Object
        Dim myApp As Acrobat.AcroApp
        Dim AVDoc As Acrobat.AcroAVDoc
        Dim PDDoc As Acrobat.AcroPDDoc
        Dim PauseTime, Start
        Set WshShell = CreateObject("Wscript.Shell")
        ' run the Acrobat application within that shell and pass it a document name
        WshShell.Run "Acrobat.exe C:\Users\Christian\Documents\data\dist5\dist05_face_only_nh.pdf"
        '// Set/Get Acrobat Objects
        ' create an automation object that references the active copy of Acrobat
        Set myApp = CreateObject("AcroExch.App")
        ' reference the acrobat document we loaded above
        'Set AVDoc = CreateObject("AcroExch.AVDoc")
        Set AVDoc = myApp.GetActiveDoc()
        ' this apparently runs some method available to AVDOC
        Set PDDoc = AVDoc.GetPDDoc      '<------------------ THIS IS THE LINE THROWING THE ERROR
        ' this is how you reference the JSObject
        Set jso = PDDoc.GetJSObject
        ' let's clear the form
        temp = jso.resetForm()
        Set x = jso.getField("txt1_name")
        x.Value = "Bing Crosby"
        Set x = jso.getField("txt2_sex")
        x.Value = "Male"
        Set WshShell = Nothing
        Set myApp = Nothing
        Set AVDoc = Nothing
        Set PDDoc = Nothing
    Thanks in advance for any help.
    Christian Bahnsen

    Using the "Developing Applications Using Interapplication Communication" reference, I've been filling in knowledge gaps and baby-stepping until I hit this major wall.  FYI:  from page 22 in the reference
    Example 2.6 Displaying “Hello, Acrobat!” in the JavaScript console will not work as shown in Access VBA.  I've tried the example in both Access 2003 and 2007.  The sample code as is throws error 91 (see attachment error91.jpg), "Object variable ... not set".
    I add Set to the following 3 lines:
        Set gApp = CreateObject("AcroExch.App")
        Set gPDDoc = CreateObject("AcroExch.PDDoc")
        Set jso = gPDDoc.GetJSObject
    Running the code after adding "Set" doesn't throw an error but it does crash Access every time.  (see attachment error_reporting.jpg)
    Any suggestions?
    Here's the entire code snippet:
    Private Sub cmdHelloAcrobat_Click()
        Dim gApp As Acrobat.CAcroApp
        Dim gPDDoc As Acrobat.CAcroPDDoc
        Dim jso As Object
        Set gApp = CreateObject("AcroExch.App")
        Set gPDDoc = CreateObject("AcroExch.PDDoc")
        If gPDDoc.Open("C:\chris\acrobat_test.pdf") Then
            Set jso = gPDDoc.GetJSObject
            jso.console.Show
            jso.console.Clear
            jso.console.println ("Hello, Acrobat!")
            gApp.Show
        End If
    End Sub

  • Crystal Report Activex Viewer Control

    <p>&#160;</p><p>Our users are prompted to download: Crystal Report Activex Viewer Control -- when trying to view reports. Since they do not have Admin rights on their PC, they are unable to install this Activex Control. Is there a setup file available someplace that can deployed to the user&#39;s pc that would intsall the activex control?</p><p>Any help would be appreciated.</p><p> Thanks,</p><p>Anupam</p>

    http://support.businessobjects.com/communitycs/technicalpapers/cr_troubleshooting_activex_viewer.pdf
    says
    bq.
    Manual installation
    To manually install the ActiveX Viewer on the client computer:
    1. Copy the ActiveXViewer.cab file from the server to the client computer, and extract its contents to a temporary folder.
    2. Move the files Crviewer.dll, Crviewer9.dll, Sviewhlp.dll, and Swebrs.dll to the System32 folder. Keep this folder visible.
    3. On the Start menu, click Run. The Run dialog box appears.
    4. In the Open box, type âu20ACu0153regsvr32âu20AC and then drag and drop the Crviewer.dll file icon from the System32 folder onto the Run dialog box.
    5. Click OK.
    6. Repeat steps 3 and 4 for the files Crviewer9.dll, Sviewhlp.dll, and Swebrs.dll.
    But I haven't tried it myself yet. I have so much crystal stuff on my PC. I'm going to set up a virtual PC that has never had crystal and see if it works.

  • Blank first page on DHTML viewer in Crystal 2008

    I have seen some threads regarding this issue but no real resolution.
    We are using Crystal 2008 running in a Windows 2003 web server and IIS 6. With the base version of Crystal 2008 installed, everything worked fine when rendering reports in the DHTML viewer. As soon as we upgraded to Crystal 2008 SP2, all reports now show a blank first page.
    If you page back and forth or do an export, the data on the first page are displayed.
    Does anyone have any ideas what caused this and how to fix it other than uninstalling the service packs?

    Let's back up a bit. How did you actually deploy the Crystal Reports 2008 .NET Runtime to your web server? Based on your last message it sounds like you use the original CD media? If so this is incorrect.
    You mentioned you copied the crv.js from a cab file from the install media. This might account for your problems because you are using an old of out date .js file with newer engine components.
    The way I always suggest to deploy to a web server is to use our server redist files. Below are a few of the files you could use. I've listed FP3.3, SP 3 and SP 2. I don't know what patch level you want to be at so the decision is up to you.
    Service Pack 3, Fix Pack 3.3 Server Redist
    https://smpdl.sap-ag.de/~sapidp/012002523100016807202010E/cr2008fp33_redist.zip
    Service Pack 3 Server Redist
    https://smpdl.sap-ag.de/~sapidp/012002523100007123592010E/cr2008sp3_redist.zip
    Service Pack 2 Server Redist
    https://smpdl.sap-ag.de/~sapidp/012002523100009159002009E/cr2008sp2_redistinstall.zip

  • Anyone else having issues writting string "memo" fields to Access 2007-2010 or SQL Server Express 2008-2012?

    I have a data cluster that I am working to write to either Access 2007 thru 2010 and/or SQL Server Express 2008 thru 2012 all on a Windows 7 64 bit OS. Some of the elements are long strings that I put delimited data for the raw trace data. The fields can be 10's of KB long. With Access I cannot stuff any string >255char into the memo field. With SQL Server Express 2008R2 - 2012 I found that if the strings are >32767 they again fail to fill the memo fields. The Access write or reads work fine otherwise, just not the listed offending fields in the cases mentioned.  Anyone else having the issue or a solution?

    If the long string field has repetitive data, you might be able to compress it using GZIP to reduce it's size below the 32K limitation you mentioned.
    GZIP compress/uncompress of string using .NET
    Now is the right time to use %^<%Y-%m-%dT%H:%M:%S%3uZ>T
    If you don't hate time zones, you're not a real programmer.
    "You are what you don't automate"
    Inplaceness is synonymous with insidiousness

  • Crystal 2008 Viewer Freezes my application

    I have a .NET application that hosts a crystal viewer to show reports. I am using Crystal 2008 SP2.
    Once I get to this line in my C# code:
    this.crystalReportViewer1.ReportSource = reportd;
    The application just sits there until I click it to get a (Not Responding) message in the app title bar.
    Can anyone help me with this???

    .NET 1.1
    Win app
    Oddly, this is only occurring on 1 deployment machine. I say oddly because I have had this application installed on 1000+ machines and never experienced this issue.
    I am currently running service pack 2.
    Like I said before, I have tracked it down to that line in the code, but have no idea why its freezing there. I resinstalled .NET on the machine as well as Crystal and have not had any luck  yet. I am out of ideas at this point.
    Ill try SP3 to see if it works...
    Also, I dont think its a threading issue. I have not experienced its current behavior until now after all of those installs on several different windows boxes. Thanks for the suggestion though. I will try it just to rule that out.

  • The next level manager is unable to view or access appraisal forms for all

    I am facing an issue where in the next level manager is not able to see the appraisal docs of employees.
    Follwing is the link that we found on SDN related to the same issue-
    Next higher level manager should see the appraisal docs of the employees
    During the PM testing, an issue was discovered with the existing logic of the ‘Default Next Level Manager’ BADI.
    When a manager manually reports to a NL manager’s organization unit, the next level manager is unable to view or access appraisal forms for all the employees who report to the manager.
    For example,
    NL Manager/Cheif: Susan
    Manager/Chief: John
    Employees: Mary and Matt
    If John’s position (manager/chief) has a “A 999 Reports to dotted line” relationship to Susan’s organization unit (NL Manager), then Susan is unable to access, approve or reject the appraisal forms for Mary and Matt (John’s direct reports).
    The relationship type is A 999 – Reports to dotted line
    Type of related object – O (Organizational Unit)
    We need to update the BADI in order for the next level manager to be able to access appraisal forms as described in the example above.
    BADI implementation Name : Z_HRHAP00_DOC_DEF_DO
    Method - IF_EX_HRHAP00_DOC_DEF_DO~DEFAULT_OTHERS
    Now we are facing the following issue-
    After identification of the employees who report to the manager’s organizational unit using the  A 003 – ‘Belongs to” relationship we are not sure how to pass these employees information from BADI to appraisal form, so that the previously identified Next Level Manager will be able to access, accept and reject appraisal forms for these employees.
    For further details please refer the thread. I was not able to understand how this can be achieved.
    Can anyone please mention in brief how I should be able to do this. I am new to this and I would appreciate any help .
    Regards,
    Satish.

    There are no Function Modules to my knowledge. Pls try the transaction S_AHR_61016530 which would display the User's approvers as per hierarchy. This would bring datas from the HR tables. If this helps pls award points.

Maybe you are looking for

  • Debugging BPM 11g Runtime

    Hi I have developed a BPM 11g flow in Jdev 11.1.1.3.0 and deployed it to the soa server. My flow works fine as my output is sent to a JMS queue and no fault occurs during the flow. However, if I have to track the Process Data Objects that have been d

  • Generated Prompt Does Not Play

                       I have a script that is set to play a generated prompt and it does not play.  I have a variable named balance that is an integer populated with the number 500.  The goal is to have the system play back "five hundred dollars" but ri

  • Ann: new JDO/DAO mail list

    I have added a new mail list "JDO" at http://www.basebeans.net:8080/mailman/listinfo/jdo <!--[if !supportEmptyParas]--> aimed at talking about DAO, such as JDO by KODO, DB Layer by iBatis, Commons-SQL by Jakarta, JDBC RowSet, Hibernate, JDOSQL, Conne

  • Install vstf_testagent.exe and vstf_testcontroller.exe on remote machine and configure

    Hi, I am creating a form application where I want to install vstf_testagent.exe and vstf_testcontroller.exe on remote machine and configure it. I copied the files to the remote machine local directory, wanted to know how to install exe on remote mach

  • How do I fix error (-42110) for itunes?

    How do I fix error (-42110) for itunes?