Adding new Condition Rule attribute for "ICRULE-Intent Driven Interaction"

Hi Experts,
          I want to add a Z attribute for context "ICRULE- Intent Driven Interaction".
Under SPRO path Customer Relationship Management->E-Mail Response Management System->Define Repository
I define new Condition Attribute Z_BP_NUMBER with is the copy of BP_NUMBER Attribute.
1. if i define a Rule to trigger the Alert with Condition Attribute BP_NUMBER is XYZ. then Alert gets Triggered.
2. if i define a Rule to trigger the Alert with Condition Attribute  Z_BP_NUMBER is XYZ. then Alert is not Triggered.
After defining Condition Attribute Z_BP_NUMBER at Define Repository (spro) do i need to include at any other placel?
Please help me with your valuable input.
Thanks and Regards,
Vimal

Hello Vimal,
Yes, you also need to create your own data collector class and fact gathering service to use your new attribute!  If you have a subscription to CRM Expert, you can read this detailed article that I co-wrote on using your own custom attributes: http://www.crmexpertonline.com/article.cfm?id=5475.
Regards,
John

Similar Messages

  • Step for Adding new condition in Pricing procedure

    Hi,
      We have different pricing procedure  with different condition ,  in this procerdure i want to add one new  condition at 2 position and the requirement is that  if system found the value with this condition it should skip the 3 step and directly go to 4 step  can u give the step for this  how to add new condition to this procedure.
    regards,
    zafar

    I think you need to use condition exclusion so if the condition at step 2 is found then step 3 becomes inactive if it  is also found.
    Depnding on your pricing keys, you might be able to add a step in the access sequence on step 3 and only use a single condition (V/07) and marking that step exclusive if a record is found.

  • Sales Order creation of adding new condition type to Item

    Hi Expert,
    The sales order has been created and need to add new condition type (Z601) to the first item(10). While adding the condition I am getting warning message like
    "Item 000030 exists already; the entry will be ignored".
    Where item 030 will be the last item.
    I have cheked but it's a standard report SAPFV45P, we can't modify. Please let me know can we set any field in the sales order so that we wont be getting this message.
    Regards,
    Mahesh

    Hello,
             If you would like to add the Condition Type automatically for a specific Item based on some condition (Lets say, Item Category), then you can code a Pricing Routine in VOFM Transaction and it will be automatically assigned.
    Thanks and Regards,
    Venkat Phani Prasad Konduri

  • Assigning of excess sequence to condition and adding New condition in Prici

    Hi,
      We have  different pricing procedure  for our baisc price present there is no excess sequence assign to it  now as per our requirement i have created a new contion table  and have assign that to a excess sequence  I want to know is there any problem if i assign that Access sequence to conddition  what can be the problem ,
    and  2nd case
    I want to create new condition  what is the total process to assign that new condition to our exsiting pricing procedure.
    regards,
    zafar

    Dear Friend,
    there is no problem when you assign the access sequence to the condition at the time you are going to maintain the condition  in MEK1 transaction it will ask the different combination
    for example material /vendor combination, or material plant combination, or else what accesses your maintained for that access sequence it will ask   
    in the case of maintaining the conditions in the pricing procedure check the on what the value has to be calculated which step and which counter your assigning the condition based on that it will calculate the  value for that condition
    Regards
    Pramod

  • FM or BAPI to create new condition type / record for material - VK11

    Hi All,
        I need to copy condition records from one material to another material, to do that using the below FM. For the below values even its not raising any exception or creating pricing record. Could any one tell me am i missing any other parameters ?
    Please let me know.
    *& Report  Z_TEST292011
    REPORT  Z_TEST292011.
    data: ls_komg type KOMG,
          ls_komv type komv,
          lt_komv TYPE TABLE OF komv,
          lv_new_record.
    *ls_komg-kunnr = '0001000008'. " Cust number
    ls_komg-matnr = 'A0168L1600100006'. " Mat number
    ls_komg-VKORG = '3101'.
    ls_komg-vtweg = '10'.
    clear: Lt_komv,LS_KOMV.
    ls_komv-kappl = 'V '. " Application V = Sales
    ls_komv-kschl = 'ZR00'. " Condition type
    ls_komv-krech = 'B'. " calculation type; B -Fixed amount
    ls_komv-waers = 'USD'. " Currency
    ls_komv-kpein = '100'.
    ls_komv-kmein = 'EA'. " Unit of measurement
    ls_komv-kbetr = '121.50'. " new condition value
    append ls_komv to lt_komv.
    CALL FUNCTION 'RV_CONDITION_COPY'
      EXPORTING
        application                       = 'V'
        condition_table                   = '005'
        condition_type                    = 'ZR00'
    *    DATE_FROM                         = '20110629'
    *    DATE_TO                           = '99991231'
        ENQUEUE                           = 'X'
    *   I_KOMK                            = ' '
    *   I_KOMP                            = ' '
        key_fields                        = ls_komg
        MAINTAIN_MODE                     = 'A'
        NO_AUTHORITY_CHECK                = 'X'
        NO_FIELD_CHECK                    = 'X'
    *   SELECTION_DATE                    = '00000000'
        KEEP_OLD_RECORDS                  = 'X'
    *   MATERIAL_M                        =
    *   USED_BY_IDOC                      = ' '
    *   I_KONA                            =
        OVERLAP_CONFIRMED                 = 'X'
        NO_DB_UPDATE                      = ' '
    *   USED_BY_RETAIL                    = ' '
    IMPORTING
    *   E_KOMK                            =
    *   E_KOMP                            =
        NEW_RECORD                        = lv_new_record
    *   E_DATAB                           =
    *   E_DATBI                           =
    *   E_PRDAT                           =
      tables
        copy_records                      = lt_komv
    *   COPY_STAFFEL                      =
    *   COPY_RECS_IDOC                    =
    EXCEPTIONS
       ENQUEUE_ON_RECORD                 = 1
       INVALID_APPLICATION               = 2
       INVALID_CONDITION_NUMBER          = 3
       INVALID_CONDITION_TYPE            = 4
       NO_AUTHORITY_EKORG                = 5
       NO_AUTHORITY_KSCHL                = 6
       NO_AUTHORITY_VKORG                = 7
       NO_SELECTION                      = 8
       TABLE_NOT_VALID                   = 9
       NO_MATERIAL_FOR_SETTLEMENT        = 10
       NO_UNIT_FOR_PERIOD_COND           = 11
       NO_UNIT_REFERENCE_MAGNITUDE       = 12
       INVALID_CONDITION_TABLE           = 13
       OTHERS                            = 14
    IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    break jdonepud.
    call function 'RV_CONDITION_SAVE'.
    call function 'RV_CONDITION_RESET'.

    Hello ,
    why dont you try LSMW -RV14BTCI ?
    regards
    Prabhu

  • Adding new element to BPEL for use in PL SQL type, has binding errors

    Figured I might as well post this here since I haven't gotten a single reply in 3 days anywhere else :/
    I have a BPEL service that calls a PL SQL procedure. I have added a new element to the BPEL called quote_cart_line.
    All I had to the BPEL to accomplish this was edit 3 files -
    Async_Invoke_Import_Model.xsd (Source)
    <element name="orig_sys_line_ref" type="integer" minOccurs="1" nillable="true"/>
           <element name="quote_cart_line" minOccurs="1" nillable="true" type="integer"/>
          </sequence>
    .....APPS_NI_MODEL_IMPORT_UTIL_IMPORT_SELECTIONS.xsd (Target)
    <element name="ORIG_SYS_LINE_REF" type="decimal" db:type="NUMBER" minOccurs="0" nillable="true"/>
             <element name="QUOTE_CART_LINE" type="decimal" db:type="NUMBER" minOccurs="0" nillable="true"/>
          </sequence>
    .....Transform_NIE_Inputs.xsl (Transforming from Source to Target)
    <ns1:orig_sys_line_ref>
              <xsl:value-of select="/ns1:Async_Invoke_Import_ModelProcessRequest/ns1:import_line/ns1:orig_sys_line_ref"/>
            </ns1:orig_sys_line_ref>
            <ns1:quote_cart_line>
              <xsl:value-of select="/ns1:Async_Invoke_Import_ModelProcessRequest/ns1:import_line/ns1:quote_cart_line"/>
            </ns1:quote_cart_line>
          </ns1:import_line>
    .....I have done this to two other BPELs and they work fine. (1st BPEL calls the second BPEL passing this new element, which then passes it to this BPEL I am having trouble with, which then should be binding it to a PL SQL type)
    So this BPEL calls a PL SQL procedure, binding the elements from the BPEL to a PL SQL type (ni_model_import_line). So I edited the PL SQL type to accept this new parameter:
    orig_sys_header_ref       NUMBER,
           quote_cart_line           NUMBER,
           CONSTRUCTOR FUNCTION ni_model_import_line(p_part_number                IN VARCHAR2,
    MEMBER PROCEDURE add_orig_sys_header_ref(p_org_sys_header_ref          IN NUMBER),
           MEMBER PROCEDURE add_quote_cart_line(p_quote_cart_line                 IN NUMBER)
    MEMBER PROCEDURE add_quote_cart_line(p_quote_cart_line                 IN NUMBER) IS
    BEGIN
       quote_cart_line := p_quote_cart_line;
    END add_quote_cart_line;
    END;
    .....I invoke all of this, and the new element gets populated in 3 different BPELs, including this one I explained here. But when it comes time to call the PL SQL I am now getting an error:
    <fault>
    -<bpelFault>
    <faultType>0</faultType>
    -<bindingFault xmlns="http://schemas.oracle.com/bpel/extension">
    -<part name="summary">
    <summary>
    Exception occured when binding was invoked.
    Exception occured during invocation of JCA binding: "JCA Binding execute of Reference operation 'nie_import_2' failed due to: Interaction processing error.
    Error while processing the execution of the APPS.NI_MODEL_IMPORT_UTIL.IMPORT_SELECTIONS API interaction.
    An error occurred while processing the interaction for invoking the APPS.NI_MODEL_IMPORT_UTIL.IMPORT_SELECTIONS API. Cause: java.lang.NullPointerException
    The invoked JCA adapter raised a resource exception.
    Please examine the above error message carefully to determine a resolution.
    </summary>
    </part>
    -<part name="detail">
    <detail>null</detail>
    </part>
    -<part name="code">
    <code>null</code>
    </part>
    </bindingFault>
    </bpelFault>
    </fault>This doesnt happen if I remove the references to this new element and try again, so it obviously is a problem with the element, but I have no idea what it is. It works fine when going from BPEL to BPEL, but as soon as the process tries to call the PL SQL procedure this happens. It is even more frustrating because I have done this exactly before adding another element, and it worked fine...
    Any ideas or tips please?

    Figured I might as well post this here since I haven't gotten a single reply in 3 days anywhere else :/
    I have a BPEL service that calls a PL SQL procedure. I have added a new element to the BPEL called quote_cart_line.
    All I had to the BPEL to accomplish this was edit 3 files -
    Async_Invoke_Import_Model.xsd (Source)
    <element name="orig_sys_line_ref" type="integer" minOccurs="1" nillable="true"/>
           <element name="quote_cart_line" minOccurs="1" nillable="true" type="integer"/>
          </sequence>
    .....APPS_NI_MODEL_IMPORT_UTIL_IMPORT_SELECTIONS.xsd (Target)
    <element name="ORIG_SYS_LINE_REF" type="decimal" db:type="NUMBER" minOccurs="0" nillable="true"/>
             <element name="QUOTE_CART_LINE" type="decimal" db:type="NUMBER" minOccurs="0" nillable="true"/>
          </sequence>
    .....Transform_NIE_Inputs.xsl (Transforming from Source to Target)
    <ns1:orig_sys_line_ref>
              <xsl:value-of select="/ns1:Async_Invoke_Import_ModelProcessRequest/ns1:import_line/ns1:orig_sys_line_ref"/>
            </ns1:orig_sys_line_ref>
            <ns1:quote_cart_line>
              <xsl:value-of select="/ns1:Async_Invoke_Import_ModelProcessRequest/ns1:import_line/ns1:quote_cart_line"/>
            </ns1:quote_cart_line>
          </ns1:import_line>
    .....I have done this to two other BPELs and they work fine. (1st BPEL calls the second BPEL passing this new element, which then passes it to this BPEL I am having trouble with, which then should be binding it to a PL SQL type)
    So this BPEL calls a PL SQL procedure, binding the elements from the BPEL to a PL SQL type (ni_model_import_line). So I edited the PL SQL type to accept this new parameter:
    orig_sys_header_ref       NUMBER,
           quote_cart_line           NUMBER,
           CONSTRUCTOR FUNCTION ni_model_import_line(p_part_number                IN VARCHAR2,
    MEMBER PROCEDURE add_orig_sys_header_ref(p_org_sys_header_ref          IN NUMBER),
           MEMBER PROCEDURE add_quote_cart_line(p_quote_cart_line                 IN NUMBER)
    MEMBER PROCEDURE add_quote_cart_line(p_quote_cart_line                 IN NUMBER) IS
    BEGIN
       quote_cart_line := p_quote_cart_line;
    END add_quote_cart_line;
    END;
    .....I invoke all of this, and the new element gets populated in 3 different BPELs, including this one I explained here. But when it comes time to call the PL SQL I am now getting an error:
    <fault>
    -<bpelFault>
    <faultType>0</faultType>
    -<bindingFault xmlns="http://schemas.oracle.com/bpel/extension">
    -<part name="summary">
    <summary>
    Exception occured when binding was invoked.
    Exception occured during invocation of JCA binding: "JCA Binding execute of Reference operation 'nie_import_2' failed due to: Interaction processing error.
    Error while processing the execution of the APPS.NI_MODEL_IMPORT_UTIL.IMPORT_SELECTIONS API interaction.
    An error occurred while processing the interaction for invoking the APPS.NI_MODEL_IMPORT_UTIL.IMPORT_SELECTIONS API. Cause: java.lang.NullPointerException
    The invoked JCA adapter raised a resource exception.
    Please examine the above error message carefully to determine a resolution.
    </summary>
    </part>
    -<part name="detail">
    <detail>null</detail>
    </part>
    -<part name="code">
    <code>null</code>
    </part>
    </bindingFault>
    </bpelFault>
    </fault>This doesnt happen if I remove the references to this new element and try again, so it obviously is a problem with the element, but I have no idea what it is. It works fine when going from BPEL to BPEL, but as soon as the process tries to call the PL SQL procedure this happens. It is even more frustrating because I have done this exactly before adding another element, and it worked fine...
    Any ideas or tips please?

  • Conditional Element Attribute for Updateable Report

    All,
    I have several columns in my report that are updateable text fields in which I would like to be "Read Only" if a certain condition applies.
    This is a timesheet application that displays time per project during a work-week. However, if that work week spans 2 months I need for the prior months days to be read only.
    For example:
    The week starting with Monday April 26th. I want the columns labeled Apr-26, Apr-27, Apr-28, Apr-29 and Apr-30 set to Read Only, and columns May-1 and May-2 writable.
    Note: I have a working solution that simply does not display the columns from a previous month, however I would like to see them in the table.
    Thanks,
    Darin
    10g, Apex 3.2.1.00.11

    Thank you for your response.
    I have corrected the code as you suggested however it still causes the same error.
    I have very limited knowledge of java and html (probably not a good start I realise) but it seems that the javascript cannot see(??) the value in the AQLScore (f01) column when it is Display as Text(saves state)
    If I change the calculation to just make the value = the AQLScore (f01) without the parseInt syntax 'undefined' is returned. With the parseInt 'NaN' is returned.
    I will keep looking for an answer
    Cheers,
    Alex

  • Having trouble adding new mailbox to Mail for new college email?

    Hi,
    Just received my new college email address, as I'm sarting in two weeks.
    As I just login through "login.live.com" and the email is "..... . ac.uk", I'm a bit unsure as to what to put down for "Account Type" and "Incoming/Outgoing Mail Server"
    Would appreciate any help as I would love to have this sorted out asap.
    Cheers,
    Nat

    Account type should be POP.
    in the US, the server is pop3.live.com
    Regards,
    Captfred

  • How good is the new Adobe Reader IOS for fillable forms and interactive pdfs?

    At last adobe reader for ios has been updated so now fillable forms can be completed on ipad/iphone but how good is it?
    I've tested a form and reset form/print form and save as buttons do not seem to work.
    Form submit seems ok, just wondered what others thought?
    Also the new Adobe Reader IOS is now able to display interactive pdfs with buttons such as go to next page etc yet page transitions do not work? Again whats everyone elses opinion on the reader ios update?

    My preliminary experience is that Reader does better with forms than with interactivity.
    I've written a couple postings on InDesignSecrets.com about PDF readers for tablets. Here's the latest one:
    Finding the Best Tablet PDF Reader
    You should also check out PDF Expert (US $9.99) which handles interactivity better than Reader if that is important to you.

  • Unable to go through accepting new condition for appstore

    there are new conditions for using itunes to buy apps for my ipad
    when trying to buy new apps or update some old ones I get directed to a message asking me to accept the new conditions
    it asks for a mail address which I duely provide but on the mail I recieve there is not accept mechanism ...
    what am I doing wrong? or is there a bug
    thx, bluetit

    Hello a.narain,
    Congratulations on your new MacBook Air!  It sounds like you do not want to add a credit card to your Apple ID.
    I suggest updating your billing information to "None" using the steps in the section titled "Change your payment information on a Mac or PC" in the following article:
    iTunes Store: Changing your payment information
    http://support.apple.com/kb/ht1918
    If you are not seeing the "None" option when updating your billing information, I recommend the following article:
    Why can’t I select None when I edit my payment information?
    http://support.apple.com/kb/ts5366
    Thank you for using Apple Support Communities.
    Best,
    Sheila M.

  • New condition type

    I created a new condition type 01ZF for freight % and assigned it in the calulation schema 0100. It also appears in the drop down while creating an order but does not get saved when selected.

    Hi
    Which SRM version are you using ?
    <b>When this Condition type is not getting saved ? What are the steps you are doing ?</b>
    <u>Meanwhile, Please go through the following SAP OSS Notes and Business Add-Ins(BADIs) which will help -></u>
    Note 640369 - Incorrect values in dropdown in account assignment details
    Note 1027656 - Simplified pricing:wrong price calculation in SC using prod.
    Note 1038241 - Simplified pricing: Follow-on note to note 1027656
    Note 1034949 - Wrong price in SC when a product has multiple conditions
    Note 539720 - Simplified pricing (classic scenario)
    Note 637562 - Simplified pricing
    <u>BADIs -> </u>
    1) BBP_PRICEDATA_READ
    2) PRODUCT_UPDATE2
    3) PRC_PRICING_INIT
    Note 622282 - EBP 3.5 - price is lost in the Shopping Cart
    <b>Related links -></b>
    <u>Pricing</u>
    http://help.sap.com/saphelp_srm50/helpdata/en/72/f40f3c98ddaa4ce10000000a11402f/frameset.htm
    http://help.sap.com/saphelp_srm50/helpdata/en/ee/d9df3bbcce4b37e10000000a114084/frameset.htm
    Do let me know.
    Regards
    - Atul

  • Adding new project mask  in Production Client

    Hi,
    I have requirement of adding new project mask code for Production client.
    As SAP standard functionality does not allow you to add any new project
    mask once you create a project .So if I try to add new mask system will not
    show me projects already created and released.Is there any solution to this
    problem?
    Ranjit

    Hi Ranjit,
    You did not specify exactly what type of new mask you are adding.  For example, maybe you simply need to modify an existing code.  You can make two changes to existing codes that have projects created.
    1.  You can extend the length of the mask to the complete 24 characters, if not already 24 characters.
    2.  You can change any 0 (numeric only) character in the mask to an X (allows alphanumeric).
    The best means to see what project codes are already in use, you should run SE16 for table PROJ and PRPS.  You want to view the fields in PROJ-PSPNR and/or PROJ-PSPID as well as PRPS-PSPNR and PRPS-POSID.  So, any project code beginning values (A, B, C, etc; 1, 2, 3, etc) displayed cannot be setup as new project codes.
    Yes, you could delete the old project codes after archiving the structures, but you also have to (or should) archive any associated financial documents.  As the previous responder stated, this is not a trivial task.
    Points appreciated....
    Regards,
    Kent Bettisworth

  • Added new attribute to WBS

    Here is my current issue.
    I added a "deleted indicator" to the WBS_ELEMT_ATTR on r/3, then created a new infoobject in BW (did not flag it w/master data) and added this new infoobject as a navigational attribute to the WBS_ELEMT infoobject in BW.
    Went to the infosource for WBS_ELEMT and added it to the transfer structure and the comm. structure. Activated it. Then reloaded the master data for WBS from r/3. Went to "Maintain Master Data" for WBS_ELEMT and I can see the new field is populated correctly in the new field I added to WBS_ELEMT.
    Then I went to the cube 0PS_C04 and marked the new attribute I added to WBS_EMEMT as a navigation attribute and re-activated it and the update rules.
    The problem is in the query and when viewing data with list cube or cube contents the field is blank. But its not blank with maintain master data for WBS_ELEMT.
    Does anyone have any clues as to my mistake or what I need to do. I'm needing to restrict a query based on 0PS_C04 by this new attribute I added to WBS.
    Will reward points as always.
    Richard

    Hey Richard,
    WBS_ELEMT is a navigational attribute in 0PS_C04 and "deleted indicator" is a navigational attribute of WBS_ELEMT. So, "deleted indicator" is a second level navigation attribute for 0PS_C04. This will not show you any data in the query even if you can see the data for this field in WBS_ELEMENT. One more thing is that in the update rules for 0PS_C04, you have mapped only WBS_ELEMENT but not "deleted indicator". Hence, the data is not displayed in the report.
    You can handle this in 2 different ways.
    1. Add "deleted indicator" to the cube directly and map it all the way down to the data source.
    2. Add the "deleted indicator" to the cube and in the update rules, map it as an attribute of WBS_ELEMENT.
    Unless it is mapped to the cube from the comm structure in the update rules, you can not see the data in the report.  Try one of these and let us know if it works.
    Thanks and Regards
    Subray Hegde

  • Sales Order Unable to Use New Condition Tables for Tax Condition Type

    Dear All,
    I am currently working on SAP R/3 4.0. I have a new requirement for my tax where I need to create new condition tables other than the 4 standard SAP tables which are Customer/Material, Division/Customer, Departure Country/Destination Country, Domestic Taxes and Export Taxes. My new tables consists of Departure Country/Destination Country/Shipping Point/Tax Code. The requirement is that the tax code is based on the chosen destination country and shipping point. The problem I am facing now is that no matter what types of table I create or even I generate with reference to the standard table, the access sequence will only refer to the 4 standard SAP tables above. Even if I put my own table in the highest priority for the access sequence, the same thing happens. My sales order will only pick up date from the standard table.
    I wonder if anyone encountered the same problem as me.
    Kindly advise.
    Thank you.
    Regards,
    Yvonne

    Hi
    Yvonne
    I suggest fist check a simple thing ,whether u have successfully determined shipping point for each line item ,it is possible that just adding a line item will not trigger shipping point determination . So after u update the shipping point on line level u can rerun pricing and check agian if u r getting it .
    Secondly for tax purposes I suggest   Try to have Customer and material tax classification approach  this allows to u have long term flexibiliy and also reduces your maintenance activity . As if u change or add number of shipping points and business changes using the sequence of shipping point ,the logic of just using shipping point will not work.
    In Tax classification u cna add new condition table for each new tax category and use it in different access sequences.
    This information can be passed on to FI using Different Tax code for Different combination.
    I hope this helps
    Regards
    Mandar

  • Add a new attribute for user provisioining on SAP R3

    Hi,
    I want to add a new attribute for user provisioining on SAP R3.
    - I have added new attribute in Process form and Resource form
    - I think i need to add this attribute in lookup definition of SAP attributes also need to do mapping
    but i am not finding lookup definition of SAP attributes .
    What will be name of lookup definition of SAP attributes? (In case of AD, we have AtMap.AD).
    Can any body please help me?
    Thanks

    Hi,
    You cannot add custom fields and do provision or recon for it.I have opened the SR with Oracle and this facility will be available in 9.1. which is launching after 4 months.You need to request the source code and modify it to get the custom fields.
    Thanks

Maybe you are looking for

  • Plug-in Failure (Flash not working in Safari but working in Chrome)

    Hi There, I realise there have been threads on this subject but I seem to have tried everything besides re-installing ML at this stage. When loading any flash content on any website within Safari - I receive a 'Plug-in Failure' message where the cont

  • Error while creating basic job request

    Dear Experts, I am getting below error when I submit a basic job request from solman 7.1. please suggest. Thanks Sajin

  • Dynamic Access Control : Suggested Value Claim

    Currently studying for my 70-417 Exam, there's one thing i don't fully understand and can't find any resources that explain it. A claim type can be created, from what I understand the "suggested values" are optional, these can remain empty like for e

  • Imessage on 2 phones?

    my wife and i updated our verizon iphone4 with ios6, but now we see imessages on each of our phones intended for other people. i went to settings/messages/send&receive and her phone number, email, or apple ID is not linked to my phone. the problem ha

  • Getting a movie to be playable before it fully loads

    I'm building a site with quicktime movies. How can I get the movie to be playable while it's still loading? Right now you have to wait for the movie to fully load before you even see the controls. thanks. David