How do i find the list of apple staff picks/favorites?

How do i find the list of apple staff picks/favorites?

Hi All,
I found it in my Support profile.  https://supportprofile.apple.com.
Thanks.
Richie

Similar Messages

  • 1.) How do you find the dictionary in Apple Mail Program?  2.) How do you add another dictionary?

    1.) How do you find the dictionary in Apple Mail Program?  2.) How do you add another dictionary?

    Hello James!
    I do not have any ABAP Instance, only the JAVA one.
    Therefore the ABAP transactions are quite useless.
    The problem tables are created by people working on the CAF layer.
    They have developed and deployed some homemade applications and this is leftovers from their development in some kind of way.
    Anyone with any ideas?
    Could it be that (yet) some special Portal Dictionary Role needs to be asigned to the Administrator?
    /Lasse

  • How can we find the list of user exits for a transaction

    hi all
    iam new in user exits please send the basic details
    how can we find the list of user exit for a perticular transaction and how can we determine that a particulr user exit is used for a field
    regards
    jagadish

    hi,
    check the below links for userexits
    http://help.sap.com/saphelp_46c/helpdata/en/64/72369adc56d11195100060b03c6b76/frameset.htm
    FAQ's
    http://http://www.sap-img.com/abap/a-short-tutorial-on-user-exits.htm
    http://www.ficoexpertonline.com/downloads/User%20ExitsWPedit.doc
    http://www.easymarketplace.de/userexit.php
    http://wiki.ittoolbox.com/index.php/HOWTO:Implement_a_screen_exit_to_a_standard_SAP_transaction
    1. what is the defference between enhancement and user-exits?
    http://www.sap-img.com/abap/difference-between-badi-and-user-exits.htm
    Re: difference between user exits & customer exits
    Some Questions ! Plz help...
    http://searchsap.techtarget.com/expert/KnowledgebaseAnswer/0,289625,sid21_gci1190924_tax299358,00.html?bucket=ETA
    2. Difference between CMOD and SMOD?
    http://www.sap-img.com/abap/what-is-the-difference-between-smod-and-cmod.htm
    http://www.sap-img.com/abap.htm
    http://sap.ittoolbox.com/groups/technical-functional/sap-r3-dev/diff-between-cmod-and-smod-236095
    http://sap.ittoolbox.com/groups/technical-functional/sap-r3-dev/diff-between-cmod-and-smod-236107
    check these links..
    http://www.sapgenie.com/abap/tips_and_tricks.htm
    http://www.sap-img.com/abap/field-exits-smod-cmod-questions-and-answers.htm
    http://www.sap-img.com/abap/what-is-user-exits.htm
    passing selet-option variable to subrouine...
    Finding the user-exits of a SAP transaction code
    Finding the user-exits of a SAP transaction code
    Enter the transaction code in which you are looking for the user-exit
    and it will list you the list of user-exits in the transaction code.
    Also a drill down is possible which will help you to branch to SMOD.
    Written by : SAP Basis, ABAP Programming and Other IMG Stuff
                 http://www.sap-img.com/*
    report zuserexit no standard page heading.
    tables : tstc, tadir, modsapt, modact, trdir, tfdir, enlfdir.
             tables : tstct.
    data : jtab like tadir occurs 0 with header line.
    data : field1(30).
    data : v_devclass like tadir-devclass.
    parameters : p_tcode like tstc-tcode obligatory.
    select single * from tstc where tcode eq p_tcode.
    if sy-subrc eq 0.
       select single * from tadir where pgmid = 'R3TR'
                        and object = 'PROG'
                        and obj_name = tstc-pgmna.
       move : tadir-devclass to v_devclass.
          if sy-subrc ne 0.
             select single * from trdir where name = tstc-pgmna.
             if trdir-subc eq 'F'.
                select single * from tfdir where pname = tstc-pgmna.
                select single * from enlfdir where funcname =
                tfdir-funcname.
                select single * from tadir where pgmid = 'R3TR'
                                   and object = 'FUGR'
                                   and obj_name eq enlfdir-area.
                move : tadir-devclass to v_devclass.
              endif.
           endif.
           select * from tadir into table jtab
                         where pgmid = 'R3TR'
                           and object = 'SMOD'
                           and devclass = v_devclass.
            select single * from tstct where sprsl eq sy-langu and
                                             tcode eq p_tcode.
            format color col_positive intensified off.
            write:/(19) 'Transaction Code - ',
                 20(20) p_tcode,
                 45(50) tstct-ttext.
                        skip.
            if not jtab[] is initial.
               write:/(95) sy-uline.
               format color col_heading intensified on.
               write:/1 sy-vline,
                      2 'Exit Name',
                     21 sy-vline ,
                     22 'Description',
                     95 sy-vline.
               write:/(95) sy-uline.
               loop at jtab.
                  select single * from modsapt
                         where sprsl = sy-langu and
                                name = jtab-obj_name.
                       format color col_normal intensified off.
                       write:/1 sy-vline,
                              2 jtab-obj_name hotspot on,
                             21 sy-vline ,
                             22 modsapt-modtext,
                             95 sy-vline.
               endloop.
               write:/(95) sy-uline.
               describe table jtab.
               skip.
               format color col_total intensified on.
               write:/ 'No of Exits:' , sy-tfill.
            else.
               format color col_negative intensified on.
               write:/(95) 'No User Exit exists'.
            endif.
          else.
              format color col_negative intensified on.
              write:/(95) 'Transaction Code Does Not Exist'.
          endif.
    at line-selection.
       get cursor field field1.
       check field1(4) eq 'JTAB'.
       set parameter id 'MON' field sy-lisel+1(10).
       call transaction 'SMOD' and skip first   screen.
    *---End of Program
    if u want to find the function exit
    then check the below code
    REPORT ZV_FIND_EXIT NO STANDARD PAGE HEADING.
    TABLES : TSTC, TADIR, MODSAPT, MODACT, TRDIR, TFDIR, ENLFDIR.
    TABLES : TSTCT.
    DATA : JTAB LIKE TADIR OCCURS 0 WITH HEADER LINE.
    DATA : FIELD1(30).
    DATA : V_DEVCLASS LIKE TADIR-DEVCLASS.
    PARAMETERS : P_TCODE LIKE TSTC-TCODE OBLIGATORY.
    SELECT SINGLE * FROM TSTC WHERE TCODE EQ P_TCODE.
    IF SY-SUBRC EQ 0.
    SELECT SINGLE * FROM TADIR WHERE PGMID = 'R3TR'
    AND OBJECT = 'PROG'
    AND OBJ_NAME = TSTC-PGMNA.
    MOVE : TADIR-DEVCLASS TO V_DEVCLASS.
    IF SY-SUBRC NE 0.
    SELECT SINGLE * FROM TRDIR WHERE NAME = TSTC-PGMNA.
    IF TRDIR-SUBC EQ 'F'.
    SELECT SINGLE * FROM TFDIR WHERE PNAME = TSTC-PGMNA.
    SELECT SINGLE * FROM ENLFDIR WHERE FUNCNAME =
    TFDIR-FUNCNAME.
    SELECT SINGLE * FROM TADIR WHERE PGMID = 'R3TR'
    AND OBJECT = 'FUGR'
    AND OBJ_NAME EQ ENLFDIR-AREA.
    MOVE : TADIR-DEVCLASS TO V_DEVCLASS.
    ENDIF.
    ENDIF.
    SELECT * FROM TADIR INTO TABLE JTAB
    WHERE PGMID = 'R3TR'
    AND OBJECT = 'SMOD'
    AND DEVCLASS = V_DEVCLASS.
    SELECT SINGLE * FROM TSTCT WHERE SPRSL EQ SY-LANGU AND
    TCODE EQ P_TCODE.
    FORMAT COLOR COL_POSITIVE INTENSIFIED OFF.
    WRITE:/(19) 'Transaction Code - ',
    20(20) P_TCODE,
    45(50) TSTCT-TTEXT.
    SKIP.
    IF NOT JTAB[] IS INITIAL.
    WRITE:/(95) SY-ULINE.
    FORMAT COLOR COL_HEADING INTENSIFIED ON.
    WRITE:/1 SY-VLINE,
    2 'Exit Name',
    21 SY-VLINE ,
    22 'Description',
    95 SY-VLINE.
    WRITE:/(95) SY-ULINE.
    LOOP AT JTAB.
    SELECT SINGLE * FROM MODSAPT
    WHERE SPRSL = SY-LANGU AND
    NAME = JTAB-OBJ_NAME.
    FORMAT COLOR COL_NORMAL INTENSIFIED OFF.
    WRITE:/1 SY-VLINE,
    2 JTAB-OBJ_NAME HOTSPOT ON,
    21 SY-VLINE ,
    22 MODSAPT-MODTEXT,
    95 SY-VLINE.
    ENDLOOP.
    WRITE:/(95) SY-ULINE.
    DESCRIBE TABLE JTAB.
    SKIP.
    FORMAT COLOR COL_TOTAL INTENSIFIED ON.
    WRITE:/ 'No of Exits:' , SY-TFILL.
    ELSE.
    FORMAT COLOR COL_NEGATIVE INTENSIFIED ON.
    WRITE:/(95) 'No User Exit exists'.
    ENDIF.
    ELSE.
    FORMAT COLOR COL_NEGATIVE INTENSIFIED ON.
    WRITE:/(95) 'Transaction Code Does Not Exist'.
    ENDIF.
    AT LINE-SELECTION.
    GET CURSOR FIELD FIELD1.
    CHECK FIELD1(4) EQ 'JTAB'.
    SET PARAMETER ID 'MON' FIELD SY-LISEL+1(10).
    CALL TRANSACTION 'SMOD' AND SKIP FIRST SCREEN.
    or
    1. in se11, goto table MODSAP
    View table contents
    2. in Type field, enter 'E' (for function exit)
    3. For that tcode, u should know the program name.
    eg. SAPLLMOB
    4. then type SAPLLMOB and execute
    or
    REPORT z34331_user_exit .
    TABLES : tstc, "SAP Transaction Codes
    tadir, "Directory of Repository Objects
    modsapt, "SAP Enhancements - Short Texts
    modact, "Modifications
    trdir, "System table TRDIR
    tfdir, "Function Module
    enlfdir, "Additional Attributes for Function Modules
    tstct. "Transaction Code Texts
    DATA : jtab LIKE tadir OCCURS 0 WITH HEADER LINE.
    DATA : field1(30).
    DATA : v_devclass LIKE tadir-devclass.
    SELECTION-SCREEN BEGIN OF BLOCK a01 WITH FRAME TITLE text-001.
    SELECTION-SCREEN SKIP.
    PARAMETERS : p_tcode LIKE tstc-tcode OBLIGATORY.
    SELECTION-SCREEN SKIP.
    SELECTION-SCREEN END OF BLOCK a01.
    START-OF-SELECTION.
    Validate Transaction Code
    SELECT SINGLE * FROM tstc
    WHERE tcode EQ p_tcode.
    Find Repository Objects for transaction code
    IF sy-subrc EQ 0.
    SELECT SINGLE * FROM tadir
    WHERE pgmid = 'R3TR'
    AND object = 'PROG'
    AND obj_name = tstc-pgmna.
    MOVE : tadir-devclass TO v_devclass.
    IF sy-subrc NE 0.
    SELECT SINGLE * FROM trdir
    WHERE name = tstc-pgmna.
    IF trdir-subc EQ 'F'.
    SELECT SINGLE * FROM tfdir
    WHERE pname = tstc-pgmna.
    SELECT SINGLE * FROM enlfdir
    WHERE funcname = tfdir-funcname.
    SELECT SINGLE * FROM tadir
    WHERE pgmid = 'R3TR'
    AND object = 'FUGR'
    AND obj_name = enlfdir-area.
    MOVE : tadir-devclass TO v_devclass.
    ENDIF.
    ENDIF.
    Find SAP Modifactions
    SELECT * FROM tadir
    INTO TABLE jtab
    WHERE pgmid = 'R3TR'
    AND object = 'SMOD'
    AND devclass = v_devclass.
    SELECT SINGLE * FROM tstct
    WHERE sprsl EQ sy-langu
    AND tcode EQ p_tcode.
    FORMAT COLOR COL_POSITIVE INTENSIFIED OFF.
    WRITE:/(19) 'Transaction Code - ',
    20(20) p_tcode,
    45(50) tstct-ttext.
    SKIP.
    IF NOT jtab[] IS INITIAL.
    WRITE:/(95) sy-uline.
    FORMAT COLOR COL_HEADING INTENSIFIED ON.
    WRITE:/1 sy-vline,
    2 'Exit Name',
    21 sy-vline ,
    22 'Description',
    95 sy-vline.
    WRITE:/(95) sy-uline.
    LOOP AT jtab.
    SELECT SINGLE * FROM modsapt
    WHERE sprsl = sy-langu AND
    name = jtab-obj_name.
    FORMAT COLOR COL_NORMAL INTENSIFIED OFF.
    WRITE:/1 sy-vline,
    2 jtab-obj_name HOTSPOT ON,
    21 sy-vline ,
    22 modsapt-modtext,
    95 sy-vline.
    ENDLOOP.
    WRITE:/(95) sy-uline.
    DESCRIBE TABLE jtab.
    SKIP.
    FORMAT COLOR COL_TOTAL INTENSIFIED ON.
    WRITE:/ 'No of Exits:' , sy-tfill.
    ELSE.
    FORMAT COLOR COL_NEGATIVE INTENSIFIED ON.
    WRITE:/(95) 'No User Exit exists'.
    ENDIF.
    ELSE.
    FORMAT COLOR COL_NEGATIVE INTENSIFIED ON.
    WRITE:/(95) 'Transaction Code Does Not Exist'.
    ENDIF.
    Take the user to SMOD for the Exit that was selected.
    AT LINE-SELECTION.
    GET CURSOR FIELD field1.
    CHECK field1(4) EQ 'JTAB'.
    SET PARAMETER ID 'MON' FIELD sy-lisel+1(10).
    CALL TRANSACTION 'SMOD' AND SKIP FIRST SCREEN.
    Regards,
    Naveen

  • How can I find the list of table base on given domain name

    Hello All,
               I am in search fo table/tables which provide me the list of all tables that use the same domain? for example if the domain name is zz_call I am interested of all the table and data elements who is using this domain.
    Domain name                         table name                                data element
    zz_call                                   table_1                                      make_call
                                                  table_2                                      make_call
                                                  table_3                                     service_call

    Where is the data
    - Tables and descriptions are stored in DD02L, text table DD02T.
    - Tables fields are in DD03L (giving Data element)
    - Data element are in DD04L (giving Domain), text table DD04T
    - Domain are in DD01L, text table DD01T
    How to use it
    - FM of the DDIF* family (or even CL_WB_INFOSYSTEM class, but good luck)
    - You can call the R/3 [Repository Information System|http://help.sap.com/abapdocu_70/en/ABENRIS_GLOSRY.htm], transaction SE15 or SE84, there click on ABAP Dictionary, Basic objs, Database tables.
    - SE11 and perform a where-used on a domain, and click on Indirect application, select database table
    Regards,
    Raymond

  • How do I Find The List Of All The Questions I have Asked?

    Hello:
    I have asked this question once before and someone was able to give me a link to my profile where I quickly found the list of all the questions I have ever asked on the forum.
    I have not been on the forums for many months now and so I was just checking in and once again I cannot find that list of my questions.
    Sure, I am over tired tonight but still ... I would think there would be a .... HERE'S ALL YOUR QUESTIONS YOU EVER ASKED ... button or what have ya
    Can someone kindly point me to where in our Profiles the list of our questions is located?  sure would great appreciate it a bunch.
    Thanks for your time,
    Kara

    Click on your profile to get to https://forums.adobe.com/people/Kar209
    Click on Content to get a list of all your topics: https://forums.adobe.com/people/Kar209/content
    Click on Participated on the left to get anything you've ever posted: https://forums.adobe.com/people/Kar209/content?filterID=participated
    [topic moved to Forum Comments forum]

  • How can i find the list of backend systems connected to portal?

    Hi Gurus,
    How can find the back end systems that are connected to portal?
    Please give a clear note on this .......
    Thanks in Advance,
    Dharani

    Hi,
    you can read the following about the system landscape.
    http://help.sap.com/saphelp_nw70/helpdata/en/0d/17df3d2cae445ae10000000a11405a/frameset.htm
    You can verify the JCO connection too.
    Go to http://portal.domain.com:50x00
    Web Dynpro -> Content Administrator -> Maintain JCo Destinations
    Brad

  • "how do I find the list of search engines in my firefox brouser?"

    I am trying to get rid of this irksome "sweetIM". And suggestions say remove it from my list of search engines. Where is this list? And, I am only an intermediate skill comp user.

    I"m guessing that what happened is that you or someone inadvertently allowed the default search method to be changed in the keyword url search.
    Search for any add ons or unwanted plugins and remove them. Then if that doesn't have the effect that you want,
    go to your url window and type in
    about:config.
    Its going to tell you that you are voiding your free and not often used warranty.. Just click the "i'll be careful I promise button.
    you will see a full list of things in alphabetical order. Scroll past them and find Keyword Url.
    Right click on that and select modify.. type in google..Modify the search string to read google and then close your firefox and reopen it. Your default google search should work when you type in the keyword terms you're looking for.

  • HT1420 how can i find the list of authorized computers

    i have too many computers authorized already but I have changed computers in the past few years and so some may be gone, but I cant tell without a list

    There is no list available from your end. If you've run out of authorizations, use the Deauthorize All function and reauthorize as needed.
    (72220)

  • On iTunes, how do you find the listing of free radio stations?

    I found the podcasts but where are the radio stations?
    Thanks in advance!    

    In the menu, go to View | Show Sidebar --> this will bring back the old UI sidebar
    Now click on Music in the sidebar all the way to the top (under Library)
    and
    Make sure Radio is checked in the Genreal tab of Preferneces
    and
    ...then you should see Radio in the new Top Bar.

  • HT204003 How do you find the passbook enabled apps once you use passbook???

    How do you find the list of passbook enabled apps once you start using passbook???

    http://www.macrumors.com/2012/09/19/passbook-enabled-apps-start-arriving-on-app- store/

  • TS3376 How do I find the menue where I can select the list of previous phones I have had and my new one ? at the moment it is still set to an old one so everytime I try to set it up it tells me it it's the wrong one - gggrrrrr help please

    How do I find the menue where I can select the list of previous phones I have had and my new one ? at the moment it is still set to an old one so everytime I try to set it up it tells me it it's the wrong one - gggrrrrr help please

    iPods (except for iPod touch) are not linked to any iTunes "account."  They are associated with your iTunes library. The account in iTunes is your Apple ID, and that is used to buy and download content from the iTunes Store.  It is not required to use an iPod.
    The 1st (and 2nd) gen shuffle can only be used with one iTunes library at a time.  When you connect it, iTunes should prompt you to start using it with your iTunes library, and warn that the shuffle's existing content will be erased.  Have iTunes erase the shuffle, and it will be associated with your iTunes library going forward.  You can then add content to your shuffle.
    The need for the previous owner's Apple ID and password should only come up if you are trying to transfer existing content from the shuffle to your iTunes library, AND the previous owner had content purchased from the iTunes Store.  Just cancel out of that step, if iTunes asks.

  • How can I find the file of my Apple Device shared project?

    I'm not sure if this a Final Cut Pro question or an iTunes question...
    I shared a project from Final Cut Pro to the Apple Devices (so that I could watch the video on my Apple TV).  I found the video in Home Movies in iTunes, and actually watched it successfully through Apple TV.
    But a day or two later, when I look for the video again in Home Movies in iTunes , I get this message: "The video [video title] could not be used because the original file could not be found. Would you like to locate it?"
    Yes I would.
    But I don't know where to look in Finder to find it?  Does anyone know where these video files actually go when we share them?  (Is this one of those cases where it's a hidden file, and I need to unhide them to see them?  If so, how do I do that?)

    The step by step process...
    When my project is ready to go,
    1. I select File>Share>Apple Devices 1080p
    2. That opens an Apple Devices 1080p pop-up window
    3. I use the default setting (which says it adding to playlist "Library"
    4. after a few minutes I receive a notification of "share successful)
    5. I open itunes, and can watch the newly shared video on my computer screen (my other videos are listed too, but if I try to watch them I get the message "The video [video name] could not be used because the original file could not be found. Would you like to locate it?")
    6. I find the video on Apple TV by going to my computer, my library, Home Movies
    7. I watch the video on Apple TV (some of the old videos are listed, others aren't)
    8. Soon thereafter, I return to iTunes on my computer, and now, when I try to watch the newly-shared video, I get the same error message I documented above.
    9. I return to the Apple TV and now I get an error message when I try to watch the video
    This is iTunes 11.1.0.50
    and FCP 10.1.4
    Also, I'm editing videos with an external drive as my video source.  I don't know if that has anything to do with anything.
    Also, also, per your suggestion, I looked at the Library icon>Show Package Contents>Project Name>Shared Items but couldn't find any of the video files that disappeared.  But I did run a quick test to watch all my steps, and I COULD find the file of that latest video.  So now I  know where to look.  That said, I'm going to leave the latest test video there, and see if it disappears soon too.

  • How do I find a list of printers that will print from the IPad 2?

    How do I find a list of printers that will print from the IPad 2?

    Those that support AirPrint are listed on this page : http://support.apple.com/kb/HT4356
    Some printer manufacturers also have their own apps e.g. HP http://itunes.apple.com/us/app/hp-eprint-home-biz/id299531647?mt=8
    And there are third-party apps which work with some printers e.g. Print Central For iPad and Print n Share

  • I am trying to download xfinity tv go app. I can not find it in my App Store and can not download it from the comcast website. All I get is a blank screen in the App Store. My Apple ID is associated with a Canadian address. How can I find the app?

    I am trying to download xfinity tv go app. I can not find it in my App Store and can not download it from the comcast website. All I get is a blank screen in the App Store. My Apple ID is associated with a Canadian address. How can I find the app?

    Its possible the App is not available in the Canadian store if the link doesn't work for you.
    https://itunes.apple.com/us/app/xfinity-connect/id320788270?mt=8

  • How do I find the digital copy of a movie I just redeemed if it is not listed with my movies?

    How do I find the digital copy of a movie I just redeemed if it is not listed with my movies?

    I just liked them all right now.
    Thanks.  So yours only shows one cover movie poster too then. That is what mine shows.
    When you say this:
    based on whether I've got HD selected or not, e.g. my iPhone shows the SD size, but my iTunes based on whether I've got HD selected or not, e.g. my iPhone shows the SD size, but my iTunes (computer) shows HD.
    Do you mean when you have your phone selected on the summary page as you instructed above vs.... what selected for your itunes/computer showing HD?

Maybe you are looking for