Example config fax used 1750

hi  to  everyone config how to fax in 1750 with the use voip only, and its topology only connect cisco 1750 point to point and a fax machine and how to do so in 1750 if it can send fax and receive faxes

Hey Bas,
In regards to you inquiries:
I understand that the 1500 series, when used with the WLC, uses the 5Ghz radio for mesh-backhaul, and the 2.4GHz radio for clients. Correct. Though certain model 1500-series can actually do backhaul via 2.4Ghz as well as the 4.9Ghz public safety band.
Is it possible for someone to share the working config from a RAP and MAP instance running in this config? I'm not sure what your asking here.  The RAP/MAP is still considered a lightweight AP and will pull the majority of its configuration from the controller.
I'm curious how different WLANs are trunked/tunneled together over the Mesh? This really depends on what type of MESH deployment you are deploying/configuring.  A deployment with ethernet bridging and handling of multiple VLANs will be configured differently then a simple MESH deployment where you are simply extending wireless services.
But what about within the WAPs and RAPs out in the mesh?  How do the ethernet frames for each WLAN get delivered to bridge groups the RAP APs? I believe this is still considered to be over CAPWAP between your RAP and MAP, which is AES encrypted. 
The latest design & deployment guide for MESH is a pretty good read:
http://www.cisco.com/en/US/docs/wireless/technology/mesh/7.4/design/guide/mesh74_chapter_010.html#ID2393
Cheers,
Erwin
How helpful was I? Don't forget to rate me when you have the chance!

Similar Messages

  • Can you fax using your ipad

    Can you fax using your iPad? If so how?

    Yes.
    Google:  fax ipad
    For example:
    http://www.maxemail.com/max/iphone.html
    https://itunes.apple.com/us/app/ifax-send-receive-faxes/id331514859?mt=8
    While the app may be free there could be a charge on sending the fax.
    Robert

  • Error while sending FAX using FM

    Hi All,
    I am trying to send fax using FM “SO_NEW_DOCUMENT_SEND_API1”. Fax number of format AANNNNNNNN(A-area code and N-Fax number) and passing country LAND field in receiver table ‘AU”. When program ran I can see the entry in SCOT under fax for waiting status, but when I send returns with error saying Country code not specified or incorrect fax number. Am I doing any thing wrong here? Thanks in advance and any suggestion much appreciated.
    Regards,
    Tim

    Hi Manohar/Prashant,
    Thanks for your update. Well here is the code which i use in my interface. I haven’t using FM 'TELECOMMUNICATION_NUMBER_CHECK'before let me check before i post. But in mean time if you guy's see any thing in my code NOTOKAY please let me know. Thanks again for your help and let you know if it works.
    Regards,
    Tim
    CODE BELOW
    Fill the receiver list
      clear gs_reclist.
      gs_reclist-receiver = p_fax_number. (format 0212345678)
      gs_reclist-rec_type = co_f.         (F)
      gs_reclist-country  = co_au.        (AU)
      append gs_reclist to gt_reclist.
    Send the document
      call function 'SO_NEW_DOCUMENT_SEND_API1'
        EXPORTING
          document_type              = 'RAW'
          document_data              = gv_doc_chng
          put_in_outbox              = co_x
          commit_work                = co_x
        TABLES
          object_content             = gt_objcont
          receivers                  = gt_reclist
        EXCEPTIONS
          too_many_receivers         = 1
          document_not_sent          = 2
          operation_no_authorization = 4
          others                     = 99.
      if sy-subrc eq 0.
        move: co_y to c_fax.
      else.
        move co_n    to c_fax.
      endif.

  • Sending a message to fax using JavaMail

    Hello all,
    we are trying to create a system to send messages. The input will come from an Oracle 9i (9.0.2) database, our goal is to create email messages which can either be delivered to an email address or to a fax number.
    The systems works if all addresses are regular email adresses, but we get the following message when using a fax number :javax.mail.internet.AddressException: Illegal route-addr in string ``fax:[email protected]''
    I have already change the parse-method to parseHeader with the parseOption false, so that the addresses are not controlled against the standard. I expect the ':' (colon) in fax:012345678 is the cause of our problem, replacing it with a random character returns a 'normal' error message for a non-existing address.
    I have included the log message with the exception, the sourcecode of our SendMailTest and the source of SendMail.
    Is there any work around to this colon, so we can send faxes as well as emails.
    Kind regards,
    Nemata
    log message----------------------------------------------------
    C:\ProgramFiles\jdevstudio1013\jdk\bin\javaw.exe -ojvm -classpath C:\ProgramFiles\jdevstudio1013\jdev\mywork\ocbs\Client\classes;C:\ProgramFiles\jdevstudio1013\j2ee\home\lib;C:\ProgramFiles\jdevstudio1013\j2ee\home\lib\mail.jar;C:\ProgramFiles\jdevstudio1013\j2ee\home\lib\activation.jar com.vdscomputing.carpinvest.ocbs.db.io.SendMailTest
    Constructor entered
    return from constructor
    com.vdscomputing.carpinvest.ocbs.db.io.SendMail@a Hello
    javax.mail.internet.AddressException: Illegal route-addr in string ``fax:[email protected]''
    message sent
    Process exited with exit code 0.
    source SendMailTest-------------------------------------
    package com.vdscomputing.carpinvest.ocbs.db.io;
    //class designed to test SendMail
    public class SendMailTest {
    public static void main( String args[]) {
    String SMTPserver = "192.168.1.23";
    String SMTPport = "25";
    String Sender = "[email protected]";
    String Recipient ="fax:[email protected]";
    String CcRecipient = "[email protected]";
    String BccRecipient = "";
    String Subject = "faxinationTest";
    String Body = "test mail 12 from test class";
    String[] ErrorMessage = new String[1];
    String Attachments ="";
    // create mesage and monitor constructor
    SendMail testMessage = new SendMail();
    System.out.println("return from constructor");
    System.out.println(testMessage + " Hello");
    testMessage.Send(SMTPserver, SMTPport, Sender, Recipient, CcRecipient,
    BccRecipient, Subject, Body, ErrorMessage, Attachments);
    System.out.println("message sent");
    Source SendMail---------------------------------------
    package com.vdscomputing.carpinvest.ocbs.db.io;
    import java.util.*;
    import java.io.*;
    import javax.mail.*;
    import javax.mail.internet.*;
    import javax.activation.*;
    public class SendMail {
    //default constructor with monitor message
    public SendMail(){
    System.out.println("Constructor entered");
    // preparing the message and sending it
    public static int Send(String SMTPServer,
    String SMTPPort,
    String Sender,
    String Recipient,
    String CcRecipient,
    String BccRecipient,
    String Subject,
    String Body,
    String ErrorMessage[],
    String Attachments) {
    // Error status;
    int ErrorStatus = 0;
         // create some properties and get the default Session;
         Properties props = System.getProperties();
         props.put("mail.smtp.host", SMTPServer);
         props.put("mail.smtp.port", SMTPPort);
    Session session = Session.getDefaultInstance(props, null);
    try {
         boolean ParseOption = false; //do not enforce RFC822
    // create a message;
    MimeMessage msg = new MimeMessage(session);
    // extracts the senders and adds them to the message;
    InternetAddress[] TheAddresses =
    InternetAddress.parseHeader(Sender, ParseOption);
    msg.addFrom(TheAddresses);
         // extract the recipients and assign them to the message;
    InternetAddress[] TheAddresses =
    InternetAddress.parseHeader(Recipient, ParseOption);
    msg.addRecipients(Message.RecipientType.TO,
    TheAddresses);
         // extract the Cc-recipients and assign them to the message;
    if (null != CcRecipient) {
    InternetAddress[] TheAddresses =
    InternetAddress.parseHeader(CcRecipient, ParseOption);
    msg.addRecipients(Message.RecipientType.CC,
    TheAddresses);
         // extract the Bcc-recipients and assign them to the message;
    if (null != BccRecipient) {
    InternetAddress[] TheAddresses =
    InternetAddress.parseHeader(BccRecipient, ParseOption);
    msg.addRecipients(Message.RecipientType.BCC,
    TheAddresses);
    // subject field;
    msg.setSubject(Subject);
    // create the Multipart to be added the parts to;
    Multipart mp = new MimeMultipart();
    // create and fill the first message part;
    MimeBodyPart mbp = new MimeBodyPart();
    mbp.setText(Body);
    // attach the part to the multipart;
    mp.addBodyPart(mbp);
    // attach the files to the message;
    if (null != Attachments) {
    int StartIndex = 0, PosIndex = 0;
    while (-1 != (PosIndex = Attachments.indexOf("///",
    StartIndex))) {
    // create and fill other message parts;
    MimeBodyPart mbp = new MimeBodyPart();
    FileDataSource fds =
    new FileDataSource(Attachments.substring(StartIndex,
    PosIndex));
    mbp.setDataHandler(new DataHandler(fds));
    mbp.setFileName(fds.getName());
    mp.addBodyPart(mbp);
    PosIndex += 3;
    StartIndex = PosIndex;
    // last, or only, attachment file;
    if (StartIndex < Attachments.length()) {
    MimeBodyPart mbp = new MimeBodyPart();
    FileDataSource fds =
    new FileDataSource(Attachments.substring(StartIndex));
    mbp.setDataHandler(new DataHandler(fds));
    mbp.setFileName(fds.getName());
    mp.addBodyPart(mbp);
    // add the Multipart to the message;
    msg.setContent(mp);
    // set the Date: header;
    msg.setSentDate(new Date());
    // send the message with monitor message
    Transport.send(msg);
    System.out.println("message on transport");
    } catch (MessagingException MsgException) {
    ErrorMessage[0] = MsgException.toString();
    System.out.println(ErrorMessage[0]); // catch to console
    Exception TheException = null;
    if ((TheException = MsgException.getNextException()) !=
    null)
    ErrorMessage[0] = ErrorMessage[0] + "\n" +
    TheException.toString();
    ErrorStatus = 1;
    return ErrorStatus;
    }

    Hi,
    I want to fax using java. presently I m using mail api to email & its working. Now I have to fax the attached pdf file with out using any third party or commercial software.
    Any idea or suggestion would be very help full
    regards
    Prakash Sen

  • Need example report program using PNPCE LDB in SAP HR

    Need example report program using PNPCE LDB in SAP HR.
    and how to create a report category in sap hr for using it as cutomised selection screen.

    Hi,
    Go through the following links, i hope it will help you.....
    /people/alvaro.tejadagalindo/blog/2006/02/19/how-to-deal-with-hr-payroll-reports
    http://sap.ittoolbox.com/groups/technical-functional/sap-r3-dev/893908#
    A sample prog with LDB PNP
    *& Report ZH_REPT_PAYMENT *
    report zh_rept_payment line-size 80 no standard page
    heading.
    tables: pernr, " Standard Selections for HR Master Data Reporting
    pcl1, " HR Cluster 1
    pcl2, " HR Cluster 2
    pa0009,
    PA9001,
    PA9006,
    pa0002,
    pc260 , " Cluster Directory for Payroll Results
    bnka .
    Infotypes
    infotypes: 0001. " Organizational Assignment
    Declaration of Internal Tables
    data : bnka1 like bnka occurs 0 with header line .
    data: begin of t_int_rep occurs 100,
    bankl like pc209-bankl, " Bank Number
    zlsch like pc209-zlsch, " Payment method
    pernr like pernr-pernr, " Employee Number
    ename like pernr-ename, " Employee Name
    bankn like pc209-bankn, " Bank Account Number
    betrg like pc209-betrg, " Amount to be transfered
    zweck like pa0009-zweck, " Purpose
    end of t_int_rep.
    data: begin of int_rep occurs 100,
    bankl like pc209-bankl, " Bank Number
    zlsch like pc209-zlsch, " Payment method
    pernr like pernr-pernr, " Employee Number
    ename like pernr-ename, " Employee Name
    bankn like pc209-bankn, " Bank Account Number
    betrg like pc209-betrg, " Amount to be transfered
    zweck like pa0009-zweck, " Purpose
    begda like pa0009-begda, "Begin date
    end of int_rep.
    Declaration of Data Variables
    data: ws_betrg like pc209-betrg, " BT Amount
    w_val like spell occurs 0 with header line,
    int_rep1(6), " TYPE I, " Employee Number
    cnt type i value 0, " Counter
    calcmolga like t500l-molga value '40', " Country Grouping
    v_id(15),
    calc_currency like t001-waers value 'INR'. " Currency
    data : ctr type i,
    dt_merge like pa0009-begda.
    data: ws_totemp(6) type c,
    ws_totamt(20) type c,
    r_mth(9) type c,
    ws_fpbeg(6) type c,
    ws_fpend(6) type c,
    ws_mthyr(6) type c,
    ws_mthyr_r(14) type c,
    r_mth_t(3) type c,
    ws_amt(8) type c,
    ws_bankl(14) type c,
    ws_date(6) type c,
    amount_word(500),
    total_page type i,
    pages type i,
    remain type i.
    data begin of i_spell.
    include structure spell .
    data end of i_spell .
    data : c_molga type t500l-molga value '40',
    c_banks type bnka-banks value 'IN'.
    Standard Includes
    include rpc2cd09. "Cluster CD data definition
    include pc2rxin0.
    include rpc2rx09.
    include rpppxd00. " Data Definition buffer PCL1/PCL2
    include rpppxd10. " Common Part buffer PCL1/PCL2
    include rpppxm00. " Buffer Handling RoutinePCL1/PCL2
    include zrpc2rox2. " Data Definition POCLSTERS (not J,K,U)
    Selection Screen
    selection-screen begin of block b1 with frame title text-001.
    parameter: pa_mth(2) type c default sy-datum+4(2) obligatory,
    pa_year(4) type c default sy-datum(4) obligatory,
    p_bankl like pc209-bankl, " Bank Number
    p_zlsch like pc209-zlsch. " Payment method
    selection-screen end of block b1.
    save_calc_currency = calc_currency.
    count_top = 0.
    get_pernr_flag = 0.
    Top-Of-Page
    top-of-page.
    perform convert_month using pa_mth(2) r_mth.
    ws_mthyr_r = r_mth.
    concatenate ws_mthyr_r pa_year into ws_mthyr_r separated by space.
    SKIP 5.
    skip 1.
    skip 4.
    if int_rep-bankl eq ' '.
    if int_rep-zlsch eq 'C' or int_rep-zlsch eq 'E' or
    int_rep-zlsch eq ' '.
    write: /1(85) 'CHEQUE PAYMENT STATEMENT'(047) centered.
    elseif int_rep-zlsch eq 'L'.
    write: /1(85) 'DEMAND DRAFT STATEMENT'(047) centered.
    endif.
    else.
    write: /1(85) 'BANK TRANSFER STATEMENT'(002) centered.
    endif.
    skip.
    write: /34 ws_mthyr_r,
    62 'Page :'(008),69(2) sy-pagno intensified off,
    ' Of ',78(2) pages intensified off.
    clear pages.
    read table bnka1 with key bankl = int_rep-bankl .
    if sy-subrc = 0.
    if int_rep-zlsch eq 'T'.
    write:/03(10) 'Bank Name : ', bnka1-banka.
    write:/03(10) 'Branch : ', bnka1-brnch.
    write:/03(10) 'Address : ', bnka1-stras.
    endif.
    endif.
    skip.
    write:/1(80) sy-uline.
    write: /1 sy-vline, 2(5) 'Sl.No'(002),
    7 sy-vline, 8(8) 'Emp.No.'(003),
    16 sy-vline,17(35) 'Employee Name'(004).
    *--added for Demand Draft
    if ( int_rep-zlsch = 'l' or int_rep-zlsch = 'L' ).
    write : 47 sy-vline, 48(15) 'Payable at'(005).
    else.
    write : 47 sy-vline,48(15) 'Account No.'(005).
    endif.
    write: 63 sy-vline,64(16) 'Amount'(006),
    80 sy-vline.
    write:/1(80) sy-uline.
    end-of-page.
    write:/1(80) sy-uline.
    write:/2 'Printed on ', sy-datum.
    Start-of-selection.
    start-of-selection.
    *perform h_headr.
    ctr = 0.
    set margin 5.
    call function 'RP_GET_CURRENCY'
    exporting
    molga = calcmolga
    importing
    waers = calc_currency
    exceptions
    others.
    if sy-subrc ne 0.
    calc_currency = 'DEM'.
    calc_currency = save_calc_currency.
    endif.
    get pernr.
    cd-key-pernr = pernr-pernr.
    perform import_cluster.
    get_pernr_flag = 1.
    check : ocd-version-molga eq calcmolga.
    The table 'tabpernr' is filled with the personnel numbers
    and is used after selection is finished.
    move-corresponding pernr to tabpernr.
    append tabpernr.
    The table 'tab_rgdir' is filled
    loop at rgdir.
    rx-key-pernr = pernr-pernr.
    unpack rgdir-seqnr to rx-key-seqno.
    perform int_tab. "fill tab_rgdir
    perform import_bt.
    perform validate.
    endloop.
    End of Selection
    end-of-selection.
    *perform h_headr.
    perform convert_date_a using pa_mth r_mth_t.
    sort int_rep by bankl zlsch pernr betrg descending.
    delete adjacent duplicates from int_rep
    comparing bankl zlsch pernr .
    sort int_rep by bankl zlsch bankn . "PERNR.
    loop at int_rep.
    at new bankl.
    select single * into bnka1 from bnka
    where banks = c_banks and
    bankl = int_rep-bankl .
    append bnka1.
    clear bnka1.
    endat.
    endloop.
    for Demand Draft - purpose added
    loop at int_rep.
    concatenate pa_year(4) pa_mth(2) '01' into dt_merge.
    select single * "zweck into int_rep-zweck
    from pa0009 where
    pernr = int_rep-pernr and
    bankl = int_rep-bankl and
    zlsch = int_rep-zlsch
    and begda <= dt_merge and
    endda >= dt_merge .
    if sy-subrc = 0.
    int_rep-zweck = pa0009-zweck.
    modify int_rep.
    endif.
    endloop.
    *-for DD and Chq sorted by PAyable at and EMPNO wise
    if p_zlsch = 'T' .
    sort int_rep by bankl zlsch bankn . "PERNR.
    else. "added for "payable at" for DD/Chq
    else.
    sort int_rep by zweck pernr . "PERNR.
    endif.
    *delete adjacent duplicates from int_rep.
    t_int_rep] = int_rep[.
    loop at int_rep.
    *-for page of page no.
    total_page = 0.
    loop at t_int_rep where bankl = int_rep-bankl
    and zlsch = int_rep-zlsch.
    total_page = total_page + 1.
    endloop.
    pages = total_page div 25.
    remain = total_page mod 25.
    comment bcoz its adding one extra page no.
    done as on 29/11/2004
    if remain > 0.
    pages = pages + 1.
    endif.
    **-end
    at new bankl.
    ctr = 0 .
    new-page.
    endat.
    at new zlsch.
    ctr = 0 .
    new-page.
    endat.
    clear v_id.
    select single natio
    into pa0002-natio
    from pa0002
    where pernr eq int_rep-pernr.
    *-testing......for soma
    if ctr > 24.
    ctr = 0 .
    write:/1(80) sy-uline.
    new-page .
    endif.
    ctr = ctr + 1 .
    cnt = cnt + 1.
    pack int_rep-pernr to int_rep1.
    write:/1 sy-vline, 2(3) cnt intensified off,
    7 sy-vline, 9(6) int_rep1 intensified off,
    16 sy-vline,17(35) int_rep-ename intensified off .
    if ( int_rep-zlsch = 'l' or int_rep-zlsch = 'L' ).
    write : 47 sy-vline,48(15) int_rep-zweck intensified off.
    else.
    write:
    47 sy-vline,48(15) int_rep-bankn intensified off .
    endif.
    write: 63 sy-vline,64(16) int_rep-betrg
    intensified off currency 'INR',
    80 sy-vline.
    ws_betrg = ws_betrg + int_rep-betrg.
    *-testing......for soma
    skip.
    write :
    /1 sy-vline, 7 sy-vline ,16 sy-vline ,47 sy-vline,63 sy-vline,80
    sy-vline .
    *-end testing......for soma
    at end of zlsch.
    if int_rep-bankl = ' '.
    call function 'HR_IN_CHG_INR_WRDS'
    exporting
    amt_in_num = ws_betrg
    importing
    amt_in_words = amount_word
    EXCEPTIONS
    DATA_TYPE_MISMATCH = 1
    OTHERS = 2
    w_val-word = amount_word.
    concatenate 'INR.' w_val-word into w_val-word
    separated by space.
    write:/1(80) sy-uline.
    write: /1 sy-vline, 7 'Total transfer:'(009),
    64(16) ws_betrg intensified off currency 'INR',
    80 sy-vline.
    write:/1(80) sy-uline.
    write: /1 sy-vline, 3 w_val-word+0(76) intensified off,
    80 sy-vline.
    write :/1 sy-vline, 10 w_val-word+76(70) intensified off,
    80 sy-vline.
    write:/1(80) sy-uline.
    clear: ws_betrg,cnt.
    skip 2.
    write: /2 'Prepared by :'(010), '_______________'(013),
    45 'Checked by :'(011),'_______________'(013).
    skip 2.
    write: /2 'Printed On ', sy-datum,
    45 'Approved by :'(012),'_______________'(013).
    clear sy-pagno.
    endif.
    endat.
    at end of bankl.
    if int_rep-bankl ' '.
    call function 'HR_IN_CHG_INR_WRDS'
    exporting
    amt_in_num = ws_betrg
    importing
    amt_in_words = amount_word
    EXCEPTIONS
    DATA_TYPE_MISMATCH = 1
    OTHERS = 2
    w_val-word = amount_word.
    concatenate 'INR.' w_val-word into w_val-word
    separated by space.
    write:/1(80) sy-uline.
    write: /1 sy-vline, 7 'Total transfer:'(009),
    64(16) ws_betrg intensified off currency 'INR',
    80 sy-vline.
    write:/1(80) sy-uline.
    write: /1 sy-vline, 3 w_val-word+0(76) intensified off,
    80 sy-vline.
    write :/1 sy-vline, 10 w_val-word+76(70) intensified off,
    80 sy-vline.
    write:/1(80) sy-uline.
    clear: ws_betrg,cnt.
    skip 2.
    write: /2 'Prepared by :'(010), '_______________'(013),
    45 'Checked by :'(011),'_______________'(013).
    skip 2.
    write: /2 'Printed on ', sy-datum,
    45 'Approved by :'(012),'_______________'(013).
    clear sy-pagno.
    NEW-PAGE.
    endif.
    endat.
    endloop.
    End of Page
    end-of-page.
    write: /2 'Prepared by :'(010), '_______________',
    45 'Checked by :'(011),'_______________'.
    *& Form IMPORT_CLUSTER
    Importing Data from Cluster *
    form import_cluster.
    sy-subrc = 0.
    rp-imp-c2-cd.
    if sy-subrc eq 0.
    if cd-version-number ne ocd-version-number.
    endif.
    endif. " SY-SUBRC EQ 0
    endform. " IMPORT_CLUSTER
    *& Form INT_TAB
    Filling internal table tab_rgdir form int_tab.
    *Fill internal table tab_rgdir.
    move-corresponding rgdir to tab_rgdir.
    tab_rgdir-pernr = pernr-pernr.
    append tab_rgdir.
    endform. " INT_TAB
    *& Form IMPORT_bt
    Import Values from Bank Transactions Table (BT) form import_bt.
    rp-init-buffer.
    RP-IMP-C2-RX.
    rp-imp-c2-in.
    if rp-imp-in-subrc eq 0.
    if in-version-number ne oin-version-number.
    write: / 'Schlüssel des Clusters RX:'(015),
    rx-key-pernr, rx-key-seqno.
    write: / 'The imported version of the cluster'(016), 'RX',
    'is not current'(017).
    write: / 'Imported version :'(018),
    oin-version-number.
    write: / 'Current version of cluster :'(019),
    in-version-number.
    stop.
    else.
    sy-subrc = 0.
    endif.
    else.
    sy-subrc = 8.
    write: /
    'Inconsistencies between cluster directory and directory for'(020).
    write: /
    'No payroll results found for data in cluster directory'(021).
    write : /
    'Please contact hotline to solve the current problem'(022).
    endif.
    ws_fpbeg(2) = versc-fpbeg+4(2).
    ws_fpbeg+2(4) = versc-fpbeg(4).
    ws_fpend(2) = versc-fpend+4(2).
    ws_fpend+2(4) = versc-fpend(4).
    ws_mthyr(2) = pa_mth.
    ws_mthyr+2(4) = pa_year.
    check ws_mthyr = ws_fpbeg.
    check ws_mthyr = ws_fpend.
    loop at bt. "from pc209
    int_rep-pernr = pernr-pernr.
    int_rep-ename = pernr-ename.
    int_rep-bankl = bt-bankl.
    int_rep-bankn = bt-bankn.
    int_rep-betrg = bt-betrg.
    int_rep-zlsch = bt-zlsch.
    append int_rep.
    endloop.
    IF P_BANKL ' ' AND P_ZLSCH ' '.
    DELETE INT_REP WHERE BANKL P_BANKL.
    ELSEIF P_BANKL = ' ' AND P_ZLSCH ' '.
    DELETE INT_REP WHERE ZLSCH P_ZLSCH.
    ELSEIF P_BANKL ' ' AND P_ZLSCH = ' '.
    DELETE INT_REP WHERE BANKL P_BANKL.
    ENDIF.
    endform. " IMPORT_BT
    *& Form CONVERT_MONTH
    Fetching Month Text form convert_month using mth t_mth.
    case mth.
    when '01'.
    t_mth = 'January'(023).
    when '02'.
    t_mth = 'February'(024).
    when '03'.
    t_mth = 'March'(025).
    when '04'.
    t_mth = 'April'(026).
    when '05'.
    t_mth = 'May'(027).
    when '06'.
    t_mth = 'June'(028).
    when '07'.
    t_mth = 'July'(029).
    when '08'.
    t_mth = 'August'(030).
    when '09'.
    t_mth = 'September'(031).
    when '10'.
    t_mth = 'October'(032).
    when '11'.
    t_mth = 'November'(033).
    when '12'.
    t_mth = 'December'(034).
    endcase.
    endform. " CONVERT_MONTH
    *& Form CONVERT_DATE_A
    Fetching Month Text * form convert_date_a using mth_t t_mth_t.
    case mth_t.
    when '01'.
    t_mth_t = 'Jan.'(035).
    when '02'.
    t_mth_t = 'Feb.'(036).
    when '03'.
    t_mth_t = 'Mar.'(037).
    when '04'.
    t_mth_t = 'Apr.'(038).
    when '05'.
    t_mth_t = 'May.'(039).
    when '06'.
    t_mth_t = 'Jun.'(040).
    when '07'.
    t_mth_t = 'Jul.'(041).
    when '08'.
    t_mth_t = 'Aug.'(042).
    when '09'.
    t_mth_t = 'Sep.'(043).
    when '10'.
    t_mth_t = 'Oct.'(044).
    when '11'.
    t_mth_t = 'Nov.'(045).
    when '12'.
    t_mth_t = 'Dec.'(046).
    endcase.
    endform. " CONVERT_DATE_A
    *& Form VALIDATE
    text
    --> p1 text
    <-- p2 text form validate .
    if p_bankl <> ' ' and p_zlsch ' '.
    delete int_rep where bankl p_bankl.
    elseif p_bankl = ' ' and p_zlsch ' '.
    delete int_rep where zlsch p_zlsch.
    elseif p_bankl ' ' and p_zlsch = ' '.
    delete int_rep where bankl p_bankl.
    endif.
    endform. " VALIDATE
    check this weblog.....
    /people/dj.adams/blog/2003/11/13/food-for-thought-ldbs-and-abap-objects
    Also , check the following link too.
    http://www.datamanagementgroup.com/Resources/Articles/Article_1005_2.asp
    Regards,
    Harish

  • Send Fax using rfax

    Hi
    I am sending a fax using rfax but i can not understand how can i set the size of page. I am using html format to send data.
    please help me if anybody has knowledge of rfax.

    We saw your query in the java developers forum, abut Fax through Java, we found a component, in www.java4less.com, RFax, we are able to send the Fax through serial modem, but the Fax printed, is as stretched vertically, If you have any solution found on sending fax through java, or using the same Rfax, please advice the solution.
    Thanking you
    [email protected]

  • Is it possible to send songs from, for example a samsung  using Bluetooth. If not, does anyone know a free app or something were i can download fre music. Ps exuse My english hope you'll understand����

    Is it possible to send songs from, for example a samsung  using Bluetooth. If not, does anyone know a free app or something were i can download free music.
    Ps exuse My english hope you'll understand 

    The only way to get songs on an iPhone is by synching the songs from your iTunes library, or purchasing them from the iTunes store on your phone.
    You can search yourself for sites that offer free music.

  • Need an example how to use SCAN_Start with a callback function

    I would appreciate if someone helps me with a working example of how to use SCAN_Start with a callback function. I need just a basic functionality: to specify a channel list (with gains probably), to start a data acquisition task and to receive data buffers utilizing a callback function. t this time whatever I was trying to do caused computer hangups, though it is supposed to be one of the most regular tasks to perform.
    Thank you in advance,
    Mike

    Hello Mike,
    Thank you for contacting National Instruments.
    Attached is an example project which uses a callback function to begin analog acquisition (AI) by calling SCAN_Start. This project acquires from the first 2 channels on your DAQ device. Make sure to modify the device number in the code to match the number of your card.
    Let me know if you have any further questions...
    Sincerely,
    Sean C.
    Applcications Engineer
    National Instruments
    Attachments:
    Acquire_multichannel_61xx.zip ‏11 KB

  • Is there example code for using Ni488 and PCI-GPIB card in non controller mode?

    Is there example code for using Ni488 and PCI-GPIB card in non controller mode?

    cymrieg,
    Your code looks good to me. What is the problem? What happens when it fails? What is the IBSTA value on the controller, and at what point in the code does it stop? What is the IBSTA value on the slave, and at what point does it stop?
    One thing is that you might not want to call IBCLR() in a loop on the device. At the beginning of the program is fine...This will send a clear command to the device and will clear out any LACS and TACS bits that might be set. Also your IBDEV call shouldn't be in a loop.
    Hope this helps, but let me know if you need more information.
    Scott B.
    GPIB Software
    National Instruments

  • How do I set up my fax using my phone number?cc=us

    Need instructions to set up fax using my phone number

    Hi shea31,
    Unfortunately, this printer doesn't have a fax function. You can also check the printer's product specifications.
    ▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬
    Cheers!
    * If this post has helped you, the White Kudos star on the left is a great way to say thanks!
    * Please mark Accept As Solution if it solves your problem so other users can benefit as well.

  • Looking for examples/help on using Ethernet with Keithley 2701 DMM

    All of the example code utilizing their IVI driver is based on GPIB or RS232. I specifically bought the 2701 to utilize the Ethernet port, but cannot find CVI examples on how to do this. Can anyone point me to an ethernet example using their driver and the Ethernet port? Or perhaps post a non-Keithley ehternet driver and examples on its use?

    Hi Paul,
    What you have been told is exactly what you need to do.
    Here is a document in NI web that explains about it:
    How Can I Communicate With a Keithley 2701 DMM?
    There is also an Instrument driver that NI built for these DMM:
    LabVIEW Certified Plug and Play Instrument Driver
    To find this documents you need to go to NI.com and at the top on the search box enter 2701. That will give you all the documents related to this.
    Thank you
    Ricar
    do S.
    National Instruments.

  • Sendin fax using nokia 9210i fax modem via laptop

    Please can someone explian to me how to send fax using my nokia 9210i fax modem. I can use this fax modem to dial up a network and connect to the internet but when i try to send a fax with it using windows it dials the number but it diplays data call and the fax does not go it keeps on showing data call in progress, please how can i make i turn it into fax call, maybe i need a coomand but i dont know or is nokia 9210i cannot do this
    Thanks for your help.
    Jon

    Do you have an IBM / Lenovo Laptop?
    I do and I checked the event logs and noticed failure 680 which indicated that no dial tone could be obtained (cable not plugged it) or similar symptom.
    I used to receive the error "one touch access failed to establish a network connection" using the Nokia PC Suite. I checked under start | settings | network connections and selected properties on the valid dial-up device. Then I noticed that the device was using the Internal Thinkpad modem instead of the Nokia. This explained the error 680 as the Thinkpad modem was not cabled to the phone line. After changing the connect using device from thinkpad to Nokia all worked well.
    Let me know if this helps.

  • How do I send a fax using Firefox or Gmail?

    How do I send a fax using firefox or gmail? I have printed a set of instructions which start out with the use of a verification tool to determine whether the number I want to send a fax to is within the "fax service area". I don't understand this statement. I can use my fax machine to dial the number, most any number world wide, and send a fax to the number. Why would I want to use Firefox or Gmail to send a fax when I already have a fax machine? Sometimes my fax machine is busy for longer than I can wait.

    Are you connected to a phone line? Have you a fax modem? Other than that use a free fax web site:
    http://www.gotfreefax.com/

  • Can I use Photoshop Elements 13 save the photo directly on OneDrive (hence the album eventually example) Reason, I use Office 365 and have so 1T storage, then it is not necessary to have more "cloud"!

    Can I use Photoshop Element 13 save the photo directly on OneDrive (hence the album eventually example) Reason, I use Office 365 and have so 1T

    g.n.a.s
    If your program is Photoshop Elements, you have posted in the wrong forum. Somehow your thread got posted in the Adobe Premiere Elements Forum (video editing).
    If this is the case, please re-post your thread in the Adobe Photoshop Elements Forum or wait for a moderator to see your thread here and move it from here to there.
    Photoshop Elements
    Thank you.
    ATR

  • SAPConnect :: FAX uses wrong FROM address

    Hi guys,
    We've successfully upgrade our old 4.6C system to SAP ECC6.
    We still have a minor issue with sending faxes.
    We've installed a Hylafax-server which will send the faxes using a modem.
    On this Hylafax server, a mail relay server is installed as well.
    Basically SAP (SAPConnect using communicationmethod FAX) will send an email to the Hylafax server with a PDF attached. This email will be received by the mail server and hylafax will fax the PDF attachment.
    Hylafax will then send an email back to the address shown in the "FROM" field of the email to indicate whether the fax was sent successfully or not.
    Now... everything works perfect, except SAP always sends the email to the fax server with "from" address "0000000000000000@<domain>" instead of the SAP user's emailaddres filled in using SU01.
    The weird thing is that we tested this before the upgrade on a test SAP server, and it worked on the test machine..
    Also, on the same SMTP node, using communication method "INT (internet)" it works perfectly.
    But using communication method "FAX", this problem occurs.
    Does anyone has any suggestions on what could be the problem?
    At this oment I'm running out of ideas.
    Many thanks in advance.

    We have faced same/similar problem.
    We use SAPConnect SMTP for fax. Faxes geet forwarded as SMTP mails to a fax service provider, and gets faxed from there. SAPConnect picks user's email address from user master as "Sender" address. It is working perfectly fine in R/3 4.7 production environment.
    We upgraded the system to ERP 6.0 EHP4 on a sandbox server. Now the SAPConnect behavior changed. Instead of using the email address from the user master SAPConnect picks the Fax Number from the usermaster and forms the sender address as "Fax=+faxnumber@defaultdomain". Now our Fax service provider cannot recognize the sender, and rejects/drops it.
    WORKAROUND: One workaround that we found was to delete the fax number from the user master. Now SAPConnect falls back to email address from user master. (SAPConnect trace shows "Sender address for communication method FAX not found",  "Use e-mail address for sender").
    Hope this helps.
    Regards,
    Kuriakose Varghese

Maybe you are looking for

  • Smart Cover doesn't put iPad into Sleep mode in Unlock position after iOS 8.3 update

    Prior to the iOS 8.3 update, closing my Smart Cover would put my iPad into Sleep mode when in the Unlock position.  Since the update, this function no longer works in the Unlock position.  In the Lock position, I hear the click and the iPad does go i

  • Can I have a family Itunes account

    I have my own iTunes account and iCloud and all that. I have an iPhone and an iPad, using iTunes on Windows on my personal Laptop. My wife has an iPhone and iTunes with her own account. With her iTunes on her personal Laptop. We both have work laptop

  • "Purchase-to-Stock" Or "Purchase-to-Sell/Drop" Scenerios

    Hi My clients scenario: Client is making a finished product with some fabric. Now that the due to heavy in-flow of Sales Orders, client has decided to buy(from other manufacturer) the same finished product in order to make it as "Purchase-to-Stock" O

  • Error Code, "Error occurred when creating frame..." in FCP 10.0.9

    This happened to me when sharing to Apple ProRes.  My solution:  I switched the timeline view to frame view and discovered that the "bad" frame was actually outside my edited part.  So I just selected a range of what I wanted to export, excluding any

  • I can see After Effect in Adobe Application Manager

    Hello. I have a creative cloude monthly subscription. I installed several programs on my working MAC. Now i want to install the same program at home on my Sony Vaio with Windows 7 but in Adobe Application Manager i can see only 14 program but not all