Process Assistance Needed: Internal or International Repair RMA Service Job

Currently implemented in 11.5.9 and using basic Service apps (Installed Base, Service Contracts, Teleservice, Service Request, Depot Repair). I am looking for information on processing International between two company sites with the item coming from a customer site in the local area. I'm looking for basic processes and or set-ups needed to Create SR/RO in one country and forward to another company location in another country.
Basic Scenario:
- Customer contacts local company site A, company site A sets up RMA for return. Item is returned and received in local country site A.
- Determination is made service to be completed at other site B in different country. Local country site A creates ???? and ships to International country site B for service.
- International country site B receives item, services it, and ships back to local country site A.
- Local country site A receives item back and then ships and invoices customer.
In a previous system we completed this with an RMA/IRMA (Internal Return Material Authorization) combination. I understand the Oracle Inter-Organizational Transfer, but this does not meet the business requirement. Looking for other alternatives that folks have employed.

Raymond,
This sounds like a potentially complex situtation when some global sales organizations sell products in a way that is not consistent with expected Lenovo product distribution and support.
For example, US direct sales will not sell and ship internationally.
International warranty applies for many products, and the coverage (what countries you can get service in) varies by the product type.  The intent is that we provide service where the product is sold.
Service in the US will generally expect to receive units from customers who are based in the US and will ship back to the same location. I don't believe we will ship to a freight forward due to risk of loss and potential fraud.
I'm looking at our international warranty page and don't see the mixx 2 8 listed at all, which is odd.
Let me look into this.
Mark
ThinkPads: S30, T43, X60t, X1, W700ds, IdeaPad Y710, IdeaCentre: A300, IdeaPad K1
Mark Hopkins
Program Manager, Lenovo Social Media (Services)
twitter @lenovoforums
English Community   Deutsche Community   Comunidad en Español   Русскоязычное Сообщество

Similar Messages

  • How to do parallel processing with dynamic internal table

    Hi All,
    I need to implement parallel processing that involves dynamically created internal tables. I tried doing so using RFC function modules (using starting new task and other such methods) but didn't get success this requires RFC enabled function modules and at the same time RFC enabled function modules do not allow generic data type (STANDARD TABLE) which is needed for passing dynamic internal tables. My exact requirement is as follows:
    1. I've large chunk of data in two internal tables, one of them is formed dynamically and hence it's structure is not known at the time of coding.
    2. This data has to be processed together to generate another internal table, whose structure is pre-defined. But this data processing is taking very long time as the number of records are close to a million.
    3. I need to divide the dynamic internal table into (say) 1000 records each and pass to a function module and submit it to run in another task. Many such tasks will be executed in parallel.
    4. The function module running in parallel can insert the processed data into a database table and the main program can access it from there.
    Unfortunately, due to the limitation of not allowing generic data types in RFC, I'm unable to do this. Does anyone has any idea how to implement parallel processing using dynamic internal tables in these type of conditions.
    Any help will be highly appreciated.
    Thanks and regards,
    Ashin

    try the below code...
      DATA: w_subrc TYPE sy-subrc.
      DATA: w_infty(5) TYPE  c.
      data: w_string type string.
      FIELD-SYMBOLS: <f1> TYPE table.
      FIELD-SYMBOLS: <f1_wa> TYPE ANY.
      DATA: ref_tab TYPE REF TO data.
      CONCATENATE 'P' infty INTO w_infty.
      CREATE DATA ref_tab TYPE STANDARD TABLE OF (w_infty).
      ASSIGN ref_tab->* TO <f1>.
    * Create dynamic work area
      CREATE DATA ref_tab TYPE (w_infty).
      ASSIGN ref_tab->* TO <f1_wa>.
      IF begda IS INITIAL.
        begda = '18000101'.
      ENDIF.
      IF endda IS INITIAL.
        endda = '99991231'.
      ENDIF.
      CALL FUNCTION 'HR_READ_INFOTYPE'
        EXPORTING
          pernr           = pernr
          infty           = infty
          begda           = '18000101'
          endda           = '99991231'
        IMPORTING
          subrc           = w_subrc
        TABLES
          infty_tab       = <f1>
        EXCEPTIONS
          infty_not_found = 1
          OTHERS          = 2.
      IF sy-subrc <> 0.
        subrc = w_subrc.
      ELSE.
      ENDIF.

  • Making processing on an internal table generic

    Hi,
    I'm trying to make more generic a processing on an internal table.
    Here's the idea :
    "DELETE FROM TABLE T_VBAP every lines that do not exist IN table T_VBAK USING column VBELN for comparison"
    You can see below the (not generic) version of this function.
    I'd like to make it more generic.
    It would be called this way :
         PERFORM reduire USING t_vbak t_vbap 'VBELN' 'vbak-vbeln'.
    with the following code.
    Here is my question :
    How can I make the last statement generic too ?
      DELETE <table_travail> WHERE (column) NOT IN <fs_tab> won't work...
    Thanks a lot !
    Jessie
    Non-generic version :
    FORM reduire.
      DATA : liste_vbeln type range of vbak-vbeln,
                   line_vbeln TYPE LINE OF liste_vbeln,
                   lt_vbak TYPE TABLE OF ts_vbak,
                   lt_vbap TYPE ts_vbak.
      lt_vbak = t_vbak.
      SORT lt_vbak BY vbeln.
      DELETE ADJACENT DUPLICATES FROM lt_vbak COMPARGIN vbeln.
      line_vbeln-sign = 'I'.
      line_vbeln-option = 'EQ'.
      LOOP AT lt_vbak INTO ls_vbak.
        line_vbeln-low = ls_vbak-vbeln.
        APPEND line_vbeln TO liste_vbeln.
      ENDLOOP.
      IF liste_vbeln IS INITIAL.
         CLEAR t_vbap.
      ELSE.
        DELETE t_vbap WHERE vbeln NOT IN liste_vbeln.
      ENDIF.
    ENDFORM.
    Generic version :
    FORM reduire USING  p_reference STANDARD TABLE
                        p_travail TYPE STANDARD TABLE
                             column TYPE lvc_name
                             column_type TYPE string.
         FIELD-SYMBOLS <table_reference> TYPE STANDARD TABLE.
         FIELD-SYMBOLS <table_reference_copy> TYPE STANDARD TABLE.
         ASSIGN p_reference to <table_reference>.
         FIELD-SYMBOLS <table_travail> TYPE STANDARD TABLE.
         ASSIGN p_travail to <table_travail>.
         FIELD-SYMBOLS <table_reference_fields> TYPE ANY.
         DATA gs_fldname TYPE REF TO DATA.
         CREATE DATA gs_fldname LIKE LINE OF <table_reference>.
         ASSIGN gs_fldname->* TO <table_reference_fields>.
         DATA position TYPE i.
         DATA dyn_table TYPE REF TO DATA.
         DATA wa_fieldcat TYPE lvc_s_fcat.
         DATA it_fieldcat TYPE lvc_t_fcat.
         DATA table_reference_copy_pre TYPE REF TO DATA.
         DATA l_descr_ref TYPE REF TO cl_abap_structdescr.
         FIELD-SYMBOLS <ls_tab> TYPE ANY.
         FIELD-SYMBOLS <field> TYPE ANY.
         FIELD-SYMBOLS <lfs_comp_wa> TYPE abap_compdescr.
         l_descr_ref ?= cl_abap_typedescr=>describe_by_data( <table_reference_fields> ).
         LOOP AT l_descr_ref->components[] ASSIGNING <lfs_comp_wa>.
              IF <lfs_comp_wa>-name = column.
                   position = sy-tabix.
              ENDIF.
              CLEAR wa_fieldcat.
              wa_fieldcat-fieldname = <lfs_comp_wa>-name.
              wa_fieldcat-datatype  = <lfs_comp_wa>-type_kind.
              wa_fieldcat-inttype   = <lfs_comp_wa>-type_kind.
              wa_fieldcat-intlen    = <lfs_comp_wa>-length / 2.
              wa_fieldcat-decimals  = <lfs_comp_wa>-decimals.
              APPEND wa_fieldcat TO it_fieldcat.
         ENDLOOP.
         CALL METHOD cl_alv_table_create=>create_dynamic_table
              EXPORTING
                   it_fieldcatalog = it_fieldcat
              IMPORTING
                   ep_table = table_reference_copy_pre.
         ASSIGN table_reference_copy_pre->* TO <table_reference_copy>.
         <table_reference_copy> = p_reference.
         SORT <table_reference_copy> BY (column).
         DELETE ADJACENT DUPLICATES FROM <table_reference> COMPARING (column).
         DATA :
              gr_structdescr TYPE REF TO cl_abap_structdescr,
              gr_tabledescr TYPE REF TO cl_abap_tabledescr,
              gr_datadescr TYPE REF TO cl_abap_datadescr,
              gr_typedescr TYPE REF TO cl_abap_typedescr,
              gt_components TYPE abap_component_tab,
              gw_component TYPE LINE OF abap_component_tab,
              gr_wa TYPE REF TO DATA,
              gr_tab TYPE REF TO DATA.
         FIELD-SYMBOLS :
              <fs_wa> TYPE ANY,
              <fs_tab> TYPE TABLE.
         MOVE 'SIGN' to gw_component-name.
         gw_component-type ?= cl_abap_elemdescr=>get_c( p_length = 1 ).
         INSERT gw_component INTO TABLE gt_components.
         MOVE 'OPTION' to gw_component-name.
         gw_component-type ?= cl_abap_elemdescr=>get_c( p_length = 2 ).
         INSERT gw_component INTO TABLE gt_components.
         MOVE 'LOW' to gw_component-name.
         gw_component-type ?= cl_abap_elemdescr=>describe_by_name( column_type ).
         INSERT gw_component INTO TABLE gt_components.
         MOVE 'HIGH' to gw_component-name.
         gw_component-type ?= cl_abap_elemdescr=>describe_by_name( column_type ).
         INSERT gw_component INTO TABLE gt_components.
         gr_structdescr ?= cl_abap_structdescr=>create( gt_components ).
         CREATE DATA gr_wa TYPE HANDLE gr_structdescr.
         ASSIGN gr_wa->* to <fs_wa>.
         gr_datadescr ?= gr_structdescr.
         gr_tabledescr ?= cl_abap_tabledescr=>create( gr_datadescr ).
         CREATE DATA gr_tab TYPE HANDLE gr_datadescr.
         ASSIGN gr_tab->* TO <fs_tab>.
         LOOP AT <table_reference> ASSIGNING <ls_tab>.
              ASSIGN COMPONENT position OF STRUCTURE <ls_tab> to <field>.
              CONCATENATE 'IEQ' <field> INTO <fs_wa>.
              APPEND <fs_wa> TO <fs_tab>.
         ENDLOOP.
         DELETE t_vbap WHERE vbeln NOT IN <fs_tab>.
    ENDFORM.

    Hello Jessie,
    Which ABAP Release are you working on? Dynamic WHERE conditions for LOOP AT itab, MODIFY itab, and DELETE itab statements are possible from Release 702.
    Even if you're on 702, the statement DELETE <table_travail> WHERE (column) NOT IN <fs_tab> won't work! You need to change your coding to:
    DATA lv_dyn_cond TYPE string.
    CONCATENATE column `NOT IN` `<FS_TAB>` INTO lv_dyn_cond SEPARATED BY space.
    DELETE <table_travail> WHERE (lv_dyn_cond).
    BR,
    Suhas

  • Unable to process message with internal message

    I am trying to find more information about this error I see in the App log. There are thousands of entries with different message IDs.
    I have searched Google/Technet and cannot find anything that references this error message. Does anyone have any pointers on where to go to find the account causing this?
    Source: MSExchange Messaging Policies
    Event ID: 8208
    Task Category: RedirectionAgent
    Unable to process message with internal message ID: XXXXXX. Mailbox System.Object[]'s ForwardingSmtpAddress %3 isn't valid. Active Directory may have been damaged.

    I have just started and taken over for the previous admin so am still learning the setup as well.
    We have 3 Exchange 2010 servers (2 in the same location and one remote), all 3 have the same errors in event logs with varying message ids. Only 2 transport rules (One for large attachments and one to add a disclaimer) and both appear to be working correctly.
    I was hoping to find a way to track down more information about the message based on the ID to see if I can find any similarities but have not found a way. I have found how to find the message ID based on sender/recipient/etc. but not the other way.

  • 关于CRM service process 和 R/3的internal order.

    这是我最近做的一个问题,觉得比较有意思,拿来和大家分享一下啊。
    客户做了一个service order,有两个items.当他保存这个order的时候,R/3那边就会生成一个internal order,(这个是和
    co 相连的,也就是co那边要做cost analyse) 然后,他又根据这个service order做了一个service confirmation,在完全copy service order的明细之后,又追加了一个新的费用或者spare item, 保存之后,他发现有产生了一个新的internal order,the system do not post to the internal order of the originating document.
    我跟开发确认过,这个是因为如果客户追加的明细是一个 'unplanned' item- by this I mean that there is no reference to another item, specifically a complaint item. In this case, the system creates a new internal order. This is standard bahaviour.
    The second internal order is created because the spare part is added
    manually and no reference exists to the predecessor document/item.
    If you clicked on the copy item in the follow-up then this would have a link to the pre-decessor document and
    only 1 internal order would be created.
    If you want to change this, you'll have to use the CRM_UPLOAD_CO BADI
    note 855906 is needed for the BADI to work correctly.
    In the method, you can ill the reference guid if it's empty, thus
    creating only 1 internal order.
    本来还想写中文,实在太慢了,改英语了,希望大家不要介意啊。
    这块是关于service, 大家一起学习啊。
    谢谢。
    昭杰

    Good article! Maybe I will encounter related issue,thanks.

  • Has anyone had there ipod touch repaired or serviced through apple for a broken screen (internal) if so how long did it take to get it sent back

    has anyone had there ipod touch repaired or serviced through apple for a broken screen (internal) if so how long did it take to get it sent back

    Not really. Is say "pending"
    pend·ing 
    /ˈpendiNG/
    Adjective 
    Awaiting decision or settlement.
    Preposition
    Until (something) happens or takes place: "they were released on bail pending an appeal".
    Synonyms
    adjective. 
    pendent - undecided - unsettled - outstanding - pendant
    preposition. 
    during - until - till - to

  • I have a Galaxy S5 with Global International plan in place. My txt to Jamaica are not being received there, but others are. Is there a setting in my phone I need turned on? Verizon customer service doesn't have any answers.

    I have a Galaxy S5 with Global International plan in place. My txt to Jamaica are not being received there, but others are. I can receive the messages, but not send. I get an msg saying, message to (my daughters number) failed: Network problem. Is there a setting in my phone I need turned on? Verizon customer service doesn't have any answers.

    Hello ffdaisy!  I sure hope you're having a great time in Jamaica! I'm so sorry about your messages. Let's get going on a resolution! to clarify, are you able to receive messages? Can you send to the states, but not to numbers originating in Jamaica?  First, I want to let you know how to get in touch with our Global Support Team while outside the US. Just click here for the information: http://vz.to/18oaptS   Second, I'd like to provide you with the dialing pattern for messaging to US numbers, and Jamaica nunbers. For the US, dial 1, then the area code, then the 7-digit number. for Jamaica numbers, dial area code 876, then the 7-digit number. For more information, click here: vzw.com/international   Thanks so much, and have a great trip! ChristinaB_VZW Follow us on Twitter @VZWSupport If my response answered your question please click the "Correct Answer" button under my response. This ensures others can benefit from our conversation. Thanks in advance for your help with this!!

  • Need internal order document

    hi frnds
    i need internal documents. can anyone send me the internal order configuration & end user material? i shall be very greatful to u
    Regards
    Rajesh
    Moderator: Please, read and respect the rules of SDN forum

    Hi
    As far as my understanding goes, deletion of a Char for doc splitting should have no impact on the posted docs....
    Addition of a new char is always a pain w.r.t the posted docs, but deletion of a char for Doc splitting should not be an issue
    Br, Ajay M

  • I purchased my iphone 4s from US, my lock button is not working, I need to get it repaired in India. Please suggest

    I purchased my iphone 4s from US, my lock button is not working, I need to get it repaired in India. Please suggest

    There is nothing you can do except take it back to the US. The warranty is not international and no authorized service center will touch your US phone in India.

  • Replacement Needed. This iphone is not able to complete the activation process and needs to be replaced. Please visit your nearest apple store or authorized service center.

    Probably will never ever think of buying a locked phone from AT&T cause its one of the worst system integrations ever that these companies could think of.
    The entire problem started when I put in a request with at&t to unlock my iphone 4s (ios7) which did get approved. I performed the entire instructions they asked me to do, which is to backup and restore. After doing those instructions my iphone gave me an error message below
    The SIM card inserted in this iPhone does not appear to be supported.
    The SIM card that you currently installed in this iPhone is from a carrier that is not supported under the activation policy that is currently assigned by the activation server. This is not a hardware issue with the iPhone. Please insert another SIM card from a supported carrier or request that this iPhone be unlocked by your carrier. Please contact Apple for more information.
    Basically saying that at&t hasn't still unlocked the iphone which a really helpful apple executive was able to confirm. I initiated another unlock process from at&t in order to unlock the iphone, just to be sure that its not something wrong from my end. The nice at&t lady stayed on chat with me to unlock the iphone step my step while I was calling the apple tech too. And the apple tech confirmed again that the iphone is locked to at&t.
    Now, just a few minutes ago I tried another restore to see if any progress is being made and to my surprise I got an error message saying
    Replacement Needed. This iphone is not able to complete the activation process and needs to be replaced. Please visit your nearest apple store or authorized service center.
    I feel like I am just going around these two different "money hogger" companies which set certain rules and regulations to screw a regular phone buyer. I purchased this iphone in USA and trying to unlock in India, is it really this hard to simply unlock a device.
    For now I am going to try to call a apple office in india (apprently we don't have very many out here) and see if they can help me. But any other assistance regarding unlocking an iphone 4s would be helpful. I have however, tried checking IMEI.info, called up apple, talked to at&t (which always say go talk to apple) I do have a case number from apple as well in case an apple executive reads this discussion forum (case number: 566383594)
    Thanks

    You got a confirmation from AT&amp;T that it was authorized. Is this correct? - Yes i did get an email authorization on the 21st.
    Then you connected the phone to a computer with the latest version of iTunes installed. You clicked on the phone's name in iTunes, then clicked "Backup Now". - Yes
    When that finished you clicked "Restore iPhone" (NOT "Restore Backup") - Yes
    Are you with me so far? - Yes.
    And @ Varjak is right that after the 3rd restore I get the replacement error. 
    Plus I have NEVER jailbroken the iPhone. To give you another update, I spoke to a really nice apple tech in India who was atleast able to get me out of the replacement error by doing a recovery mode option. However, the lastest restore still gives me the same error
    The SIM card inserted in this iPhone does not appear to be supported.
    The SIM card that you currently installed in this iPhone is from a carrier that is not supported under the activation policy that is currently assigned by the activation server. This is not a hardware issue with the iPhone. Please insert another SIM card from a supported carrier or request that this iPhone be unlocked by your carrier. Please contact Apple for more information.
    Message was edited by: jabgars

  • SSAS Cube Processing Issue,Need Urgent Help...

    Hi Friends,
    Good Afternoon.
    I am processing the SSAs cube as it is failing with below error message.
    I have tried processing the cube by using XMLA script,Direct processing.
    <return xmlns="urn:schemas-microsoft-com:xml-analysis">
      <results xmlns="http://schemas.microsoft.com/analysisservices/2003/xmla-multipleresults">
        <root xmlns="urn:schemas-microsoft-com:xml-analysis:empty">
          <Exception xmlns="urn:schemas-microsoft-com:xml-analysis:exception" />
          <Messages xmlns="urn:schemas-microsoft-com:xml-analysis:exception">
            <Error ErrorCode="3238395904" Description="OLE DB error: OLE DB or ODBC error: Cannot execute the query &quot;SELECT     &#xA;
    CASE &#xA; WHEN charindex('.', [Name]) &gt; 0 THEN upper(substring([Name], 0, charindex('.', [Name]))) &#xA;
    ELSE Name &#xA; END COLLATE DATABASE_DEFAULT AS  PackageDownloadSourceName&#xA;
    , 'Notification Server' COLLATE DATABASE_DEFAULT AS PackageDownloadSourceType&#xA;
    FROM &#xA; vNotificationServerSource as vNotificationServerSource WITH (NOLOCK)&#xA;&#xA;
    UNION&#xA;&#xA; SELECT &#xA;
    DISTINCT &#xA; vc.Name COLLATE DATABASE_DEFAULT AS  PackageDownloadSourceName&#xA;
    , 'Package Server' COLLATE DATABASE_DEFAULT AS  PackageDownloadSourceType&#xA;
    FROM&#xA; vComputer AS vc WITH (NOLOCK)&#xA;
    INNER JOIN SWDPackageServer WITH (NOLOCK) ON vc.Guid = SWDPackageServer.PkgSvrId&#xA;&#xA;
    UNION&#xA;&#xA; SELECT     &#xA;
    PackageDownloadSourceName COLLATE DATABASE_DEFAULT AS PackageDownloadSourceName&#xA;
    , 'Non-Altiris Server' COLLATE DATABASE_DEFAULT AS PackageDownloadSourceType&#xA;
    FROM         &#xA;
    (SELECT &#xA; DISTINCT &#xA;
    CASE &#xA;
    WHEN charindex('//', [URL]) &gt; 0 THEN upper(substring(substring([URL], charindex('//', [URL]) + 2, len([URL]) - charindex('//', [URL]) - 1), 0, charindex('/', replace(substring([URL], charindex('//', [URL]) + 2, len([URL]) - charindex('//',
    [URL]) - 1), '.', '/')))) &#xA; WHEN charindex('\\', [URL]) &gt; 0 THEN upper(substring(substring([URL], charindex('\\', [URL]) + 2, len([URL]) - charindex('\\', [URL]) - 1), 0, charindex('\', replace(substring([URL],
    charindex('\\', [URL]) + 2, len([URL]) - charindex('\\', [URL]) - 1), '.', '\')))) &#xA;
    WHEN charindex('Multicast download complete. Master: ', [URL]) &gt; 0 THEN upper(substring([URL], charindex('Multicast download complete. Master: ', [URL]) + 37, len([URL]) - charindex('Multicast download complete. Master: ', [URL]) - 36)) &#xA;
    ELSE NULL &#xA; END COLLATE DATABASE_DEFAULT AS PackageDownloadSourceName&#xA;
    , 'Non-Altiris Server' COLLATE DATABASE_DEFAULT AS PackageDownloadSource...; 42000; The OLE DB provider &quot;SQLNCLI11&quot; for linked server &quot;ITANALYTICS_CMDB_SYMANTEC_CMDB_725_CZCHOWV319\SQL02_SYMANTEC_CMDB_3741&quot; reported
    an error. Execution terminated by the provider because a resource limit was reached.; 42000; OLE DB provider &quot;SQLNCLI11&quot; for linked server &quot;ITANALYTICS_CMDB_SYMANTEC_CMDB_725_CZCHOWV319\SQL02_SYMANTEC_CMDB_3741&quot; returned
    message &quot;Query timeout expired&quot;.; 01000." Source="Microsoft SQL Server 2012 Analysis Services" HelpFile="" />
            <Error ErrorCode="3240034316" Description="Errors in the OLAP storage engine: An error occurred while the dimension, with the ID of 'Package Download Source', Name of 'Package Download Source' was being processed."
    Source="Microsoft SQL Server 2012 Analysis Services" HelpFile="" />
            <Error ErrorCode="3240034317" Description="Errors in the OLAP storage engine: An error occurred while the 'Package Download Source Type' attribute of the 'Package Download Source' dimension from the 'IT Analytics'
    database was being processed." Source="Microsoft SQL Server 2012 Analysis Services" HelpFile="" />
            <Error ErrorCode="3238002695" Description="Internal error: The operation terminated unsuccessfully." Source="Microsoft SQL Server 2012 Analysis Services" HelpFile="" />
            <Error ErrorCode="3239837702" Description="Server: The current operation was cancelled because another operation in the transaction failed." Source="Microsoft SQL Server 2012 Analysis Services" HelpFile=""
    />
          </Messages>
        </root>
      </results>
    </return>
    Thank you very much for your Help.
    Regards,
    Reddeppa G

    Hi ReddeppaG2580,
    According to your description, you get the above error when processing a cube. Right?
    Based on the error message, the issue occurs on the dimension 'Package Download Source'. So check the involved tables and the query for this dimension. Check the attribute 'Package Download Source' in the dimension. If you still can't find some issue, try
    to recreate that dimension. Please refer to link below:
    Create a Dimension by Using an Existing Table
    If you have any question, please feel free to ask.
    Simon Hou
    TechNet Community Support

  • When will Apple bring the urgently needed Aperture 3.4-Repair-Update?

    After installing the Aperture-Update to Version 3.4 the App crashes unexpectedly by start and cannot restart after Database-Repair.
    When will Apple bring the urgently needed Aperture 3.4-Repair-Update?

    I am having the same problem. Here is the crash log.
    rocess:         Aperture [2285]
    Path:            /Applications/Aperture.app/Contents/MacOS/Aperture
    Identifier:      com.apple.Aperture
    Version:         3.4 (3.4)
    Build Info:      Aperture-301036000000000~1
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [179]
    User ID:         504
    Date/Time:       2012-09-22 21:43:52.503 -0500
    OS Version:      Mac OS X 10.8.2 (12C54)
    Report Version:  10
    Interval Since Last Report:          153586 sec
    Crashes Since Last Report:           11
    Per-App Interval Since Last Report:  194 sec
    Per-App Crashes Since Last Report:   10
    Anonymous UUID:                      E2C0D557-6915-DF12-D27D-22B6575C8BF3
    Crashed Thread:  3  Dispatch queue: com.apple.root.default-priority
    Exception Type:  EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Application Specific Information:
    *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '*** -[NSURL initWithScheme:host:path:]: path 1282424674 is not absolute.'
    terminate called throwing an exception
    abort() called
    Application Specific Backtrace 1:
    0   CoreFoundation                      0x00007fff919c90a6 __exceptionPreprocess + 198
    1   libobjc.A.dylib                     0x00007fff975fc3f0 objc_exception_throw + 43
    2   CoreFoundation                      0x00007fff919c8e7c +[NSException raise:format:] + 204
    3   Foundation                          0x00007fff8c05ede8 -[NSURL(NSURL) initWithScheme:host:path:] + 112
    4   PrintServices                       0x0000000105463c6d +[NSURL(ISNSURLExtensions) URLWithScheme:host:path:] + 61
    5   PrintServices                       0x0000000105463bef -[NSURL(ISNSURLExtensions) URLByAppendingPathComponent:] + 127
    6   FacebookPublisher                   0x0000000112ff27f2 -[ILFacebookAPIRequest graphURLRequest] + 215
    7   FacebookPublisher                   0x0000000112ff2fb5 -[ILFacebookAPIRequest send] + 33
    8   FacebookPublisher                   0x0000000112fe44da -[IPHFacebookPlugin displayNameForUsername:] + 88
    9   AccountConfigurationPlugin          0x0000000104974fa5 -[AccountConfigurationProfileInformationDownloadOperation main] + 174
    10  Foundation                          0x00007fff8c0b5986 -[__NSOperationInternal start] + 684
    11  Foundation                          0x00007fff8c0bd1a1 __block_global_6 + 129
    12  libdispatch.dylib                   0x00007fff91361f01 _dispatch_call_block_and_release + 15
    13  libdispatch.dylib                   0x00007fff9135e0b6 _dispatch_client_callout + 8
    14  libdispatch.dylib                   0x00007fff9135f1fa _dispatch_worker_thread2 + 304
    15  libsystem_c.dylib                   0x00007fff963bbcab _pthread_wqthread + 404
    16  libsystem_c.dylib                   0x00007fff963a6171 start_wqthread + 13
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   com.apple.Foundation                    0x00007fff8c0a9087 NSKeyValuePropertyForIsaAndKeyPath + 1
    1   com.apple.Foundation                    0x00007fff8c0a8ede -[NSObject(NSKeyValueObserverRegistration) addObserver:forKeyPath:options:context:] + 80
    2   com.apple.Aperture                      0x00000001038ebea4 0x103601000 + 3059364
    3   com.apple.Aperture                      0x00000001038edd9c 0x103601000 + 3067292
    4   com.apple.Aperture                      0x00000001038edd31 0x103601000 + 3067185
    5   com.apple.Aperture                      0x000000010388ce6b 0x103601000 + 2670187
    6   com.apple.Aperture                      0x000000010388874a 0x103601000 + 2651978
    7   com.apple.Aperture                      0x0000000103888cd3 0x103601000 + 2653395
    8   com.apple.Aperture                      0x00000001038ca4ad 0x103601000 + 2921645
    9   com.apple.Aperture                      0x000000010365cda5 0x103601000 + 376229
    10  com.apple.CoreFoundation                0x00007fff9197b47a _CFXNotificationPost + 2554
    11  com.apple.Foundation                    0x00007fff8c06f846 -[NSNotificationCenter postNotificationName:object:userInfo:] + 64
    12  com.apple.AppKit                        0x00007fff96a8d60d -[NSApplication _postDidFinishNotification] + 292
    13  com.apple.AppKit                        0x00007fff96a8d346 -[NSApplication _sendFinishLaunchingNotification] + 216
    14  com.apple.AppKit                        0x00007fff96a8a532 -[NSApplication(NSAppleEventHandling) _handleAEOpenEvent:] + 566
    15  com.apple.AppKit                        0x00007fff96a8a12c -[NSApplication(NSAppleEventHandling) _handleCoreEvent:withReplyEvent:] + 351
    16  com.apple.Foundation                    0x00007fff8c08912b -[NSAppleEventManager dispatchRawAppleEvent:withRawReply:handlerRefCon:] + 308
    17  com.apple.Foundation                    0x00007fff8c088f8d _NSAppleEventManagerGenericHandler + 106
    18  com.apple.AE                            0x00007fff94c50b48 aeDispatchAppleEvent(AEDesc const*, AEDesc*, unsigned int, unsigned char*) + 307
    19  com.apple.AE                            0x00007fff94c509a9 dispatchEventAndSendReply(AEDesc const*, AEDesc*) + 37
    20  com.apple.AE                            0x00007fff94c50869 aeProcessAppleEvent + 318
    21  com.apple.HIToolbox                     0x00007fff91cf68e9 AEProcessAppleEvent + 100
    22  com.apple.AppKit                        0x00007fff96a86916 _DPSNextEvent + 1456
    23  com.apple.AppKit                        0x00007fff96a85ed2 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
    24  com.apple.Aperture                      0x0000000103a7500d 0x103601000 + 4669453
    25  com.apple.AppKit                        0x00007fff96a7d283 -[NSApplication run] + 517
    26  com.apple.prokit                        0x0000000104b16324 NSProApplicationMain + 378
    27  com.apple.Aperture                      0x00000001036109c2 0x103601000 + 63938
    28  com.apple.Aperture                      0x0000000103610314 0x103601000 + 62228
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00007fff90a23d16 kevent + 10
    1   libdispatch.dylib                       0x00007fff91360dea _dispatch_mgr_invoke + 883
    2   libdispatch.dylib                       0x00007fff913609ee _dispatch_mgr_thread + 54
    Thread 2:
    0   libsystem_kernel.dylib                  0x00007fff90a236d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff963bbeec _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff963bbcb3 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff963a6171 start_wqthread + 13
    Thread 3 Crashed:: Dispatch queue: com.apple.root.default-priority
    0   libsystem_kernel.dylib                  0x00007fff90a23212 __pthread_kill + 10
    1   libsystem_c.dylib                       0x00007fff963baaf4 pthread_kill + 90
    2   libsystem_c.dylib                       0x00007fff963fedce abort + 143
    3   libc++abi.dylib                         0x00007fff8e97ca17 abort_message + 257
    4   libc++abi.dylib                         0x00007fff8e97a3c6 default_terminate() + 28
    5   libobjc.A.dylib                         0x00007fff975fc873 _objc_terminate() + 91
    6   libc++.1.dylib                          0x00007fff915aa8fe std::terminate() + 20
    7   libobjc.A.dylib                         0x00007fff975fc5de objc_terminate + 9
    8   libdispatch.dylib                       0x00007fff9135e0ca _dispatch_client_callout + 28
    9   libdispatch.dylib                       0x00007fff9135f1fa _dispatch_worker_thread2 + 304
    10  libsystem_c.dylib                       0x00007fff963bbcab _pthread_wqthread + 404
    11  libsystem_c.dylib                       0x00007fff963a6171 start_wqthread + 13
    Thread 4:
    0   libsystem_kernel.dylib                  0x00007fff90a236d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff963bbeec _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff963bbcb3 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff963a6171 start_wqthread + 13
    Thread 5:
    0   libsystem_kernel.dylib                  0x00007fff90a236d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff963bbeec _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff963bbcb3 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff963a6171 start_wqthread + 13
    Thread 6:
    0   libsystem_kernel.dylib                  0x00007fff90a236d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff963bbeec _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff963bbcb3 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff963a6171 start_wqthread + 13
    Thread 7:
    0   libsystem_kernel.dylib                  0x00007fff90a230fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff963bdfc3 _pthread_cond_wait + 927
    2   com.apple.Foundation                    0x00007fff8c0e7933 -[NSCondition waitUntilDate:] + 357
    3   com.apple.Foundation                    0x00007fff8c0e7789 -[NSConditionLock lockWhenCondition:beforeDate:] + 235
    4   com.apple.proxtcore                     0x00000001057ea03a -[XTMsgQueue waitForMessage] + 47
    5   com.apple.proxtcore                     0x00000001057e9282 -[XTThread run:] + 329
    6   com.apple.Foundation                    0x00007fff8c0bc612 __NSThread__main__ + 1345
    7   libsystem_c.dylib                       0x00007fff963b9742 _pthread_start + 327
    8   libsystem_c.dylib                       0x00007fff963a6181 thread_start + 13
    Thread 8:
    0   libsystem_kernel.dylib                  0x00007fff90a230fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff963bdfc3 _pthread_cond_wait + 927
    2   com.apple.Foundation                    0x00007fff8c0e7933 -[NSCondition waitUntilDate:] + 357
    3   com.apple.Foundation                    0x00007fff8c0e7789 -[NSConditionLock lockWhenCondition:beforeDate:] + 235
    4   com.apple.proxtcore                     0x00000001057ea03a -[XTMsgQueue waitForMessage] + 47
    5   com.apple.proxtcore                     0x00000001057e9282 -[XTThread run:] + 329
    6   com.apple.Foundation                    0x00007fff8c0bc612 __NSThread__main__ + 1345
    7   libsystem_c.dylib                       0x00007fff963b9742 _pthread_start + 327
    8   libsystem_c.dylib                       0x00007fff963a6181 thread_start + 13

  • I installed Lion online and i ran disk repair and found that i needed to do a repair  but i have no start up disk.  How do i repair without burning a disk?

    I installed Lion online and i ran disk repair and found that i needed to do a repair  but i have no start up disk.  How do i repair without burning a disk?

    Lion creates a Recovery partition on your harddrive. You will need to boot from startup.
    click here
    http://support.apple.com/kb/HT4718

  • My BB9810 refuse to load OS7.1 software on my phone after the download has completed. My phone has freezed/stucked since morning. Pls urgent help/assistant needed as I can not access/use my phone for over 24hrs now.

    My BB9810 refuse to load OS7.1 software on my phone after the download has completed. My phone has freezed/stucked since morning. Pls  urgent help/assistant needed as I can not access/use my phone for over 24hrs now.

    Hi there,
    Use the method described in the link below to get back up and running:
    http://supportforums.blackberry.com/t5/Device-software-for-BlackBerry/How-To-Reload-Your-Operating-S...
    I hope this info helps!
    If you want to thank someone for their comment, do so by clicking the Thumbs Up icon.
    If your issue is resolved, don't forget to click the Solution button on the resolution!

  • How long does the process take to get a nano repaired or replaced?

    how long does the process take to get a nano repaired or replaced?
      Windows XP  

    Usually just a few days... they very seldom (if ever) repair them. You'll usually get either a new or refurbished replacement.

Maybe you are looking for

  • Changing Business Systems from Dev to QA

    I am trying to transport Integration Directory (Configuration) objects from DEV to QA.  Is there a way that I can define my business systems (or something else) so that when I import my ID objects into QA I do not have to go into the Communication Ch

  • I forget my password and i cant get in i pad what cant i do?? ;(

    i forget my password and i cant get in i pad what cant i do?? ;(

  • Oracle 11i Functional Financial Apps Certification

    Hello All, Can you please guide me to the path of getting "Oracle 11i Functional Financial Apps" certified? I wish to move into this field. Following is my background - Qualifications - BCA (regular); MBA - Finance (regular). Work Experience - 1 yr a

  • How do groups work in iOS 6 contacts now?

    Hi, I used to pick contacts from my phone menu and then select the Group I wanted to quickly get to a short list of contacts. Now when I get to the groups menu and select "travel" for example, it just checks/unchecks the group... I cannot seem to dri

  • Air or Macbook Purchase Decision

    So I am considering a laptop upgrade. Currently own a 1.5 Ghz 1.5GB DDR SDRAM Powerbook G4. Am considering a new Macbook or Macbook Air. How much performance difference I am going to see jumping from 1.5 Ghz to 1.6Ghz? How much from 1.5Ghz to 2.4Ghz?