What is the BOXI 3 SP2 equivalent for ReportDocument and ParameterValues?

I need to convert code from BOXI to BOXI 3 SP2.
What is the BOXI 3 version of BOXI crystalDecisions.CrystalReports.Engine.ReportDocument?
What is the BOXI 3 version of BOXI CrystalDecisions.Shared.ParameterValues?
I'm a newbie in business objects, so any help would be appreciated.

The ReportDocument SDK hasn't undergone huge changes between XI and XI3.1. You should have the Developer edition of Crystal Reports 2008 installed on your dev machine, after the installation of Visual Studio. Apply the latest service pack (it's necessary to patch to at least SP1 if you want to do anything that hooks into Enterprise). Check your project references to make sure they're the right version (12.x). Recompile and see if you get any errors.

Similar Messages

  • What's the best approach/program for finding and eliminating duplicate photos on my hard drive?

    What's the best approach/program for finding and eliminating duplicate photos on my hard drive? I have a "somewhat" older version of iPhoto (5.0.4), and it doesn't seem to offer anything like that except during the importing phase of syncing my phone...

    I wonder, is there room to transfer them to your phone, & then back to filter them?

  • What is the relevence of MD04 for SD and what r the things we hav to look

    what is the relevence of MD04 for SD and what r the things we hav to look

    Hi Venkata,
    MD04 will show a collection of the incoming and outgoing stock changes.
    And for SD, it will display the content in table VBBE and VBBS (single requirement and total requirement).
    The content was updated when the schedule line category is configured as relevant for requirement transfer.
    And I often use MD04 together with CO09 to estimate/check a ATP checking result.
    Hope this could do help!
    Hongyan

  • What is the apple complain number for pakistan and also tell me the e.mail for complain...thanx

    What is the apple complain number for pakistan and also tell me the e.mail for complain...thanx

    Looks like India is the closest choice for Pakistan. The Apple contact numbers for India are here -
    http://www.apple.com/in/contact/
    The array of listings for other countries can be got via links on this page (select the country, and on the new page scroll down and click the "Contact Us" link in the lower right of the page) -
    http://www.apple.com/choose-your-country/

  • What are the naming convention rules for BAPI and types

    what are the naming convention rules for BAPI
    points will be rewarded,
    thank you,
    Jagrut BharatKumar Shukla

    Hi,
    plz go through the following links....
    Business application Prograaming Interface is nothing but the Method of a Business object.
    BAPI-step by step
    http://www.sapgenie.com/abap/bapi/example.htm
    list of all bapis
    http://www.planetsap.com/LIST_ALL_BAPIs.htm
    for BAPI's
    http://www.sappoint.com/abap/bapiintro.pdf
    http://www.sappoint.com/abap/bapiprg.pdf
    http://www.sappoint.com/abap/bapiactx.pdf
    http://www.sappoint.com/abap/bapilst.pdf
    http://www.sappoint.com/abap/bapiexer.pdf
    http://service.sap.com/ale
    http://service.sap.com/bapi
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCMIDAPII/CABFAAPIINTRO.pdf
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/CABFABAPIREF/CABFABAPIPG.pdf
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCFESDE8/BCFESDE8.pdf
    http://www.planetsap.com/Bapi_main_page.htm
    http://www.topxml.com/sap/sap_idoc_xml.asp
    http://www.sapdevelopment.co.uk/
    http://www.sapdevelopment.co.uk/java/jco/bapi_jco.pdf
    Also refer to the following links..
    www.sappoint.com/abap/bapiintro.pdf
    www.sap-img.com/bapi.htm
    www.sap-img.com/abap/bapi-conventions.htm
    www.planetsap.com/Bapi_main_page.htm
    www.sapgenie.com/abap/bapi/index.htm
    Checkout !!
    http://searchsap.techtarget.com/originalContent/0,289142,sid21_gci948835,00.html
    http://techrepublic.com.com/5100-6329-1051160.html#
    http://www.sap-img.com/bapi.htm
    http://www.sap-img.com/abap/bapi-conventions.htm
    http://www.sappoint.com/abap/bapiintro.pdf
    u can check the below the material also
    what is BAPI?
    BAPI stands for Business API(Application Program Interface).
    I have answered this question before..
    A BAPI is remotely enabled function module ie it can be invoked from remote programs like standalone JAVA programs, web interface etc..
    You can make your function module remotely enabled in attributes of Function module but
    A BAPI are standard SAP function modules provided by SAP for remote access. Also they are part of Businees Objest Repository(BOR).
    BAPI are RFC enabled function modules. the difference between RFc and BAPI are business objects. You create business objects and those are then registered in your BOR (Business Object Repository) which can be accessed outside the SAP system by using some other applications (Non-SAP) such as VB or JAVA. in this case u only specify the business object and its method from external system in BAPI there is no direct system call. while RFC are direct system call Some BAPIs provide basic functions and can be used for most SAP business object types. These BAPIs should be implemented the same for all business object types. Standardized BAPIs are easier to use and prevent users having to deal with a number of different BAPIs. Whenever possible, a standardized BAPI must be used in preference to an individual BAPI.
    The following standardized BAPIs are provided:
    Reading instances of SAP business objects
    GetList ( ) With the BAPI GetList you can select a range of object key values, for example, company codes and material numbers.
    The BAPI GetList() is a class method.
    GetDetail() With the BAPI GetDetail() the details of an instance of a business object type are retrieved and returned to the calling program. The instance is identified via its key. The BAPI GetDetail() is an instance method. BAPIs that can create, change or delete instances of a business object type
    The following BAPIs of the same object type have to be programmed so that they can be called several times within one transaction. For example, if, after sales order 1 has been created, a second sales order 2 is created in the same transaction, the second BAPI call must not affect the consistency of the sales order 2. After completing the transaction with a COMMIT WORK, both the orders are saved consistently in the database.
    Create( ) and CreateFromData! ( )
    The BAPIs Create() and CreateFromData() create an instance of an SAP business object type, for example, a purchase order. These BAPIs are class methods.
    Change( )
    The BAPI Change() changes an existing instance of an SAP business object type, for example, a purchase order. The BAPI Change () is an instance method.
    Delete( ) and Undelete( ) The BAPI Delete() deletes an instance of an SAP business object type from the database or sets a deletion flag.
    The BAPI Undelete() removes a deletion flag. These BAPIs are instance methods.
    Cancel ( ) Unlike the BAPI Delete(), the BAPI Cancel() cancels an instance of a business object type. The instance to be cancelled remains in the database and an additional instance is created and this is the one that is actually canceled. The Cancel() BAPI is an instance method.
    Add<subobject> ( ) and Remove<subobject> ( ) The BAPI Add<subobject> adds a subobject to an existing object inst! ance and the BAPI and Remove<subobject> removes a subobject from an object instance. These BAPIs are instance methods.
    http://help.sap.com/saphelp_nw2004s/helpdata/en/7e/5e114a4a1611d1894c0000e829fbbd/frameset.htm
    http://www.sapgenie.com/abap/bapi/example.htm
    http://help.sap.com/saphelp_46c/helpdata/en/9b/417f07ee2211d1ad14080009b0fb56/frameset.htm
    http://searchsap.techtarget.com/originalContent/0,289142,sid21_gci948835,00.html
    http://searchsap.techtarget.com/originalContent/0,289142,sid21_gci948835,00.html
    http://techrepublic.com.com/5100-6329-1051160.html#
    http://www.sap-img.com/bapi.htm
    http://www.sap-img.com/abap/bapi-conventions.htm
    http://www.sappoint.com/abap/bapiintro.pdf
    http://www.sapgenie.com/abap/bapi/example.htm
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCMIDAPII/CABFAAPIINTRO.pdf
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/CABFABAPIREF/CABFABAPIPG.pdf
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCFESDE8/BCFESDE8.pdf
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/CABFABAPIREF/CABFABAPIPG.pdf
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCMIDAPII/CABFAAPIINTRO.pdf
    http://techrepublic.com.com/5100-6329-1051160.html#
    http://www.sap-img.com/bapi.htm
    http://www.sap-img.com/abap/bapi-conventions.htm
    http://www.sappoint.com/abap/bapiintro.pdf
    BAPI
    http://help.sap.com/saphelp_46c/helpdata/en/9b/417f07ee2211d1ad14080009b0fb56/frameset.htm
    http://searchsap.techtarget.com/originalContent/0,289142,sid21_gci948835,00.html
    Checkout !!
    http://searchsap.techtarget.com/originalContent/0,289142,sid21_gci948835,00.html
    http://techrepublic.com.com/5100-6329-1051160.html#
    http://www.sap-img.com/bapi.htm
    http://www.sap-img.com/abap/bapi-conventions.htm
    http://www.sappoint.com/abap/bapiintro.pdf
    http://www.sapgenie.com/abap/bapi/example.htm
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCMIDAPII/CABFAAPIINTRO.pdf
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/CABFABAPIREF/CABFABAPIPG.pdf
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCFESDE8/BCFESDE8.pdf
    List of all BAPIs
    http://www.planetsap.com/LIST_ALL_BAPIs.htm
    http://www.sappoint.com/abap/bapiintro.pdf
    http://www.sappoint.com/abap/bapiprg.pdf
    http://www.sappoint.com/abap/bapiactx.pdf
    http://www.sappoint.com/abap/bapilst.pdf
    http://www.sappoint.com/abap/bapiexer.pdf
    http://service.sap.com/ale
    http://service.sap.com/bapi
    http://www.geocities.com/mpioud/Abap_programs.html
    http://www.sapdevelopment.co.uk/reporting/reportinghome.htm
    ***do reward if usefull
    vijay

  • What is the best leaked OS for Z10 and why??!

    What is the best system update for the BlackBerry z10 in terms of battery and use of the device?>>> "leaked ones"
    Please advise me please ^ ^ Thank you?? 

    Hello AZUZJUMA.
    Amigo is depends on the taste of each person acuerdate each OS works differently on each device, but in my case I recommend the OS 10.1.0.4543 is one that has been more fluid and has been much better in performance ...
    I'll leave the link for you to download if you like.
    http://crackberry.com/leaked-os-10104537-blackberry-z10
    Regards.
    Kudos **Do not forget to give those people who help and advise you regarding your questions, as well give the answer like**
    @ gutijose14
    BBM Channels  PIN: C0007093A
    Do not forget to give LIKE    Those people who help you and advise you about your doubts.  if the review has been SOLVED** # 4LL  #ÉliteRoad  Make a backup of your BlackBerry
    BlackBerry Protect and  BlackBerry Link constantly.  #ichooseBlackBerry10 Gutijose14 Forums Veteran I

  • What are the standared Bi contents for Aerospace and Defense.

    Hi All,
    Please let me know where can I find the  standared Bi contents for Aerospace and Defense ( IS- A&D) in Bi system.If you have any specific material.  Pla help me in this regard.
    Thanks
    kvr

    Hi,
    Please go to the ffollowing link.
    http://help.sap.com/saphelp_dimp50/helpdata/en/19/71fe40f652f323e10000000a155106/content.htm
    http://help.sap.com/saphelp_nw70/helpdata/en/85/c0c0911f6f4556b0473e36d9b62bda/frameset.htm
    All Articles on the Aerospace&Defense Industry
    Regards,
    Ravi.

  • What's the proper java equivalent for unsigned4, signed8?

    I have a C++ program that uses the types "unsigned4" and "signed8" and I need to put those values into Java. What are the proper types to use in Java and what conversion methods should I use?

    It depends on what you are doing with it.
    If you are just using the values in C code and passing it in java then you can use int and long respectively. Even though an int is signed and only 4 bytes bits are still bits so it won't matter.
    If you want to use it in java then you will need to use long for both.

  • What is the difference between mp4 for iphone and mp4 for ipod ?

    I have converted some videos to mp4 and there is a choice to convert to iphone or ipod.
    But what is the difference between them ?
    It cant just be something simple like screen size / resolution.
    Because I have some mp4 videos that will sync with itunes onto my iphone, but not onto my ipod 5th gen.
    Do you have to have both types of mp4 videos, one for the iphone and one for the ipod ?
    If so then thats a right pain the in arse.
    I would have thought mp4 is mp4 and would work on both the iphone and the ipod ?

    There is no difference because as you said Java is platform independenec. However, the installer is platform-dependent so we needed to package the Beans differently.
    All the java classes and libraries are identical

  • What is the best MIDI controller for Logic, and is Axiom Pro the only line with "Hyper Control?

    What is the best MIDI keyboard/control surface to use with LOGIC (Studio - which I assume is the latest & greatest version) and is Axiom Pro the only line that has Hyper control? I already own the Axiom Pro 61, but prefer more keys, and though I like much about it, the keys aren't very easy for playing more complex material, and there is an obvious delay regarding attack response (esp. noticeable at faster speeds). There are other issues as well I've read of regarding key sticking (though I consider myself lucky mine do not, there is nontheless a sluggish clunckiness issue which neither helps agility/acuracy nor the delay factor.) and the unit not lasting very long before it breaks and needs repairing. And lastly, I am no fan of Avid and care not to support them in the least.

    Sorry, but is this an iPad question? Axiom Pro 61 is not an iPad-compatible peripheral, so perhaps you mean to post in the Logic forum?

  • What is the recommended developer hardware for iPad and iPhone development?

    My company is just starting to develop iPad and iPhone apps for internal use.  We are looking for advice on the hardware needed for developers.  What would current developers recommend?.  Could we use a single MacMini where multiple developers use VNC to develop applications? What are the pros/cons?
    Thanks

    Any current device is more than capable.
    You  need to decide how much screen, harddrive, ram and processor capability meets your needs  beyond just running Xcode.
    Remember, making apps means more than just text via an IDE - will you edit video; graphics; databases...? Branding? Code sharing? Edit more than one project at once? Use Safari for references?
    Max the ram in any case.
    Check the Apple Store for refurb'd Mac minis - those seem to be the sweet spot.
    And don't forget devices to test with

  • What is the best DNS server for iCloud and Apple services?

    Hello. Im wondering what is the best DNS server to use with iCloud, and apple services.
    Does apple have a dedicatrd DNS server?
    I read a couple of articles stating that the google DNS servers like 8.8.8.8 and 8.8.4.4 slow down apple and facebook services.
    Did a couple of tests like iTunes streaming and found out that its true in some cases.

    Not always!
    Found what i was shearching for:
    http://www.who.is/dns/icloud.com/

  • What is the best macbbok pro for video and photo editing

    I am looking at getting a Macbook Pro but not sure about how to configure it. What are the advantages of the 13 vs 15 and the dual core i7 vs quad core i7?

    It is the GPU that is important.  All the CPU's will be fast enough.  If you can affords it, the 15" with the NVIDIA GPU is the best.
    Ciao.

  • What is the EFI boot option for mac, and why is my Mac having problems with it?

    I just updated my 2012 Macbook Pro to 10.9, and I am having some problems with it. I have a bootcamp partition on it and regularly awitch between mac and windows, and 2when I went to switch nack to my Mac side, It said EFI boot nstead of the regular Macintosh HD. When I choose that option, the aple logo comes up and progress bar appears. Once the progress bar finishes, the computer shuts off and doesnt do anything. When I turn it on again, it just starts the efi boot again and shuts off when it finishes. Why is this happening and what can I do to fix this. All help is extremely appreciated.

    That usually happen because the OS X partition got corrupted. Abiotu the only fix for that is to reinstall OS X and to do that you might have to completely erase the drive or repartition it as one partition. Which will wipe out the Windows side. So backup everthing you can before you start.
    nisuteng wrote:
    Hi, did you fix the problem?
    I have the same problem... and my warranty has expired...
    please help~~
    thanks!!

  • What are the recommended plug-ins for HDR and Black and White?

    What HDR and Black and White plug-in software does anyone suggest for Aperture 3?

    There is a tremendous amount that can be done re: grayscale with Aperture's adjustments.  I'd look into those, first:
    - The "Black & White" Brick.  Keep the total of the percentages to 100 in order to not change the overall luminance much, but by all means play around until you understand what the sliders are doing.  Note that you can change the hues using the Color Brick (also WB, Tint, etc.), and use that to set up your conversion done with the B&W Brick.
    - The "Color Monochrome Brick.  Open up the color selector and skim the eyedropper cursor over the gray scale below the colors grid.
    - All of the Bricks which affect the luminance distribution (viz.: Exposure, Curves, H&S, Levels, etc.)
    The Nik plug-ins are universally good (they are several, including NR, B&W, and HDR tools).  (I disapprove of the engorgement of filters, many of which do similar things and none of which specify what they actually do.)  If you end up with the Nik Suite, I suggest installing it as PS plug-ins, and using PS as your external editor (with, if you're up for it, each Nik tool assigned to it's own layer).  Using more than one Nik plug-in on the same image in Aperture yields an inelegant, possibly destructive workflow.

Maybe you are looking for