About spool

hi,
        can you explain about sap-printer? what are things an abaper should know about the printer ? what is spool request?
in sap script after writing the code what are things an abaper should do?
pls explain

Hi
There are some Standard Sap Scripts in SAP. We cant directly execute them in scripts we have to use some T-codes and by giving some input to the required fields we can see the output printform.
I will show one example. There are some Standard Sap Scripts such as MEDRUCK which is a standard Sap Script for Purchase Order and RVINVOICE01 for billing and so on...
To see oupt of MEDRUCK go to T-code ME9F give purchase order number and execute select one number and click on dislplay messages button on application tool bar you can find the print form of MEDRUCK.
You cannot change the Standard Sap Scripts but you can use Standard Sap Scripts and Copy them to userdefined Script and can make changes to them and replace standard Sap Script with usedefind script.
Ex: Go to SE71,
on menu bar u find Utilities->copy from Client. click on it u ll find new screen showing
Form name:
Source Clinet:
Target Form:
give Form name as usedefined form name EX: ZFORM1
Source client as 000 and
Target form as MEDRUCK.
execute.
Now, the standard from MEDRUCK is copyied to your form ZFORM1.
NOW, go to SE71 and give form name as ZFORM1 and do some changes to the form such as adding logo any thing. save and Activate.
Now, you have done changes to the Form ZFORM1 and u have to replace your form with standard SAP Script.
Go to NACE Transaction.
on Applications select EF for purchase order and click Output types button on application tool bar.
now select NEU as output types dobule click on Processing Routines.
now click on Change option on application tool bar and on right side u find MEDRUCK in form place replace MEDRUCK with ZFORM1 and SAVE.
go back twice and now go to T-code ME9F give the purchase order number and execute and select one option and click on display messges button .
you will find the changes that you have done in ZFORM1. so we cant chage the standard Sap Scripts by copying the Standard Sap Scripts we can chage and replace with our forms.
Structure of a print program
OPEN_FORM function
CLOSE_FORM function
WRITE_FORM
START_FORM function
END_FORM function
CONTROL_FORM function
The print program is used to print forms. The program retieves the necesary data from datbase tables, defines the order of in which text elements are printed, chooses a form for printing and selects an output device and print options.
Function modules in a printprogram:
• When you print a form you must used the staments OPEN_FORM and CLOSE_FORM. To combine forms into a single spool request use START_FORM and END_FORM.
• To print textelements in a form use WRITE_FORM. The order in which the textelements are printed, is determined by the order of the WRITE_FORM statements. Note: for printing lines in the body, you can also use the WRITE_FORM_LINES function module.
• To transfer control command to a form use CONTROL_FORM.
Structure of a print program
Read data
Tables: xxx.
SELECT *
FROM xxx.
Open form printing - Must be called before working with any of the other form function modules.
Must be ended with function module CLOSE FORM
call function 'OPEN_FORM'.....
To begin several indentical forms containing different data within a single spool request, begin each form using START_FORM, and end it using END_FORM
call funtion 'START_FORM'.....
Write text elements to a window of the form
call function 'WRITE_FORM'.....
Ends spool request started with START_FORM
call funtion 'END_FORM'.....
Closes form printing
call function 'CLOSE_FORM'...
OPEN_FORM function
Syntax:
CALL FUNCTION 'OPEN_FORM'
EXPORTING
APPLICATION = 'TX'
ARCHIVE_INDEX =
ARCHIVE_PARAMS =
DEVICE = 'PRINTER'
DIALOG = 'X'
FORM = ' '
LANGUAGE = SY-LANGU
OPTIONS =
MAIL_SENDER =
MAIL_RECIPIENT =
MAIL_APPL_OBJECT =
RAW_DATA_INTERFACE = '*'
IMPORTING
LANGUAGE =
NEW_ARCHIVE_PARAMS =
RESULT =
EXCEPTIONS
CANCELED = 1
DEVICE = 2
FORM = 3
OPTIONS = 4
UNCLOSED = 5
MAIL_OPTIONS = 6
ARCHIVE_ERROR = 7
INVALID_FAX_NUMBER = 8
MORE_PARAMS_NEEDED_IN_BATCH = 9
SPOOL_ERROR = 10
OTHERS = 11
IF sy-subrc <> 0.
MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
ENDIF.
Some important parameters:
FORM Name of the form
DEVICE • PRINTER : Print output using spool
• TELEFAX: Fax output
• SCREEN: Output to screen
OPTIONS Used to control attrubutes for printing or faxing (Number of copies, immediate output....
The input for the parameter is structure ITCPO.
CLOSE_FORM function
CALL FUNCTION 'CLOSE_FORM'
IMPORTING
RESULT =
RDI_RESULT =
TABLES
OTFDATA =
EXCEPTIONS
UNOPENED = 1
BAD_PAGEFORMAT_FOR_PRINT = 2
SEND_ERROR = 3
SPOOL_ERROR = 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.
Paramerters:
RESULT Returns status information and print/fax parameters after the form has been printed. RESULT is of structure ITCPP.
WRITE_FORM function
CALL FUNCTION 'WRITE_FORM'
EXPORTING
ELEMENT = ' '
FUNCTION = 'SET'
TYPE = 'BODY'
WINDOW = 'MAIN'
IMPORTING
PENDING_LINES =
EXCEPTIONS
ELEMENT = 1
FUNCTION = 2
TYPE = 3
UNOPENED = 4
UNSTARTED = 5
WINDOW = 6
BAD_PAGEFORMAT_FOR_PRINT = 7
SPOOL_ERROR = 8
OTHERS = 9
IF sy-subrc <> 0.
MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
ENDIF.
Some important parameters:
ELEMENT Specifies which textelement is printed
WINDOW Specifies which window is printed
TYPE Specifies the output area of the main window. This can be:
• TOP - Used for headers
• BODY
• BOTTOM - Used for footers
FUNCTION Specifies whether text is to be appended, replaced or added
Example of how to use the WRITE_FORM function module together with a script.
Form layout of the MAIN window
/E INTRODUCTION
Dear Customer
/E ITEM_HEADER
IH Carrier, Departure
/E ITEM_LINE
IL &SBOOK-CARRID&, &SPFLI-DEPTIME&
/E CLOSING_REMARK
The print program
Writing INTRODUCTION
CALL FUNCTION 'WRITE_FORM'
EXPORTING
ELEMENT = 'INTRODUCTION'
FUNCTION = 'SET'
TYPE = 'BODY'
WINDOW = 'MAIN'
EXCEPTIONS
OTHERS = 8
Writing ITEM_HEADER
CALL FUNCTION 'WRITE_FORM'
EXPORTING
ELEMENT = 'ITEM_HEADER'
FUNCTION = 'SET'
TYPE = 'BODY'
WINDOW = 'MAIN'
EXCEPTIONS
OTHERS = 8
Set ITEM_HEADER into TOP area of main window for subsequent pages
CALL FUNCTION 'WRITE_FORM'
EXPORTING
ELEMENT = 'ITEM_HEADER'
FUNCTION = 'SET'
TYPE = 'TOP'
WINDOW = 'MAIN'
EXCEPTIONS
OTHERS = 8
Write ITEM_LINE
LOOP AT .....
CALL FUNCTION 'WRITE_FORM'
EXPORTING
ELEMENT = 'ITEM_LINE'
FUNCTION = 'SET'
TYPE = 'BODY'
WINDOW = 'MAIN'
EXCEPTIONS
OTHERS = 8.
ENDLOOP.
Delete ITEM_HEADER from TOP area of main window
CALL FUNCTION 'WRITE_FORM'
EXPORTING
ELEMENT = 'ITEM_HEADER'
FUNCTION = 'DELETE'
TYPE = 'TOP'
WINDOW = 'MAIN'
EXCEPTIONS
OTHERS = 8
Print CLOSING_REMARK
CALL FUNCTION 'WRITE_FORM'
EXPORTING
ELEMENT = 'CLOSING_REMARK'
FUNCTION = 'SET'
TYPE = 'BODY'
WINDOW = 'MAIN'
EXCEPTIONS
OTHERS = 8
START_FORM function
CALL FUNCTION 'START_FORM'
EXPORTING
ARCHIVE_INDEX =
FORM = ' '
LANGUAGE = ' '
STARTPAGE = ' '
PROGRAM = ' '
MAIL_APPL_OBJECT =
IMPORTING
LANGUAGE =
EXCEPTIONS
FORM = 1
FORMAT = 2
UNENDED = 3
UNOPENED = 4
UNUSED = 5
SPOOL_ERROR = 6
OTHERS = 7
IF sy-subrc <> 0.
MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
ENDIF.
END_FORM function
CALL FUNCTION 'END_FORM'
IMPORTING
RESULT =
EXCEPTIONS
UNOPENED = 1
BAD_PAGEFORMAT_FOR_PRINT = 2
SPOOL_ERROR = 3
OTHERS = 4
IF sy-subrc <> 0.
MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
ENDIF.
CONTROL_FORM function
The CONTROL_FORM function module alows you to create SapScript control statements from within an APAB program.
Syntax:
CALL FUNCTION 'CONTROL_FORM'
EXPORTING
command =
EXCEPTIONS
UNOPENED = 1
UNSTARTED = 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.
ENDIF.
Example:
Protecting the text element ITEM_LINE
CALL FUNCTION 'CONTROL_FORM'
EXPORTING
COMMAND = 'PROTECT'.
CALL FUNCTION 'WRITE_FORM'
EXPORTING
TEXELEMENT = 'ITEM_LINE'.
CALL FUNCTION 'CONTROL_FORM'
EXPORTING
COMMAND = 'ENDPROTECT'.
NACE is the Tcode used to link the Application type, Output Types and its processing Routines like ( Driver programs and attached Script forms or Smartforms).
You should know the Application of a document first Like:
for PO it is EF, for sales Doc's it is V1, for Delivery docs it is V2, for billing Doc's it is V3 etc.
so first select the Application type (ex: EF) for PO and press OUtput types
then a list will come in that you should know the related output type for PO.
in this case it is NEU,
select that and click on the processing Routines button on the left side
it will display the Medium, Driver Program and the Script form or smartform related to that document..
after designing the script and assigning it in NACE
you define the output type in application doc alongwith the partner,medium,language and assign the printer etc
and save
and execute the output from the Transaction code of that application
<b>Reward points for useful Answers</b>
Regards
Anji

Similar Messages

  • Question about Spool

    Hello
    I have a question about spool and how to use it, because what I understood from Spool it generates a file in the current folder.
    For example I wish to generate a file like that
    spool ./cheminlinux/nom.txt
    select * from mytable where mytable.fields="clause";
    spool off.
    If I write like that It run very well
    spool ./nom.txt
    select * from mytable where mytable.fields="clause";
    spool off.
    It deposites nom.txt in the current folder, where my sql file is, I wish to generate in another folder, in fact another road. I don't know wether with Oracle Spool is possible.
    Thanks for any help.

    My script is :
    spool ./cheminlinux/myfile.txt
    select * from mytable where mytable.champs1="clause";
    spool off.
    cheminlinux is /exec/application/MyProfile/MyApplication/tmp/
    As I said Iam inside Linux environnement as Server Linux Redhat, where I install my database server, but the spool does not generate the file.txt. I do not know if it is because Spool does not run, or I have not enough rights to allow the sqlplus' execution.
    I will check towards this last direction, maybe the problem comes from here.

  • Question about spool numbers

    Hello all,
    I'm trying to understand something about spool numbers.
    On CCMS > Spool System > System Wide > Spool > SpoolNumbers > UsedNumbers, I can see 33%.
    I guess this means that my spool is full at 33%.
    When I check through SP01, I can see that I have around 20 000 spools.
    My SPO_NUM is set à 32000, so my spool is full at more than 50%.
    Could you please tell me where I'm wrong ? 33%, 50% ?
    Thank you,
    Regards,

    HI,
    In addition, please look at the link below, which says about % usage of spool.
    Spool percentage with sp01
    Regards,
    Sujit.

  • What about spool workprocess?

    hi gurus,
    any one plz explain what is spool workprocess and how it would works on.and also what are the support Tcodes.plz help me.
    regards.
    balaram

    Spool Work Process
    The spool work process passes sequential datasets to a printer or to optical archiving. Each application server may contain several spool work process.
    The services offered by an application server are determined by the types of its work processes. One application server may, of course, have more than one function. For example, it may be both a dialog server and the enqueue server, if it has several dialog work processes and an enqueue work process.
    You can use the system administration functions to switch a work process between dialog and background modes while the system is still running. This allows you, for example, to switch an R/3 System between day and night operation, where you have more dialog than background work processes during the day, and the other way around during the night.
    For further info chk the following link:
    http://help.sap.com/saphelp_nw04/helpdata/en/d9/4a991a51ea11d189570000e829fbbd/frameset.htm
    Regards
    AK

  • Spool file problem,Can't see the query in output file.

    Hello ,
    I am facing a very old school kind of problem .....about spool file ....
    The scenario -
    I have made a script by name DB_Status_checkup.sql which i want to fire on the database to check the database status. In this script their are many queries regarding the data dictionary views to know about the database. It consist of nearly 25-30 different select queries..
    The problem is i want to make a spool file of the output of that query....i want to see the SQL query & the output below in the spool file, so it will be easy for me to judge the result. But i can't see the SQL query , i can only see the output , & in so many queries it all gets jumbled up....even i can't understand where the next output starts ...
    Sample of my SQL Script ....
    clear buffer
    spool D:\DB_status.txt
    /*To check the database startup time*/
    Select to_char(startup_time, 'HH24:MI DD-MON-YY') "Startup time"
    from v$instance
    .........next query n so on....
    spool off;
    In the output pf the spool file at D:\db_status.txt..
    Startup time
    08:25 16-JUL-10It shows only the output of the query in the spool file not the query,
    What should i do to get the SQL query as well as the output of that query just below it in the spool file ???
    Please suggest if you have anymore ideas , regarding this .....
    ORACLE 10g R2
    Windows Server 2008
    Thanks in advance ...

    Why don't you just use database control, instead of re-inventing the wheel?
    Apart from that, SQL*Plus has it's own reference manual, which you apparently refuse to read.
    The answer to your quiz/doc question is
    set echo on
    Sybrand Bakker
    Senior Oracle DBA

  • Convert Screen(spool) to PDF file sending mail with attach file

    Hi :
    I'd like convert spool list to pdf and sending file...
    so, I read thread about spool convert to PDF before,
    and know how to convert Spool to PDF file and send mail with attach file.
    but I have a problem.
    my solution as:
    step 1. Call function: "CONVERT_ABAPSPOOLJOB_2_PDF"
    step 2. Call function: "SO_NEW_DOCUMENT_ATT_SEND_API1"
    then, I got a mail with attached PDF file, but the PDF file display limited 255 line.( SO_NEW_DOCUMENT_ATT_SEND_API1 limited)
    I want to showing word is wider that 255.
    and then I find a manual method as:
    After program finished.
    Function Menu -> system -> List -> Send
    use Prog: "Create Document and Send"
    I use this prog sending mail and attached file ,
    PDF file do <b>NOT</b> have 255 word limit !
    finally. my question is, If I want sending mail as Prog: "Create Document and Send", how to do?
    which Function I have to use?...
    Please help me, Thanks!

    Hi,
    Check this sample code of sending spool as attachment to an email address..
    Parameters.
    PARAMETERS: p_email(50) LOWER CASE.
    PARAMETERS: p_spool LIKE tsp01-rqident.
    Data declarations.
    DATA: plist         LIKE sopcklsti1 OCCURS 2 WITH HEADER LINE.
    DATA: document_data LIKE sodocchgi1.
    DATA: so_ali        LIKE soli OCCURS 100 WITH HEADER LINE.
    DATA: real_type     LIKE soodk-objtp.
    DATA: sp_lang       LIKE tst01-dlang.
    DATA: line_size     TYPE i VALUE 255.
    DATA: v_name        LIKE soextreci1-receiver.
    DATA rec_tab        LIKE somlreci1 OCCURS 1 WITH HEADER LINE.
    Get the spool data.
    CALL FUNCTION 'RSPO_RETURN_SPOOLJOB'
         EXPORTING
              rqident              = p_spool
              first_line           = 1
              last_line            = 0
              desired_type         = '   '
         IMPORTING
              real_type            = real_type
              sp_lang              = sp_lang
         TABLES
              buffer               = so_ali
         EXCEPTIONS
              no_such_job          = 1
              job_contains_no_data = 2
              selection_empty      = 3
              no_permission        = 4
              can_not_access       = 5
              read_error           = 6
              type_no_match        = 7
              OTHERS               = 8.
    IF sy-subrc <> 0.
      MESSAGE s208(00) WITH 'Error'.
      LEAVE LIST-PROCESSING.
    ENDIF.
    Prepare the data.
    plist-transf_bin = 'X'.
    plist-head_start = 0.
    plist-head_num = 0.
    plist-body_start = 0.
    plist-body_num = 0.
    plist-doc_type = 'RAW'.
    plist-obj_descr = 'Test ALV'.
    APPEND plist.
    plist-transf_bin = 'X'.
    plist-head_start = 0.
    plist-head_num = 0.
    plist-body_start = 1.
    DESCRIBE TABLE so_ali LINES plist-body_num.
    plist-doc_type = real_type.
    Get the size.
    READ TABLE so_ali INDEX plist-body_num.
    plist-doc_size = ( plist-body_num - 1 ) * line_size
                     + STRLEN( so_ali ).
    APPEND plist.
    Move the receiver address.
    MOVE: p_email  TO rec_tab-receiver,
          'U'      TO rec_tab-rec_type.
    APPEND rec_tab.
    IF NOT sp_lang IS INITIAL.
      document_data-obj_langu = sp_lang.
    ELSE.
      document_data-obj_langu = sy-langu.
    ENDIF.
    v_name = sy-uname.
    Send the email.
    CALL FUNCTION 'SO_DOCUMENT_SEND_API1'
         EXPORTING
              document_data              = document_data
              sender_address             = v_name
              sender_address_type        = 'B'
         TABLES
              packing_list               = plist
              contents_bin               = so_ali
              receivers                  = rec_tab
         EXCEPTIONS
              too_many_receivers         = 1
              document_not_sent          = 2
              document_type_not_exist    = 3
              operation_no_authorization = 4
              parameter_error            = 5
              x_error                    = 6
              enqueue_error              = 7
              OTHERS                     = 8.
    IF sy-subrc <> 0.
      MESSAGE e208(00) WITH 'Error'.
    ENDIF.
    COMMIT WORK.
    Send the email immediately.
    SUBMIT rsconn01
    WITH mode = 'INT'
    AND RETURN.
    Thanks,
    Naren

  • Some columns missing from spool

    Hi All,
    we have one Z- program, that wil create spool out put,
    but 2  cloumns are missing from spool out put,
    how can we increase the size of the spool ouput?
    Regards,
    Suresh.D

    Hi All,
    I think suresh is asking about spool Request not general output.
    Suresh You need to talk to your basis consultant to increase the size(I forgot the technical name of this size, sorry).
    But Natuarally they never accept your request.
    Thanks,
    Krishna.

  • Use of Spool request

    Dear All,
    Sorry for posting some basic questions. But I am not clear in basics of this topic.
    Please explain me some basics about Spool request.
    1. When the spool will be generated, how to identify in the delivery that, some spool got generated for those output types in the Deliver?
    2. Is the spool generation printer oriented? For example, if I have only Dot matrix printer, is it possible to generate Spool?
    3. In the Delivery, if I have 5 Similar output types (LD00), does it generate 5 different Spool or 1 Spool?
    4. In the Delivery, if I have 5 Different output types (LD00, LD01, LD02, LD03, LD04), does it generate 5 different Spool or 1 Spool?
    3. After the Spool generated, in SP02, how to identify the particular spool which is generated for a particular output? For example, I need to identify the output LD00 for a particular Delivery, is that possible?
    4. How to identify the Spool retention period?
    Regards,
    Mullairaja

    1. When the spool will be generated, how to identify in the delivery that, some spool got generated for those output types in the Deliver?
    Via the status of the output type.
    2. Is the spool generation printer oriented? For example, if I have only Dot matrix printer, is it possible to generate Spool?
    It is triggered via the output type.
    3. In the Delivery, if I have 5 Similar output types (LD00), does it generate 5 different Spool or 1 Spool?
    5, per each output type, doesn't matter whether it is the same output type.
    4. In the Delivery, if I have 5 Different output types (LD00, LD01, LD02, LD03, LD04), does it generate 5 different Spool or 1 Spool?
    5 different spools
    3. After the Spool generated, in SP02, how to identify the particular spool which is generated for a particular output? For example, I need to identify the output LD00 for a particular Delivery, is that possible?
    You cannot identify the deilvery however, by maintainting the output as the 'spool request name' or 'suffix1' or suffix 2' in the output condition record you may identify the output type in SP02.
    4. How to identify the Spool retention period?
    It is set at OS level. cant tell from spools.

  • Were do I get the relation spool device batch job/programs

    Hi there,
    I need to know what batch jobs and what SAP programs/reports ... are related to specific spool devices.
    Our business need: we need to replace some old spool devices which are used for some batch jobs, SAP programs... so we need a list of them.
    Can anybody tell me what tables, reports, tcodes... are helpfull for this?
    Thanks in advance!

    Hi Alwina,
    thanks you for your reply - this helps me for spool request which are created by batch Jobs (only running in Background?!).
    What about spool request which are created by a user in dialog or when the output device is coded in source code of a ABAP program (I don't know if this is possible, i am not an ABAP developer)?
    Does the report BTCAUX05 (note 1145265) helps me here, too?
    Thanks

  • Airport Express: Internet Access Works But Not "Seen" in Admin. Util. ??

    Hi All --
    I have a friend with the set-up described below and a seemingly impossible problem. he's asked for my help, and so I'm asking for yours, because frankly the situation just has me stumped. Here goes:
    Set-Up & Other Relevant Facts
    • DSL connection comes out of the phone jack and goes to a Westell model 6100 modem.
    • From there, a short Ethernet cable goes to a Linksys 5-Port Workgroup Switch.
    • Two Ethernet cables exit the Linksys Switch: one goes to a PC, and one goes to an Airport Express (AX).
    • From the AX, a USB cable goes to a printer (a Brother 1440 laser printer).
    • The AX is only about 10 feet from his PowerBook G4 15-inch and he gets a full (four-bar) signal on Airport menulet at the top of the screen.
    • When he first set-up his system, the G4 and the Airport did set up the Brother printer (using the Airport Setup Assistant), and the Brother is listed as a printer on the G4's printer window or such.
    • Both the G4 and the PC access the web fine via this setup (the G4 wirelessly). In System Preferences > Network, the Airport Network is listed, and it says "Airport is connected to the network Apple Network 6c6c1. You are connected to the Internet via Airport."
    Problems
    • When the Airport Admin Utility is opened, no Airport Express appears at all, even when "rescan" is repeatedly clicked.
    How can this be? How can the PowerBook be connecting wirelessly to the Web through the Airport Express, but the Airport Express no be "seen" by the Airport Admin utility?
    • In addition, although web surfing is possible for both PowerBook and PC, neither computer is able to successfully print to the Brother 1440. When he tried printing from the PC, he got the following error messages:
    [Status for LPT1]
    Result=(02)The printer on this port is not responding.
    Status Line=BUSY:H,ACK:H,PE:H,SLCT:H,FALT:H,SLIN:L,HBSY:H,INIT:H,STB:H
    Later, it seemed that printing from either computer would start and then stall, flashing a variety of different signals about spooling or "printer busy" and the like, all of which appeared to indicate things just weren't working right..
    Anyway, the initial questions we're dealing with are the ones in bold above. The printer issues are probably are related and they can be addressed secondarily.
    Any and all help with this will be greatly appreciated. Thanks everyone.
    -- JDee

    Thanks for your reply- just to re focus my problem- I
    have no issue with getting a wireless network "green
    light"
    Which is the cable modem correctly giving the Express an IP from your ISP's DHCP pool of numbers.
    - my issue is I can't stream itunes or get a
    usb printer to work off the xpress USB port.
    I have checked everything as my posts explain- The
    reason I have been looking at this thread is I have
    never been able to see the airport in a "scan" per
    JDee post.
    That is odd and doesn't happen on my wireless network!
    Nor have I read in any post that an extra
    ip address is necessary
    All routers have at least two IP's - an external and an internal. When the router acts as an internal DHCP server it hands out many more IP's. Your Express gets one external IP and the default internal one is set to 10.0.1.1 and the first IP handed out is 10.0.1.2, etc.
    However I have seen different subnets- from dncp
    server.
    Are you talking about the external IP's that your ISP is randomly assigning without your control? Are you talking about the different ways you can configure the internal DHCP numbers? If not there's something else going on. Everything on Douglas internal network should have an IP from the Express DHCP server vs. JDee's internal IP's should all be assigned by the modem/router DHCP server. Once you have everything on the same network numbers AirTunes, printers, and Airport Admin Utility lists just work!
    Hey look I really appreciate your help here in
    anyway- I'm really stumped. I want to stream music
    really bad... and just don't see why it won't work-
    its drving me crazy...
    I enjoy a good challenge, especially when they are solvable. After trying all the possible software and connection possibilities there's always the chance it's been a hardware failure all along
    What IP number does your computer have and what number does the Express have? If it's a router it has two IP's!

  • OS Cover sheet   in output control

    Hi all:
    Here in spool request, there is output control info about spool request <NN> in <xx> system (which is being generated by SAP Script).
    There is OS Cover sheet in Output Attributes tab.  I  would like to change the value by ABAP report / program ,  is there any FM for it or another programing way to send the request for not printing . Plz remember, we are using the SAP Script.
    thanks in advance
    Regards
    Shashi

    That is a problem. It is same as yours in my system. Better Search for OSS notes. They might have solution for this
    Before that, make sure you have specified a right printer (working)

  • PB Surfs Web Wirelessly, But Admin Util Can't "see" Airport Express - Huh?

    Hi All --
    I have a friend (no really a friend, not me, I swear ;-)) with the set-up described below and a seemingly impossible problem. He's asked for my help, and so I'm asking for yours, because frankly the situation just has me stumped. Here goes:
    Set-Up & Other Relevant Facts
    • DSL connection comes out of the phone jack and goes to a Westell model 6100 modem.
    • From there, a short Ethernet cable goes to a Linksys 5-Port Workgroup Switch.
    • Two Ethernet cables exit the Linksys Switch: one goes to a PC, and one goes to an Airport Express (AX).
    • From the AX, a USB cable goes to a printer (a Brother 1440 laser printer).
    • The AX is only about 10 feet from his PowerBook G4 15-inch and he gets a full (four-bar) signal on Airport menulet at the top of the screen.
    • When he first set-up his system, the G4 and the Airport did set up the Brother printer (using the Airport Setup Assistant), and the Brother is listed as a printer on the G4's printer window or such.
    • Both the G4 and the PC access the web fine via this setup (the G4 wirelessly). In System Preferences > Network, the Airport Network is listed, and it says "Airport is connected to the network Apple Network 6c6c1. You are connected to the Internet via Airport."
    Problems
    • When the Airport Admin Utility is opened, no Airport Express appears at all, even when "rescan" is repeatedly clicked.
    How can this be? How can the PowerBook be connecting wirelessly to the Web through the Airport Express, but the Airport Express no be "seen" by the Airport Admin utility?
    • In addition, although web surfing is possible for both PowerBook and PC, neither computer is able to successfully print to the Brother 1440. When he tried printing from the PC, he got the following error messages:
    [Status for LPT1]
    Result=(02)The printer on this port is not responding.
    Status Line=BUSY:H,ACK:H,PE:H,SLCT:H,FALT:H,SLIN:L,HBSY:H,INIT:H,STB:H
    Later, it seemed that printing from either computer would start and then stall, flashing a variety of different signals about spooling or "printer busy" and the like, all of which appeared to indicate things just weren't working right..
    Anyway, the initial questions we're dealing with are the ones in bold above. The printer issues are probably are related and they can be addressed secondarily.
    Any and all help with this will be greatly appreciated. Thanks everyone.
    -- JDee
    Please excuse this duplicate post, but I posted this this morning in the AIrport Express forum at about 8 a.m. and have thus far received no replies at all. In fact, it's only been viewed a total of nine times -- and half of those are me. Very sad, and my friend is growing fairly desperate and is now convinced that only a complete reset and fresh start will fix his problem......

    Hi JDee,
    Well, it's the old 'friend of mine' gag, eh. Seriously though, it seems there have been numerous post over in the Aiport forums regarding this issue. I guess the first thing your friend can try is following these instructions to reset the AE. One of the other things discussed was the firmware version for AE. Some users have reported that version 6.1.1 works better than 6.2. One user reported being able to use the other button in AE admin utility, then entering the assigned IP address and password to gain access. One user resolved his issue by enabling the setting Distrubute IP addresses in the AE. It should be noted he also reset up his network at that point as well. Now as far as the printer goes, below are some instructions from iFelix for the Windows side which may be of some help.
    Printing from Windows to AE
    Problem finding Printer Driver on Windows
    For the Mac side apparently there are issues with that model printer. Here's a link of compatible printers that iFelix put together. You'll see the notation next to the Brother 1440. Hope that helps a little. Sorry I couldn't be of more assistance.
    Jrsy

  • Problem in viewing CSV file

    I am generating CSV file from PL/SQL code. I am using UTIL_FILE for writing file.
    One of the column in csv file is too big. The value is displayed in scientic notation.
    Is there any way that i can modify my code to display data in Number format(Instead of scientific format)
    Any help is appreciated.
    Thanks in Advance
    Gopinath

    The problem is that the user wants to view the file
    in Excel and they dont want to do any format changes
    in excel sheet. They want everything to be done at
    code level.Or, how about spooling formatted numbers in the csv itself, if your end users are okay with it ? For example:
    1234567890123,1234567890123,1234567890123,1234567890123
    "1234567890123","1234567890123","1234567890123","1234567890123"
    "1,234,567,890,123","1,234,567,890,123","1,234,567,890,123","1,234,567,890,123"The first two lines show up in scientific notation, but the third line shows up as is.
    pratz
    Message was edited by:
    pratz

  • Redirect *.TMP files into another directory

    Hello,
    We have Forms 6i and also Forms 10g applications, and alll these run on a IBM AIX server.
    We noticed that our applications generated sometimes a lot of big or less big *.TMP files in the /tmp directory of our server.
    These files are usually automatically deleted when the application closes as normal. But, when a crash occurs, then *.TMP files remains for ever...
    We would like to monitor these problems, and see whether it's possible to redirect the *TMP files on the server into another directory on the same server.
    I suppose that there is some setup to make.. but I have no idea what to do.
    Thanks,
    Olivier

    Hello,
    Here is the content of a Metalink note:
    Subject:      Files Types .t and .temp and .tmp, are Saving Under /var/tmp
         Doc ID:      Note:145487.1      Type:      PROBLEM
         Last Revision Date:      28-JUL-2003      Status:      PUBLISHED
    * fact: HP 9000 Series HP-UX
    * fact: Oracle Application Object Library
    * symptom: /var/tmp directory is runnig out space
    * symptom: The user Applmgr is creating the file OFFAAAa(5 digit number).t under /var/tmp:
    * symptom: The user Oracle also is creating the file o(seven digit number). tmp under /var/tmp
    * symptom: The user Oracle also is creating the file l(seven digit number). temp under /var/tmp
    * symptom: Using the "browse" window in forms
    * symptom: Running forms creates a temp file /var/tmp that keeps getting filled up
    * change: NOTE ROLE --------- .t files - ASCII files - temporary files generated by reports Open up the .t files the first 5 characters indicate what report in Applications created the .t file. .tmp and .temp files - binary files - temporary files generated by forms Forms uses the operating system function call tmpnam() to generate file names that can be used safely for temporary files. tmpnam() depends on the setting of P_tmpdir defined in /usr/include/stdio.h (HP may have a different directory). The P_TMPDIR can only be changed from the OS side. After changing the P_TMPDIR all forms in applications must be recompiled. P_TMPDIR is equivalent to TMPDIR on some UNIX boxes. If the TMPDIR (or P_TMPDIR) is not set up then all the temporary files are created under /var/tmp directory.
    * cause: There is a lack of disc space for temporary files.
    fix:
    1. Redirect /var/tmp under a different/new disk which has more space
    OR
    Make a soft link from /var/tmp to a directory with sufficient space on the same
    disk.
    2. Set up a CRON job to clean up the files under /var/tmp frequently.
    UNIX system administrator and/or the operating sytem vendor, HP, has
    knowledge/information about this clean up script.
    3. Change P_TMPDIR or TMPDIR on the operating system if P_TMPDIR or TMPDIR is
    not set up correctly.
    4. Recompile all forms in apps with adadmin utility afterwards.
    5. Set up P_TMPDIR or TMPDIR (depending on the UNIX brand) if it is not yet set
    up.
    WORKAROUND:
    1. Ask the UNIX administrator and HP about spool file directory and user quota
    on the operating system HP.
    2. Change/Increase the value of &QUOT;
    3. Change the spool file directory to something other than /var/tmp.
    Francois

  • A question about the SPOOL command in sqlplus

    Dear all,
    I have a question about the SPOOL Command and I would appreciate if you could kindly give me a hand. Consider the following sql script.
    SPOOL result.txt
    SELECT * FROM mytable;
    SPOOL OFF;This works pretty well, and the whole content of the table "mytable" is exported to the text file "result.txt". However, sqlplus prints also the number of lines
    printed after each query. As a result, after running this script, at the end of the file, I have always a line like
    "20541 lines returned"How can I avoid this line (the number of returned lines) in my result file?
    Thanks in advance,
    Dariyoosh

    Peter Gjelstrup wrote:
    Hi Dariyoosh,
    As you are about to find out, SQL*Plus is a really powerful tool once the wonders of it are discovered.
    You really should study the reference
    http://download.oracle.com/docs/cd/E11882_01/server.112/e10823/toc.htm
    In your current case especially the SET command
    http://download.oracle.com/docs/cd/E11882_01/server.112/e10823/ch_twelve040.htm#BACGAJIC
    Regards
    PeterHello there,
    Thank you very much for your attention to my problem and in particular the interesting links.
    Kind Regards,
    Dariyoosh

Maybe you are looking for

  • File Type Associations box is empty

    In Bridge CS4 -- Click on Edit/Preferences/File Type Associations and you should get a list of files. I don't. My file Type Associations box is empty. Starting Bridge by dumping the cache and preferences does not help, the box remains empty. Has anyo

  • Reach clipped area in low resolution monitor

    I've been trying a small 7" monitor (Lilliput 800x480 resolution) and found that certain windows (some in system precerences, which is crucial) get's clipped. I can't reach the lower part of the window. Since I can't move the window further up (it hi

  • CONTRACT RELEASE & IT'S CONDITIONS

    dear all kindly tell me by which t code contract is released & how conditions are maintained in a contract , pl reply it is urgent , thanks in advance. sap11

  • Laptop suddenly shuts down and won't open

    Hello guys!   So I was using my laptop in my bed and suddenly, it shuts down and I don't know why. I thought it was low batt so I tried putting the charger but it won't charge.Please help me..

  • 603 RM-779 - No way to switch FM RADIO modes throg...

    Hi!     I only saw the setting for the FM frequency during the initial setup - either a lower FM radio range (Japan) or a higher one (USA/etc).     I travel between both countries and find that there is no way to swtich the frequency range between bo