Error When Creating/Inserting New Marketing Attribute Value

Merry Christmas & Happy New Year,
Need help here, when I create/insert new marketing attribute value in existing marketing attribute, I encounter the following error "The values currently maintained lead to inconsistencies in the database".
In the detail error, it specifies that I was trying to change existing attribute which is not true.
Initially i thought it was authorization issue, but when i do the same procedure in CRM GUI, it works fine, only from Web UI then i encounter the problem.
Any lead is really appreciated.
JD

Hi Robert,
thanks for the info, we did implement the note but still having the error.
we also have implemented following notes but it still does not solve the issue yet.
0001486409 Incorrect counting in CRM_MKTPFCHR_CHECK_STRING_BW
0001490425 Nonsensical values for marketing attributes
0001491491 Field DATUV in AUSP for newsletter scenario
0001499712 Marketing  Attributes are not saved properly in WEB UI
0001509448 MKT ATTR:Save value for marketing attribute impossible
0001531447 Problems in CL_CRM_BUIL_MKT_ATTRIB~READ

Similar Messages

  • Runtime Error when creating a new group

    I'm getting a runtime error when creating a new group on a site collection? 
    Thanks in advance

    The most possible reason is if your site collection is reached the maximum site quota limit,then there is chance to get the run time error while creating a new group.
    In this case,you will get the error while creating/updating the group or while adding the new user/uploading any content.
    Also Ensure the group name is not having any special/unsupported characters.
    Feel free to share the error screenshot/entry in the ULS logs.
    Please remember to click 'Mark as Answer' on the answer if it helps you
    Best Regards,
    Pavan Kumar Sapara
    s p kumar

  • SCSM Authoring Tool verification error when creating a new property

    I am needing to add several new fields to an existing customized ServiceRequest Extended Form.  Using SCSM I exported the management pack (as a bundle) and then used PowerShell to export to a .xml.   Now when I open the class and try
    to create a new property I get an error stating:
    The management pack could not be verified due to this error:
    Verification failed with 1 errors:
    Error 1:
    Found error in ...servicerequestextendedform.category with message:
    The Target attribute value is not valid.  Element ....ServiceRequestExtendedForm.Category references a Target element that cannot be found.
    I am very new to this.   Any help would be greatly appreciated!

    you probably want to go back to original sources, rather then exporting from Service Manager, since the export will break any sealing and might cause issues when authoring or resealing. 
    You'll also need :
    a Sealed version of the class extension, since this is going to need to be loaded into the authoring tool before you see the extra properties,
    an unsealed copy of the MP that contains the form customization, so you can edit it 
    the original key used to seal the current customization, so you can seal the upgraded form using the same key so it will upgrade the MP correctly in your production environment.
    The specific error you're running into looks like a MP reference error, but it's hard to be sure without seeing the original XML. i'd make sure that you have opened the sealed versions of any other MPs this MP depends upon. 

  • PLS-00428 Error when creating a new trigger

    Hi,
    I'm encountering the PLS-00428 error when I run the script below.
    CREATE OR REPLACE TRIGGER TIBCOUSER.po_response_trigger
    BEFORE INSERT ON po_response FOR EACH ROW
    BEGIN
    IF:NEW.ariba_processsequence is null then
    SELECT pttransid AS pttransid, 'Product Test Pass 1' AS pttransname, aribaorderid AS aribaorderid, '0' AS errorcode, '' AS MESSAGE, SYSDATE AS ariba_insertdate
    FROM po_request
    WHERE adb_l_delivery_status = 'N';
    UPDATE po_request
    SET adb_l_delivery_status = 'C'
    WHERE adb_l_delivery_status = 'N';
    END IF;
    END;
    Can someone point out what is missing or what is wrong with the script? Any help would be much appreciated.
    Regards,
    Jigger

    Hi Jigger,
    I was able to create the trigger using the script below.That's nice, you got the trigger created. Below is your trigger, I have added some comments.
    create or replace trigger tibcouser.po_response_trigger
       before insert or update
       on po_response
       for each row
    declare
      -- 1. These variables should really be anchored to po_response
      -- 2. They should be named differently than columns in po_response
      -- 3. It seems that you don't need them (See 7.)
       pttransid               integer := null;
       pttransname             varchar2(255) := null;
       aribaorderid            varchar2(255) := null;
       errorcode               integer := null;
       message                 varchar2(255) := null;
       ariba_insertdate        date := null;
       adb_l_delivery_status   char(1) := null;
    begin
      -- 4. This is never true, since adb_l_delivery_status is null, here
          -- So, I guess your trigger never does anything, so in a sense it works
       if (adb_l_delivery_status = 'N')
       then
        -- 5. This select  will raise too_many_rows, when there is more than one record in po_response.
        -- 6. It seems you will have a problem with mutating table
        -- 7. The select doesn't do anything, you never use any of the values selected
        -- 8. The select is confusing, since variables are named equally to columns
        -- 9. You select constants, why not just assign them right away
        select pttransid
                ,pttransname
                ,aribaorderid
                ,'0'
                ,sysdate
            into pttransid
                ,pttransname
                ,aribaorderid
                ,errorcode
                ,message
                ,ariba_insertdate
            from po_response;
          -- 10. This update will update ALL records in po_request, probably not what you want.
          update po_request
             set adb_l_delivery_status = 'C';
       end if;
    -- 11. Good practise dictates end po_response_trigger;
    end;
    /In general, when you think your post has been answered, then kindly mark it as such.
    Regards
    Peter

  • Approval workflow error when creating a new custom entity in FIM 2010 R2

    Hello,
    i'm hoping somebody here can help, me i've been struggling with this for some time now. On a fresh FIM installation i create a custom entity named "Role" and add a few custom attributes.
    I then create an approval workflow and MPR for normal users to create entities of type Role, but another user must approve this request. The other user has a working mailbox - i've tried firing an action workflow that sends a mail notification when someone
    creates a new role and it is working fine. But, when i enable my approval workflow (the only field i changed from default is the approver) on the MPR, the workflow always failes with the message:
    Error processing your request: The operation was rejected because of access control policies.
    Reason: The server workflow rejected the operation.
    Attributes:
    Correlation Id: 750a558a-d3e4-4216-b16a-e76d79f011ec
    Request Id: feaabbc9-dea4-49a3-8b29-65b77de6f8fd
    Details: The Workflow Instance '04202cc0-14a3-410c-a3fc-2d6e5d25ebe6' encountered an internal error during processing. Contact your system administrator for more information.
     I enabled tracing and this is what i found:
    Microsoft.ResourceManagement Verbose: 0 : Creating WorkflowServiceHost for XOML Definition:\n<ns0:SequentialWorkflow ActorId="00000000-0000-0000-0000-000000000000" RequestId="00000000-0000-0000-0000-000000000000" x:Name="SequentialWorkflow"
    TargetId="00000000-0000-0000-0000-000000000000" WorkflowDefinitionId="00000000-0000-0000-0000-000000000000" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/workflow"
    xmlns:ns1="clr-namespace:System.Workflow.Activities;Assembly=System.WorkflowServices, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856
        ThreadId=8
        DateTime=2013-09-04T15:17:10.0496188Z
    Microsoft.ResourceManagement Information: 1 : 1 :  : Invalid Element 'ReceiveActivity.WorkflowServiceAttributes' found while deserializing an object of type 'Microsoft.ResourceManagement.Workflow.Activities.ApprovalActivity'.
        ThreadId=8
        DateTime=2013-09-04T15:17:10.1277486Z
    Microsoft.ResourceManagement Information: 1 : 1 :  : Invalid data found while deserializing an object of type 'Microsoft.ResourceManagement.Workflow.Activities.ApprovalActivity'.
        ThreadId=8
        DateTime=2013-09-04T15:17:10.1277486Z
    Microsoft.ResourceManagement Verbose: 0 : A WorkflowRuntime is not available for this WorkflowDefinitionVersionKey '20'.
        ThreadId=8
        DateTime=2013-09-04T15:17:10.1277486Z
    Microsoft.ResourceManagement Error: 3 : Workflow host activation failed for workflow definition id : 231457c6-d044-4cc7-839f-98e5cf88f514, version key: 20. Exception: Object reference not set to an instance of an object.   at Microsoft.ResourceManagement.Workflow.Hosting.HostActivator.ActivateHost(ResourceManagementWorkflowDefinition
    workflowDefinition, Boolean suspendWorkflowStartupAndTimerOperations)
       at Microsoft.ResourceManagement.Workflow.Hosting.HostActivator.RetrieveWorkflowDataForHostActivator()
        ThreadId=8
        DateTime=2013-09-04T15:17:10.1277486Z
    Microsoft.ResourceManagement Information: 1 : The service has updated the list of active hosted workflow definitions to sequence number '1'.
    This happened on two separate FIM deployments, but both of them were set up in the same way. What am i missing here?
    Thank you,
    Martin

    (...) What am i missing here? (...) - Sharepoint 2013 and probable bug in FIM related to it. Check this thread for workaround
    and resolution:
    http://social.technet.microsoft.com/Forums/en-US/1b76672d-1276-4c71-b9fc-5bb1fcb36877/event-id-3-with-approval-activity?forum=ilm2
    Tomek Onyszko, memberOf Predica FIM Team (http://www.predica.pl), IdAM knowledge provider @ http://blog.predica.pl

  • Error when creating a new user_id

    Hi, i am using this code to create a new user
    begin
    fnd_user_pkg.createuser
    (x_user_name => 'myappuser',
    x_owner => 'CUST',
    x_unencrypted_password => 'genius2011',
    x_start_date => sysdate,
    x_end_date => NULL,
    x_description => null,
    x_password_date => sysdate,
    x_password_lifespan_days => 45,
    x_email_address => null,
    x_employee_id => 1336
    end;
    in deed, the user_name is new and the employee_id has no user.
    i got a warning message: "the user name is already in use" and when i try to save a new user name with the user definition form i got this message "APP-FND-01206: This record already exists. You have entered a duplicate value or sequence of values that must be unique for every record be unique"

    could you please take a look
    Error que empieza en la línea 1 del comando:
    begin
    fnd_user_pkg.createuser
    (x_user_name => 'ADRIANA.GARCIAC',
    x_owner => 'CUST',
    x_unencrypted_password => 'welcome1',
    x_start_date => sysdate,
    x_end_date => NULL,
    x_description => null,
    x_password_date => sysdate,
    x_password_lifespan_days => 45,
    x_email_address => null,
    x_employee_id => 13366
    end;
    Informe de error:
    ORA-20001: APP-FND-02600: Unable to create user ADRIANA.GARCIAC due to the following reason(s):
    This user name is already in use. Please enter a unique user name..
    ORA-06512: at "APPS.APP_EXCEPTION", line 72
    ORA-06512: at "APPS.FND_USER_PKG", line 1150
    ORA-06512: at "APPS.FND_USER_PKG", line 1196
    ORA-06512: at "APPS.FND_USER_PKG", line 1315
    ORA-06512: at line 2
    i searched ADRIANA.GARCIAC in EBS users , it does not exist.
    now, I think the FND_USER_PKG is corrupted
    Edited by: jbaltodano on Aug 7, 2011 10:00 AM

  • Error when creating a new user

    Hi all
    When I try to create a new user I'm getting an error message Unknown message (ID = LOWERCASE_REQUIRED)
    I entered all the required fields in the way it was defined and still I get this error.
    I never had this problem before. Can anyone please help me with this issue.
    Thanks
    regards
    Luke

    Hi
    Go to visual admin >> services >> UME Provider >> check the property default value is for ume.logon.security_policy.userid_lowercase
    Hope it solve the problem
    Cheers
    Jawahar Govindaraj
    PS:Reward pts

  • Error when creating a new Portfolio

    Hi guys,
    When I try to create a new Portfolio, I get the following error message:
                   "The value of the mandatory input field Portfolio Type is initial"
    This error occurs in spite of the field being populated with a valid Portfolio Type.
    Can anyone advise what is causing this error, please?
    Regards,
    Richard Cook

    Hi Richard,
    I have never seen this error. Are you using a custom portfolio type or one that is configured in PPM by default (ADM, IT...) ?
    Check this using for example ADM .....but realy your issue it is very extrange,
    Other thing you can do is create the protfolio using transaction  RPM_DX_PORTFOLIO.
    I hope this can be useful
    Regards,
    Sara

  • Running into strange errors when creating a new instance

    Hello:
    I am running 9.2.0.8 on a Windows 2003 Server.
    When I try to create a new instance, I chose a New Database/UTF-8/16KB Block Size. Everything else was default value. However, I get a "ORA-29807: specified operator does not exist" error. When I looked into the Create log file, the file, CreateDBCatalog.log has the following errors:
    No errors.
    No errors.
    drop table AUDIT_ACTIONS
    ERROR at line 1:
    ORA-00942: table or view does not exist
    No errors.
    CREATE ROLE exp_full_database
    ERROR at line 1:
    ORA-01921: role name 'EXP_FULL_DATABASE' conflicts with another user or role name
    CREATE ROLE imp_full_database
    ERROR at line 1:
    ORA-01921: role name 'IMP_FULL_DATABASE' conflicts with another user or role name
    drop table system.logstdby$skip_support
    ERROR at line 1:
    ORA-00942: table or view does not exist
    Warning: View created with compilation errors.
    Warning: View created with compilation errors.
    CREATE ROLE exp_full_database
    ERROR at line 1:
    ORA-01921: role name 'EXP_FULL_DATABASE' conflicts with another user or role name
    CREATE ROLE imp_full_database
    ERROR at line 1:
    ORA-01921: role name 'IMP_FULL_DATABASE' conflicts with another user or role name
    drop synonym DBA_LOCKS
    ERROR at line 1:
    ORA-01434: private synonym to be dropped does not exist
    drop view DBA_LOCKS
    ERROR at line 1:
    ORA-00942: table or view does not exist
    No errors.
    drop package body sys.diana
    ERROR at line 1:
    ORA-04043: object DIANA does not exist
    drop package sys.diana
    ERROR at line 1:
    ORA-04043: object DIANA does not exist
    drop table sys.pstubtbl
    ERROR at line 1:
    ORA-00942: table or view does not exist
    drop package body sys.diutil
    ERROR at line 1:
    ORA-04043: object DIUTIL does not exist
    drop package sys.diutil
    ERROR at line 1:
    ORA-04043: object DIUTIL does not exist
    drop procedure sys.pstubt
    ERROR at line 1:
    ORA-04043: object PSTUBT does not exist
    drop procedure sys.pstub
    ERROR at line 1:
    ORA-04043: object PSTUB does not exist
    drop procedure sys.subptxt2
    ERROR at line 1:
    ORA-04043: object SUBPTXT2 does not exist
    drop procedure sys.subptxt
    ERROR at line 1:
    ORA-04043: object SUBPTXT does not exist
    No errors.
    No errors.
    No errors.
    No errors.
    drop type dbms_xplan_type_table
    ERROR at line 1:
    ORA-04043: object DBMS_XPLAN_TYPE_TABLE does not exist
    drop type dbms_xplan_type
    ERROR at line 1:
    ORA-04043: object DBMS_XPLAN_TYPE does not exist
    No errors.
    DROP TABLE ODCI_SECOBJ$
    ERROR at line 1:
    ORA-00942: table or view does not exist
    DROP TABLE ODCI_WARNINGS$
    ERROR at line 1:
    ORA-00942: table or view does not exist
    No errors.
    No errors.
    No errors.
    No errors.
    drop sequence dbms_lock_id
    ERROR at line 1:
    ORA-02289: sequence does not exist
    drop table dbms_alert_info
    ERROR at line 1:
    ORA-00942: table or view does not exist
    No errors.
    No errors.
    No errors.
    No errors.
    No errors.
    No errors.
    No errors.
    No errors.
    No errors.
    No errors.
    No errors.
    No errors.
    No errors.
    No errors.
    No errors.
    No errors.
    No errors.
    No errors.
    No errors.
    No errors.
    No errors.
    No errors.
    No errors.
    drop table SYSTEM.AQ$_Internet_Agent_Privs
    ERROR at line 1:
    ORA-00942: table or view does not exist
    drop table SYSTEM.AQ$_Internet_Agents
    ERROR at line 1:
    ORA-00942: table or view does not exist
    No errors.
    No errors.
    No errors.
    No errors.
    No errors.
    No errors.
    No errors.
    No errors.
    No errors.
    DROP SYNONYM def$_tran
    ERROR at line 1:
    ORA-01434: private synonym to be dropped does not exist
    DROP SYNONYM def$_call
    ERROR at line 1:
    ORA-01434: private synonym to be dropped does not exist
    DROP SYNONYM def$_defaultdest
    ERROR at line 1:
    ORA-01434: private synonym to be dropped does not exist
    DBMS_DEBUG successfully loaded.
    PBUTL     successfully loaded.
    PBRPH     successfully loaded.
    PBSDE     successfully loaded.
    PBREAK     successfully loaded.
    DROP TYPE SYS.RewriteMessage FORCE
    ERROR at line 1:
    ORA-04043: object REWRITEMESSAGE does not exist
    DROP TYPE SYS.RewriteArrayType FORCE
    ERROR at line 1:
    ORA-04043: object REWRITEARRAYTYPE does not exist
    DROP TYPE SYS.ExplainMVMessage FORCE
    ERROR at line 1:
    ORA-04043: object EXPLAINMVMESSAGE does not exist
    DROP TYPE SYS.ExplainMVArrayType FORCE
    ERROR at line 1:
    ORA-04043: object EXPLAINMVARRAYTYPE does not exist
    No errors.
    drop view sys.transport_set_violations
    ERROR at line 1:
    ORA-00942: table or view does not exist
    drop table sys.transts_error$
    ERROR at line 1:
    ORA-00942: table or view does not exist
    No errors.
    No errors.
    No errors.
    No errors.
    No errors.
    No errors.
    No errors.
    No errors.
    No errors.
    No errors.
    No errors.
    No errors.
    No errors.
    No errors.
    No errors.
    No errors.
    No errors.
    No errors.
    No errors.
    No errors.
    No errors.
    No errors.
    No errors.
    No errors.
    No errors.
    No errors.
    No errors.
    No errors.
    drop operator XMLSequence
    ERROR at line 1:
    ORA-29807: specified operator does not exist
    What does this mean?
    venki
    Edited by: thevenkat on Mar 11, 2009 10:17 PM

    Venki,
    The ORA-00942 is okay because there is no existing object. But what stuck me is the ORA-01921 error which may indicate that this might not be a new database.
    CREATE ROLE exp_full_database
    ERROR at line 1:
    ORA-01921: role name 'EXP_FULL_DATABASE' conflicts with another user or role name
    CREATE ROLE imp_full_database
    ERROR at line 1:
    ORA-01921: role name 'IMP_FULL_DATABASE' conflicts with another user or role name
    Are there any existing databases on this server? Have you tried to create it on other machine?I searched on Metalink too and found Doc ID: 237486.1 ORA-29807 Signalled While Creating Database using DBCA which say that eroror could be ignored. You may want to review that as well.
    Ittichai

  • Error when creating a new Organization in Deployment Manager

    I am trying to create a new Organization to an existing CRM environment and I keep getting the error below. The user deploying the new Organization has full control on all the security groups and Admin rights on the servers that Host SQL and CRM
    application. The CRM environment is 2011 on Premise that has been setup for IFD.
    We currently have 2 other organizations that are already in the environment, so the new org would be a third. I am more than glad to provide any firther information that I have to anyone that can help us resolve this issue. I also have a log file that I
    saved after the failed creation attempt. I can provide the contents of the log file to anyoen who can help. Its too long to add here.
    The section of the log file that shows the error is just above the screen shot. It looks like a deletion error. My queston is why is there an attempt at deleting anything if all I am trying to do is create a new Organization. This is not an import or
    upgrade.
    15:03:16|  Error| System.Exception: Action Microsoft.Crm.Tools.Admin.ImportDefaultDataAction failed. ---> Microsoft.Crm.BusinessEntities.CrmObjectNotFoundException: No object matched the query: delete from [ConnectionRoleObjectTypeCodeBase]
     OUTPUT DELETED.[ConnectionRoleObjectTypeCodeId], 3233
     into SubscriptionTrackingDeletedObject (ObjectId, ObjectTypeCode)
     where ([ConnectionRoleObjectTypeCodeId] = '952fda76-2f70-e411-bfa3-005056b10f95')

    Hi All,
    I am also getting similar error 
    Microsoft.Crm.BusinessEntities.CrmObjectNotFoundException: No object matched the query: 
    delete from [CustomerAddressBase]
    OUTPUT DELETED.[CustomerAddressId], 1071
    into SubscriptionTrackingDeletedObject (ObjectId, ObjectTypeCode)
    where ([CustomerAddressId] = 'fbb57633-a54f-e411-80ca-005056947598')
    I am getting this error when I am trying to delete all existing customer address and then try to create a new address for a customer.
    So its a kind of blanket update to all existing one replaced with new one.
    Please let me know if any one having solution to this 

  • Error when creating a new project in sharepoint

    I am getting this error "Failed to create site. A duplicate field name "workflow_history" was found" when I am creating a new project on share point.
    Can someone help me identify and fix this issue exactly.

    Check if below helps
    http://zimmergren.net/technical/sp-2013-duplicate-field-name-was-found-after-upgrading-your-sharepoint-2010-solutions
    http://jshidell.com/tag/finding-a-duplicate-field-name-was-found-error-in-sharepoint-2010/
    http://www.sharepointassist.com/2011/11/05/a-duplicate-field-name-x-was-found/

  • Error when create a new Project

    Hi all
    When I create a new Project, system appear:
    "No settlement rule exists for object number PD00000035
    Message no. KD023
    Diagnosis
    There is no settlement rule for object PD00000035.
    Procedure
    Please enter an object for which there is a settlement rule."
    Could you please tell me about this error and how to repair.
    Regards,
    Thang

    Maintain settlement rule for the object. It seems as per the settlement profile, settlement is mandatory.
    Select object in CJ20N and press CTRL+F3...maintain the distribution rule.
    Venkat

  • Error when creating a new Data Source

    All, This is on BI Publisher 11g.
    When I create a new data source and supply password and then click "Apply" button on top right corner, i get following error
    Error 500--Internal Server Error
    From RFC 2068 Hypertext Transfer Protocol -- HTTP/1.1:
    10.5.1 500 Internal Server Error
    The server encountered an unexpected condition which prevented it from fulfilling the request.
    what am i doing wrong?
    Thank you for reading this post.
    Thanks,
    R

    The schema/user is system and the password is alpha-numeric, upper/lower case, no special char ...
    As a workaround I was able to add the password to the entry in the datasources.xml file and restarted BI Pub.
    The JDBC is working ... I can test the connection successfully ... just wont save the entry
    Edited by: tread on Oct 17, 2011 11:55 AM

  • Error when creating a new JMS connection factory in GlassFish V3 b57

    When I use the admin console and try to create a new JMS connection factory in GlassFish V3 b57, the operation fails with the error message
    An error has occurred: Can't find ConfigModel.Property for attr -connection-validation-required on interface com.sun.enterprise.config.serverbeans.ConnectorConnectionPool
    Should I better report this in the GlassFish news forum (http://forums.java.net/jive/forum.jspa?forumID=56&start=0)?
    p.s. I launch the admin console from within NetBeans 6.7.1 (the server started before the IDE). WIth version b 56, creating a JMS connection factory worked fine.
    Best regards,
    Michael Justin

    This bug does not apear in the nightly build (b58) now so everything looks fine again.
    Greetings,
    Michael

  • User getting error when creating a new Document Library

    The user is getting the following error when trying to create a new Document Library in SharePoint 2010:
    Error
    Cannot complete this action.
    Please try again.
    Correlation ID: 37ecd5eb-6129-4fa3-84bd-c6f0ad8115d5
    Has anyone come across this error and know how to resolve it?

    Hi,
    According to your post, my understanding is that the user could not create a document library.
    To narrow down whether the issue is related to the user permission, you can check which permission the user has.
    You can also assign the user full control to check whether it works.
    What’s more, did the issue occur in other sites? You can check with other sites or create a new site to check whether it works. Maybe the site has been corrupted.
    To quickly and accurately find the issue, I recommend you can check the event log and ULS log to see if anything unexpected occurred.
    For SharePoint 2010, by default, ULS log is at
    C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\LOGS
    You can check the ULS log by the methods here:
    http://blogs.msdn.com/b/opal/archive/2009/12/22/uls-viewer-for-sharepoint-2010-troubleshooting.aspx
    http://msdn.microsoft.com/en-us/library/gg193966(v=office.14).aspx
    Thanks & Regards,
    Jason
    Jason Guo
    TechNet Community Support

Maybe you are looking for

  • How do I upload my music from my iPhone 3G to my iTunes account on a computer with Windows 7?

    How do I upload my music from my iPhone 4 to my iTunes account on a computer operting Windows 7 (computer A)?  All of my music is in my iTunes account on another computer operating Windows 7 (computer b), but I can't seem to get my iTunes account on

  • Anchored graphics in margin intruding into text column

    I am creating what is basically a textbook chapter, two columns of text and a wide margin away from the spine. I am positioning some notes in the margin, but also some graphics. Some of the graphics need to be big enough that they intrude into the te

  • External Displays not working

    My 1.67 PB suddenly stopped recognizing any external display devices I have plugged in. I have tried both the S-Video and the DVI and have repeatedly clicked "Detect Displays"... nothing. With the DVI connection, the PB screen flashes blue for a seco

  • OnMouseWheelMoved - Forward/Backward?

    This may be an elementary question but how can I tell if the mouse-wheel is being moved in a forward or backward motion (for a scrollbar)? I checked the JavaFX API but I didn't see anything specific on this,... or I've completely missed it. Thank you

  • Australia map eclipse

    Hi all, I was hoping someone had some time to quickly help me. I need to have an animated eclipse effect around a map of australia. I can do an awesome one using a sphere and flash. I have a black bacjground, then a black sphere. http://www.antistand