TYPES DECLARATION IN REPORT

HI
IN CREATION OF REPORT
which is better to write nameoftable-fieldname or dataelementname
for exp :
1.
Types : begin of ty_mara,
               matnr type mara-matnr,
               pstat type mara-pstat   ,
        end of ty_mara.
2.
Types : begin of ty_mara,
               matnr type matnr ,
                pstat type pstat_d,
            end of ty_mara.
which one is the common practice...
pls tell me this
Regards
Rajan Mehta

Hi rajan,
1. I would say the first one TABLE-FIELDNAME
   is always better.
2. Bcos
3. We are essentially interested in the FIELDNAMEs type.
4. In future, if SAP changes the data element of the
    field, then we do not need to change the program.
    The program (since it is declared using table-fieldname),
   will automatically ADAPT to the new settings.
(If we had declared using data element, then
  our program would not ADAPT to the field in question. It would
still point to the old data element, which is now not used in the table)
regards,
amit m.

Similar Messages

  • How to use %Type declaration with table residing in a different database

    How can I use the %TYPE declaration if the table is from a different database.
    E.g
    v_business_unit ps_jrnl.header.business_unit%TYPE;
    In the above declaration statement,the table 'ps_jrnl_header' resides in a different database(Database A) from the one I am currently in( Database B).(This is because data needs to be extracted from Database A into Database B).

    1. Create a database link to the other database (this probably already exists since your proc is interacting with that database)
    2. Create a synonym for the table in the other database
    create synonym foo for ps_jrnl.header@database_a;3. Reference the synonym in your variable declaration:
    v_business_unit  foo.business_unit%TYPE;

  • Periodic Declarations Intrastat reporting.

    Periodic Declarations Intrastat reporting. -
    The purchase order beeing reported har the following information:
    Country of origin (EIPO-HERKL) has the value country DK
    Country of destination (RL50E-HLAND) has the value country SE
    When running the intrastat report the fields for the above mentioned give the wrong value for country of destination
    Country of origin field URSPRSLND gives the value DK (correct)
    Country of destination BESTILAND gives the value DK (wrong)
    It looks wright when you see it in SAP but it is wrong when it is send via EDICOM to the receiver in SCB.se.
    Has anybody had simular problems sending the periodic report of intrastat.

    I assume you do Intrastat for country SE.
    Is your PO a standard PO or a third party PO?
    In a standard PO the Country of destination is not changable and should default from the receiving plant.
    You may check the Intrastat record in transaction VEFU  if the destination country is wrong in the record, too.
    If you see this wrong destination country just in the list, then see OSS note  393569 - Intrastat:List output-Country of destinatn instd of dispatch

  • Wrong amount in VAT Declaration Box Report

    Hi,
    I am running the VAT Declaration Box Report, but the EU Vat Code (acqusition/reverse) amount doubles up.
    I have box number 2 with XX2 box component and XX2 has E2 and E21. The total of the invoices listed shows an amount, but the actual box component XX2 has doubled the amount.The box is on credit side.
    Therefore when i look at the report i have XX2 credit amount 70,000 while E2 is only 35,000 and E21 is 0.
    The JEs of the invoices post both input and ouput VAT as the code is ticked as being acqusition/reverse, but why is that total different?
    Thank you!
    Cristina

    Hi,
    SAP found the issue. You can check SAP Note 1604993.
    If there is a new effective from period defined in the VAT Declaration Boxes Setup, the VAT  Declaration Box Report will
    show total amounts multiplied (according to the number of periods defined).
    They plan to fix this in 8.81 PL08.
    Thanks,
    Cristina

  • VAT Declaration Box Report

    Hi Experts,
    What exactly determines which AP Invoices are included in the VAT Declaration Box Report in 2005?
    If we take the VAT code E2 from the Demo company, any Invoices I create are included in the report.  If I create another VAT code with the same settings but a different rate, an invoice for this new rate is not being included in the report?
    Which option decides whether a VAT Code's transactions are included in the VAT Declaration Box Report?
    Thanks
    Greig

    Answering my own question...
    VAT Declaration Boxes window in the Set-up menu

  • SAXParser type declaration not found - PLEASE HELP!!

    I am using XML to parse an incoming string of XML. I want to use an SAXParser to do this, but I cannot create an object of this type. I have the jar file jaxp.jar, xalan.jar, and crimson.jar in my classpath.
    Is there anything else that I need to do in order to get the parser to work.
    This is a very urgent need so any help is appreciated. Here is the error:
    Class SAXParser not found in type declaration;

    I have figured out the issue. Thanks for the help. I do have one more issue though. I am trying to parse a string of xml data and I need to pass my parse() method an InputSource object that I guess I will make from my incoming String.
    Any thoughts on how to do this?

  • To add "Transaction type" in  depreciation report  (S_ALR_87012026)

    Hi SAP Experts,
    I have a request from a user to add selection option of  "Transaction Type" in the Depreciation Report.Is this possible to be done by adding in Dynamic Selection?If yes, how?
    Refer to SAP Note 439407,it seem like it only cater for structure ANLAV only but not for for ANEPV - BWASL.
    Please advise since im trying to avoid copying the standard program.
    Regards,

    Hi,
    Yes, user-defined fields added as per SAP note 335065 are shown in the report output.
    Alternatively, you can also create a sort version. However, check the restrictions for both options as outlined in this note.
    Though still, you cannot add the transaction type as a field as the note  is pointing out the tables from which fields can be extracted from: ANLAV/ANLB/ANLV only.
    CI_ANLU is about user defiened fields in master data and so you cannot add BWASL in this table as this field has nothing to do with master data.
    Just on the side a small comment: not sure of what benefit it would be to see the transaction type in a report such as RAHAFA_ALV01 as this report is mainly about all sort of information regarding all types of depreciation values.
    I hope this helps further.
    Kind regards,
    Brigitte

  • Wildcards in type declarations or only methods?

    Can you declare wildcards in type declarations such as:
    public class ListManager<List<?>> {
    }When I try this, I get the following compiler errror:
    C:\dev\hcj\tiger\src>c:\j2sdk1.5.0\bin\javac -source 1.5 oreilly/hcj/tiger/*.java
    oreilly/hcj/tiger/ListManager.java:21: > expected
    public class ListManager<List<?>> {
                                 ^
    oreilly/hcj/tiger/ListManager.java:31: '{' expected
    ^
    2 errorsWhat am I doing wrong [if anything]?
    TIA
    -- Kraythe

    public class ListManager<List<?>> {
    }When I try this, I get the following compiler errror:Hmm .. I was thinking about this. .. What i was trying to declare was a class that would use as a parameter any declaration of a List. So what I want is a class that will take List<Integer> and List<String> and so on. So the result would be to use it like this:
    public void someMehtod() {
        ListManager<List<String>> strListMger = ...
        ListManager<List<Integer>> strListMger = ...
    }So if not with the wildcard, how is this accoplished (if it can be accomplished at all).
    I would also like to do something like:
    public class ListManager<Type extends List<?>> {
    }In this manner I would at least have access to the type. Except the extends is a misnomer since i want type to be any List<> type.

  • Material Type Vs Sales report.. Urgent

    my client requires materail type vs sales report for particaular period... is there any standard report for these.. or how can we do with a ABAPer.. wat fields we have give to ABAper.... to get the report....
    Kiran

    Hi Kiran,
    Please find the herewith the SAP SD Standard Reports.
    Reports: Reports consist of data, which is expected to be reveiwed or checked the transaction taken in said period. Reports are useful for analysis of decision taking for future activities.
    Some of the standard reports for SD & its configuration guide is as under:
    Standard SAP SD Reports:=
    Statistic Group:
    Purpose – To capture data for Standard Reports, we require to activate Statistic Group as under:
    --> Item category (Configuration)
    --> Sales document type (Configuration)
    --> Customer (Maintain in Master data)
    --> Material (Maintain in Master data)
    When you generate statistics in the logistics information system, the system uses the combination of specified statistics groups to determine the appropriate update sequence. The update sequence in turn determines for exactly which fields the statistics are generated.
    Configuration:
    IMG --> Logistics Information System (LIS) --> Logistics Data Warehouse --> Updating --> Updating Control --> Settings: Sales --> Statistics Groups -->
    1. Maintain Statistics Groups for Customers
    2. Maintain Statistics Groups for Material
    3. Maintain Statistics Groups for Sales Documents
    4. Assign Statistics Groups for Each Sales Document Type
    5. Assign Statistics Groups for each Sales Document Item Type.....
    All Standard Reports which are available are as under:
    SAP Easy Access: Information Systems -> Logistics -> Sales and distribution ->
    1. Customer -> Incoming orders / Returns / Sales / Credit memos / Sales activities / Customer master / Conditions / Credit Master Sheet
    2. Material -> Incoming orders / Returns / Sales / Credit memos / Material master / ...
    3. Sales organization -> Sales organization / Sales office / Sales employee
    4. Shipping point -> Deliveries / Returns
    5. SD documents -> Orders / Deliveries / Billing documents ...
    & so on.
    Some of the Standard reports in SD are:
    Sales summary - VC/2
    Display Customer Hierarchy - VDH2
    Display Condition record report - V/I6
    Pricing Report - V/LD
    Create Net Price List - V_NL
    List customer material info - VD59
    List of sales order - VA05
    List of Billing documents - VF05
    Inquiries list - VA15
    Quotation List - VA25
    Incomplete Sales orders - V.02
    Backorders - V.15
    Outbound Delivery Monitor - VL06o
    Incomplete delivery - V_UC
    Customer Returns-Analysis - MC+A
    Customer Analysis- Sales - MC+E
    Customer Analysis- Cr. Memo - MC+I
    Deliveries-Due list - VL04
    Billing due list - VF04
    Incomplete Billing documents - MCV9
    Customer Analysis-Basic List - MCTA
    Material Analysis(SIS) - MCTC
    Sales org analysis - MCTE
    Sales org analysis-Invoiced sales - MC+2
    Material Analysis-Incoming orders - MC(E
    General- List of Outbound deliveries - VL06f
    Material Returns-Analysis - MC+M
    Material Analysis- Invoiced Sales - MC+Q
    Variant configuration Analysis - MC(B
    Sales org analysis-Incoming orders - MC(I
    Sales org analysis-Returns - MC+Y
    Sales office Analysis- Invoiced Sales - MC-E
    Sales office Analysis- Returns - MC-A
    Shipping point Analysis - MC(U
    Shipping point Analysis-Returns - MC-O
    Blocked orders - V.14
    Order Within time period - SD01
    Duplicate Sales orders in period - SDD1
    Display Delivery Changes - VL22
    Please Reward If Really Helpful,
    Thanks and Regards,
    Sateesh.Kandula

  • Material type vs sales  report

    my client requires materail type vs sales report for particaular period... is there any standard report for these.. or how can we do with a ABAPer.. wat fields we have give to ABAper.... to get the report....
    Kiran

    Hi,
    You might get more help by posting this on the SD board as well.
    Steve B

  • Two different condition types in one report

    Hello,
    i have a problem with the conditional display of a report.
    I want to use two different condition types for one report.
    For example I want to show the report only when the page is not in printer friendly mode and when the value of an item is NULL.
    Is that possible?
    Has anyone a solution for this problem?
    Thank you,
    Tim

    Tim,
    you can use
    IF V('PRINTER_FRIENDLY') = 'YES' AND :P1_ITEM IS NOT NULL THEN RETURN FALSE;
    ELSE RETURN TRUE;
    END IF;
    in the Conditional Display picking PL/SQL Function Body returning a Boolean.
    Denes Kubicek

  • Types of web reports

    Hi gurus,
    What are the types of web reports we have? Where do you specify them, Is it some sort of property setting?
    i'll asign points.
    regards
    priya

    Hi,
       Web application design, with the BEx Web Application Designer as its main tool, allows you to use generic OLAP navigation for your BI data in Web applications as well as in business intelligence cockpits for simple or highly individual scenarios. Web application design comprises a broad spectrum of Web-based business intelligence scenarios, which you can adjust to meet your individual needs using standard Web technologies.
    Features
    The following figure shows how the Web Application Designer is integrated into the function landscape and tool landscape of the Business Explorer:
    You can use this BEx Web Application Designer, the desktop application used to create Web applications, to generate HTML pages that contain BI-specific contents such as tables, charts or maps. These objects, which retrieve BI data from a data provider and place it in a Web application as HTML, are known as Web items. For more information about the Web items available, see Web Items. Web Applications are based on Web Templates that you create and edit in the Web Application Designer. You can save the Web templates and access them from the Web Browser or the portal. Once they have been executed in the Web, Web templates are known as Web Applications.
    Business Explorer Web application design allows you to create highly individual scenarios with user-defined interface elements by using standard markup languages and the Web design API. You can adjust and enhance the Web templates (the HTML pages that determine the structure of Web applications) on an individual basis. For more information on this, see Web Design API.
    The BEx Web Application Designer is a desktop application for creating Web applications with BI-specific content. Using the BEx Web Application Designer, you can create an HTML page containing BI-specific content such as various tables, charts, or maps. This HTML page (Web application) is the basis not only for Web applications with complex interaction, but also for Web cockpits and iViews.
    The command wizard and pattern wizard are integral parts of the Web Application Designer. Using the command wizard, you can easily generate commands from the Web Design API and include them in your Web template. Using the pattern wizard, you can configure BI patterns to a certain extent and tailor them to meet your needs.
    The initial view of the BEx Web Application Designer has four different screen areas in addition to the menu and toolbars.
          Web Items Screen Area
          Web Template Screen Area
          Properties Screen Area
          Error and Warnings Screen Area
    Applications with the BEx Web Application Designer. For more information about creating Web applications, see Creating Web Applications.
    You can adjust the appearance of the Web Application Designer to meet your requirements. The object on which you are working, namely the Web template, is handled differently from the tools and help windows with which you are working.
          You can show and hide the individual screen areas and toolbars using the View menu option.
          You can reposition the three toolbars and the Web Items and Properties windows as required. Depending on where you reposition the object, it is either anchored or appears freely as a toolbox.
          Since the Web Application Designer is a Multiple Document Interface Application (MDI Application), you can open and manage different windows with Web templates simultaneously. You can use the Window menu option to arrange the windows differently: cascading (overlapping), vertical, or horizontal.
    Using the BEx Web Application Designer, you can create a BEx Web application (an HTML page with BI-specific content) easily.
           1.      Creating a Web template
    The Web template is the starting point for creating a Web application. The Web template is an XHTML document that is used to define the structure of a Web application. It contains placeholders for Web items, data providers, and commands. A Web template becomes a Web application when the data is displayed in the Web browser.
    During the design process, you change the Web template by embedding placeholders for Web items and data providers. You can keep track of these changes in the XHTML view.
    To create a new Web template, choose Web Template ® New in the Web Application Designer menu bar. You can also create Web templates from the Select Web Template window. Choose Create New Web Template.
           2.      Setting the data binding/selection of the data provider
    The data for your Web items is provided by data providers that you create in the Web Application Designer. You can assign a data provider to multiple Web items. The data provider concept makes it possible to change the data source of a Web item easily. If a particular data provider is assigned to more than one Web item, any changes made affect all the assigned Web items. By means of navigation (by changing the drilldown), the Web item always displays the current drilldown data.
    A data provider is a dynamic object that returns current data for one or more Web items at runtime. You define the start view of the data provider by selecting a query or a query view. For more information about data providers, see Data Providers in BI Applications.
    There are several ways to create data providers:
              a.      In the Data Provider section in the Web Items screen area
               i.       Select whether you want to create a data provider of type Filter or type Query View, and drag the corresponding line into the lower data provider section of the Web template screen area. The Maintain Data Provider dialog box appears.
               ii.       Assign a name to the data provider and make the remaining settings required. 
    In the dropdown box beneath the name field, you can also select or change the data provider type.
               b.      Using the New Data Provider symbol in the lower data provider section of the Web Template screen area
               i.       Double-click to choose New Data Provider. The Maintain Data Provider dialog box appears.
               ii.       Proceed as described under a. ii.
                c.      Using the General tab page in the Properties screen area
    You can only use this option if you have already inserted a Web item into your Web template.
                 i.       In the header of the properties screen area, select the Web item for which you want to create a data provider.
                 ii.       On the General tab page, choose New Data Provider. The Maintain Data Provider dialog box appears.
    The data provider is assigned to the selected Web item. You can also create more than one data provider, as described under c. The data providers are listed in the dropdown box under Assigning Data Providers. This enables you to assign a different data provider to the selected Web item.
    The Maintain Data Provider dialog box appears under data provider: . You can modify or change the settings for the data provider here.
    When you have created a data provider, it is assigned to the inserted Web item. Assigning depends on the order of the data providers in the inner structure of the Web template. See also 4.a.
           3.      Adding a Web item
    The Web items in the Web Items screen area serve as templates. By dragging a Web item into your Web template, you create an actual version of the Web item; this is called an object. The Web item has a name and certain other default parameters that you can change as required (see also 4.).
    You see the changes in the XHTML view. A Web item tag for the Web item and a data provider tag for the data provider (assuming you have created a data provider) were integrated into the XHTML as placeholders. Change the name of the Web item and assign a data provider to it. In the XHTML view, you can see that your settings have been written to the Web item tag. The layout you choose is also applied in the XHTML.
                                a.      Drag a Web item from one of the Web item groupings Standard, Extended, or Miscellaneous in the Web Items screen area to the Web template by using drag and drop. The Web item appears in the Web template.
    Underneath the selection area for Web items and data provider maintenance, you see the help area, which provides explanations for the Web items and data providers. To display the texts for a Web item, select the Web item by double-clicking with the secondary mouse button. To hide the texts, proceed in the same way. When you hide the display of texts and select a Web item by single-clicking it, a quick info is displayed for the Web item.
                              b.      If you want to rename the inserted Web item, proceed as follows:
    In the Properties screen area, choose Rename Web Item to the right of the dropdown box in which the inserted Web items are listed. Name the Web item by overwriting the default text under Name in the Properties screen area next to the dropdown box in which the inserted Web items are listed.
           4.      Specifying the properties of the Web item
                                a.      In the Properties screen area, choose the General tab page to make or change the assignment of a data provider for the corresponding Web item. See also 2.
                                b.      Choose the Web Item Parameters tab page to set the parameters for the selected Web item.
    You can also set the parameters for the Chart Web item using the Edit Chart dialog box. Choose Edit in the context menu of the Chart Web item or Edit Chart in the Internal Display parameter grouping of the Chart Web item. For more information, see Editing Charts.
           5.      Adding additional Web items
    To insert additional Web items, repeat steps 3 and 4.
         When you insert additional Web items using Insert ® Web Item, pay attention to where you position the cursor in your Web template. The cursor position determines where the new Web item is inserted. See also Designing the Layout of Web Templates. When you insert Web items using drag and drop, the position of the cursor is irrelevant.
          Make sure that you set the data binding and any Web item-specific parameter settings for the correct Web item. To make settings for a Web item, select the Web item in the layout view. In the header of the Properties window, the system displays the Web item for which you can change the settings. As an alternative to selecting the individual Web items, you can use the dropdown box to toggle between the attributes of individual Web items.
           6.      Designing a Web template layout
    In the Web Application Designer, you create your Web template in the same way you do in various XHTML editors. See also Designing the Layout of Web Templates.
           7.      Changing the Web template properties
                                a.      To change the default properties of the Web template, select the Web template from the dropdown box in the Properties screen area.
                                b.      Choose the Web Template Parameters tab page, where you can change the parameter settings for the Web template.
    For more information, see Web Template Properties.
           8.      Saving and executing the Web template
    You execute the Web template in the Web browser (portal). The Web template becomes a Web application, which means the template is saved on the Application Server for ABAP and a URL is generated for this Web application.
    At runtime (triggered by calling the URL), the BI tags are replaced by corresponding HTML with the information determined by the Web item and data provider settings. When this is done, the Web template on the Application Server for ABAP is accessed. Therefore, you must save your Web template before you execute it.
                                a.      To save your Web template, in the menu bar of the Web Application Designer, choose Web Template ® Save.
                                b.      Choose Web Template ® Execute to view your Web application in the browser (portal).
    You must save the Web template before executing it in the Web browser. Therefore, when you execute the template, you are asked to save it if you have not already done so.
          To assign a Web template to a role, choose Web Template ® Publish ® In Role. See also Role Maintenance.
          To copy the URL of a Web template to the clipboard, choose Web Template ® Publish ® Copy URL to Clipboard. The Web template, however, must already be saved.
          To broadcast a Web template, choose Web Template ® Publish ® BEx Broadcaster.  For more information, see Precalculating and Broadcasting Queries, Query Views, Web Templates and Reports.
    Result
    Your Web application is started and displayed in the portal, which in turn runs in a Web browser.
    If you want to print your Web application, choose Print in the context menu for the executed Web application.

  • "Global Type declaration duplicated", cached xsd conflicting in jdeveloper?

    We're having problems recompiling a project after changing a schema in a second project on which it depends:
    Our HR composite app imports a schema from our FaultHandler app. I added 2 new elements to the FaultHandler schema and redeployed to the server - now our HR composite app won't recompile. It errors saying:
    [scac] error: in EmpTransformSynch.bpel(87): query "/ns9:HandleFaultRequest/ns9:TimestampeInit" is invalid, because Global Type declaration/definition of name '{http://mydomain.com/SOA/FaultHandler}HandleFaultRequestType' are duplicated at the following locations:
    [scac] http://mydomain.com:8001/soa-infra/services/default/FaultHandlerProject/xsd/FaultHandler.xsd [line#: 4]
    [scac] http://mydomaincom:8001/soa-infra/services/default/FaultHandlerProject/FaultHandler?XSD=xsd/FaultHandler.xsd [line#: 7]
    [scac] There are at least two of them looking different:
    [scac] http://mydomain.com:8001/soa-infra/services/default/FaultHandlerProject/xsd/FaultHandler.xsd [difference starting at line#:16]
    [scac] http://mydomain.com:8001/soa-infra/services/default/FaultHandlerProject/FaultHandler?XSD=xsd/FaultHandler.xsd [difference starting at line#:19]
    I can view the 2 URIs in my browser, and while they differ slightly in how they reference another schema, the schemas (and imported schema) are semantically equivalent.
    We've taken the following steps to try to resolve it:
    Undeploy the previous revision of Fault handler
    Restart soa server
    Redepoy Fault Handler
    Clean HR app
    Make HR app
    We have the issue in both jdeveloper 11.1.1.3.0 and 11.1.1.4.0
    This is surely something very simple, but it's blockiing us at the moment.
    Any help much appreciated.
    ..Garret
    Edited by: user10714498 on 09-Mar-2011 02:27

    If your schema contains any characters which will be escaped when parsed by a browser, then version present in the actual .xsd and the version referenced via HTTP server will be different causing the issue.
    If you can post the content of your actual schema (as you see it in jDev and not the one opened in the browser) here it will help identifying the issue if any.

  • Adding XML Declaration and Document Type Declaration.

    I'm using Oracle's XML Class Generator C++ version 1.0.2.0.0. I can create classes from a defined external DTD and create my XML document. But the document does not contain the XML Declaration <?xml version='1.0?> nor does it contain the Document Type Declaration <!DOCTYPE root-element-name SYSTEM "system-identifier">. What do I need to do to get these as part of my XML document? Does the class generator have methods to do this? Could someone show me an example?

    If you invoke the print method on the top-level ELEMENT, you get
    just the body of the document with no DTD or XMLDecl. if you invoke
    print on the top level NODE (the DOCUMENT node), then the output
    document will contain the XMLDecl and DTD.
    So please try to print from DOCUMENT node.

  • Source XML data type declaration querry

    Hi all,
    I am very confused in below XML data type declaration.
    I am dealing first time with this type of XML.
    In source XML header items are mentioned in header node(address).
    <address addressline1="6th & Hunt" addressline2="" city="Pryor" state="OK" country="Sun" zip="74361">
    - <phoneinfo>
      <phone type="work">9999999999</phone>
      </phoneinfo>
    - <faxinfo>
      <fax>100000001</fax>
      </faxinfo>
    </address>
    Please Help in the "Data type declaration" of above source XML????
    How can i use this data type in message mapping????
    Thanks & Regards

    Hi Umesh,
    You can use Data types with Attributes in XI.
    http://help.sap.com/saphelp_nw2004s/helpdata/en/3b/d2a3f7a166514abb8cf5635b71974f/frameset.htm
    And you can even try with the External Definition also.
    Hope this helps,
    regards,
    Moorthy

Maybe you are looking for

  • NFS Sender File Adapter Source Directory

    Hello everybody, I have the next problem cause company politics I can't put some files that I need in the XI Server, so I sould take them from another server directory, and cause compañy politics too I can't use FTP so I need to use NFS, but I've bee

  • How can I share my iMovies now that there is no MobileMe?

    I used to share my iMovies on my MobileMe Gallery, but now that is closed where can I share my movies? I don't use Facebook and even though I have an account with YouTube I can't seem to get it to work. Does anyone know of an easy option to share my

  • Shared Calendar

    I am trying to configure Shared Calendar usage, basically according to the section 'Shared Calendar LDAP Lookup Configuration' on the page http://docs.sun.com/app/docs/doc/819-2568/6n4rm7fit?a=view . I have service.wcap.userprefs.ldapproxyauth ="yes"

  • Iphoto buttons not working...

    I have a peculiar problem. I create a slideshow in iPhoto. The app takes me directly to an overview of thumbnails, I can play the slideshow, with the default music, and settings but I can't change the music, theme, or settings - when when I click on

  • FM2-A55M-E33 and Dual Graphics

    I purchased a MSI FM2-A55m-E33 Mainboard, AMD APU (A8-5600K), 8 GB Kingston HyperX Memory and a MSI Radeon 6670 viseo vard to do a CrossfireX budget gaming rig. I have 2 Problems, the memory can not be set over 1333 MHz, if I set it to 1600 in the bi