It does not fit

I have mini display to DVI and DVI to VGA adaptor. And the DVI connections don't fit there are 4 pot on the button on both side of straight strip. Gets in the way.
Do I need to purchase a mini Display to VGA adaptor

You can do the same with Aperture.
I often create a temporary "*to sort*" project and bring in my casual or multi-event cards. Once all of the pics are in this project I sort them into relevant albums. Then I batch keyword the pics so that each group is unique, in teh project view I do a query to bring up the unique keyword, select all of the relevant images and drag them to the final relevant project. The "to sort" project should no longer have the images appear in it, however the album should still display the pics, pick up the album and move it to your final project. Repeat for each category. Double handling? Well it works for me.
The only other way is to select the images at the import stage and bring them into each project. I like the first method, if any images are missed in the sorting process they are left behind in the "to sort" project.
Tony

Similar Messages

  • "BP Category 1 does not fit the data in category 2"  "Replies Appreciated"

    Hi Gurus,
    When i am trying to create an "Individual Account" in UI, I am getting the error "BP Category 1 does not fit the data in category 2".
    If i try to create a "group" then it says "BP Category 3 does not fit the data in category 2".
    It allows me to create only "Corporate Account" i..e. Category 2.
    What should i do to create "Individual Account" and "Group". (Category1 & Category 3).
    Individual Account (Category 1) - "BP Category 1 does not fit the data in category 2".
    Corporate Account (Category 2) - Able to create only Corporate Account
    Group (Category 3) - "BP Category 3 does not fit the data in category 2".
    Thanks & Regards
    Rohan

    Hi Rohan,
    Hope this SAP Note : 1232459, Solves your problem.
    You might have created a custom configuration for corporate accounts.
    Unfortunately in case of custom configurations exist, they are selected with higher priority.
    So in this case the configuration for corporate accounts is also shown for individual accounts,
    this causes error.
    In order to solve this problem, create a custom configuration for individual account also,
    i.e for view BP_HEAD/AccountDetails. Object type BP_ACCOUNT and object subtype INDIVIDUAL.
    Please make sure that the custom configuration includes the fields firstname and lastname for
    persons instead of name1 and name2 which are only allowed for corporate accounts.
    I hope the above information resolves your problem.
    Best Regards
    Shiven

  • CRM 2007 IC : error "BP category 2 does not fit the data in category 1"

    Hi Guys,
    When I am trying to save the data on the Bupacreate page it gives the error as follows.
    "BP category 2 does not fit the data in category 1".
    Can anyone suggest what is causing this error to happen and how this error can be corrected.
    thanks & regards
    Sandy

    Hi,
    This error usually occrus when you try to set field in without specifing bptype ie person, group etc. In our scenario we were trying to set field in Person which was not present in group. but since do_prepare_output method is same in both, that feild was getting set for group as well. When we placed restriction this error got removed.
    Best regards
    Pankaj Kumar

  • Error: 'BP category 1 does not fit the data in category 2'

    Hi,
                i have written a program to create a contact person and the code for it is pasted below...when i run this program i get nothing but this message in the status bar 'BP category 1 does not fit the data in category 2'...can someone tell me wht the error means and y it is coming.
    thanks:)
    pushpa
    *table for storing the line by line records in the excel file
    TYPES: BEGIN OF TTAB,
            REC(1000) TYPE C,
           END OF TTAB.
    DATA ITAB TYPE TABLE OF TTAB WITH HEADER LINE.
    *variable for storing the name of the excel file to be uploaded
    DATA UP_FILE TYPE STRING.
    *data to be uploaded
    TYPES: BEGIN OF TDAT,
            FLD1 TYPE BAPIBUS1006_CENTRAL_ORGAN-NAME1,
            FLD2 TYPE BAPIBUS1006_ADDRESS-STREET,
            FLD3 TYPE BAPIBUS1006_ADDRESS-CITY,
            FLD4 TYPE BAPIBUS1006_ADDRESS-REGION,
            FLD5 TYPE BAPIBUS1006_ADDRESS-POSTL_COD1,
            FLD6 TYPE BAPIBUS1006_ADDRESS-COUNTRY,
            FLD7 TYPE BAPIBUS1006_CENTRAL-PARTNEREXTERNAL,
           END OF TDAT.
    DATA IDAT TYPE TABLE OF TDAT WITH HEADER LINE.
    DATA: BUSINESSPARTNER TYPE BAPIBUS1006_HEAD-BPARTNER,
          CENTRALDATA TYPE BAPIBUS1006_CENTRAL,
          ORGANIZATION TYPE BAPIBUS1006_CENTRAL_ORGAN,
          ADDRESS TYPE BAPIBUS1006_ADDRESS,
          BAPIRETURN LIKE BAPIRET2 OCCURS 0 WITH HEADER LINE.
    PARAMETERS P_FILE TYPE LOCALFILE.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR P_FILE.
      CALL FUNCTION 'KD_GET_FILENAME_ON_F4'
        EXPORTING
          STATIC    = 'X'
        CHANGING
          FILE_NAME = P_FILE.
    START-OF-SELECTION.
      UP_FILE = P_FILE.
      CALL FUNCTION 'GUI_UPLOAD'
        EXPORTING
          FILENAME                = UP_FILE
        TABLES
          DATA_TAB                = ITAB
        EXCEPTIONS
          FILE_OPEN_ERROR         = 1
          FILE_READ_ERROR         = 2
          NO_BATCH                = 3
          GUI_REFUSE_FILETRANSFER = 4
          INVALID_TYPE            = 5
          NO_AUTHORITY            = 6
          UNKNOWN_ERROR           = 7
          BAD_DATA_FORMAT         = 8
          HEADER_NOT_ALLOWED      = 9
          SEPARATOR_NOT_ALLOWED   = 10
          HEADER_TOO_LONG         = 11
          UNKNOWN_DP_ERROR        = 12
          ACCESS_DENIED           = 13
          DP_OUT_OF_MEMORY        = 14
          DISK_FULL               = 15
          DP_TIMEOUT              = 16
          OTHERS                  = 17.
    *writing out the contents of the internal table itab
      LOOP AT ITAB.
        WRITE:/ ITAB-REC.
        CLEAR IDAT.
        SPLIT ITAB-REC AT CL_ABAP_CHAR_UTILITIES=>HORIZONTAL_TAB
                    INTO IDAT-FLD1 IDAT-FLD2 IDAT-FLD3 IDAT-FLD4 IDAT-FLD5 IDAT-FLD6 IDAT-FLD7.
        APPEND IDAT.
      ENDLOOP.
      LOOP AT IDAT.
        MOVE: IDAT-FLD1 TO ORGANIZATION-NAME1,
              IDAT-FLD2 TO ADDRESS-STREET,
              IDAT-FLD3 TO ADDRESS-CITY,
              IDAT-FLD4 TO ADDRESS-REGION,
              IDAT-FLD5 TO ADDRESS-POSTL_COD1,
              IDAT-FLD6 TO ADDRESS-COUNTRY,
              IDAT-FLD7 TO CENTRALDATA-PARTNEREXTERNAL,
              '0001' TO CENTRALDATA-PARTNERTYPE.
        CALL FUNCTION 'BAPI_BUPA_CREATE_FROM_DATA'
          EXPORTING
            PARTNERCATEGORY         = '1'
            CENTRALDATA             = CENTRALDATA
            CENTRALDATAORGANIZATION = ORGANIZATION
            ADDRESSDATA             = ADDRESS
          IMPORTING
            BUSINESSPARTNER         = BUSINESSPARTNER
          TABLES
            RETURN                  = BAPIRETURN.
        IF BAPIRETURN IS NOT INITIAL.
          READ TABLE BAPIRETURN INDEX 1.
          MESSAGE
            ID BAPIRETURN-ID
            TYPE BAPIRETURN-TYPE
            NUMBER BAPIRETURN-NUMBER
            WITH BAPIRETURN-MESSAGE_V1
            BAPIRETURN-MESSAGE_V2
            BAPIRETURN-MESSAGE_V3
            BAPIRETURN-MESSAGE_V4.
          EXIT.
        ENDIF.
        REFRESH BAPIRETURN.
        CLEAR BAPIRETURN.
        CALL FUNCTION 'BAPI_BUPA_ROLE_ADD'
          EXPORTING
          BUSINESSPARTNER = BUSINESSPARTNER
          BUSINESSPARTNERROLE = 'BUP001'
          DIFFERENTIATIONTYPEVALUE =
          TABLES
          RETURN = BAPIRETURN.
        IF BAPIRETURN IS NOT INITIAL.
          READ TABLE BAPIRETURN INDEX 1.
          MESSAGE
            ID BAPIRETURN-ID
            TYPE BAPIRETURN-TYPE
            NUMBER BAPIRETURN-NUMBER
            WITH BAPIRETURN-MESSAGE_V1
            BAPIRETURN-MESSAGE_V2
            BAPIRETURN-MESSAGE_V3
            BAPIRETURN-MESSAGE_V4.
          EXIT.
        ENDIF.
        CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'.
        WRITE:/ 'Business Partner ID:', BUSINESSPARTNER.
      ENDLOOP.

    Hi Pushpa,
             you can use following code to create relationships using BAPI. In this Business partner is organisatin. contact persion paramenter is person. other information related to relationship details
    CALL FUNCTION 'BAPI_BUPR_CONTP_CREATE'
        EXPORTING
          BUSINESSPARTNER           = SEARCH_PARTNER
          CONTACTPERSON             = CONTACT_SAP
      VALIDFROMDATE             = '00010101'
      VALIDUNTILDATE            = '99991231'
      DEFAULTRELATIONSHIP       =
      ADDRESSGUID               =
          CENTRALDATA             = WA_CENTRAL_DATA
          ADDRESSDATA             = WA_ADDR_DATA
          TABLES
        BAPIADTEL                 = I_TEL_DATA
        BAPIADFAX                 = I_FAX_DATA
      BAPIADTTX                 =
      BAPIADTLX                 =
        BAPIADSMTP                = I_EMAIL_DATA
      BAPIADRML                 =
      BAPIADX400                =
      BAPIADRFC                 =
      BAPIADPRT                 =
      BAPIADSSF                 =
      BAPIADURI                 =
      BAPIADPAG                 =
      BAPIAD_REM                =
      BAPICOMREM                =
         RETURN                    = I_RETURN
    hope this will help you
    Siva

  • I have a macbook 13"screen purchased in 2007; I want to hook it up to my HDTV; I purchased a mini display port to hdmi adaptor but it does not fit.   what kind of adaptor will work for this model?

    I have a Macbook, 13" screen, purchased in 2007.    I want to hook it up to my HDTV; I purchased a mini display port to hdmi adapter but it does not fit.   Any suggestions?

    If you connect yourMacBook using a MiniDVI/HDMI adapter you will need to use external speakers for audio since the pre-2010 MacBooks will only send video through the MiniDVI or MiniDisplay Port . The MiniDVI/HDMI doesn't carry audio and there's no audio plugs on the TV to work with HDMI since it's expecting audio with the HDMI.
    If your TV has a DVI input plug you can use a MiniDisplayPort/DVI adapter. Then a DVI cable to the DVI input plug on the TV. The TV will have RCA audio plugs for use with the DVI. Plus DVI gives a sharper image than HDMI.

  • Result set does not fit; it contains too many rows

    Dear All,
    We are in BI7 and running reports on Excel 2007. Even though number of rows limitation in Excel 2007 is more than  1Million, when I try to execute a report with more than 65k records of output, system is generating output only for 65k rows with message "Result set does not fit; it contains too many rows".
    Our Patch levels:
    GUI - 7.10
    Patch level is 11
    Is there any way to generate more than 65000 rows in Bex?
    Thanks in advance...
    regards,
    Raju
    Dear Gurus,
    Could you please shed some light on this issue?
    thanks and regards,
    Raju
    Edited by: VaraPrasadraju Potturi on Apr 14, 2009 3:13 AM

    Vara Prasad,
    This has been discussed on the forums - for reasons of backward compatibility I do not think BEx supports more that 65000 rows .... I am still not sure about the same since I have not tried out a query with more that 65K rows on excel 2007 but I think this is not possible...

  • How do I transfer music and photos from my Power Mac G5 to my new iMac. Have an old FireWire but it does not fit the new iMac

    I am trying to transfer photos, music, etc from my Power Mac G5 to my new iMac. The Power Mac is too old for the migration assistant to help. I have an old Firewire but it does not fit the new iMac. Any suggestions? If a Firewire is the best option which one do I need? Thanks.

    You need a Firewire 800 to 400 adapter or cable or a external USB 2/3 drive (self powered) it can default to the old USB the G5 uses 1 or 2.
    Format the drive info here.
    Backup and restore info
    https://discussions.apple.com/message/16276201#16276201

  • Page does not fit on paper when printed directly to printer

    Hi experts,
    I have developed a form in transaction SFP, using A4 as the paper format for the master pages. If I print to spool and preview and print my form from spool using transaction SP01, the form prints nicely. If I print directly to printer using the generated function module for the form (setting parameter REQIMM to true), the page does not fit on the paper (it is cropped), and also I do not get duplex printing.
    Why do I get different results when printing directly to printer as opposed to printing to spool first? How can I ensure that the form is printed correctly when printing directly to printer?
    thanks!
    Frank

    Did you check the window settings of the Firefox desktop shortcut to see how Firefox opens?
    Did you try to delete the current Firefox desktop shortcut and create a new shortcut?
    Use Restore or Maximize in the right-click context menu of the Taskbar icon to set focus to the Firefox application if you do not see the Firefox window.
    Open the system menu of that Firefox window via Alt+Space and see if you can move and resize that window (use the keyboard cursor keys).<br />
    If that works then first close all other open Firefox windows and then close Firefox via "File > Exit/Quit" to save that setting.

  • My airport card does NOT fit!

    I've been searching and searching for my answer in the forums, so my apologies if the answer is already out there...
    Problem:
    I have a PowerMac G4 (firewire 800 - Mirrored Driver Doors).
    I just bought an Original Airport Card that had said IN THE DESCRIPTION that the card would fit my specific computer.
    However, when I received it, I found it does not fit!
    I've looked at the computer manual and have seen exactly where the airport card should slide into.
    BUT seems that the bracket that the card should slip into, is too small. I've now done search after search for which card that I REALLY do need, but all results say that this "original airport card" IS the one that I need. One result did say that I needed an adapter. But I dont see how an adapter would help me if the bracket is too small even for the card.
    I am baffled and extremely frustrated.
    Can someone be CLEAR about exactly what I need?
    -MandyZ

    If it has a FW800 port on the back, it will use Airport Extreme
    If it does not have a FW800 port (i.e., FW400 only), it will use regular Airport. When the original Airport cards were made and speced, the FW800 MDD G4 models had not yet been produced.
     Cheers, Tom

  • Error When creating Broadcastings "Portal theme does not fit output format"

    Hi All,
    When i create a Broadcasting Settings i am getting an Error saying "Portal theme does not fit output format", and below is the detailed that we are getting,
    "Diagnosis
    You used separate portal themes to generate PDF or print formats (PS or PCL). The output format that you selected is not appropriate for the portal theme currently set.
    System Response
    The broadcast setting is not consistent and you cannot save or execute it.
    Procedure
    Change the output format or the portal theme correspondingly. (The portal theme is set to the first valid value for the current output format when you display the corresponding tab page).
    Procedure for System Administration
      Notification Number RSRD 640"
    Can anyone help how to resolve this issue?
    Regards,
    Muruganand.K

    Would you have chance to provide me the sollution...
    We are facing the exactly the same error message
    Thanks a lot in advance
    Regards
    Ivan

  • My igoogle homepage does not fit properly on my screen

    I use igoogle homepage and the layout does not fit. It is minimized currently to get the "firefox tab" at the top but the left side is only half visible.

    My igoogle homepage started loading off-center. I could hit "refresh" and it would then load properly, but I wanted it to load correctly from launch.
    After disabling add-ons (extensions), I discovered that the SKYPE extension was to blame. I uninstalled the extension and now the homepage loads correctly...centered.

  • Window does not fit into page

    Hi all,
    I'm creating a smartform which prints one internal table consists of 36 fields. In table line type i have mentioned the 36 fields. First four are of 4CM and other 32 fields of 2CM width. So in total i have mentioned as 80 CM. 
    But its showing an error like 'Main window does not fit into Page'.  
    What could be the mistake?
    Can anyone help me in this..
    Regards,
    Shanthi

    Hi,
    U have to adjust the 36 fields into 21 cm by Allocating Space accordingly.
    if Your Space is small then data will be displayed in the next line.
    And display The data in Smallest  font possible.
    Regards
    sandipan

  • SAP DSD - geocoding for customers - field format does not fit to examples

    Hello to all,
    We have a customer requirement behind this. We intend to use the DSD-Addon for several issues. One of these issues is to store geocoding information for our customer data within SAP. The SAP-Release is 4.7 with the DSD-Addon active. I checked all threads within the network and also checked SAP-Help and OSS-messages. Now our issue:
    When I look at the fields for storing the geocode (Longitude and Latitude) they do not fit to the testdata I got from our customers. The data look like this:
    customer:       x-Coord           y-Coord_
    10001             744264,3384   6657823,32
    10002             813368,6494   6699051,344
    10003             790475,8379   6702787,298
    10004             862729,1893   6690792,612
    The fields in the DSD-Customerdata have the format "123.123456789012". So I wonder how my data could fit into these fields. Is there anybody who has experience with this? I did not find any information or examples in the SAP-Help for this. What is wrong the format of the fields or the format of the x/y-Coordinates?
    Thanks in advance!
    Best regards,
    Gerlinde von Calle and Thomas Vomhof
    Edited by: Thomas Vomhof on Oct 8, 2008 6:12 PM

    Hi Srinivas ,
    Let me confirm which version of SAP your using
    As per your post -
    1. Table total does not fit into window 
         Check your table is fit in the window or not (window will be main window)
    2.Error occured while sending mail SO_OBJECT_SEND, return code L (message type: warning)
    Check your parameters that passing to the SO_OBJECT_SEND
    3.Page format with orientation unknown (message type: warning)
         Check your styles that are using  in the form 
    4.Form TOTALS has wrong page format (message type: error)
         Chekc your page format that is going to to support printer what your using - check the printer settings.
        I think your are using the u r own z page format
    Let me know if any concerns...

  • Photo does not fit in the screen

    I watched that video http://www.youtube.com/watch?v=KJMi5l9Ru-g     and tried this to do the parallax scrolling with the image this on my page. Unfortunately, my photo does not fit in the whle screen, even if I take a . jpg image  3000 px wide. ( look here ) I have no idea how I can get the photo to fit in the whole screen.
    Thank you for your help.
    Heike

    Hello again,
    I'm sorry, but nothing works and I don't understand, what you mean. I will show you again with no other item on the page. I draw a rectangle which snaps each of the lines at the outside.
    I got rid of the stroke and the fill.
    I filled with a .jpg image 3000 px wide.
    For the future parallax scrolling I need to set up the photo in vertical tile. And this is, how it shows on the screen.
    I still have no idea, what I made wrong. Thanks for your help
    Heike

  • I have a tolino vision 2 and cant copy the e-books from my pc to the tolino. I have the same adobe ID for the tolino and for the PC. I get the message I'm not authoriesed to copy, and/ or my adobe ID does not fit/match to the one at my PC. What can  do? C

    I have a tolino vision 2 and cant copy the e-books from my pc to the tolino. I have the same adobe ID for the tolino and for the PC. I get the message I'm not authoriesed to copy, and/ or my adobe ID does not fit/match to the one at my PC. What can  do? Can someone answer in German?

    I suspect you will want to ask your question at the forum for Adobe Digital Editions which is eBook, eBook reader device focused.
    Be well...

  • Itunes still does not fit on my screen.  How can I make this happen?

    Itunes does not fit my screen so I cannot even see the scroll bar.  Can I fix this?

    I asked the same question a couple of days ago.  Today I read a similar post and read that there are sync issues with a 5C do two things power down the computer, make sure that no applications are running on the 5C.  When the computer restarts it will connect to the 5C after the drivers install.  At least this worked for me. I am using Windows 7, iOS 7.0.4, and iTunes 11.1.3.8 .

Maybe you are looking for

  • Optical Out (NO LIGHT)

    I am trying to get an optical signal out of the optical out port. I have plugged in an optical cable but dont seem to have any light output at the toslink end. Does this output socket need to be enabled any where? Thanks for your help!! Regards Alf

  • Best Practices for AP Power

    Can someone tell me or explain to me if there are best practices for AP Power based on data or voice networks?  Specifically, if you're tasked to do a Wireless Site Survey with the intention that RRM will not be used how would you configure the APs p

  • RoboHelp HTML X5: Merged help not displaying ToC

    Hi All: Hoping someone can help me here. I have been generating merged help for some time now w/o problems. But got this problem today after compiling a particular project after a 15-month gap. When I compiled the parent/master project, the ToC displ

  • How can i add Facebook likes button on my mac mail?

    How can i add Facebook likes button on my mac mail?

  • SQLplus doesn't allow login after database creation login

    I can login in to SQLplus right after the DB config assist completes but after I close out of SQLplus I cannot login again. I get the error messeages: ORA-01034: ORACLE not available ORA-27101: shared memory realm does not exist.