How to create mailboxes under mac os x 10.6.4 either using ldapv3 or windows active directory?

hi,
i'm working on the mail server of our company. the plan is to implement the built in mail server feature of mac mini OS X 10.6.4 using either ldapv3 or preferably our existing window active directory users.
i was able to set the open directory and can view the user accounts from AD. my problem is i do not have any clear documentation or manual on how to create mailboxes using either AD accounts or MAC LDAPv3. i already checked the manual of mac os x mail service administration and have found none pertaining to this case.
i would really appreciate if someone can give me reference on how to do this. as of now im quite desperate because i have a deadline for this project.
thank you in advance for your help.

You said, "A 2014 iMac can't run either Snow Leopard or Lion." I know that. What I want to know is how I can install Lion or Snow Leopard on a peripheral hard drive, NOT on my iMac.
– Larry

Similar Messages

  • How 2 creat report for displaying the details of a Delivery Document using

    how to create report for displaying the details of a Delivery Document using the tables LIKP, LIPS
    thank you
    regards,
    jagrut bharatkumar shukla
    points will be rewarded

    HI
    I AM GIVING YOU MY DELIVERY DOCUMENT CODE...MODIFY IT ACCORDING TO YOUR REQUIREMENT
    *& Report  ZDELIVERY                                *
    report  zdelivery  message-id z9bhu          .
    types: begin of t_likp,
               vbeln type likp-vbeln,      "Delivery
               erdat type likp-erdat,      "Date for rec creation
    *           LFDAT TYPE LIKP-LFDAT,      "Delevery Date
    *           WAERK TYPE LIKP-WAERK,      "Currency
               kunnr type likp-kunnr,      "Ship-To Party
               kunag type likp-kunag,      "Sold-to party
               traty type likp-traty,      "Means-of-Transport
           end of t_likp.
    types: begin of t_lips,
               vbeln type lips-vbeln,      "Delivery
               posnr type lips-posnr,      "Delivery item
               matnr type lips-matnr,      "Material Number
               arktx type lips-arktx,      "Short Text for Sales Order Item
               lfimg type lips-lfimg,      "Actual quantity delivered
               netpr type lips-netpr,
    *           MEINS TYPE LIPS-MEINS,      "Base Unit of Measure
               vgbel type lips-vgbel,      "Doc no of the reference document
            end of t_lips.
    types: begin of t_vbpa,
               vbeln type vbpa-vbeln,      "SD DocumenT Number
               posnr type vbpa-posnr,      "Item number
               parvw type vbpa-parvw,      "Partner function
               kunnrb type vbpa-kunnr,      "Customer Number 1
           end of t_vbpa.
    types: begin of t_kna1,
               kunnr type kna1-kunnr,      "Customer Number 1
               name1 type kna1-name1,      "Name 1
               ort01 type kna1-ort01,      "City
               adrnr type kna1-adrnr,      "Address
           end of t_kna1.
    types: begin of t_li_vbpa,
               vbeln type likp-vbeln,      "Delivery
               erdat type likp-erdat,      "Date for rec creation
    *           LFDAT TYPE LIKP-LFDAT,      "Delevery Date
    *           WAERK TYPE LIKP-WAERK,      "Currency
               kunnr type likp-kunnr,      "Ship-To Party
               kunag type likp-kunag,      "Sold-to party
               traty type likp-traty,      "Means-of-Transport
               vbeln1 type lips-vbeln,      "Delivery
               posnr type lips-posnr,      "Delivery item
               matnr type lips-matnr,      "Material Number
               arktx type lips-arktx,      "Short Text for Sales Order Item
               lfimg type lips-lfimg,      "Actual quantity delivered
               netpr type lips-netpr,      "Net Price
    *           MEINS TYPE LIPS-MEINS,      "Base Unit of Measure
               vgbel type lips-vgbel,      "Doc no of the reference document
               vbeln3 type vbpa-vbeln,     "SD DocumenT Number
               parvw type vbpa-parvw,      "Partner function
               kunnrb type vbpa-kunnr,      "Customer Number 1
           end of t_li_vbpa.
    types: begin of t_final,
               vbeln type likp-vbeln,      "Delivery
               erdat type likp-erdat,      "Date for rec creation
               kunnr type likp-kunnr,      "Ship-To Party
               kunag type likp-kunag,      "Sold-to party
               traty type likp-traty,      "Means-of-Transport
               vbeln1 type lips-vbeln,      "Delivery
               posnr type lips-posnr,      "Delivery item
               matnr type lips-matnr,      "Material Number
               arktx type lips-arktx,      "Short Text for Sales Order Item
               lfimg type lips-lfimg,      "Actual quantity delivered
               netpr type lips-netpr,      "Net Price
               vgbel type lips-vgbel,      "Doc no of the reference document
               vbeln3 type vbpa-vbeln,     "SD DocumenT Number
               parvw type vbpa-parvw,      "Partner function
               kunnrb type vbpa-kunnr,     "Customer Number 1
               name1 type kna1-name1,      "Name 1
               ort01 type kna1-ort01,      "City
               adrnr1 type kna1-adrnr,     "Address
               name2 type kna1-name1,      "Name 1
               ort02 type kna1-ort01,      "City
               adrnr2 type kna1-adrnr,     "Address
               name3 type kna1-name1,      "Name 1
               ort03 type kna1-ort01,      "City
               adrnr3 type kna1-adrnr,     "Address
           end of t_final.
    *            D A T A  D E C L A R A T I O N
    *&*********Internal Table Declaration****************&*
    data: it_likp type standard table of t_likp.
    data: it_lips type standard table of t_lips.
    data: it_vbpa type standard table of t_vbpa.
    data: it_kna1 type standard table of t_kna1.
    data: it_li_vbpa type standard table of t_li_vbpa.
    data: it_li_vbpa_temp type standard table of t_li_vbpa.
    data: it_final type standard table of t_final.
    *&*********Work Area Declaration********************&*
    data: wa_likp type t_likp.
    data: wa_lips type t_lips.
    data: wa_vbpa type t_vbpa.
    data: wa_kna1 type t_kna1.
    data: wa_li_vbpa type t_li_vbpa.
    data: wa_li_vbpa_temp type t_li_vbpa.
    data: wa_final type t_final.
    *&*********Data Declaration************************&*
    data: d_vbeln type likp-vbeln.
    data: flag type i value 0.
    *           S E L E C T I O N  S C R E E N   D E C L A R A T I O N
    selection-screen begin of block block2 with frame title text-001.
    select-options: s_vbeln for d_vbeln obligatory.    "Delivery no
    selection-screen end of block block2.
    *            A T  S E L E C T I O N - S C R E E N   E V E N T S
    *AT SELECTION-SCREEN.
    *PERFORM VALIDATE_DATA.
    *            S T A R T   O F  S E L E C T I O N     E V E N T S
    start-of-selection.
    perform fetch_data.
    perform merge_data_kna1.
    *INCLUDE Z9BT_SH_***4_FORMS.
    call function 'OPEN_FORM'
    exporting
    *   APPLICATION                       = 'TX'
    *   ARCHIVE_INDEX                     =
    *   ARCHIVE_PARAMS                    =
        device                            = 'PRINTER'
    *   DIALOG                            = 'X'
    *   FORM                              = ' '
       language                          = sy-langu
    *   OPTIONS                           =
    *   MAIL_SENDER                       =
    *   MAIL_RECIPIENT                    =
    *   MAIL_APPL_OBJECT                  =
    *   RAW_DATA_INTERFACE                = '*'
    *   SPONUMIV                          =
    * IMPORTING
    *   LANGUAGE                          =
    *   NEW_ARCHIVE_PARAMS                =
    *   RESULT                            =
    exceptions
       canceled                          = 1
       device                            = 2
       form                              = 3
       options                           = 4
       unclosed                          = 5
       mail_options                      = 6
       archive_error                     = 7
       invalid_fax_number                = 8
       more_params_needed_in_batch       = 9
       spool_error                       = 10
       codepage                          = 11
       others                            = 12
    if sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    endif.
    sort it_final by vbeln.
    loop at it_final into wa_final.
    call function 'START_FORM'
    exporting
    *   ARCHIVE_INDEX          =
       form                   = 'Z9BT_DELIVERY'
       language               = sy-langu
    *   STARTPAGE              = ' '
    *   PROGRAM                = ' '
    *   MAIL_APPL_OBJECT       =
    * IMPORTING
    *   LANGUAGE               =
    exceptions
       form                   = 1
       format                 = 2
       unended                = 3
       unopened               = 4
       unused                 = 5
       spool_error            = 6
       codepage               = 7
       others                 = 8
    if sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    endif.
    call function 'WRITE_FORM'
    exporting
       element                        = 'ITEM_LIST'
       function                       = 'SET'
       type                           = 'BODY'
       window                         = 'MAIN'
    * IMPORTING
    *   PENDING_LINES                  =
    * EXCEPTIONS
    *   ELEMENT                        = 1
    *   FUNCTION                       = 2
    *   TYPE                           = 3
    *   UNOPENED                       = 4
    *   UNSTARTED                      = 5
    *   WINDOW                         = 6
    *   BAD_PAGEFORMAT_FOR_PRINT       = 7
    *   SPOOL_ERROR                    = 8
    *   CODEPAGE                       = 9
    *   OTHERS                         = 10
    if sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    endif.
    call function 'END_FORM'
    * IMPORTING
    *   RESULT                         =
    exceptions
       unopened                       = 1
       bad_pageformat_for_print       = 2
       spool_error                    = 3
       codepage                       = 4
       others                         = 5
    if sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    endif.
    endloop.
    call function 'CLOSE_FORM'
    * IMPORTING
    *   RESULT                         =
    *   RDI_RESULT                     =
    * TABLES
    *   OTFDATA                        =
    exceptions
       unopened                       = 1
       bad_pageformat_for_print       = 2
       send_error                     = 3
       spool_error                    = 4
       codepage                       = 5
       others                         = 6
    if sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    endif.
    *&      Form  VALIDATE_DATA
    *       text
    *  -->  p1        text
    *  <--  p2        text
    form validate_data .
    select single vbeln into wa_likp-vbeln
                        from likp where vbeln in s_vbeln.
    append wa_likp to it_likp.
    if sy-subrc <> 0.
    flag = 1.
    endif.
    endform.                    " VALIDATE_DATA
    *&      Form  FETCH_DATA
    *       text
    *  -->  p1        text
    *  <--  p2        text
    form fetch_data .
    select a~vbeln
           a~erdat
           a~kunnr
           a~kunag
           a~traty
           b~vbeln
           b~posnr
           b~matnr
           b~arktx
           b~lfimg
           b~netpr
           b~vgbel
           c~vbeln
           c~parvw
           c~kunnr
             into table it_li_vbpa
                    from likp as a
                    left outer join lips as b on a~vbeln = b~vbeln
                    inner join vbpa as c on b~vgbel = c~vbeln
                    where a~vbeln in s_vbeln and
                    c~parvw = 'RE'.
    endform.                    " FETCH_DATA
    *&      Form  MERGE_DATA_KNA1
    *       text
    *  -->  p1        text
    *  <--  p2        text
    form merge_data_kna1 .
    if it_li_vbpa[] is not initial.
    it_li_vbpa_temp[] = it_li_vbpa[].
    sort it_li_vbpa_temp by kunnr.
    delete adjacent duplicates from it_li_vbpa_temp comparing kunnr.
    loop at it_li_vbpa into wa_li_vbpa.
    read table it_li_vbpa_temp into wa_li_vbpa_temp with key kunnr =
    wa_li_vbpa-kunag.
    if sy-subrc <> 0.
    wa_li_vbpa_temp = wa_li_vbpa.
    append wa_li_vbpa_temp to it_li_vbpa_temp.
    endif.
    read table it_li_vbpa_temp into wa_li_vbpa_temp with key kunnr =
    wa_li_vbpa-kunnrb.
    if sy-subrc <> 0.
    wa_li_vbpa_temp = wa_li_vbpa.
    append wa_li_vbpa_temp to it_li_vbpa_temp.
    endif.
    endloop.
    endif.
    if it_li_vbpa_temp[] is not initial.
    select  kunnr
            name1
            ort01
            adrnr into table it_kna1 from kna1
                        for all entries in it_li_vbpa_temp
                        where kunnr = it_li_vbpa_temp-kunnr.
    endif.
    loop at it_li_vbpa into wa_li_vbpa .
    wa_final-vbeln = wa_li_vbpa-vbeln.
    wa_final-erdat = wa_li_vbpa-erdat.
    *it_final-LFART = it_li_vbpa-LFART.
    wa_final-kunnr = wa_li_vbpa-kunnr.
    wa_final-kunag = wa_li_vbpa-kunag.
    *it_final-VSTEL = it_li_vbpa-VSTEL.
    wa_final-traty = wa_li_vbpa-traty.
    wa_final-vbeln1 = wa_li_vbpa-vbeln.
    wa_final-posnr = wa_li_vbpa-posnr.
    wa_final-matnr = wa_li_vbpa-matnr.
    wa_final-arktx = wa_li_vbpa-arktx.
    wa_final-lfimg = wa_li_vbpa-lfimg.
    wa_final-netpr = wa_li_vbpa-netpr.
    *wa_final-GEWEI = it_li_vbpa-GEWEI.
    *it_final-VOLUM = it_li_vbpa-VOLUM.
    *it_final-VOLEH = it_li_vbpa-VOLEH.
    wa_final-vgbel = wa_li_vbpa-vgbel.
    wa_final-vbeln3 = wa_li_vbpa-vbeln.
    *wa_final-PARVW = wa_li_vbpa-PARVW.
    wa_final-kunnrb = wa_li_vbpa-kunnrb.
    read table it_kna1 into wa_kna1 with key kunnr = wa_li_vbpa-kunnr.
    if sy-subrc = 0.
    wa_final-name1 = wa_kna1-name1.
    wa_final-ort01 = wa_kna1-ort01.
    wa_final-adrnr1 = wa_kna1-adrnr.
    endif.
    read table it_kna1 into wa_kna1 with key kunnr = wa_li_vbpa-kunag.
    if sy-subrc = 0.
    wa_final-name2 = wa_kna1-name1.
    wa_final-ort02 = wa_kna1-ort01.
    wa_final-adrnr2 = wa_kna1-adrnr.
    endif.
    read table it_kna1 into wa_kna1 with key kunnr = wa_li_vbpa-kunnrb.
    if sy-subrc = 0.
    wa_final-name3 = wa_kna1-name1.
    wa_final-ort03 = wa_kna1-ort01.
    wa_final-adrnr3 = wa_kna1-adrnr.
    endif.
    append wa_final to it_final.
    clear wa_final.
    endloop.
    endform.

  • I don't know of there is anyone than can fix this age old Apple problem.   Does anyone know how to retrieve things under an old Apple ID when the email used for that account no longer exists? I am trying to update a number of apps that was bought under an

    I don't know of there is anyone than can fix this age old Apple problem.   Does anyone know how to retrieve apps under an old Apple ID when the email used for that account no longer exists &amp; I can't remember the password? After speaking with Apple Acct. Security, I got the security Q right but my birthday was wrong! They wanted the serial number from my phone that was 3 iPhones ago! Seriously??!!
    Any updated way to work around this? No Apple people can correct it.
    Thanks,
    Joe

    You need to ask Apple to reset your security questions. To do this, click here and pick a method; if that page doesn't list one for your country or you're unable to call, fill out and submit this form.
    (122986)

  • How to create customer material information(vd51) and what is it's use

    how to create customer material information(vd51) and what is it's use.
       does it will work even in mm module also??
      my requirement is such that...
    my sap code is 235
    where as customer will give purchaase order on code 536.when i am entering this 536 code  in my system,automatically sytem should propse my sap code of 235.subsequently my inventory should reduce.

    Hi,
    the transaction for maintaining the customer material inforecord is VD51.Data on a material defined for one specific customer is stored in the customer material information records.
    Features:
    During order entry, items can be entered by specifying the material number used by the customer. You also enter a customer material number in the order view of the sales order. You can then use both material numbers during the order entry, the material number your company uses or the one defined by the customer, because the system can carry out allocation automatically.
    If you maintain the plant in the customer material info record, the system will give priority for the plant maintained in the CMIR in the order.
    Prase

  • How to create a Bookmark and set action to a named destination using Acrobat SDK?

    I want to create a bookmark using JSO and set it Bookmark Action to a Named Destination. I am able to select required required paragraph/section using PDTextselect, create a bookmark using JSO but I am not able to set Bookmark Action to a Paragraph/section. Can anyone help me out to set Bookmark Action to a Paragraph/Section. I don't know how to create Named Destination.

    What if we select required text and by ussing App method
    MenuItemExecute call "Highlight Selected Text".
    But what is the Menu Item Name of "Highlight Selected Text" under Tools>Comment & Markup>Text Edit.

  • HOw to create a Batch file for java application and whats the use of this ?

    HI,
    How to create a Batch file for java application ?
    And whats the use of creating batch file ?
    Thanks in advance

    First of all, you're OT.
    Second, you can find this everywhere in the net.
    If you got a manifest declaring main class (an classpath if needed), just create a file named whatever.bat, within same directory of jar file, containing:
    javaw -jar ./WhateverTheNameOfYourJarIs.jar %*By the way, assuming a Windows OS, you can just double click the jar file (no batch is needed).
    Otherwise use:
    javaw -cp listOfJarsAndDirectoriesSeparedBySemiColon country/company/application/package/className %*Where 'country/company/application/package/' just stands for a package path using '/' as separator instead of '.'
    Don't specify the .class extension.
    Javaw only works on Windows (you asked for batch, I assumed .BAT, no .sh), in Linux please use java.exe (path may be needed, Windows doesn't need it 'cause java's executables are copied to system32 folder in order to be always available, see PATH environment variable if you don't know what I'm talking about) and use ':' as classpath (cp) separator.
    The '%***' tail is there in order to pass all parameters, it only works on Windows, refer to your shell docs for other OSs (something like $* may work).
    This way you have a command you can call to launch your code (instead of opening NetBeans just to see your app working). You could schedule tasks on it or just call it in any command prompt (hope you know what it is 'cause there have been people in this very same forum with no clue about it, if not just hold the 'Windows button' and press 'R', then type 'cmd' and run it).
    Finally add dukes and give 'hem away.
    Bye.

  • Window Active Directory users cannot see home drive when logon to Macs

    This problem just occurred, so that tells me either 10.4.9 has done it or a security update to Windows 2003 Server.
    Looking for any tech saavy network guru to help.
    Windows 2003 Server houses active directory. Users in the past were able to log on to a Macintosh computer and their home drive would appear on the desktop.
    Now 'all of a sudden' any user that logs onto a Macintosh computer with an AD account does not see their home drive on the desktop.
    Has anyone else had this problem? Any suggestions on how to resolve it? I haven't unbound the Mac from AD yet will try that tomorrow.
    JTS

    Fixed this...a corrupted keychain item that contained the users prior used network password was the culprit.
    Once I delted the corrupted keychain, active directory users can log on a Mac and see their home directory on the desktop.
    JTS

  • Printer shared from my Mac is not seen from a PC using Bonjour for Windows

    I am going nuts here, hope someone can help.
    I have a Canon multi-function printer (MP830) attached via USB to a Mac G4 (with Mac OS X Tiger). At one time, I had it set so a Windows 2000 PC could print to it but deinstalled it after some printing issues, and have been unable to get to working again. The machines are connected together via a Netgear router. As far as I know, everything is the same as it was before, yet I cannot get it to work as it did.
    - The printer works fine from the Mac.
    - If I connect the printer to the PC, it works fine.
    - On the PC, using Bonjour for Windows, I cannot see the printer attached to the Mac but I can see, and print to, an Epson printer that is attached to a different Mac.
    - And from the second Mac, I am able to see -- but not successfully print to -- the Canon printer. The print job stays in the queue of the second Mac and says "Unable to connect to SAMBA host, will retry... Error: Connection failed with error."
    - I have tried:
    -- de-installing and re-installing Bonjour for Windows and the Canon print drivers on the PC
    -- and have de-installed and re-installed the Canon drivers on the Mac
    -- I have removed and re-added the Canon printer on the Mac. Printer Sharing is on, and this printer is checked in the Sharing box.
    Any suggestions?
    G4 Quicksilver and Dell PC with Windows 2000   Mac OS X (10.4.9)   Canon MP830

    Thank you. Those are beautifully written procedures.
    Looks like it's a network issue. I reach the step, "Adding a printer using the wizard":
    You must enter the following URL, you must use the Queue Name you noted down earlier
    http://<IP address of Mac>:631/printers/Queue Name
    which I do, entering
    http://192.168.0.4:631/printers/MP830
    and I get the following error:
    "Could not connect to the printer. You either entered a printer name that was incorrect or the specified printer is no longer connected to the server."
    And then I am toast!
    Using the other procedure, I simply don't see the Mac's printers in the Bonjour Wizard's "Browse for Bonjour Printers" window.
    Not sure where to go from here -- any ideas?
    The Mac's IP (set via DHCP) is 192.168.0.4, subnet mask 255.255.255.0. The PC is 192.168.0.5, I can't find the subnet mask.
    Pretty sure it's a network config issue, especially isnce I can Bonjour to my other Mac.
    TIA...

  • How to find Mailboxes under OS Lion 10.7 Time Machine backup.5 ?

    I am trying to access, from a MacBook, to my MacBook Pro Mailboxes inside a Time Machine backup done under Lion 10.7.5. (the MBP is out of order and I would to check my Mailboxes).
    If I open the backup, I do not find any /User Name/ Library (like inside the MacBook (OS X 10. 5.8)
    I tried a search by 'Mailboxes' without any result.
    Where/how could I find that Mailboxes file ?

    No, you can't use a 10.7 altered TM drive to restore Snow Kitty with.
    I've written a detailed method to restore 10.6 from 10.7, including advanced preparation before you remove 10.7's icy grip of death on your precious.
    You see how much I love the Lion
    How to revert your Mac to Snow Leopard

  • How to sync mailboxes between mac and macbook

    I work my mail via icloud. perfect!
    exept when i drag a mail to a specific mailbox wich isnt on my macbook, then teh mail dissapears??
    In other words mail syncs woks but the mailboxes i make on my Imac are not shown on my macbook...
    How to solve??

    Paul Swaak wrote:
    I work my mail via icloud. perfect!
    exept when i drag a mail to a specific mailbox wich isnt on my macbook, then teh mail dissapears??
    In other words mail syncs woks but the mailboxes i make on my Imac are not shown on my macbook...
    How to solve??
    What is the specific mailbow you are dragging the mail into, is it under iCloud or On My Mac?

  • How do I restart under Mac OS when Mini is configured to boot in Windows?

    I have a dual core Mac Mini, running both Windows and MacOS (under Boot Camp).
    Today, Father Christmas gave me an Apple Airport.
    However, I cannot install the software on the Apple side because the dealer has configured the Mini to boot up in Windows.
    The Airport software gets to a point where it tells you to restart the computer to finalise installation. The trouble is, the Mini restarts as Windows which effectively aborts the installation.
    I have tried restarting with the options key held down (which is how you get the Mini to start up as a Mac) but it interferes with the installation and effectively tries to get you to start again.
    Is there another way to restart the machine without interrupting the software installation?

    "I have a dual core Mac Mini, running both Windows and MacOS (under Boot Camp)."
    Hold down the option key when booting the computer or post your question in the Boot Camp discussions:
    http://discussions.apple.com/forum.jspa?forumID=1165

  • How to create links under Detailed Navigation Panel

    Hi All,
    Our reqt is to create many links under "Detailed Navigation Panel" so that portal users may click on any of those links to navigate to that particular iView.
    For example. I have created 3 iViews ( A,B and C). In the "Detailed Navigation Panel" i would like to have three links( One, Two and Three). If user clicks "One", it should go to iView A.
    Kindly help me how to do this. Many Thanks in Advance. Appreciate if any one could send me the detailed steps involved on this.
    Regs/Venkat

    Hi Venkat,
    As far as I understand your requirement, you don't want to have these links as part of the detailed navigation within the navigation hierarchy, but below, within the navigation panel, statically, right?!
    For such a static solution, you could just create an iView displaying these links, and put that iView into the navigation panel of the desktop innerpage, see http://help.sap.com/saphelp_nw04/helpdata/en/b4/771158e4cb4bf6af9974380948db86/frameset.htm for the structure details (below the Detailed Navigation iView).
    Hope it helps
    Detlev

  • How to create bookmarks on Mac OS 10.8.2 after the installation of a new hard drive?

    At this point I have no bookmarks or folders in Foxfire or Safari. I started with Foxfire and could find no way to create folders for bookmarks. I tried the "Show all bookmarks" under the "Bookmarks" menu and then hold down "Control" while touching the "Bookmarks Menu" and got nothing related to creating a folder.
    Should I start with Safari and then import them to Foxfire? There has to be a better and more direct way to reach my goal.

    You can create as bookmark folder in the Library (Bookmarks Manager) via the right-click context menu (right pane) or the Organize button the toolbar in the Library.
    *Bookmarks > Show All Bookmarks
    *https://support.mozilla.org/kb/Bookmark+folders
    You can create new folders and new bookmarks in the three main folders ("Bookmarks Toolbar","Bookmarks Menu","Unsorted Bookmarks") or their sub folders, but you can not create a new folder at the root level ("All Bookmarks").

  • How to create documents on Mac that are compatible with Windows?

    I have just started working in InDesign for a client who uses InDesign and wanted me to learn the program so that they could make changes on their own in the future to documents I create for them.  I am working on a Mac OS 10.6.2 They have PCs and are working in a Windows environment.  I sent the first packaged dvd for their printer and sent it to them last week.  Everything looked beautiful on this end, no errors, packaged with links and fonts.  When they received the disc the font files on the disc that looks perfect on my computer-- on their computer all read as 0kb and they can't make it work.  I have used truetype, type 1 and open type fonts.  I just read something in an earlier discussion about true type and T1 as being problematic with PCs?  What can I do to be compatible?

    My apologies. I find working in unfamiliar computer systems challenging and after over an hour on the phone trying to help an inexperienced PC user find fonts and find her way around InDesign with which she was even less familiar on a PC, a platform with which I have had no experience in the last 13 years, I was frustrated. My comment was inapropriate to this forum.  I do realize that PCs are valuable tools.  The computer system one is familiar with is always the best platform there is when in the middle of a complicated job.

  • How to create subfolder under /userhome

    Hi,
    I have a requirement where the user should have a subfolder under the foldre (userhome).
    When ever a user is created this subfolder should be created.
    Like Favorites, Personal Documents etc.. i need some other folder like "Temp" under the userhome folder.
    And then the permissions for this should be everyone-read
    Thanks in advance.
    Mr.Chowdary

    hi chowdary,
    go tru the following links
    http://download.oracle.com/docs/cd/A97336_01/portal.102/a86700/devport.htm
    portals.apache.org/jetspeed-2/j1-migration.html - 57k
    reward me points if usefull
    regards
    karthik

Maybe you are looking for

  • How do i use my webcam and photo on my dktp4/500

    is there a cd or owners manul for my dktp hp 4/500, and if so where my i get it. i need to know how to use my webcam, and photos to put them on my comp.

  • Trackpad playing up and windows open and close with out me doing any thing

    Hey since updating to OS X Mountain Lion 10.8.5 my Mac has been playing up. I can't really control the mouse anymore it basically goes where it wants to go. Also my Mac started to open and close Windows on its one, switching back and forth between si

  • Bootmgr missing

    After i press power button, monitor still blank and there are some text "bootmgr missing" "press ctrl+alt+del to restart". I am doing "press ctrl+alt+del" but this is not working. How to fix this problem? Help me please...

  • No image

    I have an HP media center m8000 PC when i turn the computer on there is no beeps but the main problem is when i plug in a monitor there is nothing also that goes for the hdmi plug all the fans are working including the video card so i didnt think any

  • How to track bug - Program stopped responding.

    Occasionaly my app crashes with just the common Windows' message - Program stopped responding. I get no error message. How to track the bug? ... Podlesnick ...