SpoolNumbers on Spool does not appear

Hi everyone!
I used to see the SpoolNumbers in RZ20 transaction on SAP CCMS Monitor Templates -> Spool System some days ago, but nowadays, this report doesn't appear. I don't know if this report was disappeared because one jos doesn't run. I need this report to review the spool level. Someone knows how can I activate or start the SpoolNumbers report?
I'll appreciae your help.
Best regards.

Hi Moses,
SAP has a default spool request number of 32,000, and default clean up job SAP_REORG_SPOOL does not clean up output request by background job.
You can view the status of your SPOOL numbers through:
1. Transaction SNRO > Table SPO_NUM > Number Ranges (button) > Status
Note: Do not change anything unless you are sure or this is in sync with a parameter change limit.
2. RZ20 > SAP CCMS Monitor Template > Spool System > Spool wide > Spool > Spool number
I hope this will hep you to resolve your query.
Regards
PremG

Similar Messages

  • SPOOL DIALOG DOES NOT APPEAR WHEN NO_DIALOG = SPACE

    The control parameters that allow the spool dialog popup to appear work when executing directly from MB90, but when executing from MIGO, the spool dialog popup does not appear.  The print output is occurring without giving user option to change spool dialog entries.  The desired outcome is to have the spool dialog popup appear when executing IM transactions and our output type is WEE4 to allow user input prior to printing. 
    See below for code:
    FORM CALL_GR_SMARTFORM.
      TABLES: LTBP,
              QAMB.
      DATA:  LV_LTBP TYPE LTBP,
             LV_SFORM_NAME TYPE SFORM,
             LV_FM_NAME   TYPE RS38L_FNAM,
             LV_MESS      TYPE STRING,
             LT_OUTPUT_OPTIONS TYPE SSFCOMPOP OCCURS 0 WITH HEADER LINE,
             LT_COPIES    LIKE MSEG-MENGE,
             LT_CONTROL_PARAMETERS TYPE SSFCTRLOP OCCURS 0 WITH HEADER LINE,
             LV_MATERIAL_TEXT TYPE MAKT,
             L_CX_ROOT    TYPE  REF TO CX_ROOT.
         SELECT SINGLE * FROM MAKT INTO LV_MATERIAL_TEXT
                WHERE MATNR = MSEG-MATNR AND
                      SPRAS = 'EN'.
      IF mseg-werks = '0050' AND NAST-KSCHL = 'WEE2'.
        LV_SFORM_NAME = 'ZZEBRA_GRSERVLBL'.
      ELSEIF mseg-werks = '0050' AND NAST-KSCHL = 'WEE4'.
        LV_SFORM_NAME = TNAPR-SFORM.
        LT_COPIES = MSEG-MENGE.
      ELSEIF MKPF-VGART = 'WQ' AND MSEG-BWART = '321'.
        IF MSEG-ZEILE <> '0001'.
          RETURN.
        ENDIF.
        SELECT SINGLE * FROM QAMB
              WHERE MBLNR = MSEG-MBLNR AND
                    MJAHR = MSEG-MJAHR.
        IF sy-subrc = 0.
          SELECT SINGLE * FROM LTBP INTO LV_LTBP
                WHERE QPLOS = QAMB-PRUEFLOS AND
                      MATNR = MSEG-MATNR.
        ENDIF.
        IF sy-subrc = 0.
          SELECT SINGLE * FROM LTBP
                WHERE TBNUM = LV_LTBP-TBNUM AND
                      MATNR = LV_LTBP-MATNR AND
                      MBPOS = LV_LTBP-MBPOS AND
                      ELIKZ = ''            AND
                      BESTQ = ''.
        ENDIF.
        LV_SFORM_NAME = TNAPR-SFORM.
      ELSEIF mseg-bestq = 'Q'.
        SELECT SINGLE * FROM LTBP
              WHERE LGNUM = MSEG-LGNUM AND
                    TBNUM = MSEG-TBNUM AND
                    TBPOS = MSEG-TBPOS.
          LV_SFORM_NAME = 'ZZEBRA_GRQMLABEL'.
      ELSE.
        LV_SFORM_NAME = TNAPR-SFORM.
      ENDIF.
      LT_OUTPUT_OPTIONS-TDIMMED   = NAST-DIMME.
      LT_OUTPUT_OPTIONS-TDDELETE  = NAST-DELET.
      LT_OUTPUT_OPTIONS-TDDEST    = NAST-LDEST.
      LT_OUTPUT_OPTIONS-TDDATASET = NAST-DSNAM.
      LT_OUTPUT_OPTIONS-TDSUFFIX1 = NAST-DSUF1.
      LT_OUTPUT_OPTIONS-TDSUFFIX2 = NAST-DSUF2.
      LT_OUTPUT_OPTIONS-TDARMOD   = NAST-TDARMOD.
      LT_OUTPUT_OPTIONS-TDCOVER   = NAST-TDOCOVER.
    IF sy-tcode = 'MB90'.
      LT_CONTROL_PARAMETERS-NO_DIALOG = SPACE.
    ELSE.
      LT_CONTROL_PARAMETERS-NO_DIALOG = 'X'.
    ENDIF.
    IF NAST-KSCHL = 'WEE4'.
      LT_OUTPUT_OPTIONS-TDCOPIES  = LT_COPIES.
      LT_OUTPUT_OPTIONS-TDGROUP  = 'X'.
      LT_CONTROL_PARAMETERS-NO_DIALOG = SPACE.
    ENDIF.
      APPEND LT_CONTROL_PARAMETERS.
      APPEND LT_OUTPUT_OPTIONS.
    **To get Function Module Name
    CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
        EXPORTING
          formname                 = LV_SFORM_NAME
      VARIANT                  = ' '
      DIRECT_CALL              = ' '
    IMPORTING
         fm_name                  = LV_FM_NAME
    EXCEPTIONS
      NO_FORM                  = 1
      NO_FUNCTION_MODULE       = 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.
       CATCH CX_FP_API INTO L_CX_ROOT.
         LV_MESS = L_CX_ROOT->GET_TEXT( ).
         MESSAGE LV_MESS TYPE 'E'.
    ENDIF.
    To call SMARTFORM Form
      CALL FUNCTION LV_FM_NAME
       EXPORTING
      ARCHIVE_INDEX              =
      ARCHIVE_INDEX_TAB          =
      ARCHIVE_PARAMETERS         =
         CONTROL_PARAMETERS         = LT_CONTROL_PARAMETERS
      MAIL_APPL_OBJ              =
      MAIL_RECIPIENT             =
      MAIL_SENDER                =
         OUTPUT_OPTIONS             = LT_OUTPUT_OPTIONS
         USER_SETTINGS              = SPACE
         po_item                    = ekpo
         mat_text                   = LV_MATERIAL_TEXT
         mat_doc_item               = mseg
         mat_doc_post               = mkpf
         QM_INSP_LOT                = ltbp
    IMPORTING
      DOCUMENT_OUTPUT_INFO       =
      JOB_OUTPUT_INFO            =
      JOB_OUTPUT_OPTIONS         =
    EXCEPTIONS
      FORMATTING_ERROR           = 1
      INTERNAL_ERROR             = 2
      SEND_ERROR                 = 3
      USER_CANCELED              = 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.
    ENDFORM.                    " call_rm07etikett_smartfo

    Hi azman1437.
    I see that since an update you haven't been able to scan with your Deskjet 3050A. I try to help with this.
    I would suggest by starting with an uinstall/install of your software. Something may have changed how the software is loading on the computer when you attempt to scan.
    The other option, is looking for the HPscan application.
    Where this is located depends on your computers operating system. To help with that would need to know the OS of the computer.
    I hope this helps, thanks for your post.
    I worked on behalf of HP.

  • I am trying to set up Sharing amongst several computers on my home network.  I have followed all the setup instructions but after completion Sharing does not appear in my iTunes window (on any of the computers I've set up).  There is no explanation why.

    I have been trying to set up Sharing between two computers on my network. I did this once and it worked.  However, when I try to set this up now the Sharing feature does not appear on the left side of the iTunes window (on either computer).  There is no explanation as to why not.  Is this a configuration problem, a network problem or what?   Can it be fixed?  I have tried turning sharing off and back on on both computers but to no avail.  What am I missing?  Thanks for any help you can provide.

    Hey innerev2003,
    Thanks for the question, and welcome to Apple Support Communities.
    If, while searching through your past purchases, items are unavailable to download and show a "Purchased" button, they are still on your computer. It may be best to search your iTunes library by clicking Music, then use the search bar at the top right.
    If you are completely sure the items are no longer in your library, try signing out of the iTunes Store, and then back in.
    iTunes 11 for Windows: Manage your iTunes Store account
    http://support.apple.com/kb/PH12507
    Thanks,
    Matt M.

  • Hi all, I upgraded my MBP to Lion , but on the screen where i need to type my password, click  on my photo and it does not appear the place for me to type my password and it stay stuck there. Can anyone solve this problem for me?

    Hi all, I upgraded my MBP to Lion , but on the screen where i need to type my password, click  on my photo and it does not appear the place for me to type my password and it stay stuck there. Can anyone solve this problem for me?

    Reboot the machine holding Command and r keys down, you'll boot into Lion Recovery Partition
    In there will be Disk Utility, use that to select your Lion OS X Partition and Repair Permissions.
    After that is done reboot the machine and see if you can log in.
    If not repeat the above steps to get into Lion Recovery, get online and reinstall Lion again, it will overwrite the installed version and hopefully after that it wil work.
    Reboot and try again.
    If not follow my steps to create a Snow Leopard Data Recovery drive, then option boot from it and grab a copy of your files off the machine.
    Then reinstall all your programs onto the external drive like setting up a new machine, then use Disk Utility to erase the entire internal boot drive (select the drive media on the far left, not the partiton slightly indented) format Option: GUID , 1 partition OS X Extended and then use Carbon Copy Cloner to clone the external to the newly formatted internal drive. Once that is finished reboot and disconnect the external drive.
    Once you go that, boot into Snow Leopard and update to 10.6.8, use the AppStore and option click on Purchases and download Lion again and install.
    Lots of work, but there is no Lion disks.
    https://discussions.apple.com/message/16276201#16276201

  • BPM Application Link does not appear in BPM Workspace (11.1.1.7)

    I spent huge amount of time to reveal why does that happens.
    All that follows further is valid for BPM Suite 11.1.1.7.
    The scenario.
    You developed a simple BPM process with Initiator pattern (maybe by following the "Quote Request" tutorial).
    But the application link did not appear in BPM Workspace.
    Here i'm skipping any kind of mistakes as "oh, incorrect swimlane", "oh, i did not include the user to the app role" and so on.
    At first, you should know about the "feature" - You have to attach task form to the Initiator Human Task to see the App Link.
    The simplest way to do that is to AutoGenerate task form (and deploy it, of course).
    Else the Appication Link will not appear.
    One exception to this rule - If your Task HAS NO PAYLOAD (no parameters) the Task Form is not required (to appearing of the Application Link).
    The second find is a bug (is think so).
    If you edited the Role that Attached to the swimlane of Initiator Task, you will not see the Application Link.
    If you look to organization.xml you will see something like this:
            <ns1:applicationRole id="StartTask.InitRole" isProcessRole="true">
                <ns5:name>StartTask.InitRole1</ns5:name>
                <ns1:processRole id="InitRole" name="InitRole1"/>
            </ns1:applicationRole>
    The Application Link will appear ONLY IF THE "applicationRole id", "applicationRole name" and "processRole id" have the same value.
    When you edit name of the application role in Organization Editor you change "applicationRole name" and "processRole name" values.
    After that "applicationRole id" != "applicationRole name" and the Link does not appear.
    How to fix?
    Just edit organization.xml (with external editor) - change the "applicationRole name" to the value of "applicationRole id".
    That allows to have value of "processRole name" something like "The Initiator Role" - that value appears in the BPMN diagram of process.
    Also you can edit organization.xml with Organization Editor and set the Name to the value of "applicationRole id".
    In that case the associated swimlane will have the same name as the "applicationRole id".
    Hope this helps somebody
    Oleg

    Flash Player is a browser add-on, not an executable program.
    If you need to open a local SWF file you will need the standalone player (Projector) from http://www.adobe.com/support/flashplayer/downloads.html
    Note that the download is the player, not an installer, so you will need to make the file association manually.

  • File Place does not appear on my menu. Neither does Tools Photoshop Image processor.

    In Bridge File>Place is grayed out on my menu. Tools>Photoshop>Image processor does not appear at all.  I have reset the preferences numerous times and am good to go until I shut down my computer.  When I reboot they are gone again.  I have a Mac with OS 10.10.2 (Yosemite) and CC. 

    Mardi Carter wrote:
    I shut down using "Shut Down" under the Apple menu.....always…
    Well, that's fine for the OS, but sometimes not so great for Photoshop.  Try QUITTING Photoshop from the Photoshop menu, or by Command Q, before you get anywhere near your Apple menu .
    Gene gave you sound advice, but don't forget to run Repair Permissions with Apple's Disk Utility before and after any installation, upgrade or update of the OS or any application.
    You'd think that shouldn't be necessary, but it is indeed vital, indispensable routine maintenance.
    Forget about "it had never happened before", Yosemite is a work in progress.  Apple never gets a major OS X release right until about the dot four or five release, so Yosemite has a way to go before it's at 10.10.4 or 10.10.5.  That has proven to be the nature of the beast.

  • Adobe Creative Cloud (Desktop) does not work properly. The application is blocked : it could not be launch neither stopped. I'm on MAC Yosemite OS, does anyone know how to remove it properly or to force its stop. It does not appear in the launched applica

    Adobe Creative Cloud (Desktop) does not work properly. The application is blocked : it could not be launch neither stopped. I'm on MAC Yosemite OS, does anyone know how to remove it properly or to force its stop. It does not appear in the launched applications.

    I received no error message. The application was just trying to find applications unsuccessfully.
    I am using MAC OS 10.10.1
    I tried to uninstall the application  but it seems that a kind of deamon is still installed thus providing me to reinstall properly. Do you know where are the elements to remove in order to get my machine just like before ?
    Otherwise I would have to reinstall everything and this would be a pain.
    Thanks for your help.

  • HT204266 I downloaded AirPlayIt yesterday from the app store.  It was on my iPad yesterday.  Today, however, the app icon does not appear on my home screen.  When I go into apps it is there but it doesn't have an "Open" choice.  There is only a cloud with

    I downloaded AirPlayIt yesterday from the app store.  It was on my iPad yesterday.  Today, however, the app icon does not appear on my home screen.  When I go into apps it is there but it doesn't have an "Open" choice.  There is only a cloud with an arrow pointing down.  When I click on the app it pops up but there is no open button.  How can I remove it?  Tapping it won't work as it isn't on my home screen.

    You'll have to contact the developer about this. Apple doesn't make this app;

  • Media Manager does not appear on my second stb

    I downloaded Verizon Media Manager and installed it without problems.  When I checked my HD stb the program is listed and I could use it.  I do not have any kind of recorder on the network.  When I check my non HD stb the VMM does not appear.  This is the unit I want to use as it will allow me to play music through the home theater sound system.
    So, am I limited because I do not have a recorder or does the feature not work on non HD stb?  If this is the case, I might as well delete the program from my PC.
    Solved!
    Go to Solution.

    Hi. I apologize for the inconvenience. Unfortunately at this time, the standard def STBs do not work with Media Manager. It doesn't have to be a DVR, but the stb has to be an HD box. If you do not wish to upgrade the STD box at this time and depending on your setup, you can always swap the STBs and move the media manager functionality to where you want it. 

  • I have an iPhone 3gs and it used to show up on my computer, but now it shows up on my screen that it is charging however, does not appear in iTunes or My Computer so i can't sync it. Can anybody help? Thanks

    I have an iPhone 3gs and it used to show up on my computer, but now it shows up on my screen that it is charging however, does not appear in iTunes or My Computer so i can't sync it. Can anybody help? Thanks.

    Did you already make sure that Apple Mobile Device Service is installed and active on your computer?
    http://support.apple.com/kb/TS1567
    More troubleshooting about your device not recognized in Windows can be found here: http://support.apple.com/kb/TS1495

  • My ipod works in itunes but does not appear in "my computer" after I changed the properties

    My ipod works in itunes but does not appear in "my computer" after I changed the properties.
    First off, I'm using Windows XP (and Mac SnowLeopard) Here's how it started. For some reason my ipod started showing up as a camera when I plugged it in. It works fine in itunes, though. But when I tried to access it from "my computer" it only
    showed me the one and only picture I had on my ipod. I deleted that picture hoping it would no longer show up as a camera. When it still did I right-clicked on it in "my computer" and selected "properties". Under "autoplay" I
    chose for it to 'not show up' or 'take no action' or some such deal when I plugged it in. I thought that would stop it from popping up the window that asks whether i want to 'open camera wizard' or 'open camera scanning' or 'open folder to view files' or 'take
    no action' , etc. But now it won't show up in "my computer" at all. I also have a Mac with SnowLeopard. When I plugged my ipod into it my ipod doesn't show up in "finder" either! So basically my problem is not a mechanical one with hardware
    or software; yht ipod still works fine in itunes. I just need to undo the change I made. I've searched all around my preferences, utilities, options, etc. It shows up on my "Device Manager" but not on "Disk Management".
    Any help would be very much appreciated. Thanks.

    Hi,
    To show up in Windows Explorer, you can try placing the iPod into
    disk mode.
    Moreover, i recommend you to
    restore ipod to factory settings.
    If this issue still persists, locate to device manager, uninstall and reinstall USB Mass Storage Device driver.
    Here is an article you can refer to below:
    http://support.apple.com/kb/TS1369
    To get more help, you can also redirect to apple support forum:
    http://www.apple.com/support/ipod/
    Thanks!
    Andy Altmann
    TechNet Community Support

  • The edit JSP page does not appear...

    Hi!
    I make a simple JSF application, I would like to show a DB table in a h:dataTable component and edit a given row after click, but the edit JSP page does not appear. I click the on link in the table, but the list is loaded again and not the edit page...:(
    (no exception in application server console)
    Please help me!
    my code:
    **************************************** listmydata.jsp***************************
                   <h:dataTable
                             value="#{myBean.myDataList}"
                             var="myDataItem"
                             binding="#{myBean.myDataTable}"
                   >
                        <h:column>
                             <f:facet name="header">
                                  <h:outputText value="Ajdi"/>
                             </f:facet>
                             <h:commandLink action="#{myBean.editMyData}">
                                  <h:outputText value="#{myDataItem.id}"/>
                             </h:commandLink>
                        </h:column>
    ********************************* MyBean.java *******************************
    package bean;
    import java.sql.Connection;
    import java.sql.SQLException;
    import java.util.ArrayList;
    import java.util.List;
    import javax.faces.component.html.HtmlDataTable;
    import javax.faces.context.FacesContext;
    import javax.naming.InitialContext;
    import javax.naming.NamingException;
    import javax.sql.DataSource;
    import wrapper.MyData;
    public class MyBean {
         private List myDataList;
         private HtmlDataTable myDataTable;
         private MyData myDataItem;
         protected Connection Conn;
         // *********************** actions ***********************
         public String editMyData() {
              myDataItem = (MyData)getMyDataTable().getRowData();
              return "editmydata";
         public String saveMyData() {
              try {
                   updateDataInDB();
              catch (SQLException e) {
                   System.out.println(e);
                   System.err.println(e);
                   e.printStackTrace();
              catch (NamingException e) {
                   System.out.println(e);
                   System.err.println(e);
                   e.printStackTrace();
              return "listmydata";
         // *********************** setter ***********************
         public void setMyDataList(List myDataList) {
              this.myDataList = myDataList;
         public void setMyDataTable(HtmlDataTable myDataTable) {
              this.myDataTable = myDataTable;
         public void setMyDataItem(MyData myDataItem) {
              this.myDataItem = myDataItem;
         // *********************** getter ***********************
         public List getMyDataList() {
              if (myDataList == null || FacesContext.getCurrentInstance().getRenderResponse()) {
                   loadMyDataList();
              return myDataList;
         public HtmlDataTable getMyDataTable() {
              return myDataTable;
         public MyData getMyDataItem() {
              return myDataItem;
         // *********************** others ***********************
         public void loadMyDataList() {
              try {
                   getDataFromDB();
              catch (NamingException e) {
                   System.out.println(e);
                   System.err.println(e);
                   e.printStackTrace();
              catch (SQLException e) {
                   System.out.println(e);
                   System.err.println(e);
                   e.printStackTrace();
         void getDataFromDB() throws NamingException, SQLException {
              myDataList = new ArrayList();
              java.sql.PreparedStatement PreStat = ownGetConnection().prepareStatement("SELECT id, name, value FROM BEA_JSF_SAMPLE");
              PreStat.execute();
              java.sql.ResultSet Rs = PreStat.getResultSet();
              while(Rs.next()) {
                   MyData OneRecord = new MyData();
                   OneRecord.setId(Rs.getLong(1));
                   OneRecord.setName(Rs.getString(2));
                   OneRecord.setValue(Rs.getString(3));
                   myDataList.add(OneRecord);
         void updateDataInDB() throws SQLException, NamingException {
              String sql = new String("UPDATE BEA_JSF_SAMPLE SET name=?,value=? WHERE id=?");
              java.sql.PreparedStatement PreStat = ownGetConnection().prepareStatement(sql);
              PreStat.setString(1,myDataItem.getName());
              PreStat.setString(2,myDataItem.getValue());
              PreStat.setLong(3,myDataItem.getId().longValue());
              PreStat.execute();
              ownGetConnection().commit();
         Connection ownGetConnection() throws SQLException, NamingException {
              if (Conn == null) {
                   InitialContext IniCtx = new InitialContext();
                   DataSource Ds = (DataSource)IniCtx.lookup("JDBCConnectToLocalhost_CRS");
                   Conn = Ds.getConnection();
              return Conn;
    ******************************* editmydata.jsp *****************************
    <%@ page language="java" contentType="text/html;charset=UTF-8"%>
    <%@ taglib prefix="f" uri="http://java.sun.com/jsf/core"%>
    <%@ taglib prefix="h" uri="http://java.sun.com/jsf/html"%>
    <html>
    <body>
    <f:view>
    <h:form>
         <h:panelGrid columns="2">
              <h:outputText value="Name"/>
              <h:inputText id="name" value="#{myBean.myDataItem.name}"/>
              <h:outputText value="Value"/>
              <h:inputText id="value" value="#{myBean.myDataItem.value}"/>
         </h:panelGrid>
         <h:commandButton action="#{myBean.saveMyData}" value="Save"/>
    </h:form>
    </f:view>
    </body>
    </html>

    I have put his lines in the faces-config.xml and now it works:
         <navigation-rule>
              <from-view-id>*</from-view-id>
              <navigation-case>
                   <from-outcome>editmydata</from-outcome>
                   <to-view-id>editmydata.jsp</to-view-id>
              </navigation-case>
         </navigation-rule>
         <navigation-rule>
              <from-view-id>*</from-view-id>
              <navigation-case>
                   <from-outcome>listmydata</from-outcome>
                   <to-view-id>listmydata.jsp</to-view-id>
              </navigation-case>
         </navigation-rule>
    I don't understand, that I define the next JSP page in the bean java file, which must be shown, but I must define this in the faces-config.xml as well.
    for example:
         public String editMyData() {
              myDataItem = (MyData)getMyDataTable().getRowData();
              return "editmydata";
    is it right or Do I make a mistake somewhere?

  • The music search on the I tunes store does not appear after the latest upgrade to my I phone 4

    The music search feature on the I Tunes store does not appear.  Unable to search since the latest upgrade.

    If you're sure where your library is run this script iTunesXMLPath. The library folder is the folder that file is in. Your media folder is recorded under Edit > Preferences > Advanced and is usually a subfolder of the library folder.
    I recommend you backup your library with the method in this user tip.
    tt2

  • I am using 10.6.8 and I cannot get an Imac to appear in workgroup manager, the mac is bound to both AD and OD. I have removed the bindings, rebuilt the mac and also removed it from bot system but still it does not appear in OD in work group manager.

    I have a mac which is connected to a network and is bound to both OD and AD with no issues on my server when I try to manage it through Workgroup manager it does not appear.
    I have unbound it , removed it from both systems completely and even rebuilt it but it still does not appear in WGM.

    If your server is 10.6 and your client is 10.7 you'll have to add it manually to WGM
    via mac address.  10.7 clients don"t automatically appear in 10.6 server wgm

  • My iPhone 4s does not appear on devices when connected to iTunes in my Mac

    My iPhone 4s does not appear on devices when connected to iTunes in my Mac

    Check to make sure you have enough free space to include the videos.

Maybe you are looking for