Account clerk,Tele & Fax Number in Smartform

Hi Gurus
I am trying to print Account clerk,Tele phone number and Fax Number in Smartform but its not printing .I am using Structer FSABE .Fields are SALUT,TELF1 and TELFX.i am using the TC:VF02.please can anyone help me where i can get the details and which its pulling from.please can anyone tell me the solution please
Thanks in advance
Edited by: Reddy on May 19, 2010 8:25 AM

Check table T001S to get user name of A/c clerk. Then you can read the details using BAPI_USER_GET_DETAIL.

Similar Messages

  • Payment advices not picking accounting clerk phone number and fax number.

    Hi,
       We have executed payment program and payment advices got generated. But in the output it is printing everthing i.e accounting clerk name, vendor number and amount. But it is not filling the accounting clerk phone number and fax number even though we have maintained it in our customized transaction code. Will this values in the payment advices will be picked up from standard t.code OB05, there we don't have option to give these two values.
    Can anyboday help me on this.
    Regards,
    Sree

    goto accunt groups with screen layout,
    after creating the group or existing group, double click on account management, in payment transactions make the required fields are required.
    regards,

  • Accounting Clerk not extended to SAP Connect (SOST) with fax

    Hi,
    Hope you can help me with my below issue.
    I am sending payment advice notes with program: RFFOEDI1 and RFFOUS_T
    through transaction F110...I am happy with the payment advice note we
    send with e-mail and it works fine because it does extend Accounting
    Clerk as a sender in SOST. The problem comes in when the vendor's
    standard of communication method is fax and we have maintained the
    accounting clerk in the vendor master. So when you try to send vendor's
    payment advice note through F110, It does NOT extend Accounting Clerk
    information to SOST as a sender.
    Can you please help asap.
    Thanks,
    Themba

    Hi FI Gurus,
    Can I please have feedback with regards to the above query.
    Thanks,
    Themba

  • Get plant information (tel number and fax number) from SPRO

    I ahve a quotation form which I am pulling the footer  with the plant adress and phone number and fax number . Right now my form is coded to pull the address and numbers from T001w and Kna1 table for tel and fax numbers . Now they want the telephone numbers to be pulled from the SPRO  Plant indo, i.e in SPRO Enterprise strucrturew--definition logistic generaldefine copy delete plant ---address(tel number and fax number).
    I would like to get the numbers from here , how do I get the plant information from there instead of getting it from the plant and customer tables.
    Thanks
    Aarav

    try table TVST  get the ADRNR hit ADRC or ADR1 to ADR6 tables

  • How can I tell which number on my account downloaded an app?

    How can I tell which number on my account downloaded an app?

    What do you mean 'which number' ? You can see what account purchased an item, you can't see what device or computer.

  • Need to know the fax number for bt customer servic...

    Ive been trying to apply for a phone & broadband package for over a week now and been called twice from bt asking me to send them some proof of ID and proof of tenancy for my current address so they can go ahead with my order.. The first person who called me gave me this email address to send my scanned documents to "[email protected]"  ... i sent a email with 3 scanned documents and had no reply for 3 days and my order status was still in pending status... i then used the online chat and asked them to book me a callback so i can get some kind of update on whats happening etc ... then today i get a call and again was asked to send my ID and proof of tenancy to a fax number that would be texted to my phone after i put the phone down ... ive now been waiting since monday 4pm and still no fax number sent to me..
    Can somebody please tell me what the fax number is that i need to use for sending my ID and proof of tenancy to.
    thanks
    tony
    Solved!
    Go to Solution.

    Hi Welcome to the Forum
    Once the Forum Mods have read your post they will post an invite here once you reply to them they will take personal ownership of the problem until resolved.
    Do not send them a Personal Message as this is the incorrect contact method and cannot be properly tracked also the mod contacted may not be on shift for sometime and this will delay your help
    The forum mods normally reply within3/5 working days after you have contacted them
    They will contact you personally by email or phone
    If you want to say thanks for a helpful answer,please click on the Ratings star on the left-hand side If the reply answers your question then please mark as ’Mark as Accepted Solution’

  • Reg Telephone and Fax Number updation in Purchase orders

    Hi Experts,
    I need small information about Telephone Number and Fax numbers updation in Purchase Orders.
    Actually my user requirement is they have been provided the Purchase Organizations XXXX,XXXX.
    From this Two Purchase Orgs the users who are all created the POs the Telephone Number,Fax Number need to pick from the relvant User Master(user profile SU01).
    For this how i can discuss with my Abaper.
    If you have any idea on this please suggest me.
    Brgds,
    RK

    Hi RK
    Where do you need to update this information in the PO or the PO output ( Print / Fax / email)
    If you want to update these in the PO  then you need to use the customer exit.
    Enhancement        MM06E005 - Customer fields in purchasing document
    If you need to determine the details in the PO output then the smartform / script  being used needs to be modified to determine the data of the user derived from table EKKO - ERNAM  created by
    The address number needs to determined from table USR21 using the user ID  - PO created by( EKKO - ERNAM_ and using the address number derive the telephone number and fax number from table ADRC.

  • To get the contact fax number in my form

    Hi!
    I would like to get the fax number on the customer section of my smartform for BOL. How do i get the contact fax number in my form with following lines that i ahve for getting contact name.
    data: l_parnr like vbpa-parnr,
          l_name1 like knvk-name1,
          l_namev like knvk-namev. "first name
    select parnr into l_parnr from
           vbpa
           where
           vbeln = g_sale_ord and
    *      vbeln = is_nast-objky and
           parvw = 'AP'.
           exit.
    endselect.
    if l_parnr is not initial.
       select single name1 namev  into (l_name1, l_namev)
          from knvk
          where
           parnr = l_parnr.
       concatenate l_namev l_name1 into g_contact separated by ' '.
    endif.
    Thanks

    I added this and it shows up the fax number:
    data: l_parnr like vbpa-parnr,
          l_name1 like knvk-name1,
          l_namev like knvk-namev, "first name
          l_kunnr like vbpa-kunnr,
          l_persnumber like adcp-persnumber,
          l_fax_number like adcp-fax_number,
          l_vbelv like vbfa-vbelv.
    select parnr into l_parnr from
           vbpa
           where
           vbeln = g_sale_ord and
    *      vbeln = is_nast-objky and
           parvw = 'AP'.
           exit.
    endselect.
    if l_parnr is not initial.
       select single name1 namev  into (l_name1, l_namev)
          from knvk
          where
           parnr = l_parnr.
       concatenate l_namev l_name1 into g_contact separated by ' '.
    endif.
    select vbelv into l_vbelv from vbfa where
    vbeln = gs_hd_adr-deliv_numb and
    vbtyp_n = 'J' and
    vbtyp_v = 'C'.
      exit.
    endselect.
    select single parnr from vbpa into l_parnr
    where vbeln eq l_vbelv
    and parvw eq 'AP'.
    if sy-subrc eq 0.
      select single * from knvk into g_knvk where
      parnr = l_parnr.
      select single fax_number into g_contact_fax
      from adcp
      where persnumber = g_knvk-prsnr.
    else.
      select single kunnr from vbpa into l_kunnr
      where vbeln eq gs_hd_adr-deliv_numb
      and   parvw eq 'AG'.  "sold to
      if sy-subrc <> 0.
    *from ship to
        select single kunnr from vbpa into l_kunnr
        where vbeln eq gs_hd_adr-deliv_numb
        and   parvw eq 'WE'.  "ship to
      endif.
      check sy-subrc = 0.
      select single * from knvk into g_knvk where
      kunnr = l_kunnr and
      abtnr = 'Z007'.
      select single fax_number into g_contact_fax
      from adcp
      where
      persnumber = g_knvk-prsnr.
    endif.
    Thanks

  • Does Martial status, Email id and Fax number is maintained in any infotypes

    Hello,
    Does SAP provides with the facility of catching
    Martial status ,
    Email id ,
    Fax number,
    overrseas indicator,
    Date of Birth Verified
    for an employee in any of the infotypes . If yes can you please tell where do we maintain this.
    Also if we need these details for HR Reporting purpose then how we can get these details for an employee.
    Regards,
    Vidya.

    Martial status - PA0002-FAMST
    for other fields related to Communications, check the fields PA0105-USRTY, PA0105-USRID, PA0105-USRID_LONG.
    U can use the FM <b>HR_READ_INFOTYPE</b> to fetch the details of a PA infotype

  • Difference between accounting clerk and dunning clerk?

    Hi friends,
    Can anyone of you please tell me what is the difference between dunning clerk and accounting clerk.

    Hi Isha,
    This is usually refered to depict the responsibility. Accounting clerk you will find in G/L account master in FS00 who is assigned responibility to maintain and clear this account, he/she has track every movement in the account. Dunning clerk is the clerk who is responsible to dun the particular customer and send notices.
    Regards,
    Chitnan Joshi.

  • TS4006 Am trying to switch on "find my iphone" icon  but cannot verify my icloud account. Tells me to see email but nothing comes thru with any instructions.

    Am trying to switch on "find my iphone" icon  but cannot verify my icloud account. Tells me to see email but nothing comes thru with any instructions.
    Any help much appreciated as phone assistence unavailable today.

    Hello Asokwah,
    Sign out from your pple Id on your Device and Go to https://appleid.apple.com/cgi-bin/WebObjects/MyAppleId.woa/ and then Sign In with your Apple Id here and Under your Primary Email Address click on Resend Next to Verification Email Sent. Now Go to your Email Account and Verify your Apple Id again by clicking in the Link inside the Mail that you might have received from Apple. Now Sign In on your Device and try to make a Purchase and if it is for the first time then you will be asked to Review your Account and if you have entered your Credit/Debit card in your Account then you will have to just Enter your 3 Digits CVV Number and then click on Done. And then you can try downloading any Application from AppStore or Music from iTunes Store and check if its working.

  • Ok I just bought this phone off a friend and when I try to make a iCloud account it says the number of free iCloud account have been takin what can I do

    Ok i just bought a iPhone 4 off a friend and when I try to make a iCloud account it says the number of iCloud account have been takin and want let me make one what should I do

    You can't do anything, except use a different device (or a Mac) to setup iCloud and then transfer the details to the phone you bought.
    Clearly your friend setup multiple iCloud accounts for some reason (you only need one) using up all the allocation for that device, and didn't tell you before selling you the phone.

  • Change the fax number in letter head in SAP

    Hi gurus,
    how to change the fax number in letter head in SAP
    regards
    subbu

    HI,
    What do you mean letter head... Are you taking about the print out from SAP system.
    Ask the abaper to rectify this is all the forms attached to the purchasing docs and inventory docs.
    May be it is hardcoded tell him to change the old fax number to the new one.
    Thanks & Regards,
    Kiran

  • Fax Number changed in P.O Layout

    Hi
    Our office fax number has changed recently and I need to change it on the PO layout
    Tnx

    Hai
    Take help of abaper/software engineer for modification of  FAX number.In the program you can change it & pass into sapscript.
    The following code from program,
        ZPO_DATA-DNAME1 = 'The  Titanium Dioxide Co.,Ltd.'.
        ZPO_DATA-DSTRAS = '9th & 10th Fl, Future Business Center AMANA St.'.
        ZPO_DATA-dadd =  'P.O.Box.: 13586, JEDDAH - 21414'.
        ZPO_DATA-DNAME2 = 'Tel: 966 2 652 9966 / Fax: 652 9933'.
    With Regards,
    Jaheer.

  • How to Print Dunning Clerks email & Fax No. on Dunning letter

    Hi Experts,
    I have requirement about Dunning letter. Client is already using a dunning letter with specific format. Now he wants to Add Dunning Clerk email & Id & Fax number on the available format. I am unable to find specific Table for both(Dunning Clerk email ID & FAX Number) from which I can fetch the value & print on the form. We are using Cusomize form for this.
    Appriciated your quick response.
    Thanks

    Hi Kapil.
    Please check in table KNB1.
    Clerk's fax: TLFXS
    Clrk's internet: INTAD
    Regards,
    Mohammed Kalim

Maybe you are looking for

  • Updated Filename in File Receiver

    I need to append today's date to the file name when outputting a file. The date isn't available in the outbound XML so I can't use variable substitution. Does anyone have any suggestions?

  • Can I transfer photos from one iPad to another?

    Can I transfer my photos from my 1 to my husbands 2?

  • Disk Utility - Can't repair Disk - Help needed :(

    Hi, I have some trouble to use Disk Utility (on my iBook G4 - 1.33 Ghz+1 GB RAM) I run Disk Utility to verify and repair permissions, which worked, and then Verify Disk. HEre is the logged result: ++++++++++++++++++++++++++++++++++++++++++++++++++++

  • Debug dynpro + call script form

    Hello , I have a req, I need to debug the few dynpro, and one of the dynpro is calling a form and I have to figure it out, which form is this ( and from where it is called ). I have never worked with script form before, can any one let me know how I

  • I have a file that has disappeared or is somehow lost.

    It's an Excel file and I've searched and looked for it via different means (even checked the Trash can) and I can't find it anywhere.  I had it opened recently but now it has completely disappeared.  Any ideas how I might be able to find it?