Can any suggest me  reference books in abap programming

i am new abap programmer can any suggest some books for reference,and the user forums from where  i can get help and the online material websites

Hi,
ABAP in 21 days
http://cma.zdnet.com/book/abap/ch03/ch03.htm
http://help.sap.com/saphelp_40b/helpdata/en/4f/991f82446d11d189700000e8322d00/applet.htm  SAP Online Help For Dictionary.
http://sappoint.com/abap/
for SAPscripts
For follg., refer http://www.henrikfrank.dk/abapuk.html
ABAP objects and control technology
IDOC
SapScript
Performance tuning 
BAPI Programming
Visual Basic Integration - Using the DCOM Connector and BAPI OCX (Only available in Danish)
JAVA and the SAP java connector
http://www.sts.tu-harburg.de/teaching/sap_r3/ABAP4/abapindx.htm
for keywords
very useful link for all
http://www.sap-img.com/abap.htm
http://www.sapdevelopment.co.uk/tips/tipshome.htm
http://help.sap.com/printdocu/core/Print46c/en/Data/Index_en.htm
http://sap.ittoolbox.com/nav/t.asp?t=322&p=322&h1=322
http://sap.ittoolbox.com/nav/t.asp?t=448&p=448&h1=448
http://www.thespot4sap.com/
http://www.kabai.com/abaps/q.htm
http://www.geocities.com/mpioud/Abap_programs.html
http://help.sap.com/saphelp_46c/helpdata/EN/35/2cd77bd7705394e10000009b387c12/frameset.htm
Hope it helps.

Similar Messages

  • Can someone suggest some good books for sql reporting services (SSRS) 2012 or above?

    Hi Everyone,
        Can someone suggest some good books for sql reporting services (SSRS) 2012 and above? I ave been working on ssrs for past 2 months and have a basic understanding of ssrs.
    Regards
    Regards

    Hi,
    you can look for below options;
    http://www.amazon.in/Microsoft-Server-Reporting-Services-Recipes/dp/0470563117#reader_0470563117
    http://www.goodreads.com/book/show/18147604-learning-sql-server-reporting-services-2012
    Thanks
    Please Mark This As Answer or vote for Helpful Post if this helps you to solve your question/problem. http://techequation.com

  • How can i get access code to create ABAP Program ?

    hi guys ,
    How can i get access code for creating ABAP Program in my System.
    I am using SAP IDES 4.6 Version
    Please Help me out .
    Regards
    Raghu

    Hi Raghu,
    - license your system (http://service.sap.com/licensekey)
    - create a developer key (http://service.sap.com/sscr)
    - create a key for your ABAP program (httP://service.sap.com/sscr)
    Markus

  • *** Can anyone suggest a good automatic print mail program?

    I'm trying to print from my iPhone email and the best I've come up with is a process that requires an auto-print email program. There are lots for WinBlows but I'm having a tough time finding one for Mac. Can anyone suggest a good auto-print mail program?
    Thanks in advance!

    I'm not sure I understand, do you want to print from a Mac or iPhone?
    I would imagine you can use Automator on the Mac to print all emails, or emails which meet a certain criteria. Not on the iPhone though.

  • REFERENCE BOOK FOR ABAP & ABAP-HR

    Hi friends.
    Happy holi to all.
    Can any one please suggest me on book for SAP-ABAP & ABAP-HR.
    THANX.
    CHANDRA.

    Hi,
    if you are really looking for an reference to abap i think the abap reference from sappress is the book you look for. I think there is also an abap hr book from sap press but i am not sure how old it is.
    you might want to check the current cataloge [http://www.sappress.com/downloads/sap_press_catalog_2008_winter.pdf]
    Rgds.
    Roman

  • How can i find item category usage in abap program

    HI, EXPERTS
    I HEARD USAGE MAINTAINED IN ABAP PROGRAM .
    ANY ONE KNOW WHERE I CAN FIND ABAP PROGRAM FOR ITEM CATEGORY USAGE??
    THANKS.^
    Edited by: jong seok Lee on Feb 2, 2010 10:01 AM

    Hi,
    Item Category Usage: An item categories usage is defined by SAP when creating a sales order, The system determines for example, that the usage refers to a text item as oppossed to a deliverable item when you enter text in the order item rather than  a material number. Based on this usage, the system will use the item category determination to propose an item category.
    You can also find the usage in Custoemer material info record (T.Code VD51), if you want to determine any customer specific item category you may use the usage field in Custoemr master info record.
    You can devlop an user exit to determine the item category based upon usage field as well.
    regrads
    Vivek.

  • How i can acces to web ( with login) from abap program?

    Hello.
    I need to acces to web that have user/password from abap program. Is there any function to do this?
    And, is it possible, to do this in background process?
    Regards.
    Antonio.

    Hi Antonio,
    Yes this is possible. Check out class cl_http_client, particularly method IF_HTTP_CLIENT~AUTHENTICATE in which you can provide the user credentials. Here's some example code:
    DATA:  client    TYPE REF TO if_http_client,
                 l_url       TYPE string,
                 l_content TYPE string.
    CALL METHOD cl_http_client=>create_by_url
      EXPORTING
        url    = l_url
      IMPORTING
        client = client
      EXCEPTIONS
        OTHERS = 1.
    client->request->set_header_field( name  = '~request_method'
                                       value = 'GET' ).        "#EC *
    CALL METHOD client->authenticate
      EXPORTING
    *    proxy_authentication = ' '
    *    client               =
        username             = 'user'
        password             = 'password'
    *    language             =
    ****Make the call
    client->send( ).
    ****Receive the Response Object
    CALL METHOD client->receive
      EXCEPTIONS
        http_communication_failure = 1
        http_invalid_state         = 2
        http_processing_failed     = 3
        OTHERS                     = 4.
    ****Get the response content in Character format
    l_content = client->response->get_cdata( ).
    Hope this helps you!
    Cheers, Roel

  • How can i print data in smartforms from ABAP program.

    Dear gurus:
    in my abap program i process require data, and saved in a internal table.
    how can l print the data in smartforms.?
    who can give me a code sample is better:)
    reward all helpful advise.

    Try this....
    1) Tcode --> SmartForms
    2) Form name --> Z_SF_TEST Create
    3) Under Global settings
    a) Form Interface  
        Table Tab
       ITAB LIKE EKPO
    b) GLOBAL Definitions
    WA_NETPR LIKE EKPO-NETPR
    In smart forms if we want to display quantity and currency fields. We can't directly display currency field and quantity fields
    For that we have to create an extra variable in global definitions
    Ex: netpr FIELD of EKPO
    CREATE program lines and specify WA_NETWR = itab-netpr.
    4) RT CLick on main Window
       CREATE --> TABLE
      Click Table painter
    DEFAULT %LTYPE will be Created
    a) If you want more like Header footer etc add by rt click on %LTYPE1
    Table (Tab)
    %LTYPE  Radio(SELECT) 5 CM 5 CM 6 CM
    CLICK on DATA (Tab)
    INTERNAL TABLE ITAB LIKE ITAB
    5)RT click on table control and create --> program lines
    General attribute (Tab)
    INPUT PARAMETER               OUTPUT PARAMETER
    itab                               WA_NETPR
    Code Area
    WA_NETWR = ITAB-NETPR.
    6) RT CLcick on table ctl and create 3 text to display the fields
    a) % text1 +button(insert field)
       FIELD name &itab-ebeln&
    Output options (tab)
    Check New line   LINETYPE   %Ltype1
    check new cell
    b) % text2
       & itab-ebelp&
    output options
    check new cell
    c) % text2
       & wa_netpr&
    output options
    check new cell
    <b>Report ac
    Tables ekpo.
    Data: itab1 like ekpo occurs 0 with header line.
    select * into table itab1 from ekpo.
    Call function module --> smart form function module and pass your internal table</b>
    Regards,
    SaiRam

  • How can I trigger an event from an ABAP Program

    Hi everyone,
    I have a requirement, where I have to create an ABAP program, that has to execute (trigger) an event which belongs to a Process Chain. when I run the program, the Process Chain has to run.
    So, how can I do it?
    Thanks for your help, Federico

    HI ,
    The program can call function module BP_EVENT_RAISE to raise the event. you can create vent in sm64 and sm62 .There you give the parameter of the event same as what you will define in the event of start variant of your process chian ..
    Regards,
    shikha

  • Can any provide me problem issues on ABAP dictionary for practice?

    Or any one can tell me the links in which problem issues on ABAP dictionary is there?
    Moderator message : Don't ask for links & solution to vague requirements. Thread locked.
    Edited by: Vinod Kumar on Jun 14, 2011 9:36 AM

    Hi jessculter, 
    Thanks for your post. 
    I am sorry to hear about the problems you have been having lately. 
    Please send me in your details using the "Contact The Mods" link found in my profile and I will take it from there. 
    Cheers,
    OlgaC 
    BTCare Community Mod
    If we have asked you to email us with your details, please make sure you are logged in to the forum, otherwise you will not be able to see our ‘Contact Us’ link within our profiles.
    We are sorry that we are unable to deal with service/account queries via the private message(PM) function so please don't PM your account info, we need to deal with this via our email account :-)
    If someone answers your question correctly please let other members know by clicking on ’Mark as Accepted Solution’.

  • Can any suggest me way to Default check TDINCLRES(Expand include)of TTXID t

    In CO01 (production order) we have a check box for long text.in that if we want to include any standard text and view the content,there is an option expand include check box.is there any method to check this always.
    please give me reply soon if any one can help me as i require this urgent.

    chk these 2 threads if they can help
    Text is not uploading for co03 ( Andreas)
    Re: Creating Text for co01

  • Firefox has stopped playing BBC i-player content but IE8 can, any suggestions to fix?

    I used to be able to run BBC i-player on Firefox. Now when it tries to load I get the error message 'This content doesn't seem to be working. Try again later.' Internet Explorer plays the same content without problem.

    Nevermind, I fixed the problem. I logged on as an administrator and deleted iTunes files. I then redownloaded the file as an administrator and the Store is working smoothly again!

  • I downloaded a book through iBooks on my iPad and it won't allow me to open in. Any suggestions?

    I downloaded a book through iBooks on my iPad and it's not allowing me to view it, any suggestions.

    If the book won't open then try deleting it from the bookshelf and re-download it via the Purchased tab in the ibookstore in the iBooks app and see if you can open that.

  • Hi I am a beginner to ABAP HR .Can anybody suggest how one will write

    Hi I am a beginner to ABAP HR .Can anybody suggest how one will write a program to gat SSN number from the infotype and display it.What are the infotypes used for getting SSN numbers and the various steps involved in doing that.Thanks everybody in advance.

    you can use
    HR_READ_INFOTYPE funtion module for IT0002
    and
    By using LDB PNP
    Get Pernr
    Start of selection
    RP_PROVIDE
    End of selection

  • Resources/Books/Blogs , any suggestion?

    Hi,
    I am new to BPM and found that the documentation is not detailed enough. I would appreciate any suggestions for resources, books, blogs etc ..
    Thanks

    OK Muhammed ,
    Why don't you try in Oracle BPM 11.1.1.6 Documentation in which you will have clear idea of each and every component and concept in detail...
    http://docs.oracle.com/cd/E23943_01/doc.1111/e15176/toc.htm
    Regards,
    Pavan

Maybe you are looking for

  • Why do deleted contacts still show when starting new text messages?

    I have an iPhone 4s.  I've deleted many contacts but if I start a new text message that begins with the letter of someones contact I deleted, they show up.  How can this history be deleted?  I have a friend with an iPhone 5 and this does not happen o

  • Mass activity run to fill tables FKKMAKO,FKKMAZE,FKKMACTIVITIES

    Dear All, As per help.sap.com, it is mentioned that we need to do mass activity run for filling these Dunning tables(FKKMAKO,FKKMAZE,FKKMACTIVITIES). It is not mentioned the mass activity run names to fill these tables. Please help me , what are the

  • HTTP connection using wtk 2.5.2 and usb modem

    Hi, i´m developing an application that loads some data from a web page doing a POST. I´m using the emulator to connect to the server, and send de request. I check the response code from de connection and it is ok(value 200), but when a read de conten

  • Changes don't show up online

    Hey everyone! I'm having this weird problem where I connect to the site i'm working with just fine, and changes i make locally and "put" are reflected in remote view in dreamweaver......everything looks good...but when I go online...the changes are n

  • Synchronize configuration changes among SUN One Application cluster

    How to do the synchronization of configuration changes among the SUN One Application clustering. I need to replicate the configuration changes from Appserver1 to appserver2, which is in the cluster farms. Prakash