Can't seem to create objects.

I seem to be having trouble creating objects. Using Image Trace or Rasterize just creates one object out of the whole image. I am unable to select or isolate anything within the image as an object.

agentgroove,
After Image Trace you need to Object>Image Trace>Expand.
Rasterize does just that, so you have no vector objects to work with. remember to create a copy before you destroy artwork.

Similar Messages

  • HT2513 Using iCal on my ipad2 and can't seem to create a repeating event, specifically, an appointment that occurs the second Wednesday of every month.  Any help is greatly appreciated....thanks! iPad 2, iOS 5.0.1

    Using iCal on my ipad2 and can't seem to create a repeating event, specifically, an appointment that occurs the second Wednesday of every month.  Any help is greatly appreciated....thanks!
    iPad 2, iOS 5.0.1

    Although this isn't currently possible in the iOS Calendar app, go to iCloud.com (not on your iPad, but on a computer browser like Safari or Firefox) and log in.  There, you can add an event in Calendar and have the options to make it repeat however you want.

  • Hi  I can't seem to create folders to save emails in.  I have added a new mailbox, but it doesn't show up on the left of the screen.  What am I doing wrong??  Thanks

    HI.  I can't seem to create folders to save emails in.  I have added (several!) new mail boxes, but they do not appear in the menu on the left of the screen.  How can I access/view them?  Many thanks

    Well, just to confirm the process, open Mail and click on the word "Mailbox" up at the top pf the screen in the menu bar.  Then click on "New Mailbox" in the list.  In the window that opens, enter the name you want for this new mailbox.  The new Mailbox will be located over in the left hand column under the heading there, "On My Mac".  If you cannot see the mailbox there, then it is "hidden" under "On My Mac". You will need to hover your mouse cursor over the phrase "On My Mac" and just to the right the word "Show" will faintly appear.  Click on "Show" and your Mailboxes under "On My Mac" will appear.

  • How can the servlet engine create objects of interfaces?help

    hello,
    I have this basic fundamental query...when using servlets i noticed that so many methods in the HttpServlet class take as arguments objects of the type "Interface"..where as basic principle in java is u cant instantiate interfaces...interfaces r mere templates which u implement by ur own custom classes.
    For example the doGet method recieves from the servlet engine(servlet container) two arguments which r HttpServletResponse object and HttpServletRequest object..and u use these further to make use of the methods of the inmterfaces..which again is a mystery to me...why?
    here is why:-
    since HttpServletResponse and HttpServletRequest r interfaces..they cant be instantiated...and now that the sevlet engine provides objects of these interfaces...how come u r able to to use the methods of these interfaces...for r they not empty methods?..
    example how r u able to make the sendRedirect() method of HttpServletResponse interface work...is this method not an empty method?
    there r several interfaces...whose objects r being used and passed in this similar fashion....(for example there r many methods that return an enumeration...which is used as if it were an ordinary class that can be instantiated..and whose methods r non empty emthods)
    please help me resolve this mystery
    sheeba

    Don't call me "u". The word is "you". Likewise "are" and not "r".
    The servlet engine creates objects of concrete classes that implement those interfaces. If you want to find the names of those classes in your particular server, you could use for examplereq.getClass().getName()

  • How can I importing when create object?

    Hi Gurus,
    I’m beginner with OO Abap. Please give me a hand with this.
    I’m using the programming interface REPORT  Z_TEST_ST_TEXT_EDITOR for text editor found on /people/igor.barbaric/blog/2005/06/06/the-standard-text-editor-oo-abap-cfw-class which is good and useful for me (highly recommended) but I need to import the text created (t_text)  in method constructor in order to send it via e.mail.
    Could anybody tell me how to get/import the text created?
    Thank you in advance.
    Below is the coding. (program which uses the developed class and method consisting the created text)
    DATA: o_txe     TYPE REF TO <b>zcl_standard_text_editor</b>,
          v_caption TYPE char100,
          s_thead   TYPE thead.
    call screen
    CALL SCREEN 0100.
    MODULE s0100_start
    MODULE s0100_start OUTPUT.
        SET PF-STATUS 'BASIC'.
        s_thead-tdname   = 'VENDOR0000000011'.
        s_thead-tdid     = 'ST'.
        s_thead-tdobject = 'TEXT'.
        s_thead-tdspras  = sy-langu.
        CONCATENATE 'Standard text:' s_thead-tdname
                    INTO v_caption SEPARATED BY space.
        IF o_txe IS INITIAL.
    <b>       CREATE OBJECT o_txe</b>         
    EXPORTING i_thead   = s_thead
                       i_caption = v_caption. 
    <b>IMPORTING????</b>
         ENDIF.
    ENDMODULE.
    <b>method CONSTRUCTOR</b>.
    DATA: o_dialogbox TYPE REF TO cl_gui_dialogbox_container,
          t_text      TYPE STANDARD TABLE OF tdline,
          s_event     TYPE cntl_simple_event,
          t_events    TYPE cntl_simple_events,
          t_lines     TYPE STANDARD TABLE OF tline,
          v_text      TYPE tdline,
          v_text_temp TYPE tdline,
          v_line_temp TYPE tdline,
          v_line_len  TYPE i,
          v_index     TYPE i.
    FIELD-SYMBOLS: <line> TYPE tline.
    me->thead   = i_thead.
    me->caption = i_caption.
    *------ containers
    IF i_container IS INITIAL.
        CREATE OBJECT o_dialogbox
                EXPORTING top     = 50
                          left    = 200
                          height  = 150
                          width   = 500
                          caption = i_caption.
        me->main_container = o_dialogbox.
        SET HANDLER me->on_container_close FOR o_dialogbox.
    ELSE.
        me->main_container = i_container.
    ENDIF.
    IF me->splitter IS INITIAL.
        CREATE OBJECT me->splitter
                EXPORTING
                     parent        = me->main_container
                     orientation   = me->splitter->orientation_vertical
                     sash_position = 10. "percentage of containers
       ------ toolbar
        CREATE OBJECT me->toolbar
              EXPORTING parent = me->splitter->top_left_container.
        CALL METHOD me->toolbar->add_button
             EXPORTING  fcode       = me->c_save
                        is_disabled = ' '
                        icon        = '@2L@' "icon_system_save
                        butn_type   = cntb_btype_button.
        CALL METHOD me->toolbar->add_button
             EXPORTING  fcode       = me->c_close
                        is_disabled = ' '
                        icon        = '@3X@' "icon_close
                        butn_type   = cntb_btype_button.
    *------ register events
        REFRESH t_events.
        s_event-eventid = cl_gui_toolbar=>m_id_function_selected.
        s_event-appl_event = ' '.
        APPEND s_event TO t_events.
        CALL METHOD me->toolbar->set_registered_events
              EXPORTING events = t_events.
        SET HANDLER: me->on_toolbar_func_sel FOR me->toolbar.
    *------ create textedit control
        CREATE OBJECT me->textedit
           EXPORTING parent = me->splitter->bottom_right_container.
    ENDIF.
    get text
    CALL FUNCTION 'READ_TEXT'
            EXPORTING ID       = me->thead-tdid
                      LANGUAGE = me->thead-tdspras
                      NAME     = me->thead-tdname
                      OBJECT   = me->thead-tdobject
            TABLES    LINES    = t_lines
            EXCEPTIONS ID                      = 1
                       LANGUAGE                = 2
                       NAME                    = 3
                       NOT_FOUND               = 4
                       OBJECT                  = 5
                       REFERENCE_CHECK         = 6
                       WRONG_ACCESS_TO_ARCHIVE = 7
                       OTHERS                  = 8.
    *------- convert text to text editor format
    LOOP AT t_lines ASSIGNING <line>.
        IF <line>-tdformat = space OR <line>-tdformat = '=' OR sy-tabix = 1.
            v_line_temp = <line>-tdline.
            CONCATENATE v_text v_line_temp INTO v_text_temp.
        ELSE.
            CONCATENATE: cl_abap_char_utilities=>cr_lf <line>-tdline
                         INTO v_line_temp.
            CONCATENATE  v_text v_line_temp   INTO v_text_temp.
        ENDIF.
        IF sy-subrc = 0.
            v_text = v_text_temp.
        ELSE.
            APPEND v_text TO t_text.
            v_text = v_line_temp.
        ENDIF.
    ENDLOOP.
    IF sy-subrc = 0.
        APPEND v_text TO <b>t_text</b>.
    ENDIF.
    *------- display text
    CALL METHOD me->textedit->set_text_as_stream
             EXPORTING text = t_text.
    me->t_initial_text = t_text.
    endmethod.

    good book on ABAP objects(OOPS)
    http://www.esnips.com/doc/bc475662-82d6-4412-9083-28a7e7f1ce09/Abap-Objects---An-Introduction-To-Programming-Sap-Applications
    http://www.sapgenie.com/abap/OO/
    http://www.sapgenie.com/abap/OO/index.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/c3/225b5654f411d194a60000e8353423/content.htm
    http://www.esnips.com/doc/375fff1b-5a62-444d-8ec1-55508c308b17/prefinalppt.ppt
    http://www.esnips.com/doc/2c76dc57-e74a-4539-a20e-29383317e804/OO-abap.pdf
    http://www.esnips.com/doc/5c65b0dd-eddf-4512-8e32-ecd26735f0f2/prefinalppt.ppt
    http://www.allsaplinks.com/
    http://www.sap-img.com/
    http://www.sapgenie.com/
    http://help.sap.com
    http://www.sapgenie.com/abap/OO/
    http://www.sapgenie.com/abap/OO/index.htm
    http://www.sapgenie.com/abap/controls/index.htm
    http://www.esnips.com/doc/2c76dc57-e74a-4539-a20e-29383317e804/OO-abap.pdf
    http://www.esnips.com/doc/0ef39d4b-586a-4637-abbb-e4f69d2d9307/SAP-CONTROLS-WORKSHOP.pdf
    http://www.sapgenie.com/abap/OO/index.htm
    http://help.sap.com/saphelp_erp2005/helpdata/en/ce/b518b6513611d194a50000e8353423/frameset.htm
    http://www.sapgenie.com/abap/OO/
    these links
    http://help.sap.com/saphelp_47x200/helpdata/en/ce/b518b6513611d194a50000e8353423/content.htm
    For funtion module to class
    http://help.sap.com/saphelp_47x200/helpdata/en/c3/225b5954f411d194a60000e8353423/content.htm
    for classes
    http://help.sap.com/saphelp_47x200/helpdata/en/c3/225b5c54f411d194a60000e8353423/content.htm
    for methods
    http://help.sap.com/saphelp_47x200/helpdata/en/08/d27c03b81011d194f60000e8353423/content.htm
    for inheritance
    http://help.sap.com/saphelp_47x200/helpdata/en/dd/4049c40f4611d3b9380000e8353423/content.htm
    for interfaces
    http://help.sap.com/saphelp_47x200/helpdata/en/c3/225b6254f411d194a60000e8353423/content.htm
    For Materials:
    1) http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCABA/BCABA.pdf -- Page no: 1291
    2) http://esnips.com/doc/5c65b0dd-eddf-4512-8e32-ecd26735f0f2/prefinalppt.ppt
    3) http://esnips.com/doc/2c76dc57-e74a-4539-a20e-29383317e804/OO-abap.pdf
    4) http://esnips.com/doc/0ef39d4b-586a-4637-abbb-e4f69d2d9307/SAP-CONTROLS-WORKSHOP.pdf
    5) http://esnips.com/doc/92be4457-1b6e-4061-92e5-8e4b3a6e3239/Object-Oriented-ABAP.ppt
    6) http://esnips.com/doc/448e8302-68b1-4046-9fef-8fa8808caee0/abap-objects-by-helen.pdf
    7) http://esnips.com/doc/39fdc647-1aed-4b40-a476-4d3042b6ec28/class_builder.ppt
    8) http://www.amazon.com/gp/explorer/0201750805/2/ref=pd_lpo_ase/102-9378020-8749710?ie=UTF8
    1) http://www.erpgenie.com/sap/abap/OO/index.htm
    2) http://help.sap.com/saphelp_nw04/helpdata/en/ce/b518b6513611d194a50000e8353423/frameset.htm
    Rewards if useful......................
    Minal

  • I can't seem to create my object for my array!!

    I am in school. My project is to create bank accounts for 3 people. I have 2 for loops, one for my account_numbers and the other for the months of the year. This will track each account's transactions for the year. I initialized my array: int[] accnt_num_array = {123, 523, 723}; Account 123 should be accnt_num_array[0] and so on. My next line is: accnt_num_array = new int[3]; To create the object, and call my method getDeposit, but I get an error: "object type required, but int found." I need help desperately.
    email me at [email protected]
    Any help you could give to a struggling Java programmer would be greatly appreciated.

    int[] accnt_num_array = {123, 523, 723}; Account 123 should
    be accnt_num_array[0] and so on. You have the instantiated the array of ints with the reference named accnt_num_array at this point. You don't need
    accnt_num_array = new int[3]; To create the object,because it's already in existance. Take this out and start using the array.

  • Can't seem to create keyboard shortcuts

    I have just purchased a Mac mini and am brand new to Apple so I presume I am running 10.6.2 but if more info is required you may need to direct me a little. My old PC died and I was sold the Mac mini as a drop-in replacement that could use my new screen / keyboard.
    I am unable to work out how to create a keyboard shortcut e.g., to associate the 'Home' key with 'Go to beginning of line.' I can get into System Preferences > Keyboard > Keyboard Shortcuts > Keyboard & Text Input OK. Clicking on the plus sign (Add an application shortcut) beneath the lists brings down the sub-panel with Application | Menu Title | Keyboard Shortcut OK.
    The problem is that I can only enter keys from the numeric keypad and arrow key cluster in the Keyboard Shortcut field, but nothing from the main section of the keyboard or the Ins / Del / Home / End / PgUp / PgDn cluster. Not letters, or numbers, or any other keystrokes that I can tell. I just get the system bell.
    It is a new Logitech keyboard which I set to US International layout as I work with accented character sets. Any assistance appreciated.

    You wouldn't be able to define that specific shortcut anyway. Try using Control-B (Off the top of my head; this page has a full list of them) to move to the beginning of a textfield / line.

  • Can't seem to create a DVD that works on my DVD player.

    I created a slide show and have attempted to save it as a DVD on a DVD+RW disc.  However, my DVD player can't read it and it tells me I have an incorrect disc.  What am I not doing correctly?

    Not in the Classic forum:
    http://discussions.apple.com/docs/DOC-2463
    Try iLife, iDVD, or iPhoto.  AppleTV may also help.

  • FW8 Can't Seem To Create Disjoint Rollover Effect

    Hello,
    I used previous versions of FW to create "disjoint rollover"
    effects without any problem. This time I'm using FW8 to create the
    same effect but so far it has proved unsuccessful, I have even
    tried the step by step instruction of "help" menu with no success.
    Can somebody pease help me with how to achieve this effect
    with FW8 if it is possible.
    Many thanks in advance!

    More than half of the trouble posts on the DW forum are the
    result of using
    a graphics editor to write HTML. It's a grand idea that
    utterly fails.
    Such HTML is rigid, and fragile. You cannot avoid HTML if you
    are going to
    be working on the web, no matter what the marketing hype
    says.
    Harsh? Perhaps. True and well intentioned? Yes.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "WollombiWombat" <[email protected]> wrote
    in message
    news:eo4c1j$kmn$[email protected]..
    > Murray: I think you are being a little harsh here for a
    newbie. If the
    > doco
    > says it works then it bloody well should!
    >
    > Linda: A voice of moderation and consideration as
    always. No wonder I like
    > your books and contributions at places like PVII and did
    I see you at
    > Community
    > MX ?
    >
    > Cobbyfred: Can I suggest that you take up Murray's
    veiled suggestion and
    > attempt to build the disjointed rollover using DW8 ?
    >
    > Cheers all.
    >

  • Can't seem to create new users and log in

    Please help. I'm almost sure that this has something to do with a game or other download that my teenager has done. About three weeks ago, she was unable to fully log into her user. She would type in her password, and then screen would change to the background she picked, and then the pointer would turn into the spinning color wheel (which my children now call The Spinning Wheel of Death), and that's it. No dock. No menu at the top. Forever spinning. It then somehow migrated to my oldest son's user, and he had the same problem. (Which leads me to believe that he was playing the same game she was and it corrupted something somehow.) My user, my husband's user and my youngest child's user are perfectly fine. I deleted their user accounts and tried to create new ones. They can be created, but when we try to log them in, The Spinning Wheel of Death occurs. I've tried using different names for the accounts, and get the same result every time. I've run Disk Utility and it repaired lots of different permissions, but it doesn't change what happens when we try to log in. We've had this computer for nearly two years, and so there is no warranty on it anymore. Help!
    Packerwidow

    HI,
    Back up all your important data on all accounts and perform either an Archive & Install or Erase and Install, instructions here.
    http://support.apple.com/kb/HT1545
    First, boot from your install disc and run Disk Utility in case there are errors on the startup disk.
    Insert your install disk and Restart, holding down the "C" key until grey Apple appears.
    Go to Installer menu and launch Disk Utility.
    Select your HDD (manufacturer ID) in the left panel.
    Select First Aid in the Main panel.
    *(Check S.M.A.R.T Status of HDD at the bottom of right panel. It should say: Verified)*
    Click Repair Disk on the bottom right.
    If DU reports disk does not need repairs quit DU and restart.
    If DU reports errors Repair again and again until DU reports disk is repaired.
    When you are finished with DU, from the Menu Bar, select Utilities/Startup Manager.
    Select your start up disk and click Restart
    While you have the Disk Utility window open, look at the bottom of the window. Where you see Capacity and Available. *Make sure there is always 10% to 15% free disk space*
    Carolyn

  • I can't seem to create another iTunes music library...  Please Help...

    I have tried what iTunes v9 tells me to do by holding the shift key while starting iTunes from the start menu...
    It doesn't work.
    Is anyone else having this problem?
    Has anyone found a fix yet?
    -Bill

    You need to press AND HOLD the shift key. Keep holding it down until the prompt comes up.
    If you still can't get it to work from the start menu, try it by clicking itunes.exe in
    C:\Program Files

  • Can we create objects with interface

    can we create objects with interface,if yes then where we implement the
    methods,can we type cast any object with inerface kind of object,if yes what kind
    of objects we can type cast

    can we create objects with interface,if yes then where we implement the
    methods
    Objects are created with classes, not interfaces, which are abstract.
    can we type cast any object with inerface kind of object,if yes what kind
    of objects we can type cast
    Objects may be cast to interfaces, but only if an object's class or one of its superclasses actually implements the interface.

  • I can't seem to make a working profile to connect to office 365 on a windows 7 pc with only the mapi cdo runtime version 6.5.8320.0 installed using mfcmapi nor programmatically

    Hi,
    I have been struggling with this for a few days now.
    i have pc where no outlook is installed, where i installed the MAPI CDO Runtime may update (version 6.5.8320.0). i checked in the registry that the default mail provider was set to exchangemapi (HKEY_LOCAL_MACHINE\SOFTWARE\Clients\Mail) .. it is.
    I downloaded the lastest version of mfcmapi, which i believe was the version of december 2013
    but i can't seem to create a profile for office 365 in it. I followed http://blogs.msdn.com/b/dvespa/archive/2013/05/21/how-to-mfcmapi-create-mapi-profile-exchange-2013.aspx and then i changed the properties to what was proposed here http://blogs.msdn.com/b/dvespa/archive/2013/07/15/create-profile-connect-mfcmapi-to-office-365.aspx
    That did not work, i keep getting an error one ore more properties are invalid when i try to use that created profile to connect to office 365 (from within mfcmapi).
    I also changed some of those proposed values to what autodiscover was telling me like setting PR_PROFILE_RPC_AUTH_PACKAGE to RPC_C_AUTHN_ANONYMOUS which should be the value $8000F001 instead of RPC_C_AUTH_NONE (at least i think so)
    I builded a simple program to encrypt my password using CryptProtectData and entered the value using mfcmapi in PR_PROFILE_AUTH_PASSWORD as was suggested in the last page.
    but nothing seems to work, i keep getting wrong configured errors and i'm totally clueless atm. This is supposed to work right on a pc where outlook is not installed ?
    I also tried this on another pc where outlook 2010 is installed and i am able to create the profile there and connect without a problem given that i enter the logon credentials once and let them be remember (they get stored / cached in the windows key store,
    like when using CREDWRITE function) from then on i can connect without a problem.
    also when calling configuremsgservice on the EMS service i created for a new profile in mfcmapi and let the UI show i can see on the pc where outlook is installed in the UI options to enter proxy information however when i do the same thing on the pc
    where only the mapi cdo runtime is installed i do not see any UI option to configure the proxy server information ... is this normal ?
    Hopefully someone can shed some light on what i'm doing wrong or might be wrong.
    Thanks in advance
    Willems Davy

    The window would open and I would get the hourglass cursor suggesting something was happening, but the Apple home page (default from the install) would not load, nor would any other page I tried (google, yahoo, cnn).
    Even though it's about a different application, I'd try the following document with that:
    iTunes 10.5 for Windows: May see performance issues and blank iTunes Store
    (Safari uses the same webkit engine to render web pages as iTunes uses to render the Store pages. So an issue that can cause the iTunes Store to blank can also cause a Safari for Windows application on the same PC to produce blank pages.)

  • Exchange Transport Error: ActiveX component can't create object

    Hi All
    I am trying to set up Exchange on portals however I seem to be having a problem.
    I have 1 * Exchange 2003 server and 1 * Portal server (with IIS and Outlook 2003 installed)
    When I do the Exchange test (data retrieval) I am getting an error in the log (see below)
    BEGIN 07/09/2005 09:03:54----
    URL: HTTP://saptest1:80/SAPExchange/Calendar.asp
    URL Parameters: Server=ohio.arconw.com&Alias=[email protected]&Action=READ&StartDate=200509070001&EndDate=200509071600&Email=[email protected]&Debug=true
    Reponse: <FAILURE><ERRORNUMBER>429</ERRORNUMBER><ERRORMESSAGE>ActiveX component can't create object</ERRORMESSAGE><CLASSNAME>Connection</CLASSNAME><METHODNAME>userLogon</METHODNAME><LINENUMBER>38</LINENUMBER><PARAMETERS>User = [email protected]
    Server = monster.arconw.com
    E-mail = [email protected]</PARAMETERS></FAILURE>
    END 07/09/2005 09:03:54----
    However on the clients this does not seem to be a problem, the test works ok!
    I have an issue in Collaboration (calendar) when I am getting an error 'An exception occurred while reading or writing from/to the IIS server'. I am hoping if I solve this portal issue the the collaboration issue will be fine!
    Any help would be great!

    Sorry wrong error, below is the correct one!
    BEGIN 07/09/2005 09:26:47----
    URL: HTTP://saptest1:80/SAPExchange/Calendar.asp
    URL Parameters: Server=monster.arconw.com&Alias=[email protected]&Action=READ&StartDate=200509070001&EndDate=200509071600&Email=[email protected]&Debug=true
    Reponse: <FAILURE><ERRORNUMBER>429</ERRORNUMBER><ERRORMESSAGE>ActiveX component can't create object</ERRORMESSAGE><CLASSNAME>Connection</CLASSNAME><METHODNAME>userLogon</METHODNAME><LINENUMBER>38</LINENUMBER><PARAMETERS>User = [email protected]
    Server = monster.arconw.com
    E-mail = [email protected]</PARAMETERS></FAILURE>
    END 07/09/2005 09:26:47----

  • ActiveX component can't create object:'Photoshop.Application'

    I am running Photoshop CS5.1 on a Windows 7 64-bit system. (Part of CS5.5 Master Collection installation)
    All I am trying to do is run the sample .vbs scripts that come with Photoshop.
    When I double click on any of the sample scripts, the Photoshosp window comes to the front and then after about 10 seconds I get the error:
    ActiveX component can't create object:'Photoshop.Application'
    This happens if I have Photoshop 64-bit or 32-bit running.
    This happens on two different computers running Windows 7.
    I couldn't find any solutions in a Google search.
    Any ideas?
    Thanks in advance.

    I got it working after I installed the x32 bit version of PS on my Windows 7 (64-bit) machine.
    I also selected "Run as Administator" when I launch PS once, and then rebooted. they was necessary to get permission for the type libraries it seems.
    http://screencast.com/t/4bw8XdKu

Maybe you are looking for

  • BIC Module Error in Sender Communication channel for EDI to File scenario.

    Hi Experts, We are working on the EDI based scenarion where EDI files come to SAP PI from partner and then through Split 997 Adapter Func Ack is sent back to the Partner . But we are facing a issue in our sender Communication Channel which is a File

  • Final Cut Pro 3 Shuts down

    I am forced to use an old version of Final cut on my new Mac Mini, but everytime I use a shortcut key, Final Cut closes. I have tried dissabling shortcuts in system preferences, but that did not help. Any suggestions?

  • FM 8.0p277 crashes when pasting DITA xref?

    For FM8p277, DITA. FrameMaker hard-crashes (a.k.a. "bombs out") if I try to copy-and-paste a DITA xref tag and its contents into another location in the XML topic file. Has anyone else seen this? I have a couple of crash logs I can file as a bug, but

  • IMovie 11 Conversion on Import of ContourGPS files

    I have a ContourGPS video camera that creates 720p or 1080p h264 files with ACC audio compression. The files have .mov extension. When I import them in imovie 11, it takes a long time because imovie is doing some sort of conversion. Does anyone know

  • How to work with text objects in b2b frontend

    Hi, My functional team has assigned new text ids "0012","Z005" and "Z025" in text object "CRM_ORDERH" and text procedure "ZORDER02". Now they want me to add five new text input fields to b2b order creation page and they want the data entered by custo