Multiple input currencies for a single entity

My client must support multiple currencies for any given Entity.  For instance, Spanish Company #1 must be able to record transactions (sales and purchases/costs) in both Euros and in British Pounds, since both currencies are used by this entity.  Since, by the default configuration, an Entity can only support one currency (LC), I am searching for alternatives.
Option 1:
Use a user-defined dimension, such as a Geography dimension, as the dimension that is tied to Rate, and modify the FX scripts accordingly.  The Spanish Company #1 will remain in the Entity Type dimension.
Option 2:
Assign a different dimension as the Entity Type, such as a Geography dimension.  And make the former Entity Type dimension, where the Spanish Company #1 lives, into a user-defined dimension.
Are their other options to consider?
We are planning on supporting multiple reporting currencies (it is currently just USD), so we are reluctant to use Option 1, because the business rules may be hard-coded to the Entity dimension (are they?).  We also plan on performing intercompany eliminations down the road, so we are reluctant to use Option 2, since at that time we will be relying on the entity type for those functions. 
Thank you for your thoughts on this.

If you're interested, here's some FX translation logic with account-level override. You may be able to modify this to choose some other dimension as your override -- datasrc, or whatever makes most sense.
// Factors that impact currency conversion:
// Entity.Currency property (required)
// Account.Currency property (optional, overrides Entity.Currency if set)
// Account.RateType - AVG & END use corresponding rate types, blank value translates at 1:1, NOTRANS produces no record in reporting currency
// InputCurrency.Reporting = "Y" produces a translation; must have a matching member in RptBasis
// look up dimension names and parameters
*INCLUDE system_constants.lgl
*SELECT(%REPORTING_CURRENCIES%, "[ID]", "RptBasis", "[REPORTING] = 'Y'")
*SELECT(%FX_RATES%, "[ID]", "RATE", "[GROUP] = 'FX RATE'")
*CLEAR_DESTINATION
*DESTINATION RPTBASIS=%REPORTING_CURRENCIES%
// look up rates from Rate cube
*LOOKUP RATE
  *DIM RATEENTITY="RATECALC"
  *DIM RATE=ACCOUNTDIM.RATETYPE
  *DIM SOURCECURR1:INPUTCURRENCY=ENTITY.CURRENCY
  *DIM SOURCECURR2:INPUTCURRENCY=ACCOUNT.CURRENCY
  *FOR %CURR%=%REPORTING_CURRENCIES%
    *DIM %CURR%:INPUTCURRENCY="%CURR%"
  *NEXT
*ENDLOOKUP
// translation rule
*WHEN ACCOUNTDIM.RATETYPE
  *IS "NOTRANS"
  // skip; no ReportingCurrency records are generated for these accounts
  *IS %FX_RATES%
  // translate AVG & END accounts
      *WHEN ACCOUNTDIM.CURRENCY
        *IS <>""
        // use the currency of the account
          *FOR %CURR%=%REPORTING_CURRENCIES%
            *REC(FACTOR=LOOKUP(SOURCECURR2)/LOOKUP(%CURR%),RPTBASIS="%CURR%")
          *NEXT
       *ELSE
        // use the currency of the entity
         *FOR %CURR%=%REPORTING_CURRENCIES%
           *REC(FACTOR=LOOKUP(SOURCECURR1)/LOOKUP(%CURR%),RPTBASIS="%CURR%")
         *NEXT
      *ENDWHEN
   *ENDWHEN
  *ELSE
  // For account.ratetype that is blank, ReportingCurrency values are equal to LC values.
     *FOR %CURR%=%REPORTING_CURRENCIES%
        *REC(RPTBASIS="%CURR%")
     *NEXT
*ENDWHEN
*COMMIT

Similar Messages

  • How to create the multiple spool requests for a single report.

    Hi gurus,
                     I have one requirement to be completed , i need to send the out put of the report via mail in pdf format. for that what i did was, iam executing report in background and creating spool request and converting it to pdf and sending the file.
    now the problem is, its a customer ledger report, for each customer i need to create a new spool request and send mail to that particular customer, now my dought is how to create multiple spool requests for a single pro and how i need to go about it.
    And one more question is can we create a spool request for a report which is running in online.
    waiting for inputs frm gurus.

    Hello,
    As per my knowledge for creating new spool id you will have to set
    output_options-tdnewid = 'X'.
    and then using
    job_output_info-spoolids
    create a pdf using
    call function 'CONVERT_OTFSPOOLJOB_2_PDF'
    Rachana.

  • Multiple PO's for a single PR reg

    Hi,
    The system incorrectly allows multiple PO's for a single PR.Then,I configured message no 00 06 076 & 400 as a error message and system is not allowing mutiple PO's for single PR and if PO Qty is greater than PR it's not allowing and it's ok.
    Now the issue is If PR qty is 2 and as per requirement 1 qty for one vendor and one more qty for some other vendor and two PO's are to be created and the system is not allowing and throwing error message.
    Can you pl.throw some light on this issue.

    Hi
    It is not incorrect to have multiple POs for single vendor as we might have different vendors for the same item. Secondly the message setting what you have on 00/06/076/Materials of requisition & item & alr. ordered in full- E is used to stop POs being created from the PR once PR quanitity gets consumed.
    Now i do not think system will ever stop you from allowing to create multiple POs for a PR if you are distributing the Quantities between different vendors.
    By setting the message 00/06/400/Materials/services for requisition & & already ordered with & & to E mode you are blocking the PO creation with altaernate vendors change it to warning mode.
    Regards
    Edited by: samuel mendis on May 8, 2009 8:42 AM

  • Creating multiple input terminals for a boolean function?

    Hi,
    I was wondering how to create multiple input terminals for a boolean function? I'm pretty sure i've done so before, but I can't seem to remember  how, I need to for a school assignment, and i've searched in the help in the program for about 3 hours before switching to google, which also didn't give me an answer.
    I'm beginning to feel quite stupid especially since it is something quite simple I'm sure, but I just don't know how 
    my teacher is currently on vacation and since it was an assignment I actually should've done in september I doubt any of the other students still recalls.
    What I want to do is create an or-function, with 3 boolean inputs, does anyone know how to do that?
    Thanks

    Look again at the picture posted above, it shows exactly what you need, the "compound arithmetic" node, found on the numeric and the boolean palette.
    Resize it to the desired numbers of inputs.
    right-click for the desired operation (AND, OR, XOR, etc.)
    right-click on each terminal to invert the particular input or output (shows as small circle).
    (I am not sure who gave the one star rating above, but that was certainly undeserved )
    Message Edited by altenbach on 08-11-2007 08:46 PM
    LabVIEW Champion . Do more with less code and in less time .
    Attachments:
    compoundAND.png ‏1 KB

  • How to create a service with deep insert input but output a single entity?

    Hi Experts,
         I have created a service which has 2 entities.
         DeliveryHeader
         DeliveryItems
         StatusOutput
         Association has been defined for DeliveryHeader and  DeliveryItems.
        My input request message is:
           "DN_No" : "123",
           "ShipTo" : "CNZ",
            "DeliveryItems" : [{
            "DN_No": "123",
            "Item_No": "1",
            "Quantity": "10'
    I want my output to be different entity structure that is of StatusOutput.
        "StatusOutput" : {
             "Code": "100",
             "Text" : "Successfully created DN"
    But I am getting output same as input.
    What I have to do to get the desired output? Please help!
    In my create_deep_entity I have coded like this:
    TYPES:  BEGIN OF t_output.
               TYPES: StatusOutput TYPE ycl_prj_create_dn_mpc_ext=>TS_STATUSOUTPUT,
              END OF t_output.
    x_output-StatusOutput-code = "100".
    x_output-StatusOutput-text = "Successfully created DN".
        copy_data_to_ref(
           EXPORTING
             is_data = x_output
           CHANGING
             cr_data = er_deep_entity ).
    Thanks
    Gopal

    Hello Gopal,
    Have you created association to the StatusOutput entity as well ?
    You would have already Created association with some cardinality ( 1 to N ) between DeliveryHeader & DeliveryItems entities right !?
    Now create association between DeliveryHeader & StatusOutput ( say 1 to N OR 1 to 1 .. based on your requirement ). But here if as per my understanding since u need  only success message and corresponding success message type, u need to create association with 1 to 1 cardinlity between
    DeliveryHeader & StatusOutput entities.
    Now after successful creation send back the message and its code in the deep structure ( structure which can hold DeliveryHeader , DeliveryItems , StatusOutput details )  which you would be already defined to hold all the DeliveryHeader and DeliveryItems details and StatusOutput details.
    This way you can return your message and code as separate entity in the response ( But remember you will be having data in other entities of your DeliveryItems & DeliveryHeader )
    This is what you are expecting if i understand your problem well.
    If at all you want only that specific entity in the response alone,
    As per my knowledge u cant restrict your response like how you are expecting ( only single entity alone with success message ) . Since we are sending back the same input deep structure as part of response you cannot restrict that way.
    At the most you can empty your response forcefully excluding your data structure/table having the success message. However this will not make any sense.
    Regards,
    Ashwin

  • Multiple Shipping Addresses for a single Ship-to-Party

    Hi all,
    How can we maintain multiple addresses for a single ship-to-party.
    The customer has 4 locations and whenever he places a order he wants the goods to be delivered to one or more than one address .How to do this?
    I tried to find it in the forum but I din't get a satisfactory answer.
    Regards,
    Ajit

    Ajit
    You may use Text for your requirment...
    Better Create a text type say Shipping Address... and assign to a sales order....
    Keep that in the Incomplete Log... so that when ever you process the sales order end user is in need to complete the Address....
    Another way is Ask ABAB er To change some field relevent to the customer as a Shipping address or may be Z field and use the same to the address..
    I have not used this check with your ABABer
    Reward if usefull
    Muthupandiyan

  • Broadcasting via Bursting to multiple email address for a single vendor cod

    Hello -
    I have a requirement to broadcast out a web template based scorecard to multiple email addresses for a given vendor code.  We have gotten it to work via a single email address, but I need to send it to more than one email per vendor code.
    Has anyone else tried this?
    Thank you!

    Hi Chris,
    If my understanding is right, you must be using the master data of vendor Code(Which has an attribute to store Email IDs).
    You can add multiple email ID to the same master data separated by semi colon ";"
    If you are using user IDs instead, I dont think it is possible to use multiple user ID in the same attribute.
    in this case you need to enhance the master data with a new attribute to store the second user ID and the  create a separate setting for this attribute.
    Hope this helps.
    Regards.
    Shafi.

  • Multiple Sales Order for a single complaint in QM Notifications

    Hi Folks,
    We have a situation in a company i.e. migration from legacy system to SAP QM Notifications for customer complaints.
    The business needs to accomidate "Multiple Sales order for single complaint".
    Can someone suggest are there any customizing options "Assigned Objects" ?? or how can we achive this functionality.
    Thanks,

    Dear Sandeep,
    1) We don't have facility like One notification capture Multiple sales order, but you can do one thing day first you create one notification with reference sales and capture all sales orders in subject so that when ever you check Notification  you will get idea  This many sales order link with the notification.
    2) Diffects also you can capture agaist sales order like enter manually in Text
    I think this is help full for your business reqirement

  • Multiple order currency for same vendor

    I have a vendor who supplies me on local currency and also import in foreign currency.
    Since the bank details are same for this vendor, our accounts is not allowing us to create two different vendor codes.
    Is it possible to maintain info.record, contract and purchase order in two different currencies for the same vendor?

    Hi,
    In SAP, you can maintain certain vendor master data at vendor sub-range level in addition to the data maintained at purchase organisation level.
    In Customizing for Logistics General, you can specify whether you wish to maintain VSRs and different data in the vendor master record. Choose Business Partners -> Vendor -> Control Data -> Define Account Groups and Field Selection (Vendors) and select Vendor Sub-Range Relevant/Define Screen Layout Specific to Purchasing Organization.
    If you wish to maintain different data for vendor sub-ranges in the vendor master, you must use an account group that allows Data Retention at VSR level.
    Then goto purchasing data screen of vendor master and choose Extras -> Addl. purchasing data, and select Allow data retention at VSR level.  Now you will see a new button "Vendor Sub-range" by clicking which you can enter a different set of vendor master data including Currency.
    To pick this vendor subrange master data in purchase order, you need to enter the vendor sub-range number in purchase order line item material data tab.  You can also maintain vendor sub-range number in the info.record and contract.

  • OIM 11g R2 PS1 error in App instances page due to multiple prcoess forms for a single RO

      By mistake I attached two process definitions to a single resource object (RO) and it in turn mapped two process forms to the single resource object.
    Now when I go to application instances page and do a searc, it shows the below error in the UI
    IAM-4067027 : An error occurred in findAppInstances and the cause of error is An error occurred in getParentFormInfo and the cause of error is Multiple process forms exist for Test_Emp_RO.. 
    I tried to assign a different RO and Form to the second process def in teh design console, but it throws SDK update failure error. How to resolve this error?  Any inputs are appreciated.

    Check the for duplicacy in OBJ_KEY column of the process defination. If duplicate values exit then set them to 'null'  and commit. Restart OIM if required

  • How to place multiple characteristic values for a single Report line

    hi friends,
          I want to display a report with multiple characteristc values in different columns for each instance, For example there are 2 instances and they have multiple characteristics , so all characteristics of each instance  should be displayed in multiple columns in one by one in the same row.
    Thanks in advance.
    RK
    Message was edited by:
            RK

    Hi RK,
        Try this it may help you for multiple values for one instance....
    *Type-pools
    TYPE-POOLS: slis.
    Data declarations.
    DATA: BEGIN OF t_vbak OCCURS 0,
    vbeln TYPE vbeln,
    bstnk TYPE vbak-bstnk,
    erdat TYPE vbak-erdat,
    kunnr TYPE vbak-kunnr,
    END OF t_vbak.
    DATA: BEGIN OF t_vbap OCCURS 0,
    vbeln TYPE vbeln,
    matnr TYPE vbap-matnr,
    netpr TYPE vbap-netpr,
    waerk TYPE vbap-waerk,
    kwmeng TYPE vbap-kwmeng,
    meins TYPE vbap-meins,
    END OF t_vbap.
    DATA: t_fieldcatalog1 TYPE slis_t_fieldcat_alv.
    DATA: t_fieldcatalog2 TYPE slis_t_fieldcat_alv.
    DATA: v_repid TYPE syrepid.
    DATA: s_layout TYPE slis_layout_alv.
    DATA: v_tabname TYPE slis_tabname.
    DATA: t_events TYPE slis_t_event.
    start-of-selection event.
    START-OF-SELECTION.
    v_repid = sy-repid.
    Get the fieldcatalog for the first block
    PERFORM get_fieldcat1 CHANGING t_fieldcatalog1.
    Get the fieldcatalog for the second block
    PERFORM get_fieldcat2 CHANGING t_fieldcatalog2.
    Get the data for the first block
    SELECT vbeln bstnk erdat kunnr UP TO 10 ROWS
    INTO TABLE t_vbak
    FROM vbak WHERE vbeln > '0060000100'.
    Get the data for the second block
    SELECT vbeln matnr netpr waerk kwmeng meins UP TO 10
    ROWS
    INTO TABLE t_vbap
    FROM vbap WHERE vbeln > '0060000100'.
    init
    CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_INIT'
    EXPORTING
    i_callback_program = v_repid.
    First block
    v_tabname = 'ITAB1'.
    CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_APPEND'
    EXPORTING
    is_layout = s_layout
    it_fieldcat = t_fieldcatalog1
    i_tabname = v_tabname
    it_events = t_events
    TABLES
    t_outtab = t_vbak.
    Second block
    v_tabname = 'ITAB2'.
    CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_APPEND'
    EXPORTING
    is_layout = s_layout
    it_fieldcat = t_fieldcatalog2
    i_tabname = v_tabname
    it_events = t_events
    TABLES
    t_outtab = t_vbap.
    *Display
    CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_DISPLAY'
    FORM GET_FIELDCAT1
    Get the field catalog for the first block
    FORM get_fieldcat1 CHANGING lt_fieldcatalog TYPE
    slis_t_fieldcat_alv.
    DATA: s_fieldcatalog TYPE slis_fieldcat_alv.
    Order number
    s_fieldcatalog-col_pos = '1'.
    s_fieldcatalog-fieldname = 'VBELN'.
    s_fieldcatalog-tabname = 'T_VBAK'.
    s_fieldcatalog-ref_tabname = 'VBAK'.
    s_fieldcatalog-ref_fieldname = 'VBELN'.
    APPEND s_fieldcatalog TO lt_fieldcatalog.
    CLEAR s_fieldcatalog.
    Customer purchase order.
    s_fieldcatalog-col_pos = '2'.
    s_fieldcatalog-fieldname = 'BSTNK'.
    s_fieldcatalog-tabname = 'T_VBAK'.
    s_fieldcatalog-ref_tabname = 'VBAK'.
    s_fieldcatalog-ref_fieldname = 'BSTNK'.
    APPEND s_fieldcatalog TO lt_fieldcatalog.
    CLEAR s_fieldcatalog.
    Creation date.
    s_fieldcatalog-col_pos = '3'.
    s_fieldcatalog-fieldname = 'ERDAT'.
    s_fieldcatalog-tabname = 'T_VBAK'.
    s_fieldcatalog-ref_tabname = 'VBAK'.
    s_fieldcatalog-ref_fieldname = 'ERDAT'.
    APPEND s_fieldcatalog TO lt_fieldcatalog.
    CLEAR s_fieldcatalog.
    Customer
    s_fieldcatalog-col_pos = '4'.
    s_fieldcatalog-fieldname = 'KUNNR'.
    s_fieldcatalog-tabname = 'T_VBAK'.
    s_fieldcatalog-ref_tabname = 'VBAK'.
    s_fieldcatalog-ref_fieldname = 'KUNNR'.
    APPEND s_fieldcatalog TO lt_fieldcatalog.
    CLEAR s_fieldcatalog.
    ENDFORM.
    FORM GET_FIELDCAT2
    Get the field catalog for the second block
    FORM get_fieldcat2 CHANGING lt_fieldcatalog TYPE
    slis_t_fieldcat_alv.
    DATA: s_fieldcatalog TYPE slis_fieldcat_alv.
    Order number
    s_fieldcatalog-col_pos = '1'.
    s_fieldcatalog-fieldname = 'VBELN'.
    s_fieldcatalog-tabname = 'T_VBAP'.
    s_fieldcatalog-ref_tabname = 'VBAP'.
    s_fieldcatalog-ref_fieldname = 'VBELN'.
    APPEND s_fieldcatalog TO lt_fieldcatalog.
    CLEAR s_fieldcatalog.
    Material number
    s_fieldcatalog-col_pos = '2'.
    s_fieldcatalog-fieldname = 'MATNR'.
    s_fieldcatalog-tabname = 'T_VBAP'.
    s_fieldcatalog-ref_tabname = 'VBAP'.
    s_fieldcatalog-ref_fieldname = 'MATNR'.
    APPEND s_fieldcatalog TO lt_fieldcatalog.
    CLEAR s_fieldcatalog.
    Net price
    s_fieldcatalog-col_pos = '3'.
    s_fieldcatalog-fieldname = 'NETPR'.
    s_fieldcatalog-tabname = 'T_VBAP'.
    s_fieldcatalog-ref_tabname = 'VBAP'.
    s_fieldcatalog-ref_fieldname = 'NETPR'.
    s_fieldcatalog-cfieldname = 'WAERK'.
    s_fieldcatalog-ctabname = 'T_VBAP'.
    APPEND s_fieldcatalog TO lt_fieldcatalog.
    CLEAR s_fieldcatalog.
    Currency.
    s_fieldcatalog-col_pos = '4'.
    s_fieldcatalog-fieldname = 'WAERK'.
    s_fieldcatalog-tabname = 'T_VBAP'.
    s_fieldcatalog-ref_tabname = 'VBAP'.
    s_fieldcatalog-ref_fieldname = 'WAERK'.
    APPEND s_fieldcatalog TO lt_fieldcatalog.
    CLEAR s_fieldcatalog.
    Quantity
    s_fieldcatalog-col_pos = '5'.
    s_fieldcatalog-fieldname = 'KWMENG'.
    s_fieldcatalog-tabname = 'T_VBAP'.
    s_fieldcatalog-ref_tabname = 'VBAP'.
    s_fieldcatalog-ref_fieldname = 'KWMENG'.
    s_fieldcatalog-qfieldname = 'MEINS'.
    s_fieldcatalog-qtabname = 'T_VBAP'.
    APPEND s_fieldcatalog TO lt_fieldcatalog.
    CLEAR s_fieldcatalog.
    UOM
    s_fieldcatalog-col_pos = '6'.
    s_fieldcatalog-fieldname = 'MEINS'.
    s_fieldcatalog-tabname = 'T_VBAP'.
    s_fieldcatalog-ref_tabname = 'VBAP'.
    s_fieldcatalog-ref_fieldname = 'MEINS'.
    APPEND s_fieldcatalog TO lt_fieldcatalog.
    CLEAR s_fieldcatalog.
    ENDFORM.
    Plz Reward points if contents are useful,,,
    Regards,
    Mandeep.

  • Multiple SAP Deliveries for a single container

    SAP is creating deliveries for single purchase order. Multiple Deliveries are shipped together in the same container. At the end of the day, within WM we only want one ASN (Advanced Shipping Notice)to contain all of the information for the one physical container on WM.
    Regards
    Manoj

    Hi Manjo,
    Did you ever get a solution for this?
    Kind Regards,
    Finbarr

  • Multiple payment documents for one single invoice

    How can print multiple checks for each line item on my invoice. I tried using individual payment in vendor master and company code and single payment for marked invoice in FBZP. I tried with both the options as well as combination of options.
    Please let me know how this can be possible..

    Point No. 1.
    If you are booking the invoice though MM module (MIRO, MIRA and MRBP) the accouning entry which will get generate is:
    DR. GRIR Clearing Account  50/-
    DR. GRIR Clearing Account  100/-
    CR. Vendor Account             150/-. (Only 1 line item will get generate and in this case system will no allo you to generate two payment documents)
    Point No. 2.
    If you are booking the invoice through FI module (JV using F-43 or F-02) and the accounting entry should be:
    Dr. PL GL account 50/-
    Dr. PL GL account 100/-
    Cr. Vendor Account 50/-
    Cr. Vendor Account 100/- (Same Vendor).
    In this case you can make the payment line item wise.
    Please check and revert.
    Uttam

  • How to pass multiple MDX values for a single parameter into a drill-through report?

    I'm thinking this will be an easy question for any experienced SSRS/MDX developers, at least I hope so!  I've created a report that gives the user the option to choose viewing data for the current/active week, or YTD.  Depending on which link the
    user selects, the report simply calls itself and needs to pass in the parameter value for Active week.  If it's active week, the parameter value will simply be "true".  If it's YTD, the parameter value needs to be both "True" and "False" so the current
    week's data is accounted for as well.  I've set everything up except for the final step, and I have no idea what to type into the Value field below.  I've tried different things: false, as you see below (it errors saying I'm missing the parameter
    value), the value in MDX format: =[School Dates].[Active Week].&[True] (it said I was missing a bracket), a 1 instead of the word true (again, missing a parameter value).  Nothing is working.
    So my question is kindof two-fold: 1) how do you pass in the value at all and 2) more specifically, how do you pass in multiple values (both true & false) ??

    I'm sorry for being so dense, but I'm not quite following, although what I've tried makes me think if I can follow you, it will work :)
    To answer your initial questions, you are correct with both your assumptions:
    1) detailType is the parameter that specificies YTD/Weekly, this is a "report defined" parameter that I am using to determine which Row Group to display (either YTD or Weekly)
    2) SchoolDaysActiveWeek is the parameter that is being set to either true or false -- this is a field in the cube that states whether that record is for the current week or not
    So in following your instructions, well that's the problem I'm not quite following :)
    1) When you say Delete the SchoolDaysActiveWeek parameter from the report only, do you mean to mark the parameter as Hidden?  If so, I've done this.
    2) I'm not quite sure where to use the statement you provided me.  You said to put it in the dataset, but I don't know which dataset.  I assume you mean the "main" dataset (as opposed to the hidden dataset that gets generated when you mark a field
    as a parameter).  If this is the case, the only place I could see that would allow you to use such a statement is in the Filter section of the properties.  I tried this, and it did not generate any errors, but it also kept my report groups from displaying
    -- it just showed a blank report, so I think it probably wasn't bringing back any rows to populate them with.
    I also tried going into the Expression section for the SchoolDaysActiveWeek parameter in the second screenshot and placing the statement there.  When I did this and ran the report, I would get the following error:
    The 'SchoolDaysActiveWeek' parameter is missing a value
    So what am I missing!? 
    Also, thanks for taking the time to respond!!

  • How do I select multiple email address for a single person in my address book when creating a new email?

    I am coordinating a large group of people and created a group list of over one hunderd people.  The group is families and each person in the address book has several e-mail addresses. How do I select all the email address under each person in the address book so every family member recieves the e-mails?
    It appears I can select any ONE email address but selecting multiples from any one person is not allowed, why is that? Any tips would be appreciated, thanks.
    LBD

    Not sure about this problem. But if you don't get an answer soon, go here which is the Mail forum for Leopard (which you listed in your sig).
    https://discussions.apple.com/community/mac_os/mac_os_x_v10.5_leopard?view=discu ssions#/?tagSet=1017

Maybe you are looking for