When we have to use business service?

hi,
In real time at what circumstance we will use business service instead of business systems?
one more thing really we will come across this kind of scenario often or very rare case.
kindly explain me with some real time situation with business landscape.
regards
Ruban
Message was edited by:
        ruban R

A Business service represents an abstract unit for addressing message senders and message receivers. You can use a business service to group interfaces.
It is useful to use business services when configuring cross-company processes. Usually, the interface descriptions of the business partners involved are made publicly available. The system landscape is only partly known, however.
Configuring Cross-Company Processes
http://help.sap.com/saphelp_nw04/helpdata/en/da/7a2f41b239a831e10000000a1550b0/content.htm

Similar Messages

  • Which situation we will use Business Service, and Business System?

    Hi <b>SAP XI Professionals</b>  ,
    Can U plz tell me What is Business Service and Business System? when we need to use Business Service?  what is diff between B.System and B. service?
    thank You
    with regards
    jai

    HI,
    Please see the below links
    Differentiate b/w Technical System, Business System and Business Service
    Difference between Business System and Business Service.
    Difference between Business System and Business Service in ID
    Difference between Business System and Business Service
    Business system ans service
    How can I create a Service in the Business System?
    advantage and diff   btw Business service n business system
    Logical system for business service!!!!!!!!!
    Regards
    Chilla..

  • Installing Secure Certificates in SOAP Scenarios using Business Service

    Hi All,
    We are working on SOAP synchronous scenarios and we are creating Business service for the same. IF We need to communicate through HTTPs protocol then will it be possible to install the SSL certificates as we are using Business Service ?
    It was said intalling certificates will only be possible when we use Business System but not Business Service.
    Regards
    Jayram

    The technical connection does not care about business system or business component. This limitation does not exist.
    Andreas

  • OSB: When does invokation from http Business Service result into an error

    Hi,
    I want to know when does invokation from http Business Service in OSB result into an error.
    I have a http based business service which is calling an external service on http url.
    I want to know when this business service is invoke/tested, what are the cases in which the invokation will result into an error.
    What does OSB read to cause the invokation an error.
    I am aware that it reads the http-response-code. If its not 200 or 0, it will result into an error.
    Want to validate this understanding and also want to know what are the other case that will cause this happen. Is it by any way dependent on body content?
    Please help. Please share any good links for the topics related to this.
    TIA.
    Regards,
    Ashish

    Hi,
    Some info here...
    http://svgonugu.wordpress.com/2011/06/15/fault-handling-in-osb/
    Cheers,
    Vlad

  • Why does my hard drive state I have used 500 gb when I have only used 280 gb?

    Why does my hard drive state I have used 500 gb when I have only used approximately 280 gb?

    Have you emptied your trash lately...
    Also... See these links...
    Apple ML = Increase Disc Space
    http://support.apple.com/kb/PH10677
    See Here  >  Where did my Disk Space go?
    And Here  >  The Storage Display

  • Turned on computer email said i needed new account when I have been using for years (no mail, drafts, sent)

    Turned on computer email said I needed new account when I have been using for years (no mail, drafts, sent). I filled oyt new mail setup and it only found my mail not drafts and sent ... I use drafts to store documents and sent in a leser capacity - Ihave huge data in drafts.  Tried to restore using time machine (never had to before). The backups are there but the restore button does not highlight??? So when you clickit nothing happens.

    Restoring Mail is complex. Luckily, the late James Pond left us an illustrated guide:
    You can restore the Mail messages and indexes to the way they were (provided you have a Backup from around that time)
    Pondini's Time Machine FAQs: 15m.  Viewing or Restoring Apple Mail

  • Why does my menu bar still display yesterdays time/date when i have been using it all morning?

    why does my menu bar still display yesterdays time/date when i have been using it all morning?

    Incorrect date or time displayed in various applications in Mac OS X

  • Dequeue jms message using business service

    Hi,
    I want to pull back messages from response queue based on correlation id using business service.
    On receiving the message, i want to pass it on to the proxy service.
    How do i achieve this ?
    Thanks.

    OSB : How to use JMS Correlation ID to associate Reqeust with the Response
    Thanks
    Manoj

  • When we have to use sy-lsind

    Hi all,
    when we have to use sy-lsind
    Message was edited by: hari haran

    sy-lsind is a system variable which indicated whihc secondary list you are processing. You will use like this in the AT Line selection event
    AT LINE-SELECTION.
      CASE SY-LSIND.
        WHEN 1.
          PERFORM WRITE_REPORT_1.
        WHEN 2.
          PERFORM WRITE_REPORT_2.
    Have a look at the code below
    *& Report  Z_INT_TEST                                                  *
    REPORT  Z_INT_TEST LINE-COUNT 55(5)
                       LINE-SIZE 95
                       NO STANDARD PAGE HEADING
                       MESSAGE-ID ZZ.
                       Table Declarations
    TABLES: MARA.
                       Data Declarations
    DATA: BEGIN OF IT_MARA OCCURS 0,
            MATNR LIKE MARA-MATNR,
            MTART LIKE MARA-MTART,
            MATKL LIKE MARA-MATKL,
            MEINS LIKE MARA-MEINS,
            DATAB LIKE MARA-DATAB,
          END OF IT_MARA.
    DATA: BEGIN OF IT_MAKT OCCURS 0,
            MATNR LIKE MAKT-MATNR,
            MAKTX LIKE MAKT-MAKTX,
          END OF IT_MAKT.
    DATA: BEGIN OF IT_MARD OCCURS 0,
            MATNR LIKE MARD-MATNR,
            WERKS LIKE MARD-WERKS,
            LGORT LIKE MARD-LGORT,
          END OF IT_MARD.
    DATA: NO_SEL(1) TYPE C.
                       Selection Screen
    SELECTION-SCREEN BEGIN OF BLOCK BLK1 WITH FRAME TITLE TEXT-001.
    PARAMETERS: P_DATAB LIKE MARA-DATAB.
    SELECT-OPTIONS: S_MATNR FOR MARA-MATNR. " OBLIGATORY.
    SELECTION-SCREEN END OF BLOCK BLK1.
                       Initialization
    INITIALIZATION.
      P_DATAB = SY-DATUM.
                       Start of Selection
    START-OF-SELECTION.
      SET PF-STATUS 'XXX'.
    *-- Get Material details from MARA
      PERFORM GET_MATNR_DETAILS.
    *-- Get Material Description
      PERFORM GET_MATNR_DESC.
    *-- Get Storage location
      PERFORM GET_STORAGE.
                       End of Selection
    END-OF-SELECTION.
      IF NO_SEL = 'X'.
        MESSAGE I000 WITH 'no selection found'.
        EXIT.
      ENDIF.
    *-- Write Bsaic list
      PERFORM WRITE_BASIC_0.
                       Top-of-page
    TOP-OF-PAGE.
      PERFORM WRITE_BASIC_HEADER.
                       End-of-page
    END-OF-PAGE.
      PERFORM WRITE_FOOTER.
                       At line-selection
    AT LINE-SELECTION.
      CASE SY-LSIND.
        WHEN 1.
          PERFORM WRITE_REPORT_1.
        WHEN 2.
          PERFORM WRITE_REPORT_2.
      ENDCASE.
                       top-of-page during line-selection
    TOP-OF-PAGE DURING LINE-SELECTION.
      CASE SY-LSIND.
        WHEN 1.
          PERFORM WRITE_HEADER_1.
        WHEN 2.
          PERFORM WRITE_HEADER_2.
      ENDCASE.
                       At user-command
    AT USER-COMMAND.
      CASE SY-UCOMM.
        WHEN 'BACK'.
          CALL SCREEN 0.
        WHEN 'SAVE'.
          PERFORM DOWNLOAD_LOCAL.
        WHEN 'AABB'.
          CALL   SCREEN 0.
      ENDCASE.
    *&      Form  get_matnr_details
          text
    -->  p1        text
    <--  p2        text
    FORM GET_MATNR_DETAILS .
      SELECT MATNR
             MTART
             MATKL
             MEINS
             DATAB
             FROM MARA
             INTO TABLE IT_MARA
             WHERE MATNR IN S_MATNR AND
                   DATAB >= P_DATAB.
      IF SY-SUBRC <> 0.
        NO_SEL = 'X'.
        STOP.
      ELSE.
        SORT IT_MARA BY MATNR.
      ENDIF.
    ENDFORM.                    " get_matnr_details
    *&      Form  get_matnr_desc
          text
    -->  p1        text
    <--  p2        text
    FORM GET_MATNR_DESC .
      SELECT MATNR
             MAKTX
             FROM MAKT
             INTO TABLE IT_MAKT
             FOR ALL ENTRIES IN IT_MARA
             WHERE MATNR = IT_MARA-MATNR AND
                           SPRAS = SY-LANGU.
      IF SY-SUBRC = 0.
        SORT IT_MAKT BY MATNR.
      ENDIF.
    ENDFORM.                    " get_matnr_desc
    *&      Form  get_storage
          text
    -->  p1        text
    <--  p2        text
    FORM GET_STORAGE .
      SELECT MATNR
             WERKS
             LGORT
             FROM MARD
             INTO TABLE IT_MARD
             FOR ALL ENTRIES IN IT_MARA
             WHERE MATNR = IT_MARA-MATNR.
      IF SY-SUBRC = 0.
        SORT IT_MARD BY MATNR.
      ENDIF.
    ENDFORM.                    " get_storage
    *&      Form  write_basic_header
          text
    -->  p1        text
    <--  p2        text
    FORM WRITE_BASIC_HEADER .
      FORMAT COLOR COL_HEADING.
      ULINE.
      WRITE:/  SY-VLINE,
              (18) 'Material'(002), SY-VLINE,
              (13) 'Material Type'(003), SY-VLINE,
              (14) 'Material Group'(004), SY-VLINE,
              (19) 'Unit of Measurement'(005), SY-VLINE,
              (15) 'Valid from Date'(006), SY-VLINE.
      ULINE.
      FORMAT RESET.
    ENDFORM.                    " write_basic_header
    *&      Form  write_basic_0
          text
    -->  p1        text
    <--  p2        text
    FORM WRITE_BASIC_0 .
      LOOP AT IT_MARA.
        WRITE:/  SY-VLINE,
                (18) IT_MARA-MATNR,SY-VLINE,
                (13) IT_MARA-MTART,SY-VLINE,
                (14) IT_MARA-MATKL,SY-VLINE,
                (19) IT_MARA-MEINS,SY-VLINE,
                (15) IT_MARA-DATAB,SY-VLINE.
        HIDE: IT_MARA-MATNR.
        CLEAR: IT_MARA.
      ENDLOOP.
      ULINE.
    ENDFORM.                    " write_basic_0
    *&      Form  write_footer
          text
    -->  p1        text
    <--  p2        text
    FORM WRITE_FOOTER .
      DATA: V_TEMP(125) TYPE C.
      ULINE.
      SKIP.
      CONCATENATE 'Program run by : ' SY-UNAME  'on: ' SY-DATUM INTO V_TEMP.
      WRITE:/(125) V_TEMP.
      SKIP.
      ULINE.
    ENDFORM.                    " write_footer
    *&      Form  write_report_1
          text
    -->  p1        text
    <--  p2        text
    FORM WRITE_REPORT_1 .
      CLEAR IT_MAKT.
      READ TABLE IT_MAKT WITH KEY MATNR = IT_MARA-MATNR BINARY SEARCH.
      IF SY-SUBRC = 0.
        WRITE:/(18) IT_MAKT-MATNR,SY-VLINE,
               (40) IT_MAKT-MAKTX,SY-VLINE.
        HIDE: IT_MAKT-MATNR.
        CLEAR IT_MAKT.
        ULINE (62).
      ENDIF.
    ENDFORM.                    " write_report_1
    *&      Form  write_header_1
          text
    -->  p1        text
    <--  p2        text
    FORM WRITE_HEADER_1 .
      FORMAT COLOR COL_HEADING.
      ULINE (62).
      WRITE:/(18) TEXT-002,SY-VLINE,
             (40) 'Material Description'(010),SY-VLINE.
      ULINE (62).
      FORMAT RESET.
    ENDFORM.                    " write_header_1
    *&      Form  write_header_1
          text
    -->  p1        text
    <--  p2        text
    FORM WRITE_HEADER_2 .
      NEW-PAGE LINE-SIZE 45.
      FORMAT COLOR COL_HEADING.
      ULINE (45).
      WRITE:/(15) TEXT-002,SY-VLINE,
             (5) 'Plant'(011),SY-VLINE,
             (16) 'Storage Location'(012),SY-VLINE.
      ULINE (45).
      FORMAT RESET.
    ENDFORM.                    " write_header_2
    *&      Form  write_report_1
          text
    -->  p1        text
    <--  p2        text
    FORM WRITE_REPORT_2 .
      CLEAR IT_MARD.
      READ TABLE IT_MARD WITH KEY MATNR = IT_MAKT-MATNR BINARY SEARCH.
      IF SY-SUBRC = 0.
        WRITE:/(18) IT_MARD-MATNR,SY-VLINE,
               (5) IT_MARD-WERKS,SY-VLINE,
               (16) IT_MARD-LGORT,SY-VLINE.
        ULINE.
      ELSE.
        MESSAGE E000 WITH 'No data'.
      ENDIF.
    ENDFORM.                    " write_report_1
    *&      Form  download_local
          text
    -->  p1        text
    <--  p2        text
    FORM DOWNLOAD_LOCAL .
      CALL FUNCTION 'GUI_DOWNLOAD'
        EXPORTING
      BIN_FILESIZE                  =
          FILENAME                      = 'C:\temp.txt'
      FILETYPE                      = 'ASC'
      APPEND                        = ' '
      WRITE_FIELD_SEPARATOR         = ' '
      HEADER                        = '00'
      TRUNC_TRAILING_BLANKS         = ' '
      WRITE_LF                      = 'X'
      COL_SELECT                    = ' '
      COL_SELECT_MASK               = ' '
      DAT_MODE                      = ' '
    IMPORTING
      FILELENGTH                    =
        TABLES
          DATA_TAB                      = IT_MARA
    EXCEPTIONS
      FILE_WRITE_ERROR              = 1
      NO_BATCH                      = 2
      GUI_REFUSE_FILETRANSFER       = 3
      INVALID_TYPE                  = 4
      NO_AUTHORITY                  = 5
      UNKNOWN_ERROR                 = 6
      HEADER_NOT_ALLOWED            = 7
      SEPARATOR_NOT_ALLOWED         = 8
      FILESIZE_NOT_ALLOWED          = 9
      HEADER_TOO_LONG               = 10
      DP_ERROR_CREATE               = 11
      DP_ERROR_SEND                 = 12
      DP_ERROR_WRITE                = 13
      UNKNOWN_DP_ERROR              = 14
      ACCESS_DENIED                 = 15
      DP_OUT_OF_MEMORY              = 16
      DISK_FULL                     = 17
      DP_TIMEOUT                    = 18
      FILE_NOT_FOUND                = 19
      DATAPROVIDER_EXCEPTION        = 20
      CONTROL_FLUSH_ERROR           = 21
      OTHERS                        = 22
      IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    ENDFORM.                    " download_local

  • Mapping Exception when using Business service

    Hi
    I am using a business service for my IDOC to File scenario and its working fine. But when i am using the same Business service in many work spaces for the same scenario, its giving me an Mapping Exception and the one that was working also giving the same problem. Why its so and it could be solved by using a business system in the scenario. But how the problem is happening?
         Guide me through this.
    Thanks
      Vinod

    Hi, MK
    In XI 3.0 Exchange Infrasturcture, SXMB_MONI (XML Error messages) under SOAP Header --> Error
      <SAP:Stack>During the application mapping com/sap/xi/f/_mMa_Fle_To_SDS a com.sap.a.u.mc.i.BeRimEcepio a thown: Fatal Error: com.sap.enielbxlprr.Parser~</SAP:Stack>
      <SAP:Retry>M</SAP:Retry>
    I am looking container element to display this messages in my alert cagegory ???
    you know SXMB variables but i could't found to display this error how to found out SAP: stack variable please help
    Thanks

  • IDOC to File - Clarification needed while using business service.

    Hi all,
    I have 2 scenarios to be implemented in PI..one is IDOC to File and another one File to IDOC.File systems in the above mentioned scenarios are 2 different legacy applications when business is concerned.So i am creating separate business services for the two legacy apps.I have included ECC in SLD and created proper LS name corresponding to that maintained in partner profile in ECC.File to IDOC scenario is working fine.
    In the second scenario (i.e. IDOC to File) also i need to mention adapter-specific identifiers. But since i have already used the R/3 system id and client in the File to IDOC it is throwing an error while trying to activate the buss service.The XML message is failing at Receiver identification step when i have omitted r/3 sys id and client.In the acknowledgement i am getting the message as "Unable to convert the sender service INTEGRATION_SERVER_DEVPI to an ALE logical system"
    I have checked entire SDN but didnt find any solution for the same.
    Is there any work around for this issue?
    Rgds,
    Lekshmi.

    Hi,
      Go through these blogs....
    /people/rajeshkumar.pasupula/blog/2009/03/16/unable-to-convert-the-sender-service-to-an-ale-logical-system
    /people/michal.krawczyk2/blog/2005/03/29/xi-error--unable-to-convert-the-sender-service-to-an-ale-logical-system
    /people/sravya.talanki2/blog/2005/12/02/manipulating-idoc-control-records-from-payload
    Also chk these threads also.....
    Error: Unable to convert the sender service xxxxx to an ALE logical system
    Unable to convert sender service to an ALE logical system
    Might help you....
    Regds,
    Pinangshuk.

  • Using Business Service that supports XML over HTTP in OSB

    Hi,
    I needed to integrate my system with another legacy system that supports communication only through XML over HTTP. I am just trying to understand much about this XML over HTTP. I think in OSB, this is possible only possible through REST interfaces.
    Is there any other way and what about HTTP bindings in WSDLs? can you please let me know if you have any insights.
    I have gone through the urls about REST interfaces given in these forums. But just wanted to confirm the following scenaiors possible in OSB.
    - Client will connect to SOAP based proxy service which will in turn call REST based business service.
    - Client will connect to REST base proxy service which will in turn call SOAP based business service.
    Following point is not clear from the URLs i went through so just wanted to confirm the following too:
    - Client will connect to REST base proxy service which will in turn call SOAP based business service. And is it possible to add anything in soap header before calling soap based business service..
    Thanks & Regards
    Siva

    Hi Siva,
    XML over HTTP is a general use case and OSB supports it very well. REST is a special case and should be used when required. To know more about REST you may refer -
    http://www.infoq.com/articles/rest-introduction
    Now coming to OSB, SOAP and simple XML are two different cases. If you are creating XML type service then it is not binded to a WSDL/XSD but SOAP based service should always be binded with a WSDL. You may add/modify transport headers in OSB.
    Evaluate your requirements and then decide what exactly you need to use. Few links which may be of your use -
    http://download.oracle.com/docs/cd/E13159_01/osb/docs10gr3/userguide/configuringandusingservices.html#wp1150438
    http://download.oracle.com/docs/cd/E13159_01/osb/docs10gr3/userguide/configuringandusingservices.html#wp1154255
    http://download.oracle.com/docs/cd/E13159_01/osb/docs10gr3/userguide/configuringandusingservices.html#wp1141071
    section "Configuring Business Services using the HTTP Transport" here - http://download.oracle.com/docs/cd/E13159_01/osb/docs10gr3/httppollertransport/transports.html#wp1083292
    http://blogs.oracle.com/jeffdavies/2009/06/restful_services_with_oracle_s_1.html
    http://blogs.oracle.com/jamesbayer/2008/07/using_rest_with_oracle_service.html
    Regards,
    Anuj

  • ORA-00054 error when loading Oracle table using Data Services

    Hello,
    we are facing ORA-00054 error when loading Oracle table using BO Data services
    (Oracle 10g database, BODS Xi 3.2 SP3)
    Test Job performs
    1- truncate table
    2- load table (tested in standard and bulk load modes)
    Scenario when issue happens is:
    1- Run loading Job
    2- Job end in error for any Oracle data base error
    3- When re-running the same Job, Job fails with following error
         ORA-00054: resource busy and acquire with NOWAIT specified
    It seems after first failure, Oracle session for loading the table stays active and locks the table.
    To be able to rerun the Job, we are forced need to kill Oracle session manually to be able to run the Job again.
    Expected behaviour would be : on error rollback modifications made on table and BODS stops Oracle session in a clean way.
    Can somebody tell me / or point me to any BODS best practice about Oracle error handling to prevent such case?
    Thanks in advance
    Paul-Marie

    the ora-0054 can occure depending how the job failed before. If this occures you will need the DBA to release the lock on the table in question
    Or
           AL_Engine.exe on The server it creates the Lock. Need to Kill Them. Or stop it..
    This Problem Occurs when we select The Bulkloading Option in orclae  We also faced the same issue,Our admin has Killed the session. Then everything alright.

  • Out of memory when coverting large files using Web service call

    I'm running into an out of memory error on the LiveCycle server when converting a 50 meg Word document with a Web service call.  I've already tried increasing the heap size, but I'm at the limit for the 32 bit JVM on windows.  I could upgrade to a 64 bit JVM, but it would be a pain and I'm trying to avoid it.  I've tried converted the 50 meg document using the LiveCycle admin and it works fine, the issue only occurs when using a web service call.  I have a test client and the memory spikes when it's generating the web service call taking over a gig of memory.  I assume it takes a similar amount of memory on the receiving end which is why LiveCycle is running out of memory.  Does any one have any insight on why passing over a 50 meg file requires so much memory?   Is there anyway around this?
    -Kelly

    Hi,
    You are correct that a complete 64bit environment would solve this. The problem is that you will get the out of memory error when the file is written to memory on the server. You can solve this by creating an interface which stores large files on the server harddisk instead, which allows you to convert as large files as LC can handle without any memory issue.

  • To get Recommended Budget Amount using business service

    I created business service using the service program CILCACCP to get the recommended budget amount but I am getting zero for recommended budget amount. I am able to get the recommended budget amount if I click the recommended button on the budget tab of the account page. we have CC&B 2.2 version.
    Here is the schema for the business service
    <schema>
    <accountId mapField="ACCT_ID"/>
    <custClCd mapField="CUST_CL_CD" default="STD-R"/>
    <acctInfo mapField="ACCT_INFO"/>
    <premiseInfo mapField="PREM_INFO"/>
    <currentBalance mapField="CUR_BAL"/>
    <totalBalance mapField="TOT_BAL"/>
    <recommendBudgetSw mapField="RECOMMEND_BUD_SW" default="true"/>
    <calApplyBudSw mapField="CAL_APPLY_BUD_SW" default="true"/>
    <budPlanCd mapField="BUD_PLAN_CD" default="BUD-R"/>
    <newBudDt mapField="NEW_BUD_DT" default="%CurrentDate"/>
    <totalNewBudget mapField="TOT_NEW_BUD"/>
    <Budgamtlist type="list" mapList="SA_BUDGET">
    <budgetAmt mapField="BUD_AMT"/>
    <newBudgetAmount mapField="NEW_BUD_AMT"/>
    <saId mapField="SA_ID"/>
    </Budgamtlist>
    </schema>
    Edited by: user8859068 on Nov 3, 2010 9:59 AM

    Recommend Budget requires a particular pageAction (BS) / transactionType (XAI) which cannot be specified, as it only allows add, update, delete, read (default if unspecified) actions.
    This event for MO/Service CILCACCP is only invoked if the pageAction is "default" and there is no way to specify that either through Business Service or via Inbound Web Service (XAI) as mentioned above.
    You also need to specify/map DEFAULT_FOR_FLG field with a value of 'RCBUD'.
    This has been fixed in CC&B v2.3.0 with patch 9300696.

Maybe you are looking for

  • "No Internet Connection" via AirPort Extreme bridged to Time Capsule

    Hello, We have a fairly large and odd home network consisting of a Comcast cable modem connected to a Netgear router, a Time Capsule wired to that one floor down (serving up WiFi and DHCP), and a new AirPort Extreme wired one floor below that, extend

  • CRYSTAL XIR2 ActiveX viewer Freezed

    Post Author: [email protected] CA Forum: Other Hi, I integrated the CRViewer in my C++ application. I try to display report with field parameters (static and dynamic). Sometime all works fine during a long period, the parameter popup windows is displ

  • How to insert a simple page break in an eBook while using pages to make the ePub?

    Hello, I am using pages to make ePubs. I have a problem: if I insert a page break in pages, it is deleted when I convert the file to ePub. So I do not know how to start on a new page without adding a new chapter.... Do you have a solution? best regar

  • Motion Blur doesn't work in Final Cut Pro

    I've been working on stuff and int he past Motion Blur worked and now when I use it the motion blur has refused to work as a preview or after I render it. Is there something i'm doing wrong that's making it happen? I'm using Mac OS X Leopard, the lat

  • Connecting ipod to non-macintosh pc

    When I connect my ipod to my PC I am getting the following message: iTunes has detected a Macintosh formatted ipod. You must restore this ipod before you can use it on Windows. My ipod has never been connected to a Macintosh pc and I do not want to l