Status of FAX sending 672

Hi All,
I m using open_form and close_form to send FAX.
My problem is , after executing program i got 672 status in SOST. Ideally it should be 710. I tried "Commit Work" after close_form but not working. Even my basis team confirms that settings are correct. I m using MySAP 2004 system. I think i m missing to fill some fields of structure ITCPP. Any idea?
Pls help me.

Hi Ravi,
Thanks for response.
Actually FM CLOSE_FORM returns structure ITCPP and then i pass this structure to subroutine otf_open_spool(LSTXCOTF) to create spool.  Do i need to update ITCPP before passing it to LSTXCOTF
Basically i m upgrading my system from 4.5 to mysap ERP2004 . so to accomodate SAPCONNECT, i m creating spool. But then also my SOST status is 672 only. I want it to be 710.
Regards,
Dharmesh

Similar Messages

  • Hp officejet 8610 fax sends out more pages than scanned - received partial output on remote end

    Hp officejet 8610 fax sends out more pages than scanned - received partial output on remote end

    Hi,
    How long is a page on the sender side?  If it is a long page like a legal page, it may end up in in 2 pages in the receiver side. Also check on the receiver end, if it is set to 'auto reduction - off' this may happen, try turning it "on".
    Also if the sender page is not a long page, try observing the paper that is going into the ADF, it should be 1 page at a time, if pages goes into the ADF continueously, it suggest that ADF is could be faulty.
    Set automatic reduction for incoming faxes (for HP printers only)
    The Automatic Reduction setting determines what the printer does if it receives a fax that is too large
    for the default paper size. This setting is turned on by default, so the image of the incoming fax is
    reduced to fit on one page, if possible. If this feature is turned off, information that does not fit on the
    first page is printed on a second page. Automatic Reduction is useful when you receive a Legal-size
    fax and Letter-size paper is loaded in the main tray.
    To set automatic reduction from the printer control panel 
    1. From the printer control panel display, touch and slide your finger across the screen and then 
    touch Setup. 
    2. Touch Fax Setup. 
    3. Touch Advanced Fax Setup. 
    4. Touch Automatic Reduction to turn on or off.
    Please click the "Thumbs Up", to say thanks for helping!
    Also, please consider marking my post as “Accept as Solution" if you feel my post solved your issue.
    I work for HP

  • Fax sending error, line busy?

    Hy all!
    I have some problem with the fax sending from the PC. I setted up the fax recieving and it work perfectly without any problem, but when I try to send a fax to someone through the "Windows fax and scan"  it writes, the line is busy, trying
    again. But nothing happens.
    I tried many things, for ex.:
    type the region code differently at the recipient infos tab.
    update the fax modem driver.
    The strange is that the recieving is work perfectly, but the sending is not, and I cannot see any error or something in the event viewer and in the "windows scan and fax" program. Just that: "line busy, trying again"
    If anyone could help me I really appreciate. Many thanks in advance.
    PS.: Type of the Fax modem: http://www.startech.com/Networking-IO/IR-BT-TC/External-V92-56K-USB-Fax-Modem-Dial-up-Data-Modem~USB56KEM3

    Hi,
    from tools -fax settings, select the correct fax device. Make sure 'allow this device to send faxes is checked'.
    create a 'fax account' to be able to send faxes.
    When creating the fax, make sure the faxnumber is formatted correctly.
    Check if can get the faxmodem to dial as a modem (network and sharing center, connect to a network,...) if not, make sure the driver is up to date and is configured properly for your environment.
    http://windows.microsoft.com/en-us/windows/set-computer-send-receive-faxes#1TC=windows-7
    MCP/MCSA/MCTS/MCITP

  • FAX send format in SCOT

    Dear experts,
    we want to send faxes out from SAP to the so-called Rightfax Solution.
    The standard SAP fax send format in SCOT is (when using the SMTP node):
    FAX=<fax number>@<fax server domain>
    Example:
    FAX=123456@sap-dot-com
    Problem:
    The Rightfax Solution only accepts faxes from SAP if they have the send format:
    [FAX:<recipient name>@<fax number>]
    OR
    [RFAX:<recipient name>@<fax number>]
    OR
    fax=<fax number>/pn=<recipient name>@<fax server domain>
    --> Is it possible to configure SAP to use one of those output formats ?
    Thanks a lot & cheers,
    Marc

    Hello,
    thanks for your answer.
    I already checked the SAP Library but there they only speak about the default fax send format which is FAX=<fax number>@<fax server domain>
    My question is if we can modify this outgoing fax format?
    Happy about any input!
    Cheers,
    Marc
    One remark: The Fax output device creation in SPAD is not possible anymore as of release 6.10

  • FAX Sending program

    Hello,
    Can anybody tell me from where can i find some tech docs to develop a FAX sending program?
    Can anybody provide some samples on this?
    Thanks and Regards,
    Aboo

    Hi,
    check this link for all your querries
    Re: SAPScript to email and fax
    Please Check this one:
    SAP Script->PDF->Email
    have alook at this code also
    call function 'CONVERT_ABAPSPOOLJOB_2_PDF'
    exporting
    src_spoolid = mi_rqident
    no_dialog = c_no
    dst_device = c_device
    importing
    pdf_bytecount = gd_bytecount
    tables
    pdf = it_pdf_output
    exceptions
    err_no_abap_spooljob = 1
    err_no_spooljob = 2
    err_no_permission = 3
    err_conv_not_possible = 4
    err_bad_destdevice = 5
    user_cancelled = 6
    err_spoolerror = 7
    err_temseerror = 8
    err_btcjob_open_failed = 9
    err_btcjob_submit_failed = 10
    err_btcjob_close_failed = 11
    others = 12.
    check sy-subrc = 0.
    Transfer the 132-long strings to 255-long strings
    loop at it_pdf_output.
    translate it_pdf_output using ' ~'.
    concatenate gd_buffer it_pdf_output into gd_buffer.
    endloop.
    translate gd_buffer using '~ '.
    do.
    it_mess_att = gd_buffer.
    append it_mess_att.
    shift gd_buffer left by 255 places.
    if gd_buffer is initial.
    exit.
    endif.
    enddo.
    then call FM after populating attachment data
    call function 'SO_DOCUMENT_SEND_API1'
    exporting
    document_data = w_doc_data
    put_in_outbox = 'X'
    sender_address = ld_sender_address
    sender_address_type = ld_sender_address_type
    commit_work = 'X'
    importing
    sent_to_all = w_sent_all
    tables
    packing_list = t_packing_list
    contents_bin = t_attachment
    contents_txt = it_message
    receivers = t_receivers
    exceptions
    too_many_receivers = 1
    document_not_sent = 2
    document_type_not_exist = 3
    also u can chk sample programe.
    Refer to the code in the following link:
    http://www.sapdev.co.uk/reporting/rep_spooltopdf.htm
    do reward if helpful
    Cheers,
    Simha.

  • HP LaserJet Pro M127fn - fax sending problem - busy status all time

    everytime i try to print via word or other app and choose the fax printer from the program, it opens the wizzard to enter options and number but then it gets into a busy loop, spooling etc,  and I cannot send it.  
    why?  the machine was working fine when i firt bought it 2 weeks ago.
    from the machine itself it's working  but from the computer choosing the printer it does not.  the same with other PC from same workgroup.
    i tried uninstalling and deleting the printers as well but the problem keeps on.
    windows 7 on all machines connected via ethernet

    Thanks for providing the screen shot georgi0.
    Since you can't do the system restore, check and remove any recent Windows Updates, to see if that will fix this issue.
    Open Windows Update by clicking the Start button . In the search box, type Update, and then, in the list of results, click Windows Update.
    In the left pane, click View update history.
    Do you have full Admin Rights on the computer?
    With that error you are getting, I would restart the Print Spooler on the computer to see if it helps.
    Click Start (), type services.msc in the Start Search box, and then press Enter.
    Double click on Print Spooler in the list.
    Click on Stop and then Start.
    Close that window and restart the computer.
    Download and run the Print and Scan Doctor. It will diagnose the issue and might automatically resolve it.
    It might show a issue with the software installed.
    Find and fix common printer problems using HP diagnostic tools for Windows?
    Check the Devices and Printers folder to see if you have a icon for the fax and the printer icon.
    How does it list the printer name and fax? (LaserJet Pro M127fn/fax or Universal PCL 6)
    Follow the steps in this document to get to the device manager to check for the printer entries. See if you have any conflicts for the fax driver. Also check devices and printers, to see if there is a icon for the fax.
    How do I get into Windows Device Manager?
    Then go to View, Show Hidden Devices. Check through the list for the printer entries. You might have to click on all the + signs to check under the headings. Open Printers, it should list the printer name and fax there and possibly under Universal Serial Bus Controllers. Look for anything with a ! mark on it. Right click and update the device.
    If it isn't listed then go to Action across the top of the screen and Scan for hardware changes.
    What were the results when you ran the Print and Scan Doctor? (did it print or scan, any error messages)
    How was the printer entries listed?
    Please let me know the results.
    Thank You.
    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!
    Gemini02
    I work on behalf of HP

  • Fax sending problem... Help!

    Hello Expert,
    I need your help and expertise regarding my problem when sending FAX via SAPconnect.
    My program requirement is to send the document (smartforms) thru FAX.
    There's a customized report program that would trigger this.
    I used the FM 'SO_DOCUMENT_SEND_API1'.
    When I go to transaction SOST to see the status, the error message 821 "Cannot process message in node, parameters cannot be converted" is encountered.
    Please help me regarding this error message. Honestly I don't know what to with it.
    Hoping for your reply ASAP.
    Thanks,
    Carmey
    <LOCKED BY MODERATOR - URGENT, PLEASE HELP OR SIMILAR ARE FORBIDDEN>
    Edited by: Alvaro Tejada Galindo on Aug 15, 2008 4:38 PM

    Have you checked SAP note 178326 ?

  • SCOT FAX send message error

    Hi,  the send messages in scot for FAX is showing error but it has succussfully received at the destination.we are using topcall for fax service . we have verified as there is no line disconnection infax. what could be reason for this .

    Hi Krishbasis,
    Sorry for late reply.
    I would request you to do complete verification of SCOT configuration. Below are the steps:
    1. Please check what is the default domain you have mentioned. SCOT--> Settings->Default domain.
    Here you have to maintain the domain name properly. It should be like xyz.local.
    2. Please check SMTP configuration: Double clicking on SMTP node you should check Mail host is proper
    and also mail Port should be 25.
    3. Under "Supported address Types" option "Internet" should be checked. Go to respective Set button
    Here in Address area try giving * or specific to the address you will be sending mail.
    4. Check if you have scheduled the "Send Jobs". Its in "Settings -->Send Jobs". You can schedule the job for
    "All Address Type" and schedule the job with proper user. Check in SM37 if the job is scheduled.
    5. For testing you can use tcode: SBWP. From there you can send test mail to the desired address
    (check your organization policies before sending mail to external mail ID).
    While triggering "New Message" from SBWP, please select recipient type as "Internet Address".
    6. To check the status go to tcode: SOST and check if it is delivered. You can try reprocessing once more.
    But before all these things you have to ensure that your server IP is included in SMTP server. You can check with
    any OS administrator about this.
    Keep us posted.
    Regards,
    Sujit.

  • FAX Sending - Link between SOST items and PO Data

    Hi all,
    We have a message type to send FAX to the vendors.
    This is tracked in SOST.
    There are some FAXes which get failed and are to be tracked individually in SOST.
    We need to make a report which gets all the failed PO #s.
    We are not able to arrive at the db link between the items in SOST and the PO data.
    Can anyone of you let us know how this can be done ?
    Thanks in advance.
    Regards,
    Vivek K

    Thanks for the Replies Ramani and Monika...
    I alraedy have a relation between the Accounting Doc and Billing Doc (VBRP-vbeln to BSEG-belnr).
    what I am looking for is the Item wise one to one mapping.
    i.e  Assume that we have 4 items in VBRP under one Billing Doc....
    2 items have Similar Materials (Assume XYZ) and same Profit center (eq..MNO123)
    and the Other 2 items have material (ABC) and Profit center (PQR6789).
    Now these appear in Bseg as only 2 items, all the items with similar materials, profit center etc will be clubbed in Bseg (While Accounting). I.e In BSEG you will only find 2 entries for the above 4 items of VBRP.
    I need to divide the data that I am getting from BSEG exactly as they are in VBRP.
    Pls suggest if you know of any table where I can find this.....If not a table.., then a way to figure out the division of these BSEG items exactly as the VBRP items.
    Brgds
    Phani

  • HP Color LaserJet Pro MFP M177 Series Fax sends but won't receive faxes

    I can send faxes using HP Color LaserJet Pro MFP M177 Series Fax but I cannot receive them. I have faxed test pages and the setup is correct. Any suggestions?

    Hello DBrad8,
    Welcome to the HP Forums!
    I understand you're unable to receive a fax using the Laserjet MFP M177. I will do my best to assist you! First, I need to find out what type of added features do you have on your fax line? Please post these information on this thread.
    Do you have an answer machine on this line? If so, how many rings to answer is this set to?
    Do you have an Internet Service on this line?
    Please follow this entire HP document on Cannot Send or Receive Faxes. Run a fax test page and let me know if everything passed or if anything failed. I will be looking forward to hearing from you. Have a great day!
    I worked on behalf of HP.

  • Hp officejet j4580 Fax sending issue

    I can send faxes to 800- numbers but when I use an area code, I hear a ring and then my landline phone clicks on, evidently to intercept the fax and the fax machine rings for a while and then quits.

    Hi there @PGROWTH ,
    Welcome to the forums
    I read about the faxing issues you're having with your Officejet J4580 when sending a fax to a number either than a 1-800 number.
    I would suggest trying these steps in this guide: Can Receive Faxes But Cannot Send Them
    Also try a power reset:
    Press the Power button to turn on the product.
    With the product turned on, disconnect the power cord from the rear of the product.
    Unplug the power cord from the wall outlet.
    Wait at least 15 seconds.
    Plug the power cord back into the wall outlet.
    Reconnect the power cord to the rear of the product.
    If the product does not turn on by itself, press the Power button to turn it on.
    If the troubleshooting does not help resolve your fax issue, I would then suggest calling HP's Technical Support to see about further options for you, such as a replacement or trade in. If you are calling within North America, the number is 1-800-474-6836 and if you are calling outside of the US/Canada region,: click here.
    Best wishes
    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!

  • Hp officejet 8600 fax send failed

    This is a new HP 8600 that I bought a while ago and set up. it has never faxed and now I'm a little up set. I have FIOS and I have a DSL filter on the phone end. It dials and the other phone with go to tone but my machine won't handshake and connect. It has passed all the test. I have tried both from the printer itself and the computer and the same result. Had to go pay to fax some important documents but that's why I bought this printer. I've had on in the past with no problems. Any suggestions. BTW, I'm computer savye 

    Hello there! Welcome to the forums @that4u2c ,
    I read your post about your Fax functions not working properly from your Officejet 8600 model. My suggestion would be to try out the troubleshooting steps for this type of issue from the guide below.
    Cannot Send or Receive Faxes
    If the troubleshooting does not help resolve your issue, I would then suggest calling HP's Technical Support to see about further options for you, such as a replacement or trade in. If you are calling within North America, the number is 1-800-474-6836 and if you are calling outside of the US/Canada region,: click here.
    Best wishes,
    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!

  • Outbound IDoc Error: Status Code 37  'Sender Port' is invalid

    Hi
    I have an Error when the Outbound IDoc is triggered.
    It shows that 'Sender Port in Control Record is invalid'.
    Status Code: 37.
    I know that there are some issues with the Sender Port Definition.
    Please help me out to solve this problem using some checkpoints at each and every step.
    Reward Points Assured.
    Regards,
    Baburaj

    Hi Baburaj Manickam
    Good
    Follow this simple procedure
    1) Send an outbound IDOC data(MATMAS) to a flat file on client1(SENDER).
    -  Create File Port (WE21) for outbound file.
    -  Maintain Distribution Model (BD64) for sender ->receiver system.
    -  Create Partner Profile (WE20) for logical system.
    -  You can use this program RBDSEMAT (t/code BD10) to generate IDoc MATMAS file(s). 
    _  Then you can FTP the file(s) to receiver system.
    2) Upload the flat file as an IDOC on the inbound sytem
    which is Client2(RECIEVER).
    -  Create File Port (WE21) for inbound file.
    -  Maintain Distribution Model (BD64) for receiver -> sender system.
    -  Create Partner Profile (WE20) for logical system.
    -  You can use this program RSEINB00 to upload IDoc MATMAS file(s). 
    INBOUND IDOC PROCESSING:
    Firstly attach your idoc to a process code.
    In the process cod you can tell the system that the specified program should be triggered whenever an idoc of that type comes to the system.
    Then you want to have a Z-function module for your idoc processing, if I understand correctly.The steps should be:
    1. Create a z function module for idoc inbound posting (copy from a function module idoc_input_*).
    2. Set Function Modules as Inbound: - Transaction BD51
    3. Assign Function Modules to Logical Messages and Idoc types:- Transaction WE57
    4. Create process codes : Transaction WE42, and link the z-function module.
    5. Create partner profile: transaction WE20 and attach the message type and process code.
    6. In the Z- function module, extract data from the idoc segments, do whatever processing you want to do, and then call BAPI_CREATE_SALES_ORDER_FROMDAT2.
    Try the Trasaction WE19 for testing your inbound and outbound IDOCs
    Good Luck and Reward me for the same
    Thanks
    Ashok.N

  • Iphone as a fax sender

    Why can I not find an app that uses the Iphone as a true fax machine rather that a sensor that sends the fax througha serverr for free or, more commonly, a fee? My fax machine attached to my now disconnected land line had a scanner to get an image of the document a processor to prepare the fax and a phone line to directly send the data to someones fax machine. The Iphone has a camera to get the image, it has a proceeor and it has a phone line, Whay do I need a third party sserver to send a fax?

    No, but as with any other internet connection there are internet based faxing alternatives.

  • Fax Send&Receive Problem

    Hi,
    We have 2801 CME router. Also I connected a fax to this CME. But it gives communication error when sending fax and sometimes receiving. I tried with ATA and FXS ports but still the same problem. When I connect an analog phone to this line I can make calls and receive calls. Also when I connect directly analog line to fax (no cme) it works no problem. What can be the problem ? (Also I tried with two faxes) Can there be a software bug?
    Thanks
    (C2801-SPSERVICESK9-M), Version 12.4(20)T1, RELEASE SOFTWARE (fc3)

    Hi,
    FAXes can be particularly picky when it comes to line quality. Especially G3 faxes are a nightmare in an IPT environment.
    I've been able to get some faxes working by disabling ECM (error correction mode) on it. As far as I know, this is only for sending. So this means that someone trying to send a fax to one of your fax machines would have to disable ECM on theirs.
    See also http://www.voipmechanic.com/faxsettings.htm for some background.
    Hope this helps!
    Best regards,
    Donald.

Maybe you are looking for

  • Does my Mac Mail account have to be configured as an IMAP account

    Need to know if I have to configure my iMac Mail accont for IMAP? Using AT&T Yahoo as my service provider. Thanks...KCB

  • DEQUEUE_E_TABLE  is not working

    Hi All, We have a locked a Ztable by using the FM  "ENQUEUE_E_TABLE"  and the in SM12 we can see that the table is locked. We are unlocking the ztable by uing the FM  "DEQUEUE_E_TABLE" but  when we check in SM12 the loked  entery is not unlocked  .ca

  • My itunes acces is block

    Hi! Please cheek my itunes acces ,i forgot the security answer! Please send me the correct answer! i woluld like to up date ,and buy the mountain lion softwer!i was buy the apple tv,and need the new softwer connect the apple tv to my smart tv.Thx bes

  • Multiple UUT Testing Over Temp - Which Thread or Process Should Control the Chamber?

    I am using TestStand 3.5 to write an automated system that can test up to 4 UUTs inside a temperature chamber.  If any of the UUT's fail, the user will have the option to abort the UUT test and either leave the test socket empty or add a new UUT in i

  • 5 second delay  when using server name instead of ip in JNLP codebase??

    Hello, can anyone think of why, in my jnlp file when I have codebase="http://www.mysite/..." my rmi app has an additional delay of 5 seconds when making RMI calls? If I replace www.mysite with 64.29.187.xxx (i.e the ip used to access the server form