Logo and address

hello,
i want to add our logo and address in the standard report of purchase order, please let me know how to do the same and what are steps to followed.
please explain the entire details and steps and oblige.
thanks
suja

hi sujatha
*& Report  ZSAMP_ALV_DISPLAY                                           *
REPORT  zsamp_alv_display                       .
TYPE-POOLS: slis.
TABLES : t001,t005t.
TYPES : BEGIN OF  struct1,
        bukrs LIKE t001-bukrs,
        butxt LIKE t001-butxt,
        land LIKE t001-land1,
        spras LIKE t001-spras,
        periv LIKE t001-periv,
        landx LIKE t005t-landx,
        numb(3) TYPE n,
        END OF struct1.
TYPES: BEGIN OF struct2,
       land1 LIKE t005t-land1,
       landx1 LIKE t005t-landx,
       END OF struct2.
TYPES: tab1 TYPE STANDARD TABLE OF struct1,
       tab2 TYPE STANDARD TABLE OF struct2.
DATA: itab1 TYPE tab1,
      itab2 TYPE tab2,
      itab_temp TYPE tab1,
      wa1 TYPE struct1,
      wa2 TYPE struct2,
      i_fieldcat TYPE slis_t_fieldcat_alv.
SELECT-OPTIONS: s_bukrs FOR t001-bukrs.
START-OF-SELECTION.
  PERFORM get_data.
  PERFORM enhance_data TABLES itab1.
  itab_temp[] = itab1.
  SORT itab_temp BY land.
  DELETE ADJACENT DUPLICATES  FROM itab_temp.
  CLEAR itab_temp.
  LOOP AT itab1 INTO wa1.
    READ TABLE itab2 INTO wa2 WITH KEY land1 = wa2-land1.
    IF sy-subrc = 0 .
      wa1-land = wa2-land1.
      MODIFY itab1 FROM wa1 TRANSPORTING landx WHERE land = wa2-land1.
    ENDIF.
  ENDLOOP.
  PERFORM alv_merge.
  PERFORM fieldcat TABLES i_fieldcat.
  PERFORM alv_display.
*&      Form  GET_DATA
      text
-->  p1        text
<--  p2        text
FORM get_data .
  SELECT  bukrs
          butxt
          land1
          spras
          periv  FROM t001 INTO CORRESPONDING FIELDS OF TABLE itab1
           WHERE bukrs IN s_bukrs.
  SELECT land1
         landx
          FROM t005t INTO CORRESPONDING FIELDS OF TABLE itab2
                  FOR ALL ENTRIES IN itab1 WHERE land1 = itab1-land.
ENDFORM.                    " GET_DATA
*&      Form  ENHANCE_DATA
      text
-->  p1        text
<--  p2        text
FORM enhance_data TABLES  p_tab TYPE tab1 .
  DATA  wa_tab TYPE struct1.
  LOOP AT p_tab INTO wa_tab.
    wa_tab-numb = sy-tabix.
    MODIFY p_tab FROM wa_tab TRANSPORTING numb.
  ENDLOOP.
ENDFORM.                    " ENHANCE_DATA
*&      Form  ALV_MERGE
      text
-->  p1        text
<--  p2        text
FORM alv_merge  .
*TABLES   P_I_FIELDCAT.
  CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE'
   EXPORTING
     i_program_name               = sy-repid
     i_internal_tabname           = 'I_TAB1'
    I_STRUCTURE_NAME             =
    I_CLIENT_NEVER_DISPLAY       = 'X'
     i_inclname                   = sy-repid
    I_BYPASSING_BUFFER           =
    I_BUFFER_ACTIVE              =
     CHANGING
      ct_fieldcat                  = i_fieldcat
   EXCEPTIONS
     inconsistent_interface       = 1
     program_error                = 2
     OTHERS                       = 3.
  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.                    " ALV_MERGE
*&      Form  ALV_DISPLAY
      text
-->  p1        text
<--  p2        text
FORM alv_display .
  DATA : returncode(200) .
  DATA: BEGIN OF fields OCCURS 2.
          INCLUDE STRUCTURE sval.
  DATA: END OF fields.
  CLEAR fields.
  fields-tabname     = 'RLGRAP'.
fields-fieldname   = 'FILENAME'.
fields-value       =  p_file.
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
   EXPORTING
      i_bypassing_buffer                =  'X'
      filename                = filestring
      write_field_separator   = ','
      i_grid_title                      =  'MERGE TABLES'
      it_fieldcat                       =   i_fieldcat
      i_callback_top_of_page            =  'F_HEADER'
       i_callback_program               =   sy-repid
    TABLES
      t_outtab                          =  itab1
     EXCEPTIONS
     program_error                     = 1
     OTHERS                            = 2.
  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.                    " ALV_DISPLAY
*&      Form  FIELDCAT
      text
-->  p1        text
<--  p2        text
FORM fieldcat  TABLES  p_i_fieldcat TYPE slis_t_fieldcat_alv..
  DATA: l_fieldcat TYPE slis_fieldcat_alv.
  CLEAR l_fieldcat.
  l_fieldcat-col_pos = 1.
  l_fieldcat-fieldname = 'NUMB'.
  l_fieldcat-seltext_l = 'SR.NO.'.
  l_fieldcat-key = 'X'.
  l_fieldcat-edit = 'X'.
  APPEND l_fieldcat TO p_i_fieldcat.
  CLEAR l_fieldcat.
  l_fieldcat-col_pos = 2.
  l_fieldcat-fieldname = 'BUKRS'.
  l_fieldcat-ref_tabname = 'T001'.
  l_fieldcat-ref_fieldname = 'BUKRS'.
  l_fieldcat-edit = 'X'.
  APPEND l_fieldcat TO p_i_fieldcat.
  CLEAR l_fieldcat.
  l_fieldcat-col_pos = 3.
  l_fieldcat-fieldname = 'BUTXT'.
  l_fieldcat-ref_tabname = 'T001'.
  l_fieldcat-ref_fieldname = 'BUTXT'.
  l_fieldcat-edit = 'X'.
  APPEND l_fieldcat TO p_i_fieldcat.
  CLEAR l_fieldcat.
  l_fieldcat-col_pos = 4.
  l_fieldcat-fieldname = 'LAND'.
  l_fieldcat-ref_tabname = 'T001'.
  l_fieldcat-ref_fieldname = 'LAND1'.
  l_fieldcat-edit = 'X'.
  APPEND l_fieldcat TO p_i_fieldcat.
  CLEAR l_fieldcat.
  l_fieldcat-col_pos = 5.
  l_fieldcat-fieldname = 'SPRAS'.
  l_fieldcat-ref_tabname = 'T001'.
  l_fieldcat-ref_fieldname = 'SPRAS'.
  l_fieldcat-edit = 'X'.
  APPEND l_fieldcat TO p_i_fieldcat.
  CLEAR l_fieldcat.
  l_fieldcat-col_pos = 6.
  l_fieldcat-fieldname = 'PERIV'.
  l_fieldcat-ref_tabname = 'T001'.
  l_fieldcat-edit = 'X'.
  l_fieldcat-ref_fieldname = 'PERIV'.
  APPEND l_fieldcat TO p_i_fieldcat.
  CLEAR l_fieldcat.
  l_fieldcat-col_pos = 7.
  l_fieldcat-fieldname = 'LANDX'.
  l_fieldcat-ref_tabname = 'T005T'.
  l_fieldcat-ref_fieldname = 'LANDX'.
  l_fieldcat-edit = 'X'.
  APPEND l_fieldcat TO p_i_fieldcat.
  CLEAR l_fieldcat.
ENDFORM.                    " FIELDCAT
*&      Form  f_header
      text
-->  p1        text
<--  p2        text
FORM f_header .
  DATA:  t_header      TYPE slis_t_listheader,
         wa_header     TYPE slis_listheader,
         t_line        LIKE wa_header-info,
         ld_lines      TYPE i,
         ld_linesc(10) TYPE c.
Title
  wa_header-typ  = 'A'.
  wa_header-info = 'Purchase Requistion Report'.
  APPEND wa_header TO t_header.
  CLEAR wa_header.
Date
  wa_header-typ  = 'A'.
  wa_header-info = 'Date: '.
  CONCATENATE  sy-datum+6(2) '.'
               sy-datum+4(2) '.'
   sy-datum(4) INTO wa_header-info."todays date
  APPEND wa_header TO t_header.
  CLEAR: wa_header.
Total No. of Records Selected
  DESCRIBE TABLE itab1 LINES ld_lines.
  ld_linesc = ld_lines.
  CONCATENATE 'Total No. of Records : ' ld_linesc
    INTO t_line SEPARATED BY space.
*T_LINE = 'Requisation Report,'.
  wa_header-typ  = 'A'.
  wa_header-info = t_line.
  APPEND wa_header TO t_header.
  CLEAR: wa_header, t_line.
  t_line ='Its my Report:'.
  wa_header-typ  = 'A'.
  wa_header-info = t_line .
  APPEND wa_header TO t_header.
  CLEAR: wa_header, t_line.
  CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
    EXPORTING
      it_list_commentary = t_header
      i_logo             = 'HCL_LOGO'.
ENDFORM.                    " f_header
*&      Form  f_top_list
      text
-->  p1        text
<--  p2        text
FORM f_top_list .
  FORMAT COLOR COL_HEADING ON.
  WRITE: /10 text-h10,  text-h09.
  FORMAT COLOR OFF.
  WRITE: /10 text-h11, sy-datum.
  WRITE: /10 text-h12,  sy-pagno.
ENDFORM.                    " f_top_list
*&      Form  f_user_command
      text
-->  p1        text
<--  p2        text
FORM f_user_command .
ENDFORM.                    " f_user_command
regards
kumar.

Similar Messages

  • Want to change company logo and address.

    Hi all,
    Here i have one Standard print report "SAPF130K" for customer or vendor balance conformation . But when i run this report this time i get logo of company "IDES HOLDING AG" and getting address of this company. but customer number and his address get properly but now i want to get my company logo place of this "ides holding ag" . For this i find many thing in SE71 tcode but i am still not able to change this logo and address so can u please kindly help me out how can i change this both.
    Thanks in Advance.
    Keyur

    @  Anurag_N: This is not ALV, but SAP SCRIPT report.
    Hello,
    This standard report is using form F130_CONFIRM_01 for the printing purpose.
    Please check in this form, how you can handle ur logo.
    R u doing any config for printing this report for the form etc?
    This text is coming from the window ADDRESS and the below inlude:
    INCLUDE &T001G-TXTAB& OBJECT TEXT ID ADRS LANGUAGE &T001-SPRAS&, where &T001G-TXTAB& for me is coming as
    ADRS_SENDER.
    So, just add ur logo in the standard text ADRS_SENDER in SO10, you will c it in the sap script layout.
    But, i am not sure how this variable &T001G-TXTAB&  gets populated and if it will get changed for soem other value.
    Edited by: Kanwardeep Singh Gill on Apr 9, 2010 12:30 PM
    Edited by: Kanwardeep Singh Gill on Apr 9, 2010 12:35 PM

  • Can end user insert and save logo and address on PDF?

    I design sell sheets for our large network of dealers. I am looking for a way a dealer can download a PDF, add their logo and address into a field and then save the document and bring to their own printer for output. I work on a Mac.

    They can if they have Acrobat, and not just Reader. Although you can Reader-enable a document which allows Reader to save a modified form, I believe the Acrobat license prohibits you from selling Reader-enabled documents. You client could Reader-enable the document and provide it to his users, and he would have to comply with the Acrobat License Agreement with respect to Reader-enabled documents.
    In any case, Reader can only add an external graphic/image by pasting from the clipboard as a stamp annotation for forms created with Acrobat. XFA forms created in LiveCycle Designer can make use of it's image field, which allows the user to select an image form their system.
    If your clients have Acrobat Standard or Pro, you can set up a button that allows them to import a logo from a large number of sources, including images (jpg, tif, png, etc.) and other formats (pdf, word, etc.), since Acrobat knows how to convert them. If you want more help with this, post again.

  • How to create the default empty work book with company logo and address????

    Hi Guru's
    I am working in ECC5.0 (BW 3.5), i wann create the default empty work book with company logo and company address. so when i am executing any query's that should open in the default empty work book.
    greatly appreciated your help. will assign pt's for sure.
    thanks and regards
    Mohan

    Hi Mohan,
      Report designer is used in BI 7.It is a seperate application used for formatting
    the report.
    For BW3.5,go through this link.
    http://help.sap.com/saphelp_nw04/helpdata/en/33/746e393cf65c1ae10000000a114084/frameset.htm
    This would help you
    Regards,
    Senoy

  • Mail and Address Book text appears as gobbledygook

    The software headings and some of the input text in Mail and Address Book appears as random text symbols. For example in Address Book the headings beside the input boxes (Name, Tel, Fax, E-mail, etc) appear as random symbols. In the far right hand pane that shows the content of an Address Book entry, the two input boxes at the top that should display the christian and surname have also been replaced by random symbols.
    In Mail, again it's the software headings that have been corrupted (To, From, Date, cc. But also my signatures are also now made of randon symbols as is any text that I enter into the body of a new e-mail.
    This has not just happened and is the result of a series of problems.
    In order they were:
    1) created an Automator application to search my HD and copy all images (actually just after client photography and logos) to a folder called images on my desktop...I know stupid, stupid thing to do as I forgot about all of the millions of other images contained on the HD. By the time I realised my mistake my desktop (the 'put in folder' action clearly didn't work) was swarming with images but still running. I couldn't shut the app down and had to shut down the Mac with a Power button shut down. On rebooting, the desktop would not rebuild (with approx 11,500 images sitting on it, hardly surprising) and Finder kept crashing.
    2) Despite the crashed finder I managed to set up a new Admin user and log in on this. I considered a target disk mode transfer to another machine, but this would have transferd the desktop issue. Under the new login I then changed the ownership of the old User folders and transfered all of the User Library items across the new identity. This is probably not best practice, but with hideous work pressure and screaming clients I had to act swiftly.
    It is probably step two that has mucked things up. Everything else seems to be acting fine - even keychain access (the keychain was dragged across from the old user id) works fine after validating access when the alert window appears.
    Complete idiotic user error, I know and, frustratingly, I'm a pretty experienced user with a fairly good grasp of Mac systems...however, this has foxed me.
    Any urgent thoughts would be appreciated
    Kind regards
    Andrew
    G4 Powerbook Alu 15"   Mac OS X (10.4.8)  

    Thanks Eric, but unfortunately my Frankenstien Automator app was moving the originals and not making copies. I thank the gods I didn't roll out the app to the guys in the office before testing it myself. You could wreak havoc with these Automator apps if you so chose!
    I now have the hideous task of trying to relocate 11,500 images..clearly will never do it and will have to wait until I find missing images then go look for them. Unfortunately the app had eaten its way through my web site folder before I stopped it and the thousands of auto generated image slices, bullet points, etc have been scattered to the winds.
    Roll on Time Machine and OSX.5...plus a back-up regime or a 10gb iDisk account and 100mb broadband!
    Regards

  • Update ical and address book on iMac does not update iPhone or ipad

    I have updated my ical and address book on my imac, but it is not updating my iphone or ipad, I have activated icloud on all machines, can anyone help please. Have looked at the forum, but cannot find my issue specifically. Regards

    On the iPhone and iPad, tap Settings > iCloud
    Switch Calendars and Contacts off then back on then reset the devices.
    Hold the On/Off Sleep/Wake button and the Home button down at the same time for at least ten seconds, until the Apple logo appears.
    On the iMac open System Preferences > iCloud
    Deselect the boxes next to Calendars and Contacts then restart your iMac.

  • Error 3194 still presist while restoring ipod touch 4g, just shows apple logo and wont start

    Method 1: i have tried almost everything, 'hosts' file editing (adding and deleting that ip gs.apple.com thing)
    Method 2: redsnow, snowbreeze,ireb (custom ispw and fetching thing)...
    now my ipod is in dead case, it just gives apple logo  and wont start.
    Method 3: TS 3.0 and 1.0 checked, certificate xyz... uncheked from intertnet explorer-> internet option -> advanced -> security
    Method 4: netsh xyz  (comand) in cmd...
    Please Help thank you.
    "Details:
    ipod touch 4g
    ios 6.1 installed (lastly)
    jail broken but deleted cydia from it
    then tried to restore it always gave Error 3194,
    then restored it from its backup file after that it didnt opened or just showed apple logo thats it."
    my itunes on dignostic gives this report,
    Microsoft Windows 7 Business Edition Service Pack 1 (Build 7601)
    Hewlett-Packard HP xw4400 Workstation
    iTunes 11.1.1.11
    QuickTime not available
    FairPlay 2.5.16
    Apple Application Support 2.3.6
    iPod Updater Library 11.1f5
    CD Driver 2.2.3.0
    CD Driver DLL 2.1.3.1
    Apple Mobile Device 7.0.0.117
    Apple Mobile Device Driver 1.64.0.0
    Bonjour 3.0.0.10 (333.10)
    Gracenote SDK 1.9.6.502
    Gracenote MusicID 1.9.6.115
    Gracenote Submit 1.9.6.143
    Gracenote DSP 1.9.6.45
    iTunes Serial Number 001AB71808E6CBD8
    Current user is not an administrator.
    The current local date and time is 2013-11-29 04:19:21.
    iTunes is not running in safe mode.
    WebKit accelerated compositing is enabled.
    HDCP is not supported.
    Core Media is supported.
    Video Display Information
    NVIDIA, NVIDIA GeForce 8400
    **** External Plug-ins Information ****
    No external plug-ins installed.
    iPodService 11.1.1.11 is currently running.
    iTunesHelper 11.1.1.11 is currently running.
    Apple Mobile Device service 3.3.0.0 is currently running.
    **** Network Connectivity Tests ****
    Network Adapter Information
    Adapter Name:    {BC8F9388-D244-4F12-92A3-A26318EE6C52}
    Description:    Broadcom NetXtreme Gigabit Ethernet
    IP Address:    192.168.1.102
    Subnet Mask:    255.255.255.0
    Default Gateway:    192.168.1.1
    DHCP Enabled:    Yes
    DHCP Server:    192.168.1.1
    Lease Obtained:    Fri Nov 29 04:16:55 2013
    Lease Expires:    Fri Nov 29 06:16:55 2013
    DNS Servers:    192.168.1.1
    Active Connection:    LAN Connection
    Connected:    Yes
    Online:        Yes
    Using Modem:    No
    Using LAN:    Yes
    Using Proxy:    No
    Firewall Information
    Windows Firewall is off.
    Connection attempt to Apple web site was successful.
    Connection attempt to browsing iTunes Store was successful.
    Connection attempt to purchasing from iTunes Store was successful.
    Connection attempt to iPhone activation server was successful.
    Connection attempt to firmware update server was unsuccessful.
    The network connection timed out.
    Connection attempt to Gracenote server was successful.
    Last successful iTunes Store access was 2013-11-29 04:18:45.

    lllaass thank u bro, but none worked for me
    i have tried all these methods n above which i mentioned before....
    - Powering off and then back on your router.
    - iTunes for Windows: iTunes cannot contact the iPhone, iPad, or iPod software update server
    - Change the DNS to either Google's or Open DNS servers
    Public DNS — Google Developers
    OpenDNS IP Addresses
    - For one user uninstalling/reinstalling iTunes resolved the problem
    - Try on another computer/network
    - Wait if it is an Apple problem
    in the end i went ot market n paid him 1.94$ and he restored it to 6.1.5... and said apple has closed other ios updation except 6.1.5 ...but still thank u soo much learned some new stuff from u...

  • Problems printing envelope from pdf file with logo & return address.

    I have the 6310 All-In-One Printer. I am experiencing major problems printing envelopes (standard size, #10) from a pdf file that is setup with a business logo, name , and address. First of all, the User Guide on page 63 directs you to load the envelope with the flaps up and on the left. This prints out return address in the lower right corner of the envelope front. I have insert the envelope opposite to the User Guide to get the information printed in the correct location, the upper left corner.
    Bigger problem - The logo, which is placed to the left of the business name and address will NOT print out. My preview printer window shows the logo, but it will not print. I cannot figure out what I am doing wrong.
    Suggestions???

    Kindly follow the steps here:
    http://h10025.www1.hp.com/ewfrf/wc/document?docname=c01096354&tmp_task=useCategory&cc=au&dlc=en&lang...
    supported envelopes:
    Envelopes U.S. 10: 105 x 241 mm (4.125 x 9.5 inches)
    U.S. 9: 98 x 225 mm (3.9 x 8.9 inches)
    A2: 111 x 146 mm (4.4 x 5.8 inches)
    DL: 110 x 220 mm (4.3 x 8.7 inches)
    C6: 114 x 162 mm (4.5 x 6.4 inches)
    Although I am working on behalf of HP, I am speaking for myself and not for HP.
    Love Kudos! If you feel my post has helped you please click the White Kudos! Star just below my name : )
    If you feel my answer has fixed your problem please click 'Mark As Solution' and make it easier for others to find help quickly : )
    Happy Troubleshooting : )

  • IPod shows apple logo and nothing else

    I managed to put it on disk mode, and iTunes actually "saw" it. I even uploaded some tracks, everything is ok supposedly but when I reset it, it shows the apple logo and won't do anything else after that. All you see is the logo.
    That was the case even before I upload any of the tracks.
    thanks in advance guys
    PowerMac G4 Mac OS X (10.3.8)

    You need to put it back into disk mode, connect it to the computer, and restore it with the ipod updater. The ipods software is not installed correctly. Here is a link addressing your exact issue. The artical also contains links about restoring an ipod http://docs.info.apple.com/article.html?artnum=61584

  • Does anyone have any ideas how to fix the rendering problem on dialogue boxes, menu and address bars in the Beta?

    I am getting bizarre zigzag lines, bolded items on the vertical part of letters on the Menu bar and Address bar, and any edge of a dialogue box or input frame gets the odd zigzag lines on both sides.

    Your battery experience is unusual. While I don't use my phone a lot it is on 24/7. The mists I've seen my battery run down is to abut 45% after 10 hours offi the charger.
    Here's how to reset (reboot) your phone. Press and hold the Home and Sleep buttons simultaneously ignoring the red slider until the Apple logo appears. Let go of the buttons and let the device restart.
    If that is what you did I suggest making an appointment at and Apple store for a consultation.

  • I tried updating my iPod 5th gen to iOS 8 but it only shows me a picture of the iTunes logo and a charger at the bottom, I'm not sure what this means or what I need to do. Can someone please help me?

    I tried updating my iPod 5th gen to iOS 8 but it only shows me a picture of the iTunes logo and a charger at the bottom, I'm not sure what this means or what I need to do. Can someone please help me?

    After restoring to factory settings/new iPod you will then have to restore from backup
    To restore from backup see:
    iOS: Back up and restore your iOS device with iCloud or iTunes       
    If you restore from iCloud backup the apps will be automatically downloaded. If you restore from iTunes backup the apps and music have to be in the iTunes library since synced media like apps and music are not included in the backup of the iOS device that iTunes makes.
    You can redownload most iTunes purchases by:                         
    Downloading past purchases from the App Store, iBookstore, and iTunes Store        

  • How to restore iCal and Address Book from my iPod mini.

    I used to back-up my iCal and Address Book to both my Nokia phone and my iPod mini twice a day. then over Christmas my laptop hard drive and my phone both broke within 2 days of each other. Ouch! My only copy of my addresses and diary are now on the iPod. I could spend days reading the data and type it into to computer manually, but there has to be a way to do it automatically. *Mustn't there?*

    Similar problem here,
    I have a month-old archived version of my AddressBook, but today my entire rolodex vanished when the program froze and I force quit. I have a much more recent update on my ipod and have made significant additions/editions in the past month. Can I retrieve all that data from my iPod??
    Help!

  • Local characters in Name and Address Details

    Hi,
    For an Thailand Employee,
    I need to print his Name from PA0182(Alternative Names) and the Adress Details from Pa0006 with a custom subtype 0026(Thailand Address).
    The source of Name and Address is different if I want to do the same for a Taiwan PERNR.
    Is there a way to dynamically determine the source of Data based on Country Grouping?
    Please suggest.
    Thanks,
    Suryakiran D.

    Sorry for misreading your question!
    In the view T588M, you can choose the infotype 0006 and subtype too it is probably already customized for Thailand!
    There is probrably a feature with county grouping!
    Just add the country grouping of taiwan to the one of thailand!

  • Isync Motorola Razver and Address Boks delete all contacts

    Mu first sync betweem my cellphone and my macbook was fine and I transfer all my contacts from the phone to Adress Book. In the second time that I tried, I lost all the contacts in both Address Booka dn cellphone. How recover that?

    Paul O' wrote:
    Address Book is syncing correctly now. Initially I was getting many duplicates. I took deleted all the contacts in Address Book, deleted the Address Book folder under Application Support, and then resynced with Google. It's been solid ever since. Could I have deleted something that was needed to make Address Book and Mail work together?
    no. Mail uses the address book database directly. the one that I had you delete. it was rebuilt from metadata on restart. did you quit both Mail and address book when you did it? I would still strongly suspect sync data being at fault. first try this again. quit both Mail and address book and delete the AB database file again along with homedirectory/library/Caches/com.apple.AddressBook
    then start address bok and Mail. alos, do you have any mail or address book plugins? have you installed ANY kind of new software recently?

  • Problems with outlook and address book contacts: my outlook contacts had around 3,000 entries. Outlook duplicated by itself and now outlook and address book have each over 340,000. What should I do?

    Problems with outlook and address book contacts: my outlook contacts had around 3,000 entries. Outlook duplicated entries and have now 340,000. I reinstalled microsoft office and, thus, outlook, and reinstalled mac OS X system and applications. While I managed to delete outlook contacts so that I can re-sync with my blackberry, the contacts at Mac Address Book were not deleted and still have over 340,000 entries. I do not mind deleting all contacts since I have back up, but I have not been able to delete them. Also, when I go at Address Book and try to delete or merge duplicated entries, the system takes forever and never ends because of such large amount of entries. Worse, when I do so I run out of RAM memory.
    My Macbook pro is just 2 months old.
    What should I do? Is there a way to delete my Mac Address Book without having the problem above?
    Many thanks
    Regis

    zlatan24 wrote:
    For solving out troubles connected with corrupted or lost address book you may use address book recovery. It owns various features such as restoring wab files, it working under any Windows OS. The utility has modern and easy to use interface due to almost every experienced users.
    If it is a windows problem it's not going to run on the OP's MacBook Pro

Maybe you are looking for

  • How to create a background image for each item in a List object

    Hello. I am trying to create a background image that displays whenever a user posts something to a list.  For example when a user posts text it would appear in a list.  The new item in the list would contain a specific background image with the users

  • I need advice on a new PC to run my CS5

    I would be grateful for your thoughts on the wisdom of this new build? I am limited in my knowledge. I only have one previous build. Thank you ahead of time for your thoughts. I hope to order the parts for a new dedicated video editing PC. While I wa

  • Sharpness of photos

    When I transfer photos into IMovie from either Iphoto or as clips, they lose sharpness. Is there any way to avoid this and why does this happen?

  • Airport, 10.5.8, and MacBook and MacBook Pros and slow internet

    Disclaimer: Apple does not necessarily endorse any suggestions, solutions, or third-party software products that may be mentioned in the topic below. Apple encourages you to first seek a solution at Apple Support. The following links are provided as

  • Can somebody please please help me! External harddrive not readable due to dumb mistake!

    What is quite possibly one of the dumbest decisions i ever made in my life, I disconnected my external harddrive from my imac & plugged it into a laptop that has Windows 7 to trasfer footage from there to my imac more quicker. I clciked an option tha