Spool but no print

Hello all,
Scenario:
I create n number of printouts using one spool with no_open and no_close. The print is fine, the spool is in SP01.
The problem:
We do not want it to print, just create the spool and do nothing more, the user can then choose if the spool should be printed or not to a printer of their choice.
The TDIMMED is set to space, and I have tried to set the TDDEST to NULL but then the users default is picked up and the print comes flying out of the printer anyway.
We do have a current SAPScript solution which does precisely that but I cannot figure out the difference between my new print program and the old SAPScript program (the ITCPO for the script and the control_param for the smartform looks like they match).
So basically, what to do to stop a smartform spool from printing, and just sit without a status in the SP01 list?
Thanks in advance.

Hi,
In the smartforms function module this is controlled by the parameter 'OUTPUT_OPTIONS-TDIMMED'. This parameter must not be filled when your application program calls the smartform fuunction module.
Also the parameter USER_SETTINGS must be set to ' ' .(default is 'X', so the parameter must be set)
Regards,
Aidan

Similar Messages

  • Send to Spool But No Print

    Hi everybody.
    Can anybody tell me how can I send a ABAP report to spool, but I d'ont want print?
    Thanks in advance.

    hi,
    Try this sample code.. This writes your report output to spool and it doesnt print.
    CONSTANTS: CX_MARK(1) TYPE C VALUE 'X',      
               C_ROWS TYPE I VALUE 65,           
               C_COLS TYPE I VALUE 132,          
               C_LAY(16) TYPE C VALUE 'X_65_132'.
    DATA: VAL(1) TYPE C.
    DATA: PRIPAR LIKE PRI_PARAMS.
    START-OF-SELECTION.
    PERFORM GET_PRINT_PARAM.
    NEW-PAGE PRINT ON NEW-SECTION
            PARAMETERS PRIPAR NO DIALOG.
    PERFORM PRINT_SPOOL.
    NEW-PAGE PRINT OFF.
    FORM PRINT_SPOOL.
      WRITE : / 'this is test spool -- test 7:30'.   "<--Write your report output here
    ENDFORM. 
    FORM GET_PRINT_PARAM.
    CALL FUNCTION 'GET_PRINT_PARAMETERS'
        EXPORTING
    *         ARCHIVE_ID             = C_CHAR_UNKNOWN
    *         ARCHIVE_INFO           = C_CHAR_UNKNOWN
    *         ARCHIVE_MODE           = C_CHAR_UNKNOWN
    *         ARCHIVE_TEXT           = C_CHAR_UNKNOWN
    *         AR_OBJECT              = C_CHAR_UNKNOWN
    *         AUTHORITY              = C_CHAR_UNKNOWN
    *         COPIES                 = C_NUM3_UNKNOWN
    *         COVER_PAGE             = C_CHAR_UNKNOWN
    *         DATA_SET               = C_CHAR_UNKNOWN
    *         DEPARTMENT             = C_CHAR_UNKNOWN
    *         DESTINATION            = C_CHAR_UNKNOWN
    *         EXPIRATION             = C_NUM1_UNKNOWN
    *         IMMEDIATELY            = C_CHAR_UNKNOWN
    *         IN_ARCHIVE_PARAMETERS  = ' '
    *         IN_PARAMETERS          = ' '
    *         LAYOUT                 = C_CHAR_UNKNOWN
    *         LINE_COUNT             = C_INT_UNKNOWN
    *         LINE_SIZE              = C_INT_UNKNOWN
    *         LIST_NAME              = C_CHAR_UNKNOWN
    *         LIST_TEXT              = C_CHAR_UNKNOWN
    *         MODE                   = ' '
    *         NEW_LIST_ID            = C_CHAR_UNKNOWN
              NO_DIALOG              = CX_MARK
    *         RECEIVER               = C_CHAR_UNKNOWN
    *         RELEASE                = C_CHAR_UNKNOWN
    *         REPORT                 = C_CHAR_UNKNOWN
    *         SAP_COVER_PAGE         = C_CHAR_UNKNOWN
    *         SAP_OBJECT             = C_CHAR_UNKNOWN
    *         TYPE                   = C_CHAR_UNKNOWN
    *    IMPORTING
    *         OUT_ARCHIVE_PARAMETERS =
              OUT_PARAMETERS         = PRIPAR
              VALID                  = VAL
         EXCEPTIONS
              ARCHIVE_INFO_NOT_FOUND = 1
              INVALID_PRINT_PARAMS   = 2
              INVALID_ARCHIVE_PARAMS = 3
              OTHERS                 = 4.
    * Output device
      IF PRIPAR-PDEST IS INITIAL.
         PRIPAR-PDEST = 'LOCL'.
      ENDIF.
    * Number of copies
      PRIPAR-PRCOP = '001'.
    *Name of spool request
      CONCATENATE SY-CPROG '_' SY-UNAME+0(3) INTO PRIPAR-PLIST.
    * Text for cover sheet
      CONCATENATE SY-TITLE SPOOLLOG INTO PRIPAR-PRTXT SEPARATED BY SPACE.
    * Print immediately
      PRIPAR-PRIMM = SPACE.
    * Delete after printing
      PRIPAR-PRREL = SPACE.
    * new spool request
      PRIPAR-PRNEW = CX_MARK.
    * Spool retention period
      IF PRIPAR-PEXPI IS INITIAL.
         PRIPAR-PEXPI = '8'.
      ENDIF.
    * Number of list lines
      PRIPAR-LINCT = C_ROWS.
    * Line size of list
      PRIPAR-LINSZ = C_COLS.
    * Format
      PRIPAR-PAART = C_LAY.
    * Selection cover sheet
      PRIPAR-PRBIG = SPACE.
    * SAP cover sheet
      PRIPAR-PRSAP = 'D'.
    * Recipient
      PRIPAR-PRREC = SY-UNAME.
    * Department on cover sheet
      PRIPAR-PRABT = SPACE.
    * Authorization
      PRIPAR-PRBER = SPACE.
    * Name of spool dataset
      IF PRIPAR-PRDSN IS INITIAL.
        PRIPAR-PRDSN = 'LIST1S'.
      ENDIF.
    * Type of spool request
      IF PRIPAR-PTYPE IS INITIAL.
         PRIPAR-PTYPE = 'TEXT'.
    *    pripar-ptype = 'OTF'.
      ENDIF.
    * Archiving mode
      PRIPAR-ARMOD = '1'.    "Print only
    * Output footer
      PRIPAR-FOOTL = SPACE.
    * Check sum for print and archiving parameters
    PERFORM COMPUTE_CHECKSUM USING PRIPAR CHANGING PRIPAR-PRCHK.
    ENDFORM.                    " GET_PRINT_PARAM
    *&      Form  COMPUTE_CHECKSUM
    FORM COMPUTE_CHECKSUM USING    P_BUFFER TYPE ANY
                          CHANGING P_CHECKSUM TYPE I.
      FIELD-SYMBOLS <L_FS>.
      DATA L_LENGTH TYPE I.
      P_CHECKSUM = 0.
      DESCRIBE FIELD P_BUFFER LENGTH L_LENGTH.
      SUBTRACT 4 FROM L_LENGTH.
      ASSIGN P_BUFFER(1) TO <L_FS> TYPE 'X'.
      DO L_LENGTH TIMES.
        ADD <L_FS> TO P_CHECKSUM.
        ASSIGN <L_FS>+1 TO <L_FS>.
      ENDDO.
    ENDFORM.                    " COMPUTE_CHECKSUM
    Regards
    Sailaja.

  • PDFs and InDesign spooling but not printing

    The printer is an Epson SP1400 connected via USB to a G3 iMac running 10.2.9 (ya, I know).
    It is shared by 4 other Macs in the office of various configs, 3 running Tiger and one running Leopard. All have the same problem.
    When using Adobe CS3 apps, files from Photoshop CS3 or Illustrator CS3 will print over the network to this shared printer. However, PDFs won't print from Acrobat Reader 7 or 8 or Acrobat CS3, nor will InDesign CS3 files print.
    The same PDF files opened in Preview do print to this shared printer.
    All other programs (Word, Excel, mail, browsers, Preview, TextEdit) all print to this shared printer.
    Some of these PDF files are older archive files and are known to have printed when the operating system was Panther.
    The permissions have been repaired on all machines and are repaired on a regular schedule along with the other routine maintenance. The printer queues have been reset and reloaded. The latest Epson driver was downloaded and is in use on all 5 machines. Epson blames Adobe, Adobe blames Epson, they both blame Apple. But no answers.
    I will try reloading my CS2 apps to see if Acrobat and InD work there.
    Meanwhile, any clues?

    I have the exact same problem, except with a different printer... a Brother HL-4040cn. I am running CS3, connecting USB and also running 10.4.11. Any InDesign or PDF files briefly spool and then get dumped into the 'completed' files bin w/o printing. Any other app works fine.

  • File spooling but not printing - InD CS3

    I am at a loss as to why InD CS3 (and Acrobat and Reader) will not print to a shared printer. Illustrator CS3 and Photoshop CS3 will print to this shared printer. Why not InD CS3? This has been ongoing since CS3 came out.
    The file spools, all images and fonts are downloaded but the file never appears in the print queue. Not on the originating machine or the sharing machine. It just vanishes.
    CS3 Pro versions Loaded on Mac G5 dual 2gig (non-intel) running Tiger. Three other machines have the same issue. All various machine configs (G4 single/Tiger, G5 dual 1.8/Tiger, and an Intel iMac/Leopard).
    - Printer is shared through a networked G3 running Jaguar (yeah, yeah, working on it).
    - The printer is an Epson SP1400
    - All drivers updated on all machines.
    - All CS3 patches done.
    - Permissions done.
    - OnyX system maintenance done.
    - Preferences trashed. Machines restarted (printer and macs).
    - The InD CS3 file can be printed from CS3 to a networked Panasonic postscript printer. So it's not the file.
    - The InD file can be saved down using Interchange to CS2 and that will print to the shared printer.
    - The InD CS3 file will print to this printer if the printer is connected directly to the machine it is printing from.
    Apple and Epson have pointed out that because other CS3 apps do print to the printer, there is something going on with InD, Acrobat and Reader and the sharing function. Is it the G3 and Jag? Or something to do with CUPS or .local or a sharing protocol? Please help me out with this.

    Anything interesting in the logs on the printing machine or the sharing machine?
    In the Print button in the Adobe Print dialog, click the popup to Error Handling and tell it to cough up an error page if it fails to print. Maybe the printer will give you feedback about why it's failing then.
    If that does nothing, then what if you print the file to postscript and drop the PS file onto the printer icon in the Dock? That would at least guarantee you were getting a file and let you experiment with why it isn't making it all the way through the process.
    A final thought is to raster it completely [make a Transparency Flattener set to 100% raster @ whatever DPI] and see if just a bitmap will print correctly. That tells you if it's something weird with the postscript at least.
    It's all guesses, really. But at least it might give you something new to play with... Best of luck!

  • Samba cups and windows 8: printer spools but will not print.

    Hello,
    I have samba and cups setup. I have been trying to connect to my windows printer. Here is my setup
    Arch linux linux-3.12.1-3
    samba-4.1.2-1
    cups-1.7.0-2
    Windows 8.1
    no firewalls
    Samba config
    [global]
    security = user
    #passdb backend = tdbsam
    #username map = /etc/samba/smbusers
    workgroup = Bobshouse
    encrypt passwords = yes
    wins support = yes
    log level = 1
    max log size = 1000
    read only = no
    #disable netbios = yes
    printing = cups
    printcap = cups
    [homes]
    browsable = no
    map archive = yes
    [Shared]
    browsable = yes
    read only = yes
    path = /home/bob/Share
    for cups some things I have tried are
    lpd://hostname/printer
    smb://username:password@hostname/printer_name
    I can see the printer with smbclient
    So the printer spools, but will not print. the paper does not move I just hear the printer. Also when I watch the print queues in windows and linux. Cups shows that it sent the document, but when I watch the windows queue it shows the document, but the size of the document stays at 32 kb out of 1.8 mb and says printing. I hope this makes sense. I am just trying to keep things very simple at this point. I just want to understand what the problem is and build on it.

    Please provide the following relevant information so someone can help including:
    Printer Model - done
    Complete and Detailed Problem Description -
    Operating System of computer (including service pack revision) - done
    Connection Method - USB, Hardwired LAN, Wireless? -
    Make and model of router and modem? -
    Error messages - on printer screen and/or computer, any blinking light patterns?
    If wireless, when the problem occurs, what is status of Blue Wireless light on printer, on, off or blinking? –
    Power off printer and router. Power on router and wait 3 mins, power on printer. Does it connect to the router now? Do you have a valid IP address?

  • HP Print Doctor shows printer but cannot print.

    After uninstalling some software that was causing my Windows 8.1 PC to freeze, I am no longer able to send a document to my HP 6230 printer. 
    - I have uninstalled and reinstalled the printer software several times.
    - The printer will successfully print an "internal" test page using HP diagnostic software.
    - Trying to print from any Windows program will bring up the printer icon in the task bar. The document name shows, the status says spooling then printing but nothing prints.
    - Windows printer troubleshooter discovers no problems.
    - HP troubleshooter discovers no problems.
    - I can successfully print using another PC on the home network.
    - Since this is a networked printer, I can actually see and select the printer driver from a networked PC from the PC in question, and this will print normally. In other words, when I bring down the printer list in Word for example, I see:
     1) HP Officejet Pro 6230 (networked)
     2) HP Officejet Pro 6230 on Old PC
    If I select printer number 2, I can print but selecting printer number 1 does not cause a document to print.
    - Services.msc reports that the Print Spooler is running and the Startup is Automatic. I have stopped/started it several time.- I have tried using printer with USB cable to PC but still won't print. - Windows event log shows Event ID 372 with each print attempt, details below.Log Name: Microsoft-Windows-PrintService/Admin
    Source: Microsoft-Windows-PrintService
    Date: 7/14/2015 11:08:46 AM
    Event ID: 372
    Task Category: Printing a document
    Level: Error
    Keywords: Classic Spooler Event,Document Print Job
    User: STEPHEN-PC\Stephen
    Computer: Stephen-PC
    Description:
    The document Print Document, owned by Stephen, failed to print on printer HP Officejet Pro 6230 (Network). Try to print the document again, or restart the print spooler.
    Data type: RAW. Size of the spool file in bytes: 96475. Number of bytes printed: 65536. Total number of pages in the document: 1. Number of pages printed: 0. Client computer: \\STEPHEN-PC. Win32 error code returned by the print processor: 2147500037. Unspecified errorI can't determine where the problems lies. Not sure what else to do other than maybe a Windows reinstall at this point to correct whatever part of the printer subsystem has gotten corrupted. Any ideas are appreciated. Thanks!

     Welcome to the HP Community Forum. Perhaps during the removal of the offending software -- or as a result of the system not "settling in" after said removal, the File System is not "seeing" the prerequsite files needed to run the full driver set needed to run the print program. Some ideas==========================================================Windows Updates Windows 8.1 is very sensitive to Windows Updates.  If you have not done so for a while -- and particularly because you have recently removed some files / software, you might make sure Updates are current to within about the past week ==========================================================If you are running your Windows 8.1 on a Notebook:Hard Reset / Forced reset Close running programs, browsers, and gamesNextCreate a Restore Point:   Create a Restore Point – Win7  OR  Create a restore point Win8 Close all your programs and shut down the computerDisconnect everything (little Unifier for the keyboard / external mouse can stay)Perform the Forced Reset for your notebook modelBoot the computer and log in==========================================================Fast Boot / Fast Startp Windows 8.1 is set up as a Fast Boot system -- as such, the programs needed to quickly get the system up and running are not always read from the disk during boot.  Nice system and it saves time -- but it can bite your backside if anything is missing or needs to be started "from scratch" so-to-speak due to changes in the Operating System. Fast Startup - Turn On or Off in Windows 8 You might try switching "off" the Fast Startup and see if a "regular" boot clears the issue. ==========================================================Full Feature Software It might be that a combination of "clearing" the system -- switching off then back on Fast Boot and / or the Hard Reset -- and then removing and then installing the Printer's Full Feature Software would be helpful. You might consider the "Restart Everything" sequence shown in the document. Install Full Feature Software – Printer    When you see a Post that helps you,Inspires you, provides fresh insight,Or teaches you something new,Click the "Thumbs Up" on that Post. Click my Answer Accept as Solution to help others find Answers.

  • Difference between Print Immediately and Send to Spool for later print

    I'm having an issue in my R3 4.7 with printing.
    I have recently migrated to unicode, but I decided not to stick this into the Unicode section for now.
    The value of parameter rspo/host_spool/print is:
    /usr/local/bin/multiprint &P &F &C "&R" "&T" &c "&o" "&t" 2>&&1;
    This is the problem.
    If I have a print list and I decide to print it, I can send it the spooler for immediate print.
    That works fine, it comes off the printer.
    I see this in the dev trace file:
    COMMAND to execute is /usr/local/bin/multiprint cups_hwps01
    /usr/sap/<SID>/DVEBMGS00/data/000bC8f3.<SID>"MYUSERNAME" "" 1 "MYUSERNAME" ""
    Using Hostspool command: '/usr/local/bin/multiprint cups_hwps01
    /usr/sap/<SID>/DVEBMGS00/data/000bC8f3.<SID>1 "MYUSERNAME" "" 1 "MYUSERNAME"
    This is correct.
    Now, if I have a print list and select 'Send to SAP Spooler only for now' I can see it in SP01.
    However, if I try and print it from SP01 I see an error.
    There is an error in the STDERR2 file as follows:
    sh: -c: line 0: unexpected EOF while looking for matching `"'
    sh: -c: line 1: syntax error: unexpected end of file
    I see this in the dev trace file:
    COMMAND to execute is /usr/local/bin/multiprint cups_whps06
    /usr/sap/DTD/DVEBMGS00/data/000aocyn.DTD 1 "PH4417" "" 1 "PH4417" "
    Note the last ". It seems SAP is truncating the command it calls.
    I've logged it with SAP but wondered if anyone else had encountered it?

    Seems it was a Kernel bug.  Fixed.

  • Spool Adobe Form: Print partial document

    Hello,
    I want print only a part of a ADS spool. In non-ads spool you can print from one page to another page, but with adobe forms, this selection field doesn't apper. Our spool has many pages (~1000) and many documents (~500) in only one spool
    How can we print only a part of an ADS spool? (For example if you have a problem and only print form the document in the middle of de ADS to the last document).
    Regards,
    Jaime

    With the partslist active, you can select whichever pages you want to print in SP01.
    To display the part list first, you need to execute report RSPO0021 in transaction SE38 with the following settings:
    Name of the spool option: SHOW_PART_LIST
    Select the Activate Entry option.
    Printing Interactive Forms -
    SAP Printing Guide (BC-CCM-PRN) - SAP Library at: http://help.sap.com/saphelp_nw74/helpdata/en/4e/8e7f4d6f41336de10000000a42189b/frameset.htm

  • HPLJ3055 won't print through HPxb3000, but will print if directly connected to dv9000.

    HPLJ3055 won't print through HPxb3000, but will print if directly connected to dv9000.

    Hey there @pepsitruck
    I understand you cannot print from your desktop however, you can print from your laptop.
    Could you please run the Print and Scan Doctor again and let me know the results or post a screen image of the results?
    This diagnostic tool will check for any conflicts that could be causing the issue. The tool will show you a report at the end. If there was a problem that the tool could not fix, you will notice it in the results.
    You can also try manually stopping and restarting the print spooler and try printing from Notepad afterwards.
    1. Click Start
    2. Type "Services" in the search field.
    3. Open SERVICES
    4. At the bottom, click "Extended View"
    5. Search for Print Spooler
    6. Right-click it and choose Properties
    7. Select as Automatic in the drop down box, close the Window
    8. Right click on Print Spooler and choose "Stop", wait until it stops and then right click again and "Start".
    9. Close out of Services and try your print again.
    When you get to your response, please include which version of Windows you're running please.
    Which Windows Operating System am I running?
    Thank you,
    R a i n b o w 7000I work on behalf of HP
    Click the “Kudos Thumbs Up" at the bottom of this post to say
    “Thanks” for helping!
    Click “Accept as Solution” if you feel my post solved your issue, it will help others find the solution!

  • My ipad2 recognizes my hp c410a printer (which supports air print) but nothing prints. Printer is set up on a wireless network. Printer sees, nothing prints.

    My ipad2 recognizes my hp c410a printer (which supports air print) but nothing prints. Printer is set up on a wireless network. Printer sees, nothing prints. Any thoughts?

    The router is a Linksys WRTU54G-TM. The Ipad recognizes the printer and spools the print job but there is no action at the printer. E-Print works.

  • PDFs won't print all pages; spool disappears in printer

    I've got the latest and greatest of acrobat pro on mac os x 10.5.7.  I'm printing a 2 MB PDF, that's 28 pages.  For the life of me... I can't get it (or any document) to print more than 4 pages.  I've tried printing from multiple computers, rebooting machines, the job will disappear out of the print monitor spool.  The Printer I have is Konica Minolta 5550 connected via ethernet... I wasn't sure if this was related to Acrobat or the Printer, so I decided to print a 10 page indesign document... printed flawlessly...

    Met with IT. tried to install a native driver (as opposed to a generic postscript).  Same problem.  There's a solution that sits outside of Acrobat... Mac OS X "Prevew", prints the doc flawlessly.  I'm not sure what else to do. I've even tried some advanced settings to print as image, where it takes a long time to flatten each page, then print.. no pages will print. I'm inclined to say it's a memory issue between the Mac and this printer, but perplexed because there is no issue with "Preview"...

  • Unable to send spool request to printer through BSP

    Hi Experts,
    We have an application build on BSP and provided a button called print in the application. When I press print, in our client requirement, an adobe with details should create a spool as well it should print the document automatically.
    Currently we some how managed to create a spool after pressing print but spool request is not going print automatically, its showing status as waiting with following error message
    "Frontend unavailable"
    Please help me out
    Thanks in advance
    Regards,
    Sridhar

    Hi,
    this will not work!
    If you print local, the GUI starts a local printing program. The browser is not able to start local programs, because of the restictions of Browsers.
    To use Networkprinter should work.
    Best regards
    Renald

  • Color LaserJet Pro MFP M176n installed but not printing

    Hello Everyone,
    I have problem with my printer Color LaserJet Pro MFP M176n.
    at thebegining i try to install it buteverytime i run the installer it give me HP Installer error, so i installed the Microsoft Net Framework 3.5 and run the install and it was working perfict, i install the driver on USB cable and after it show me successfull and print test page and finish, so i click print test page and in printer and fax the printer M176n Show 1 printing job and then 0 but no print came out i try again same, i remove the cable and plug it again the printer is responding perfictly but still not printing i check the scanner and its working fine but only the printing is not, so i try to install it through network and it was sccessfully installed with IP but when i print, still the same 1 printing Job but nothing came out of the printer when it came 0 printing job.
    Please help......
    - Windows is windows XP 32bit
    - Printer name   Color LaserJet Pro MFP M176n PCLms
    Thanks
    I did try to use Scan Doctor, the printer didnt print at the first check but when it ask forenternal print test page it printed then it ask me toif it print of not and i click yes it print in enternal print so it ask me to remove and reinstall so i did 2 to 3 times and still same will  not print but when run Scan doctor it will print on enternal print .....
    Wael Hilal

    Hello @ Averus89, 
    Welcome to the HP forum.&nbsp;
    I understand you have done quite a lot to resolve your M176n and its connection to the ePrint service.&nbsp;
    I would like to help you with this issue.&nbsp;
    If the printer is not printing the web services info sheet, or allowing you to add it to HP Connected, I
    would set a manual DNS.&nbsp;
    I wont go into great detail about setting this up. From your post, I feel you know your way around the printer and your network. If I am mistaken, let me know. I will go into detail.&nbsp;
    The DNS to try is:
    Primary: 209.244.0.3
    Secondary: 209.244.0.4
    Set the DNS then try printing the web services info page again. 
    Let me know if this helps. 
    Aardvark1
    I work on behalf of HP
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" on the right to say “Thanks” for helping!

  • In Pages (5.2), in a table, superscript is not only not printing, but not printing the text around it. Bizarre

    In Pages (5.2), in a table, superscript is not only not printing, but not printing the text around it. Any answers?

    Known issue now for almost 9 months.
    Use Pages '09 if you have it.
    Peter

  • Can't install the software for the Brother MFC-9440CN because it is not currently available from the Software Update server....how do I get the driver then..it ised to work in my old mac..but cant print to it in my new unit

    Can't install the software for the Brother MFC-9440CN because it is not currently available from the Software Update server....how do I get the driver then..it ised to work in my old mac..but cant print to it in my new unit

    Download the Brother Mountain Lion drivers here.

Maybe you are looking for

  • How to manage my daughter's new phone account

    We just got my 11 year old daughter her first phone (a Samsung S3 Mini). The salesman told us we would be able to use the "Family Base" to control/ turn-on-off her phone, text, web access and email and we would have full control there. Our main goal

  • Updating to 2.0

    I sync my music and videos and photos to my account at home and I sync my contacts, calender, and e-mail at work. Well I am at work and want to update to 2.0 but it says that I should do this where I sync my media because I will loose all of my photo

  • MATSHITA DVD-R UJ-835E 2X--REQUEST FIX HERE!! 2

    The entire point of this argument is that the 8x Superdrives are not burning at 8x, or even anywhere near 8x. Even if it was only rated as an "up to 8x" drive, averaging a 4x burn on one kind of media and 2x burns on the rest is completely unacceptab

  • Thare are always some strange website or advertisement website come out. Why?

    When I surf the internet, every time when I click some thing, some strange website or  advertisement website will come out, which I never opened.  How to deal with this problem???

  • CreateRootApplicationModule pooling jbo:ApplicationModule

    I am using this method of Configuration class to get an instance of an AM : m_appModule = Configuration.createRootApplicationModule( m_sAppModuleName,m_sAppModuleConfigName); the call of this method takes time to execute ! (about 2 minutes !) it cont