Program includes locked by SAP*

Dear All,
Our ABAPers are trying to hash out few lines in a include of a Function group. But when trying to open the include in edit mode, they get a system message that it has been locked by SAP*.
Any solution for this ? other lines of the include are required, hence it cannot be totally removed.
Warm Regards
Mazdul

SAPLYFPS is the main program of the function group YFPS, so it is not a SAP report (Function group begins with Y or Z), i suppose you used this FG to generate dialog maintenance and SAP generated some includes.
If i am true,
- The includes T00 and F00 in this case contains the source "GENERATED" from the maintenance views to read update the database or identify text. (can you use another include for your definitions in LYFPSTOP ?)
- Be aware that your modification may be overwritten when SE54 may (and will from [Murphy's law|http://en.wikipedia.org/wiki/Murphy%27s_law]) re-genarate the maintenance dialog if a field is added someday.
- Also don't touch to include like lsvim* which are used in each and every dialog maintenance.
Regards

Similar Messages

  • Program to lock users

    Dear Pros,
    As a security admin. I would appreciate if someone could help me program to lock users vis following requiremnt:
    1)       Has logged onto the system in the past, but has not logged on in the last 90 days.
    2)       Has never logged onto the system in the past 30 days.
    3)       Does NOT belong to User Group “SUPER”.
    4)       Dialog Users ONLY.
    Thanks for any help or suggestion

    Hi,
       Try with this program or you can modify:
    Selection Text
    001     Program Parameter
    002     User Lockeds
    003     User Erased
    004     Report of User Lokeds and Erased
    005     User
    006     Last  Access Date
    007     Creation Date
    008     Result
    009     Full Name
    010     Exception (Not to erase these users)
    CHECK_T Test ejecution
    CLASS     Users Group
    MESBL     Months to Lock
    MESBO     Months to Delete
    S_EXCEP     Users
    REPORT ZBAR0009 NO STANDARD PAGE HEADING LINE-SIZE 155 LINE-COUNT 60.
    TABLES: USR02,              "Datos logon
            USR21,              "Asignación nombre usuario - clave dirección
            ADRP.               "Personas (gestión de direcciones central)
    DATA: BEGIN OF IT_USBOR OCCURS 0,
              BNAME LIKE USR02-BNAME, "Nombre de usuario según maestro de us
              ERDAT LIKE USR02-ERDAT, "Fecha de creación del maestro de usua
              TRDAT LIKE USR02-TRDAT. "Fecha del último acceso al sistema
    DATA END OF IT_USBOR.
    DATA: BEGIN OF IT_USBLO OCCURS 0,
              BNAME LIKE USR02-BNAME, "Nombre de usuario según maestro de us
              ERDAT LIKE USR02-ERDAT, "Fecha de creación del maestro de usua
              TRDAT LIKE USR02-TRDAT. "Fecha del último acceso al sistema
    DATA END OF IT_USBLO.
    DATA: BEGIN OF BDCDATAC OCCURS 5.
            INCLUDE STRUCTURE BDCDATA.
    DATA: END OF BDCDATAC.                 "Estructura Batch Input
    Tablas de mensajes generados por el batch input de modificación.
    DATA: BEGIN OF BDCMSGCOLLM OCCURS 5.
            INCLUDE STRUCTURE BDCMSGCOLL.
    DATA: END OF BDCMSGCOLLM.
    DATA: FECHA1 LIKE USR02-TRDAT,
          FECHA2 LIKE USR02-TRDAT,
          FECHA3 LIKE USR02-TRDAT,
          TR_MS(30),
          I      TYPE I,
          P      TYPE I,
          CONT   TYPE I.
    SELECTION-SCREEN: BEGIN OF BLOCK B1 WITH FRAME TITLE TEXT-001.
        PARAMETERS: MESBL(2) DEFAULT '03',
                    MESBO(2) DEFAULT '06',
                    CLASS LIKE USR02-CLASS DEFAULT 'UPSTREAM',
                    CHECK_T AS CHECKBOX DEFAULT 'X'.
    SELECTION-SCREEN END OF BLOCK B1.
    SELECTION-SCREEN: BEGIN OF BLOCK C1 WITH FRAME TITLE TEXT-010.
        SELECT-OPTIONS: S_EXCEP FOR USR02-BNAME.
    SELECTION-SCREEN END OF BLOCK C1.
    START-OF-SELECTION.
    Armado de Fechas
      MOVE SY-DATUM TO FECHA1.
      FECHA2 = FECHA1 - ( 30 * MESBL ).
      FECHA3 = FECHA1 - ( 30 * MESBO ).
      PERFORM EXTRACCIÓN_US_BLOQUEAR.
      PERFORM EXTRACCIÓN_US_BORRAR.
      PERFORM VALIDAR_EXCEPCIONES.
      PERFORM EJECUTAR_TRANS.
      TOP-OF-PAGE.
          FORMAT COLOR 4 ON.
          SKIP.
          WRITE: /57 TEXT-004, 134 'Fecha: ', SY-DATUM.
          WRITE: /134 'Página: ', SY-PAGNO, 151 ' '.
          SKIP.
      END-OF-PAGE.
    *&      Form  EXTRACCIÓN_US_BORRAR
          text
    -->  p1        text
    <--  p2        text
    FORM EXTRACCIÓN_US_BORRAR.
    Selección de los Usuarios a Borrar que han entrado alguna vez
        SELECT BNAME ERDAT TRDAT APPENDING CORRESPONDING FIELDS OF TABLE
                           IT_USBOR FROM USR02 WHERE TRDAT LT FECHA3 AND
                                                TRDAT NE '00000000' AND
                                                CLASS EQ CLASS.
    Selección de los Usuarios a Borrar que aún no han entrado
        SELECT BNAME ERDAT TRDAT APPENDING CORRESPONDING FIELDS OF TABLE
                           IT_USBOR FROM USR02 WHERE ERDAT LT FECHA3 AND
                                                TRDAT EQ '00000000' AND
                                                CLASS EQ CLASS.
    ENDFORM.                    " EXTRACCIÓN_US_BORRAR
    *&      Form  EXTRACCIÓN_US_BLOQUEAR
          text
    -->  p1        text
    <--  p2        text
    FORM EXTRACCIÓN_US_BLOQUEAR.
    Selección de los Usuarios a Bloquear que han entrado alguna vez
        SELECT BNAME ERDAT TRDAT APPENDING CORRESPONDING FIELDS OF TABLE
                         IT_USBLO FROM USR02 WHERE TRDAT LT FECHA2 AND
                                                TRDAT GE FECHA3 AND
                                                CLASS EQ CLASS.
    Selección de los Usuarios a Bloquear que aún no han entrado
        SELECT BNAME ERDAT TRDAT APPENDING CORRESPONDING FIELDS OF TABLE
                       IT_USBLO FROM USR02 WHERE ERDAT LT FECHA2 AND
                                                ERDAT GE FECHA3 AND
                                                TRDAT EQ '00000000' AND
                                                CLASS EQ CLASS.
    ENDFORM.                    " EXTRACCIÓN_US_BLOQUEAR
    *&      Form  VALIDAR_EXCEPCIONES
          text
    -->  p1        text
    <--  p2        text
    FORM VALIDAR_EXCEPCIONES.
        IF S_EXCEP NE SPACE.
            DELETE IT_USBLO WHERE BNAME EQ 'SAP*' OR
                                  BNAME EQ 'DDIC' OR
                                  BNAME EQ 'MAILADM' OR
                                  BNAME EQ 'SAPGUEST' OR
                                  BNAME EQ 'WF-BATCH' OR
                                  BNAME IN S_EXCEP.
            DELETE IT_USBOR WHERE BNAME EQ 'SAP*' OR
                                  BNAME EQ 'DDIC' OR
                                  BNAME EQ 'MAILADM' OR
                                  BNAME EQ 'SAPGUEST' OR
                                  BNAME EQ 'WF-BATCH' OR
                                  BNAME IN S_EXCEP.
        ELSE.
            DELETE IT_USBLO WHERE BNAME EQ 'SAP*' OR
                                  BNAME EQ 'DDIC' OR
                                  BNAME EQ 'MAILADM' OR
                                  BNAME EQ 'SAPGUEST' OR
                                  BNAME EQ 'WF-BATCH'.
            DELETE IT_USBOR WHERE BNAME EQ 'SAP*' OR
                                  BNAME EQ 'DDIC' OR
                                  BNAME EQ 'MAILADM' OR
                                  BNAME EQ 'SAPGUEST' OR
                                  BNAME EQ 'WF-BATCH'.
        ENDIF.
    ENDFORM.                    " VALIDAR_EXCEPCIONES
    *&      Form  EJECUTAR_TRANS
          text
    -->  p1        text
    <--  p2        text
    FORM EJECUTAR_TRANS.
    DATA: L TYPE I.
        DESCRIBE TABLE IT_USBLO LINES L.
        IF L GT 0.
            LOOP AT IT_USBLO.
                ADD 1 TO CONT.
                IF CHECK_T EQ SPACE.
                    PERFORM EJECUTAR_US01 USING 'LOCK' IT_USBLO-BNAME.
                ENDIF.
                PERFORM LISTAR USING IT_USBLO-BNAME IT_USBLO-ERDAT
                                     IT_USBLO-TRDAT TR_MS 'LOCK'.
                AT LAST.
                    ULINE /1(152).
                ENDAT.
            ENDLOOP.
        ENDIF.
        DESCRIBE TABLE IT_USBOR LINES L.
        IF L GT 0.
            CLEAR CONT.
            LOOP AT IT_USBOR.
                ADD 1 TO CONT.
                IF CHECK_T EQ SPACE.
                    PERFORM EJECUTAR_US01 USING 'DELE' IT_USBOR-BNAME.
                ENDIF.
                PERFORM LISTAR USING IT_USBOR-BNAME IT_USBOR-ERDAT
                                     IT_USBOR-TRDAT TR_MS 'DELE'.
                AT LAST.
                    ULINE /1(152).
                ENDAT.
            ENDLOOP.
        ENDIF.
    ENDFORM.                    " EJECUTAR_TRANS
    *&      Form  EJECUTAR_US01
          text
         -->P_0154   text                                                *
    FORM EJECUTAR_US01 USING VALCODE USUARIO.
    REFRESH BDCDATAC.
    MOVE: 'SAPLSUU5' TO BDCDATAC-PROGRAM,
          '0050'     TO BDCDATAC-DYNPRO,
          'X'        TO BDCDATAC-DYNBEGIN.
    APPEND BDCDATAC.
    CLEAR  BDCDATAC.
    MOVE: 'USR02-BNAME' TO BDCDATAC-FNAM, "Usuario SAP
           USUARIO TO BDCDATAC-FVAL.
    APPEND BDCDATAC.
    CLEAR  BDCDATAC.
    IF VALCODE EQ 'LOCK'.
    MOVE: 'BDC_OKCODE' TO BDCDATAC-FNAM, "OK_CODE
          '=LOCK' TO BDCDATAC-FVAL.
    APPEND BDCDATAC.
    CLEAR  BDCDATAC.
    MOVE: 'SAPLSUU5' TO BDCDATAC-PROGRAM,
          '0500'     TO BDCDATAC-DYNPRO,
          'X'        TO BDCDATAC-DYNBEGIN.
    APPEND BDCDATAC.
    CLEAR  BDCDATAC.
    MOVE: 'BDC_OKCODE' TO BDCDATAC-FNAM, "OK_CODE
          '=LOCK' TO BDCDATAC-FVAL.
    APPEND BDCDATAC.
    CLEAR  BDCDATAC.
    ELSEIF VALCODE EQ 'DELE'.
    MOVE: 'BDC_OKCODE' TO BDCDATAC-FNAM, "OK_CODE
          '=DELE' TO BDCDATAC-FVAL.
    APPEND BDCDATAC.
    CLEAR  BDCDATAC.
    MOVE: 'SAPLSPO1' TO BDCDATAC-PROGRAM,
          '0300'     TO BDCDATAC-DYNPRO,
          'X'        TO BDCDATAC-DYNBEGIN.
    APPEND BDCDATAC.
    CLEAR  BDCDATAC.
    MOVE: 'BDC_OKCODE' TO BDCDATAC-FNAM, "OK_CODE
          '=YES' TO BDCDATAC-FVAL.
    APPEND BDCDATAC.
    CLEAR  BDCDATAC.
    ENDIF.
      CALL TRANSACTION 'SU01' USING BDCDATAC
           MODE 'N'
           UPDATE 'S'
           MESSAGES INTO BDCMSGCOLLM.
      REFRESH BDCDATAC.
          MOVE BDCMSGCOLLM-MSGV1(30) TO TR_MS.
          CLEAR BDCMSGCOLLM.
          REFRESH BDCMSGCOLLM.
    ENDFORM.                    " EJECUTAR_US01
    *&      Form  LISTAR
          text
         -->P_IT_USBLO_USUARIO  text                                     *
    FORM LISTAR USING CODUS FECHA1 FECHA2 MENSAGE ACC.
    DATA: NOMBRE(50), LOCKSTATE LIKE  USLOCK .  "RM 06-04-05
      Búsqueda del Nombre Completo del Usuario
        CLEAR NOMBRE.
        SELECT PERSNUMBER INTO USR21-PERSNUMBER FROM USR21
                          WHERE BNAME EQ CODUS.
        ENDSELECT.
        SELECT NAME_FIRST NAME_LAST INTO (ADRP-NAME_FIRST, ADRP-NAME_LAST)
                          FROM ADRP
                          WHERE PERSNUMBER EQ USR21-PERSNUMBER.
        ENDSELECT.
        CONCATENATE ADRP-NAME_FIRST ADRP-NAME_LAST INTO NOMBRE
                                    SEPARATED BY SPACE.
        IF ACC EQ 'LOCK'.
            ADD 1 TO I.
            IF I EQ 1.
                ULINE /1(30).
                WRITE: / SY-VLINE,  2  TEXT-002, 30 SY-VLINE.
                ULINE /1(152).
                WRITE: / SY-VLINE, 2 TEXT-005, 15 SY-VLINE, 17 TEXT-009,
                       68 SY-VLINE, 70 TEXT-007, 93 SY-VLINE, 95 TEXT-006,
                       118 SY-VLINE, 120 TEXT-008, 152 SY-VLINE.
                ULINE /1(152).
            ENDIF.
            IF CONT EQ 1.
                FORMAT COLOR 2 INTENSIFIED ON.
            ELSEIF CONT EQ 2.
                CLEAR CONT.
                FORMAT COLOR 2 INTENSIFIED OFF.
            ENDIF.
          Búsqueda del Status de Bloqueo del Usuario
            CALL FUNCTION 'SUSR_USER_LOCKSTATE_GET'
                 EXPORTING
                      USER_NAME           =  CODUS
                 IMPORTING
                      LOCKSTATE           =  LOCKSTATE
                 EXCEPTIONS
                      USER_NAME_NOT_EXIST = 1
                      OTHERS              = 2.
           IF LOCKSTATE-LOCAL_LOCK EQ 'X'.   "RM 06-04-05
               MOVE 'BLOQUEADO' TO MENSAGE.
           ELSE.
               CLEAR MENSAGE.
           ENDIF.
            WRITE: / SY-VLINE, 2 CODUS, 15 SY-VLINE, 17 NOMBRE,
                     68 SY-VLINE, 70 FECHA1, 93 SY-VLINE, 95 FECHA2,
                     118 SY-VLINE, 120 MENSAGE, 152 SY-VLINE.
        ELSEIF ACC EQ 'DELE'.
            ADD 1 TO P.
            IF P EQ 1.
                ULINE /1(30).
                WRITE: / SY-VLINE,  2  TEXT-003, 30 SY-VLINE.
                ULINE /1(152).
                WRITE: / SY-VLINE, 2 TEXT-005, 15 SY-VLINE, 17 TEXT-009,
                        68 SY-VLINE, 70 TEXT-007, 93 SY-VLINE, 95 TEXT-006,
                        118 SY-VLINE, 120 TEXT-008, 152 SY-VLINE.
                ULINE /1(152).
            ENDIF.
            IF CONT EQ 1.
                FORMAT COLOR 2 INTENSIFIED ON.
            ELSEIF CONT EQ 2.
                CLEAR CONT.
                FORMAT COLOR 2 INTENSIFIED OFF.
            ENDIF.
            WRITE: / SY-VLINE, 2 CODUS, 15 SY-VLINE, 17 NOMBRE,
                     68 SY-VLINE, 70 FECHA1, 93 SY-VLINE, 95 FECHA2,
                     118 SY-VLINE, 120 MENSAGE, 152 SY-VLINE.
        ENDIF.
    ENDFORM.                    " LISTAR

  • Regarding locks in SAP ( concurrent access by two reports for a same table)

    Hi All,
    I have a problem regarding locks. I have designed a report using lock function modules to set locks and release them after the database operations and it works perfectly. There is another report which also does some DB operation on the same table but there are no table locks using enqueue function module implemented in this report and despite of lock set by first report on the table it is able to do the changes on the db table. I need to know how to overcome this problem.
    Thanks for your solutions.
    Regards,
    Sachin

    Sachin Dangayach wrote:
    Hi All,
    >
    > I have a problem regarding locks. I have designed a report using lock function modules to set locks and release them after the database operations and it works perfectly. There is another report which also does some DB operation on the same table but there are no table locks using enqueue function module implemented in this report and despite of lock set by first report on the table it is able to do the changes on the db table. I need to know how to overcome this problem.
    > Thanks for your solutions.
    >
    > Regards,
    > Sachin
    lock procedure requires that all programs involved cooperate. Inconsistencies can occur if a program reads or changes data without having previously locked it. When a lock is set, the data records are only protected against changes by another program if this program also requests a lock before accessing the data.
    Please check the above extract from [SAP help|http://help.sap.com/saphelp_nw04/helpdata/en/cf/21eed9446011d189700000e8322d00/frameset.htm],  to maintain data consistency, it must be ensured that all the programs should lock the data before changing.
    -Rajesh.

  • Link betweeen method and program/include

    Hi people,
    My question is, in which table is linked a class method and its program/include?
    Say for example
    Class CL_ABAP_STRING_UTILITIES   
    Method DEL_TRAILING_BLANKS
    I know it's in program CL_ABAP_STRING_UTILITIES======CP
    Include
    CL_ABAP_STRING_UTILITIES======CM002
    Because I've seen it in the debugging screen, but I don't know in which table does SAP take the relationship.
    So, if anyone knows this I'll appreciate the answer.
    Thanks ind advance.

    Hello
    You may have a look at table PROGDIR and class CL_OO_CLASSNAME_SERVICE.
    Regards
      Uwe

  • Recently, I updated to Firefox 4.0.1, and the new version disabled several of my programs, including my anti-virus. How can I go back to the previous version of Firefox?

    I want to go back to the previous version of Firefox, because the new version (4.0.1 I think) that I downloaded disabled several of my programs, including my anti-virus program, because they were incompatible with the new version of Firefox. How do I get back to the previous version of Firefox and re-enable the disabled programs?

    * [/questions/777886]
    Some gestures have been removed in Firefox 4.
    You can restore the zoom feature by changing the values of the related prefs on the <b>about:config</b> page.
    browser.gesture.pinch.in -> <b>cmd_fullZoomReduce</b>
    browser.gesture.pinch.in.shift -> <b>cmd_fullZoomReset</b>
    browser.gesture.pinch.out -> <b>cmd_fullZoomEnlarge</b>
    browser.gesture.pinch.out.shift -> <b>cmd_fullZoomReset</b>
    browser.gesture.pinch.latched -> <b>false</b>
    To open the <i>about:config</i> page, type <b>about:config</b> in the location (address) bar and press the "<i>Enter</i>" key, just like you type the url of a website to open a website.<br />
    If you see a warning then you can confirm that you want to access that page.<br />
    You can use the Filter bar at to top of the about:config page to locate a pref more easily.

  • My computer crashed necessitating re-install of op sys and all programs including iTunes. At the iTunes store when I click a song in my library get error message "can't find, do you want to search?" What's happening? How can I listen to my library on this

    My computer crashed necessitating re-install of operating sys and all programs including iTunes. When I click on a song in my library I get an error message "can't find this song, want to search?" What gives? How can I listen to songs in my library on this computer now?

    It is working now. I no longer get the message about the item not being available in the US and I can access the store.

  • Searching of programs/includes/tables based on string

    Hi Experts,
    I have a requirement, is there any program or transaction code to search programs/includes/tables based on the fields
    (Eg. company code, sales organization, country, currency) in the selection screen or any other method. 
    Please suggest, if any solution.
    Thanks,
    GR

    Hi,
    You will not find a program for this requirement & that too based on a field.
    I would suggest if you have the package then SE80 will be the best transaction which will give you all the objects like Tables/programs/FM/Enhancement that come under a package.
    Also if you do a whereused list on fields like Company code, Sales organization, Country, you will end up getting a massive list of objects where it is used.
    Regards
    Abhii

  • I have the new version of iMovie, and when i try to start the program, i can't because it says that it is looking for some movie files from the Iphoto, so all the program is locked up... how can i do to restart the program??

    i have the new version of iMovie, and when i try to start the program, i can't because it says that it is looking for some movie files from the Iphoto, so all the program is locked up... how can i do to restart the program??

    Hi
    Did You ever use - iPhoto ?
    Did You may be direct iPhoto to a different Photo Library
    As iMovie tries to find the appropriate photo library - it can get lost if iPhoto direct it into a Library on a not connected external hard disk or to a strange location - And iMovie HANGS.
    Do - When no other program is running that might interfere
    • Start iPhoto - BUT NOW KEEP alt-key (option key) DOWN during the full Start-Up process
    • Now iPhoto let's You select Photo Library
    • Select the one in Your Account / Home folder / Pictures ! !
    • Then iPhoto should start up OK
    • Now Quit iPhoto
    • START iMovie
    Does it still hangs - then I would suspect - iMovie Pref. file
    If it Run's OK - Then HURRAY !
    Yours Bengt W

  • Hi. I recently got a new computer and transferred all my files across using TimeMachine. Whenever I try to sign into any CC program (including CC) the program instantly shuts down and an Apple error message comes up. I have uninstalled and reinstalled CC

    Hi. I recently got a new computer and transferred all my files across using TimeMachine. Whenever I try to sign into any CC program (including CC) the program instantly shuts down and an Apple error message comes up. I have uninstalled and reinstalled CC twice with no avail and deleted every Adobe product on my computer and nothing is working.

    I have seen similar discussions before... transferring does not work, you must install
    Discussions of RE-installing
    -http://forums.adobe.com/thread/1408331?tstart=0
    -http://forums.adobe.com/thread/1398961?tstart=0
    -and http://helpx.adobe.com/creative-cloud/help/install-apps.html
    -using the cleaner after uninstalling and before reinstalling will usually help
    -http://helpx.adobe.com/creative-suite/kb/cs5-cleaner-tool-installation-problems.html

  • Adobe reader  X and XI search don´t find text like other programs including adobe reader 9? Thanks

    Adobe reader  X and XI search don´t find text like other programs including adobe reader 9? Thanks

    You mean, you are trying to search text in a PDF file, and you can do it in Reader 9 but not in later versions of Reader (using the same file)?

  • CO Through-postings from FI has been locked in sap

    Hi Gurus,
    I have executed a autoamtic payment run, but due to some reasons I wanted to reverse all the documents. I have done reverse for the documents.
    But for some the documents I am getting this message CO Through-postings from FI has been locked in sap.
    Can you please help urgently how to resolve this issue. Is it because of cost centre ?
    Regards,
    Santosh.

    Hi,
    Please refer the thread given below:
    Problem in FI postings for CO
    Regards,
    Amit

  • Report Programs/Includes

    Hi all,
    I am looking for the function module that may be used
    to create Report Programs/Include files.
    I am aware of the INSERT REPORT statement. But it
    creates a 'Report Program' of Application type 'Basis'.
    I want to create an Include file of other Application
    type.
    Please help.
    Thanks in Advance.

    Hi Anandaraja,
    don't worry about the program type created - wht ever it is you can INCLUDE it anyway.
    If you still want to change, you may modify the object catalog entry after creating.
    Regards,
    Clemens

  • Do we need unique program ids for different SAP Channels

    Hi All,
    I am using different channels for receiving SalesOrder and Invoice idocs from SAP system. Wanted to confirm if we need unique program ids for each SAP channel or a single program id can be configured in SAP GUI to receive both idocs. I am using SOA 11g.
    Regards
    Subhankar

    Unique program id for each type of IDOC is preferred per each channel
    IDOC Type 1->Programid1->Channel1
    IDOC Type 2->Programid2->Channel2
    Manoj

  • Does Photoshop Photography Program include use of Typekit?

    I subscribe to Adobe's Photoshop Photography Program and notice that the Creative Cloud desktop application indicates that I can turn Typekit on. However, it's not clear if Typekit is included in my subscription.
    In the Creative Cloud FAQ I see this:
    What is the Adobe Photoshop Photography Program offer?
    This offer includes access to Photoshop CC and Lightroom 5, Lightroom mobile and web, plus feature updates and upgrades as they are available; 20GB of cloud storage for file sharing and collaboration; and Behance ProSite for your own fully customizable professional portfolio. That means you get all the benefits of a Creative Cloud single-app membership for Photoshop CC, but with Lightroom 5 and Lightroom mobile included as well, for a terrific monthly price.
    In the Creative Cloud single-app overview I see this:
    Creative Cloud single-app plans include:
    Full version of one desktop application
    20GB of cloud storage for file sharing and collaboration
    Adobe Typekit library of fonts for use in desktop applications and websites
    Behance ProSite
    Limited access to services
    This seems to suggest that Typekit is included in the Photoshop Photography Program with no additional costs. Can anyone confirm this?

    Hi Wolf Eilers,
    Thanks for your interest in Typekit!  The Photoshop Photography Program includes a Typekit Trial plan, which allows you to sync a selection of fonts from the Typekit library to your desktop and use them on the web as well. 
    If you would like to have full access to all of the fonts in the Typekit library, you would need to upgrade to the Portfolio level. If you would like to do that:
    1) sign in at https://typekit.com/login with your Adobe ID and password
    2) visit typekit.com/plans, and select the "upgrade" option underneath Portfolio. Your Typekit plan upgrade will be billed separately from your Creative Cloud payments. The Portfolio plan is $49.99/year.
    There are links from the Typekit plans page which show you the fonts that are included in each subscription level:
    Pricing | Typekit
    I hope that this helps; let me know if you have any other questions. Best,
    -- liz

  • We are building a movie in iMovie and that program has locked up. We cannot shut it down, even when we simply shut the whole computer down. Any suggestions?

    We are building a movie in iMovie adn the program has locked up. It won't allow us to "quite" ... the wheel just keeps spinning. Thoughts?

    Hi..
    Command + Option + Esc will prompt the Force Quit window.
    You can also force quit an app from your Apple menu top left in your screen or by using the Activity Monitor located in Applications/Utilities

Maybe you are looking for