Beginner of abap

hello, i am beginner of abap, i want to ask where i can get free abap development tools if i have no SAP environment.thanks

Hi,
below links might help you,
For simple concepts,refer
ABAP in 21 days
http://cma.zdnet.com/book/abap/ch03/ch03.htm
If you check these links,you can find many example programs.
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://sappoint.com/abap/
For FAQs in ABAP
http://www.sap-img.com/abap/more-than-100-abap-interview-faqs.htm
BAPI-step by step
http://www.sapgenie.com/abap/bapi/example.htm
Smartforms
http://www.sap-basis-abap.com/sapsf001.htm
Workflow
http://www.sap-img.com/workflow/sap-workflow.htm
ALV
http://www.geocities.com/mpioud/Abap_programs.html
Mail
http://www.geocities.com/mpioud/Z_EMAIL_ABAP_REPORT.html
http://www.thespot4sap.com/Articles/SAP_Mail_SO_Object_Send.asp
Table control in BDC
http://www.sap-img.com/abap/bdc-example-using-table-control-in-bdc.htm
SAPScripts:
http://sappoint.com/abap/
http://www.henrikfrank.dk/abapuk.html
reward points if it helps you and close the thread if your question is solved
regards,
venu

Similar Messages

  • 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

  • Beginner in ABAP

    Hello every one,
    I am new to SAP ABAP. I created a program which is shown below. I am not able to identify a problem, pls advice me, any changes has to be done.
    tables: vbak.
    select-options: s_sdoc for vbak-vbeln.
    types: begin of gty_vbak,
           auart type auart,
           vkorg type vkorg,
           vtweg type vtweg,
           spart type spart,
          end of gty_vbak.
    data: gt_vbak type standard table of gty_vbak initial size 0,
          gs_vbak type gty_vbak.
    select  auart
            vkorg
            vtweg
            spart
            from vbak
            into gt_vbak
            where vbeln in p_sdoc.
    write:/2 'Sales Doc ty', 18 'Sales Org', 33 'Dist Ch', 48 'Div'.
    skip.
    loop at gt_vbak into gs_vbak.
    write:/2  gs_vbak-auart,
           18 gs_vbak-vkorg,
           33 gs_vbak-vtweg,
           48 gs_vbak-spart.
    endloop.

    Hi,
    Please use proper subject in future!!!
    Hope you are not beginner in SCN(I can see 288 posts:-))
    Change your select to as shown below.
    select auart
    vkorg
    vtweg
    spart
    from vbak
    into TABLE gt_vbak    "here you have error
    where vbeln in S_sdoc.  "Here u have error
    Thanks,
    Vinod.

  • CRM Technical for Tech beginner (Basically ABAP)

    Dear All
    I am a beginner in CRM Technical domain. Though I have 7 years exp in ABAP and would be pursuing CRM Technical now.
    I would like to know from you the links and documents for CRM Technical side
    Amol

    Hi Amol,
    7 years of ABAP experience will be very helpful for landing into SAP CRM. So, best of luck for you CRM Technical journey. have a look at this thread for your Technical Requirement.
    ABAP TO CRM please guide
    Hope this helps.
    Thanks,
    Samantak.

  • Beginner ABAPer asking Doubts in BDC

    Hi Guyz,
    I am a beginner in ABAP. Here i am sending some doubts on BDC . Any Kind of help will be highly Appreciated.
    Thanks,
    SAM
    1>How do we handle all the scrolling funcions(page ups, page downs atc), and values entered into table controls in BDC ?
    2> How do you take care of screen resolution in BDC?

    1) page up and page down ... i donno the actual procedure but this is one of the method...
    i hope this answers both of ur questions...
    After encountering the screen, say u need to select a field in a table. One of the methods is to press <b>Control F</b> on that screen then enter the field name which u want.. and press enter.. then that field will be the <b>first field in the screen resolution</b> ....
    just try this for a normal table like spfli... after going to the table display in <b>SE11 press control F or the Binoculars icon.</b>. then u will get a small window u just type in the name of the field u want.. and press enter .. see what happens,
    suppose ..
    have opened this spfli in se11 transaction and in display mode..
    Now <b>'PERIOD'</b> is the field which is not there in the resolution..
    so i have opened the find option ,provided the field name <b>PERIOD </b>in the field of search window.
    then pressed enter. Now i will get the same screen( spfli display screen ) with <b>period as the first field in that resolution</b> .. Now i can do whatever is i want with this field.. here i have double clicked on the domain of the field PERIOD.
    so u analyse this code....
    *spfli display screen..
    perform bdc_dynpro using 'SAPLSD41' '2200'. ( * spfli display screen , u can use ur screen number here )
    perform bdc_field using 'BDC_OKCODE'
    '=FIND'. (* To open the find window )
    perform bdc_dynpro using 'SAPLSD41' '0114'. ( * This is the find window )
    perform bdc_field using 'BDC_CURSOR'
    'RSDXX-FINDSTR'.
    perform bdc_field using 'BDC_OKCODE'
    '=CANC'. (* OK_CODE for enter )
    perform bdc_field using 'RSDXX-FINDSTR'
    'PERIOD'. ( * Here i am giving the field name which i want to search or which is not there in the resolution or u can give a vaiable name which contains the value <FIELD NAME> ).
    ( Now i got the spfli display screen with period as the first field in the screen resolution )
    perform bdc_dynpro using 'SAPLSD41' '2200'. (*The previous spfli display screen )
    perform bdc_field using 'BDC_OKCODE'
    '=WB_SELECT_OBJECT'. (* OK_CODE to double click on the domain of the field PERIOD )
    perform bdc_field using 'BDC_CURSOR'
    'DD03D-ROLLNAME(01)'.
    reward helpful answers...
    sai ramesh

  • ABAP in BW Tranformations Syntax Correction

    Hi,
    As i am beginner in ABAP please correct the Start/End routine which i have written in Transformations for the below requirement
    DSO1------->DSO2
    While load data to DSO1-->DSO2 in need a look that refer active table of DSO3 and perform if condition to fill value to a field in DSO2
    DSO1 (SOURCE FIELDS)
    Field X
    Field Y (X,Y are Key fields)
    Field Z
    Field W
    DSO2 (Result Field)
    Field P (The field which i want to update with Value by routine)
    DSO3 (Look up)
    Field A
    Field B (A,B are Key fields) (A=X,B=Y)
    Field C
    Requirement: While loading data from DSO1-->DSO2...We should read active table of DSO3 and pass it to Internal Table (A,B,C)with a key (A=X,B=Y) and in the end routine First check wether
    if Field C is not initial...then Result Field P should be updated with E
    ELSE CHECK SOURCE FIELD Field Z = 1..then Result Field P should be updated with F
    ELSE CHECK SOURCE FIELD Field W = T..then Result Field P should be updated with G
    else if all the above conditions are not met .then Result Field P should be updated with H
    Syntax i wrote (Not working correctly)
    Declaration-Global
    TYPES: BEGIN OF ty_sou,
    W TYPE /bi0/W,
    Z TYPE /bi0/Z, END OF ty_sou,
    BEGIN OF ZDSO_3,
    A TYPE /bi0/oiA,
    B TYPE /bi0/oiB,
    C TYPE /bi0/oiC, END OF ZDSO_3.
    DATA : ty_ZDSO_3_wa TYPE ZDSO_3,
    ty_ZDSO_3_tab TYPE TABLE OF ZDSO_3,
    ty_ZDSO_3_tab_temp TYPE TABLE OF ZDSO_3.
    DATA : ty_sou_tab TYPE TABLE OF ty_sou,
    ty_sou_wa TYPE ty_sou.
    Routine Start
    LOOP AT SOURCE_PACKAGE ASSIGNING .
    IF -XIS NOT INITIAL AND -Y IS NOT INITIAL.
    ty_ZDSO_3_wa-A = -X.
    ty_ZDSO_3_wa-B = -Y.
    ty_sou_wa-Z = -Z.
    ty_sou_wa-W = -W.
    COLLECT ty_sou_wa INTO ty_sou_tab.
    COLLECT ty_ZDSO_3_wa INTO ty_ZDSO_3_tab.
    ENDIF.
    ENDLOOP.
    *Select Statement to select values from ZDSO_3 Active Table
    SELECT A B C FROM /bic/aZDSO_300 INTO TABLE ty_ZDSO_3_tab_temp FOR ALL ENTRIES IN ty_ZDSO_3_tab WHERE
    A = ty_ZDSO_3_tab-A.
    SORT ty_ZDSO_3_tab BY A B.
    But this is not working...i tried to debug but as i am a learner in ABAP i am not familiar.... Please advise me where or what is wrong with my code and greatful if you can make changes

    Routine End
    LOOP AT RESULT_PACKAGE ASSIGNING<RESULT-FIELD>-/ .
    Read table ty_ZDSO_3_tab_temp into ty_ZDSO_3_wa
    with key A = -P B = -Q binary search.
    If sy-subrc = 0.
    IF ty_ZDSO_3_wa-C IS NOT INITIAL.
    <RESULT-FIELD>-/BIC/P = 'E'.
    ELSEIF ty_sou_wa-Z = 1.
    <RESULT-FIELD>-/-/BIC/P = 'Fu2019.
    ELSEIF ty_sou_wa-W= 'T'.
    <RESULT-FIELD>-/-/BIC/P = 'G'.
    ELSE.
    <RESULT-FIELD>-/-/BIC/P = 'H'.
    ENDIF.
    Endif.

  • ABAP routine in Transformations syntax fix

    Hi
    As i am beginner in ABAP please correct the Start/End routine which i have written in Transformations for the below requirment
    DSO1------->DSO2
    While load data to DSO1-->DSO2 in need a look that refer active table of DSO3 and perform if condition to fill value to a field in DSO2
    DSO1 (SOURCE FIELDS)
    Field X
    Field Y (X,Y are Key fields)
    Field Z
    Field W
    DSO2 (Result Field)
    Field P (The field which i want to update with Value by routine)
    DSO3 (Look up)
    Field A
    Field B (A,B are Key fields) (A=X,B=Y)
    Field C
    Requirement:
    While loading data from DSO1-->DSO2...We should read active table of DSO3 and pass it to Internal Table (A,B,C)with a key (A=X,B=Y)
    and in the end routine
    First check wether if Field C is not initial...then Result Field P should be updated with E
    ELSE CHECK SOURCE FIELD Field Z = 1..then Result Field P should be updated with F
    ELSE CHECK SOURCE FIELD Field W = T..then Result Field P should be updated with G
    else if all the above conditions are not met .then Result Field P should be updated with H
    Syntax i wrote (Not working correctly)
    GLOBAL DECLARATION:
    TYPES:
    BEGIN OF ty_sou,
    W           TYPE /bi0/W,
    Z            TYPE /bi0/Z,
    END OF ty_sou,
    BEGIN OF ZDSO_3,
    A          TYPE     /bi0/oiA,
    B          TYPE     /bi0/oiB,
    C          TYPE     /bi0/oiC,
    END OF ZDSO_3.
    DATA : ty_ZDSO_3_wa           TYPE   ZDSO_3,
                 ty_ZDSO_3_tab          TYPE   TABLE OF ZDSO_3,
                 ty_ZDSO_3_tab_temp     TYPE   TABLE OF ZDSO_3.
    DATA : ty_sou_tab            TYPE   TABLE OF ty_sou,
                ty_sou_wa             TYPE   ty_sou.
    START ROUTINE
    $$ begin of routine - insert your code only below this line        -
        LOOP AT SOURCE_PACKAGE ASSIGNING <source_fields>.
          IF  <source_fields>-XIS NOT INITIAL AND
              <source_fields>-Y  IS NOT INITIAL.
            ty_ZDSO_3_wa-A = <source_fields>-X.
            ty_ZDSO_3_wa-B = <source_fields>-Y.
            ty_sou_wa-Z =  <source_fields>-Z.
            ty_sou_wa-W  =  <source_fields>-W.
            COLLECT ty_sou_wa INTO ty_sou_tab.
            COLLECT ty_ZDSO_3_wa INTO ty_ZDSO_3_tab.
          ENDIF.
        ENDLOOP.
    *Select Statement to select values from ZDSO_3 Active Table
        SELECT A B C
        FROM /bic/aZDSO_300 INTO TABLE ty_ZDSO_3_tab_temp   FOR ALL
        ENTRIES IN
             ty_ZDSO_3_tab WHERE A = ty_ZDSO_3_tab-A.
        SORT ty_ZDSO_3_tab BY A B.
    END ROUTINE
    LOOP AT RESULT_PACKAGE ASSIGNING <result_fields> .
    Read table ty_ZDSO_3_tab_temp into ty_ZDSO_3_wa with key
    A = <result_fields>-P
    B = <result_fields>-Q
    binary search.
    If sy-subrc = 0.
    IF ty_ZDSO_3_wa-C IS NOT INITIAL.
    <result_fields>-/BIC/P = 'E'.
    ELSEIF
    ty_sou_wa-Z = 1.
    <result_fields>-/BIC/P = 'Fu2019.
    ELSEIF ty_sou_wa-W= 'T'.
    <result_fields>-/BIC/P = 'G'.
    ELSE.
    <result_fields>-/BIC/P = 'H'.
    ENDIF.
    Endif.
    ENDLOOP.
    But this is not working...i tried to debug but as i am a learner in ABAP i am not familiar....
    Please advise me where or what is wrong with my code and greatful if you can make changes

    Routine End
    LOOP AT RESULT_PACKAGE ASSIGNING<RESULT-FIELD>-/ . 
    Read table ty_ZDSO_3_tab_temp into ty_ZDSO_3_wa
    with key A = -P B = -Q binary search. 
    If sy-subrc = 0. 
    IF ty_ZDSO_3_wa-C IS NOT INITIAL.
    <RESULT-FIELD>-/BIC/P = 'E'.
    ELSEIF ty_sou_wa-Z = 1.
    <RESULT-FIELD>-/-/BIC/P = 'Fu2019.
    ELSEIF ty_sou_wa-W= 'T'.
    <RESULT-FIELD>-/-/BIC/P = 'G'.
    ELSE. 
    <RESULT-FIELD>-/-/BIC/P = 'H'.
    ENDIF.
    Endif.
    ENDLOOP.

  • ABAP Routine in Transformations Syntax Correction

    Hi,
    As i am beginner in ABAP please correct the Start/End routine which i have written in Transformations for the below requirement
    DSO1------->DSO2
    While load data to DSO1-->DSO2 in need a look that refer active table of DSO3 and perform if condition to fill value to a field in DSO2
    DSO1 (SOURCE FIELDS)
    Field X
    Field Y (X,Y are Key fields)
    Field Z
    Field W
    DSO2 (Result Field)
    Field P (The field which i want to update with Value by routine)
    DSO3 (Look up)
    Field A
    Field B (A,B are Key fields) (A=X,B=Y)
    Field C
    Requirement: While loading data from DSO1-->DSO2...We should read active table of DSO3 and pass it to Internal Table (A,B,C)with a key (A=X,B=Y) and in the end routine First check wether
    if Field C is not initial...then Result Field P should be updated with E
    ELSE CHECK SOURCE FIELD Field Z = 1..then Result Field P should be updated with F
    ELSE CHECK SOURCE FIELD Field W = T..then Result Field P should be updated with G
    else if all the above conditions are not met .then Result Field P should be updated with H 
    Syntax i wrote (Not working correctly) 
         Declaration-Global
    TYPES: BEGIN OF ty_sou,
                   W TYPE /bi0/W,
                   Z TYPE /bi0/Z, END OF ty_sou,
    BEGIN OF ZDSO_3,
    A TYPE /bi0/oiA,
    B TYPE /bi0/oiB,
    C TYPE /bi0/oiC, END OF ZDSO_3. 
    DATA : ty_ZDSO_3_wa TYPE ZDSO_3,
    ty_ZDSO_3_tab TYPE TABLE OF ZDSO_3,
    ty_ZDSO_3_tab_temp TYPE TABLE OF ZDSO_3. 
    DATA : ty_sou_tab TYPE TABLE OF ty_sou,
                 ty_sou_wa TYPE ty_sou. 
    Routine Start
    LOOP AT SOURCE_PACKAGE ASSIGNING .
    IF -XIS NOT INITIAL AND -Y IS NOT INITIAL.
         ty_ZDSO_3_wa-A = -X.
         ty_ZDSO_3_wa-B = -Y.
      ty_sou_wa-Z = -Z.
      ty_sou_wa-W = -W. 
    COLLECT ty_sou_wa INTO ty_sou_tab.
    COLLECT ty_ZDSO_3_wa INTO ty_ZDSO_3_tab.
    ENDIF.
    ENDLOOP. 
    *Select Statement to select values from ZDSO_3 Active Table 
    SELECT A B C FROM /bic/aZDSO_300 INTO TABLE ty_ZDSO_3_tab_temp FOR ALL ENTRIES IN ty_ZDSO_3_tab WHERE
    A = ty_ZDSO_3_tab-A. 
    SORT ty_ZDSO_3_tab BY A B. 
    Routine End
    But this is not working...i tried to debug but as i am a learner in ABAP i am not familiar.... Please advise me where or what is wrong with my code and greatful if you can make changes
    Edited by: SAP7593 on Jan 21, 2010 7:56 AM
    Edited by: SAP7593 on Jan 21, 2010 7:56 AM

    Routine End
    LOOP AT RESULT_PACKAGE ASSIGNING<RESULT-FIELD>-/ . 
    Read table ty_ZDSO_3_tab_temp into ty_ZDSO_3_wa
    with key A = -P B = -Q binary search. 
    If sy-subrc = 0. 
    IF ty_ZDSO_3_wa-C IS NOT INITIAL.
    <RESULT-FIELD>-/BIC/P = 'E'.
    ELSEIF ty_sou_wa-Z = 1.
    <RESULT-FIELD>-/-/BIC/P = 'Fu2019.
    ELSEIF ty_sou_wa-W= 'T'.
    <RESULT-FIELD>-/-/BIC/P = 'G'.
    ELSE. 
    <RESULT-FIELD>-/-/BIC/P = 'H'.
    ENDIF.
    Endif.
    ENDLOOP.

  • ABAP OO BOR export parameter

    Hi, All!
    I am beginner at ABAP OO in workflow and get a problem with using BOR in OO methods. Exporting parameter of the method typed as OBJ_RECORD. In workflow builder (method container) this   parameter displays as reference to BOR, but has not exact type of the BOR. Task container parameter has not type of BOR too.
    If i trying to change task or method container parameter - system returns it back and not saves binding.
    I need instructions, how to mount BOR type for method parameters. 
    Thanks,
    Constantine

    Martin,
    there is many methods in my  OO class (like prepare something and create something).
    In create method last raws like
    swc_create_object ex_changemaster c_bortype_changemaster l_objkey.
    ** error handling
    endmethod.
    In example, ex_changemaster has not BOR type in method and task container. And i can only control  task to model binding using manual assignment. No BOR type controlled by the system.
    Regards,
    Konstantin

  • ABAP Debugger

    Hello. It is a pleasure to write my first message here. I recently got out of school and found a new job in ABAP so I am a real beginner in ABAP. I would like to say that I speak french and my english is fairly good but not perfect so sorry for the mistakes I could make.
    My first question would be this:
    I know you can save the layout in the debugger in the first tabs so it shows the tool windows you asked it to show but is there a way to save the datas you are checking into the debugger? Each time I test something, I have to click on lot of different datas to see their value and i was wondering if there wasn't a simplier way to "save" those datas and in one click, I can have them shown to me.
    Thank you for your help and for letting me be in this forum.
    Have a good day

    Hi,
    First of all welcome to SDN.
    In the dibugger, right side you will able to see all the variables you will select for data display.
    Now if you are in new dibugger and, want all those variables to be used next time then in dibugger right side there is an option called services of the tool , clieck on it you will get an option save to local file .
    It will download all your variables in the excelsheet.
    Now next time when you dibuggs the same program you can copy this variables and past to this right side editable table and enter.
    You will able to see all the variables

  • Hello every one... from where to start abap.

    dear all
                   i come to know that there is a minisap by which we can know about...
         from where i can get this free download how to instal mnisap & work as beginner in abap.... pls do reply me soon i am eagerly waithin for u r suggestion.........

    Welcome to SCN
    Please check this link
    https://www.sdn.sap.com/irj/scn/nw-downloads

  • Starting a remote login through ABAP

    Hello!
    First of all, I am a beginner in ABAP :).
    Now the question - I have registered a remote R/3 system in SM59 and the remote login works. Is it now possible to start the remote login for that particular system through an ABAP program? If so how do I do it?
    Any links to tutorials, articles or code examples will also of course be helpful..
    Bye!
    Sameer

    hi
    see the below links
    MM links:
    http://www.sapgenie.com/abap/tables_mm.htm
    http://www.sap-img.com/sap-download/sap-tables.zip
    http://www.allsaplinks.com/material_management.html
    http://www.training-classes.com/course_hierarchy/courses/2614_SAP_R_3_MM_Invoice_Verification_-_Rel_4_x.php
    http://www.sapfriends.com/sapstuff.html
    SD links
    detailed business flow of SD MODULE INCLUDING all major tables and field
    Need material regarding the Genereal Business Flow of SD, MM, PP, FISL & CO
    http://www.sap-basis-abap.com/sapsd.htm
    http://www.sapgenie.com/abap/tables_sd.htm
    http://help.sap.com/saphelp_46c/helpdata/en/8c/df293581dc1f79e10000009b38f889/frameset.htm
    Check these pdfs:
    SD Workflow:
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCBMTWFMSD/BCBMTWFMSD.pdf
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCBMTWFMLO/BCBMTWFMLO.pdf
    rewards points if helpful
    regards
    sreeni

  • ABAP Web Dynpro CSS Stylesheets

    Hallo,
    I have a question concerning "ABAP Web Dynpro". My current task is to implement an application for our company intranet. This application must have the look an feel (corporate design) of the company I'm working for. How can I manage this by using ABAP Web Dynpros?
    Where can the Stylesheets be found and how can I change them in order to fit our corporate design.
    While answering please consider that I am a raw beginner concerning ABAP Web Dynpros.
    Thank you in advance.
    Kerstin Röck

    You need to Change the Themes , For that you need ThemeEditor. You can download that from SDN. First install that and then Download the theme from Mime repository. and then Create a Theme Editor project (It is basically NWDS which consists of ThemEditior plug in).
    Here you can change the CSS properties and then Go back and create a New theme under the Respective mime Repository.
    Search in SDN also you get lot of articles and Forum questions.

  • ABAP Object sample prog

    Hi All,
    I am beginner of ABAP objects.
    REPORT example.
          CLASS counter DEFINITION
    CLASS counter DEFINITION.
      PUBLIC SECTION.
        METHODS : set IMPORTING  value(set_value) TYPE i,
                  increment,
                  get EXPORTING  value(get_value) TYPE i.
      PRIVATE SECTION.
        DATA : count TYPE i.
    ENDCLASS.                    "counter DEFINITION.
          CLASS counter IMPLEMENTATION
    CLASS counter IMPLEMENTATION.
      METHOD set.
        count = set_value.
      ENDMETHOD.                    "set
      METHOD increment.
        count = count + 1.
      ENDMETHOD.                    "increment
      METHOD get.
        get_value = count.
      ENDMETHOD.                    "get
    ENDCLASS.                    "counter IMPLEMENTATION
    DATA cnt TYPE REF TO counter.
    CREATE OBJECT cnt.
    DATA : number TYPE i VALUE 5.
    CALL METHOD cnt->set
      EXPORTING
        set_value = number.
    DO 3 TIMES.
      CALL METHOD cnt->increment.
    ENDDO.
    call method cnt->get
    importing get_value = number.
    It is giving error like Stament is not accessbile
    please help

    Hi Raman,
    In case if you are interested in understanding why you got the error because of not using Start_of_selection, please check out the thread.
    https://forums.sdn.sap.com/click.jspa?searchID=1653133&messageID=3017631
    Regards
    Indrajit

  • Abap Prog Scenario

    Dear,
    Need Help regarding ...  Abap program ...
    What We are try to do is " our vendor will email us to some email address.
    Email will contain some parameters in pre-defined format. Now.
    Program will take those parameters and then execute the Report according to given parameters in email and send back report to that Vendor.
    I am beginner in ABAP . need help regarding this issue. any Ideas? Suggestion recommendation ?
    Regards

    Hi!!!
    Thanks for ur prompt helps. Actually instead of OBJECTID I was passing the Obj-key and not the OBJECTID. This was creating problem. But still dont know why it was creating the prob.
    Anyways THANKS A LOT.
    Regards,
    Sudipto.

Maybe you are looking for