Intractive report

hi experts,
i get stuck into one problem..m workin on a report in which i wud like to get sum of netprice corresponding to each ' vbeln ' in an iteractive report..but m not gettin that sum correctly..m sendin u full code..plz chk it out and do whatever changes u can or suggest me wat should i do..
TABLES : VBAK , VBAP.
DATA: BEGIN OF ITAB OCCURS 0,
         VBELN TYPE VBAP-VBELN,
        ERNAM TYPE VBAP-ERNAM,
        MATNR TYPE VBAP-MATNR,
        NETPR TYPE VBAP-NETPR,
        ARKTX TYPE VBAP-ARKTX,
        END OF ITAB,
        BEGIN OF ITAB1 OCCURS 0,
        VBELN TYPE VBAK-VBELN,
        ERNAM TYPE VBAK-ERNAM,
        VKORG TYPE VBAK-VKORG,
        KUNNR TYPE VBAK-KUNNR,
        END OF ITAB1.
DATA : SUM1 TYPE VBAP-NETPR VALUE '0',
       A(5) TYPE C.
DATA: V TYPE VBAP-NETPR,
      W TYPE VBAK-VBELN.
SELECT-OPTIONS S_VBELN FOR VBAP-VBELN.
SELECT * FROM VBAP INTO CORRESPONDING FIELDS OF TABLE ITAB WHERE VBELN IN S_VBELN.
WRITE :/5 'VBELN',20'ERNAM',33'MATNR',45 'NETPR', 65'Sales Order Item'.
SORT ITAB BY VBELN.
LOOP AT ITAB.
  WRITE :/5 ITAB-VBELN,20 ITAB-ERNAM,33 ITAB-MATNR,45 ITAB-NETPR, 65 ITAB-ARKTX.
  at end of vbeln.
  sum1 = sum1 + itab-netpr..
hide itab-netpr.
  endat.
hide itab
on change of itab-vbeln.
  hide sum1.
endon.
ENDLOOP.
*HIDE S_VBELN.
AT LINE-SELECTION.
  GET CURSOR FIELD ITAB-VBELN VALUE W.
  CONCATENATE '000000' W INTO W.
  SELECT * FROM VBAK INTO CORRESPONDING FIELDS OF TABLE ITAB1 WHERE VBELN = W.
  LOOP AT ITAB1.
      WRITE :/ 'SALES ORGANISATION ',30 'SOLD TO PARTY'.
      WRITE 50 'TOTAL'.
      WRITE :/ ITAB1-VKORG,30 ITAB1-KUNNR.
        WRITE sum1 COLOR 5.
     CLEAR SUM1.
     clear itab1.
  ENDLOOP.
regards,
raman.

Put on change of and end on..
On change of itab-vbeln  and try it..
copy this program and run it and see..REWRD IF USEFUL
TABLES : VBAK , VBAP.
DATA: BEGIN OF ITAB OCCURS 0,
VBELN TYPE VBAP-VBELN,
ERNAM TYPE VBAP-ERNAM,
MATNR TYPE VBAP-MATNR,
NETPR TYPE VBAP-NETPR,
ARKTX TYPE VBAP-ARKTX,
END OF ITAB,
BEGIN OF ITAB1 OCCURS 0,
VBELN TYPE VBAK-VBELN,
ERNAM TYPE VBAK-ERNAM,
VKORG TYPE VBAK-VKORG,
KUNNR TYPE VBAK-KUNNR,
END OF ITAB1.
DATA : SUM1 TYPE VBAP-NETPR VALUE '0',
A(5) TYPE C.
DATA: V TYPE VBAP-NETPR,
W TYPE VBAK-VBELN.
SELECT-OPTIONS S_VBELN FOR VBAP-VBELN.
SELECT * FROM VBAP INTO CORRESPONDING FIELDS OF TABLE ITAB WHERE VBELN IN S_VBELN.
WRITE :/5 'VBELN',20'ERNAM',33'MATNR',45 'NETPR', 65'Sales Order Item'.
SORT ITAB BY VBELN.
LOOP AT ITAB.
WRITE :/5 ITAB-VBELN,20 ITAB-ERNAM,33 ITAB-MATNR,45 ITAB-NETPR, 65 ITAB-ARKTX.
on change of itab-vbeln.
*at end of vbeln.
sum1 = sum1 + itab-netpr..
hide itab-netpr.
*endat.
hide itab
on change of itab-vbeln.
hide sum1.
endon.
ENDLOOP.
*HIDE S_VBELN.
AT LINE-SELECTION.
GET CURSOR FIELD ITAB-VBELN VALUE W.
CONCATENATE '000000' W INTO W.
SELECT * FROM VBAK INTO CORRESPONDING FIELDS OF TABLE ITAB1 WHERE VBELN = W.
LOOP AT ITAB1.
WRITE :/ 'SALES ORGANISATION ',30 'SOLD TO PARTY'.
WRITE 50 'TOTAL'.
WRITE :/ ITAB1-VKORG,30 ITAB1-KUNNR.
WRITE sum1 COLOR 5.
CLEAR SUM1.
clear itab1.
ENDLOOP.

Similar Messages

  • Column Arrenge in order in intractive report

    hi..
    i want to Arrenge Column according to me in order in intractive report .I have use arrow for up & dowmn in report Column Attributes .but there are no change .
    How can i arrenge column in order acording to me.
    Thanks
    Manoj Kaushsik

    Hi,
    Run page.
    Then open interactive report action menu and Select Columns.
    Order your columns. And then again from action menu Save Report.
    In select list select "As default report setting".
    Br, Jari

  • Intractive report using ALV fm's

    Hai This is Srik,
       I am trying to develop an intractive report using ALV fm's...
        Can anybody help me with some sample code and the needed FM's.
    Thanks in advance.
    Srik

    Srikanth,
    *& Report Z_INTERACTIVE *
    REPORT Z_INTERACTIVE no standard page heading line-count 200 message-id zp.
    TABLES: MARA, MAKT, MARC, MARD,T001W.
    DATA: BEGIN OF IT_MARA_MAKT_MARD OCCURS 0,
    MATNR LIKE MARA-MATNR,
    MTART LIKE MARA-MTART,
    MEINS LIKE MARA-MEINS,
    MAKTX LIKE MAKT-MAKTX,
    LABST LIKE MARD-LABST,
    END OF IT_MARA_MAKT_MARD.
    DATA: BEGIN OF IT_MARC_MARD1 OCCURS 0,
    WERKS LIKE MARC-WERKS,
    LABST LIKE MARD-LABST,
    NAME1 LIKE T001W-NAME1,
    END OF IT_MARC_MARD1.
    DATA: BEGIN OF IT_MARC_MARD OCCURS 0,
    LGORT LIKE MARD-LGORT,
    LABST LIKE MARD-LABST,
    END OF IT_MARC_MARD.
    SELECT-OPTIONS: s_matnr FOR MARA-MATNR.
    AT SELECTION-SCREEN.
    REFRESH IT_MARA_MAKT_MARD.
    SELECT MATNR MTART MEINS INTO CORRESPONDING FIELDS OF IT_MARA_MAKT_MARD FROM MARA WHERE MATNR IN s_matnr.
    SELECT SINGLE MAKTX INTO IT_MARA_MAKT_MARD-MAKTX FROM MAKT WHERE MATNR = IT_MARA_MAKT_MARD-MATNR.
    SELECT SUM( LABST ) INTO IT_MARA_MAKT_MARD-LABST FROM MARD WHERE MATNR = IT_MARA_MAKT_MARD-MATNR.
    APPEND IT_MARA_MAKT_MARD.
    CLEAR IT_MARA_MAKT_MARD.
    ENDSELECT.
    IF SY-SUBRC <> 0.
    MESSAGE I008.
    ENDIF.
    START-OF-SELECTION.
    SORT IT_MARA_MAKT_MARD.
    WRITE:/ 'MATERIAL NUMBER' COLOR 2, 20 'DESCRIPTION' COLOR 2, 50 'TYPE' COLOR 2, 70 'UOM' COLOR 2, 100 'STOCK' COLOR 2.
    ULINE.
    SKIP 4.
    LOOP AT IT_MARA_MAKT_MARD.
    WRITE:/ IT_MARA_MAKT_MARD-MATNR, 20 IT_MARA_MAKT_MARD-MAKTX, 50 IT_MARA_MAKT_MARD-MTART, 70 IT_MARA_MAKT_MARD-MEINS, 90 IT_MARA_MAKT_MARD-LABST.
    HIDE: IT_MARA_MAKT_MARD-MATNR, IT_MARA_MAKT_MARD-MAKTX, IT_MARA_MAKT_MARD-MTART, IT_MARA_MAKT_MARD-MEINS, IT_MARA_MAKT_MARD-LABST.
    ENDLOOP.
    AT LINE-SELECTION.
    CASE: SY-LSIND.
    WHEN 1.
    WINDOW STARTING AT 1 20 ENDING AT 120 120.
    REFRESH IT_MARC_MARD1.
    CLEAR IT_MARC_MARD1.
    SELECT pWERKS QNAME1 INTO CORRESPONDING FIELDS OF IT_MARC_MARD1 FROM MARC AS p INNER JOIN T001W AS q ON pWERKS = qWERKS WHERE p~MATNR = IT_MARA_MAKT_MARD-MATNR.
    SELECT SUM( LABST ) INTO IT_MARC_MARD1-LABST FROM MARD WHERE MATNR = IT_MARA_MAKT_MARD-MATNR AND WERKS = IT_MARC_MARD1-WERKS.
    APPEND IT_MARC_MARD1.
    CLEAR IT_MARC_MARD1.
    ENDSELECT.
    SORT IT_MARC_MARD1.
    WRITE:/ 'MATERIAL NUMBER' COLOR 3.
    WRITE: IT_MARA_MAKT_MARD-MATNR COLOR 4.
    WRITE:/ 'DESCRIPTION' COLOR 3.
    WRITE: IT_MARA_MAKT_MARD-MAKTX COLOR 4.
    WRITE:/ 'TYPE' COLOR 3.
    WRITE: IT_MARA_MAKT_MARD-MTART COLOR 4.
    WRITE:/ 'UNIT OF MEASUREMENT' COLOR 3.
    WRITE: IT_MARA_MAKT_MARD-MEINS COLOR 4.
    WRITE:/ 'MATERIAL QUANTITY' COLOR 3.
    WRITE: IT_MARA_MAKT_MARD-LABST COLOR 4.
    ULINE.
    SKIP 4.
    WRITE:/ 'PLANT CODE' COLOR 2, 20 'PLANT NAME' COLOR 2, 60 'STOCK' COLOR 2.
    LOOP AT IT_MARC_MARD1.
    WRITE:/ IT_MARC_MARD1-WERKS COLOR 4, 20 IT_MARC_MARD1-NAME1 COLOR 4, 41 IT_MARC_MARD1-LABST.
    HIDE: IT_MARC_MARD1-WERKS.
    HIDE: IT_MARA_MAKT_MARD-MATNR, IT_MARA_MAKT_MARD-MAKTX, IT_MARA_MAKT_MARD-MTART, IT_MARA_MAKT_MARD-MEINS, IT_MARA_MAKT_MARD-LABST.
    AT LAST.
    SUM.
    WRITE:/30 'TOTAL STOCK', 60 IT_MARC_MARD1-LABST.
    ENDAT.
    ENDLOOP.
    WHEN 2.
    WINDOW STARTING AT 1 20 ENDING AT 120 120.
    REFRESH IT_MARC_MARD.
    CLEAR IT_MARC_MARD.
    SELECT LGORT LABST INTO CORRESPONDING FIELDS OF IT_MARC_MARD FROM MARD WHERE MATNR = IT_MARA_MAKT_MARD-MATNR AND WERKS = IT_MARC_MARD1-WERKS.
    APPEND IT_MARC_MARD.
    CLEAR IT_MARC_MARD.
    ENDSELECT.
    SORT IT_MARC_MARD.
    WRITE:/ 'MATERIAL NUMBER' COLOR 3.
    WRITE: IT_MARA_MAKT_MARD-MATNR COLOR 4.
    SKIP 1.
    WRITE:/ 'DESCRIPTION' COLOR 3.
    WRITE: IT_MARA_MAKT_MARD-MAKTX COLOR 4.
    SKIP 1.
    WRITE:/ 'TYPE' COLOR 3.
    WRITE: IT_MARA_MAKT_MARD-MTART COLOR 4.
    SKIP 1.
    WRITE:/ 'UNIT OF MEASUREMENT' COLOR 3.
    WRITE: IT_MARA_MAKT_MARD-MEINS COLOR 4.
    SKIP 1.
    WRITE:/ 'MATERIAL QUANTITY' COLOR 3.
    WRITE: IT_MARA_MAKT_MARD-LABST COLOR 4.
    SKIP 1.
    ULINE.
    SKIP 1.
    WRITE:/ 'PLANT CODE' COLOR 2, 40 'PLANT NAME' COLOR 2.
    WRITE:/ IT_MARC_MARD1-WERKS, 40 IT_MARC_MARD1-NAME1.
    SKIP 3.
    ULINE.
    WRITE:/20 'STORAGE LOCATION' COLOR 5, 50 'STOCK' COLOR 5.
    SKIP 4.
    LOOP AT IT_MARC_MARD.
    WRITE:/20 IT_MARC_MARD-LGORT, 50 IT_MARC_MARD-LABST.
    AT LAST.
    SUM.
    WRITE:/30 'TOTAL STOCK', 60 IT_MARC_MARD-LABST.
    ENDAT.
    ENDLOOP.
    WHEN OTHERS.
    WINDOW STARTING AT 1 20 ENDING AT 20 50.
    WRITE:/40 'SORRY'.
    ENDCASE.
    TOP-OF-PAGE.
    WRITE:/ 'XYZ LIMITED' COLOR 2, 90 'DATE:' COLOR 2, SY-DATUM.
    ULINE.
    ULINE.
    TOP-OF-PAGE DURING LINE-SELECTION.
    WRITE:/ 'XYZ LIMITED' COLOR 2, 90 'DATE:' COLOR 2, SY-DATUM.
    ULINE.
    interactive ALV code
    ALV-INTERACTIVE.
    Interactive ALV
    http://www.sap-img.com/abap/an-interactive-alv-report.htm
    http://www.sapgenie.com/abap/drill_down_reports.htm
    Pls. reward if useful

  • Change SQL report To Intractive Report

    Dear All Friend,
    i have created SQL Report .
    Could you tell me please there is any way to change SQL report To Intractive Report .
    How can i do this.
    Thanks

    Under the Region Definition of the report; look over to the right-hand margin and you will see Migrate to Interactive Report under Tasks .
    Jeff

  • How can i avoid displaying runtime error in intractive report

    hi gurus
    my question is, in interactive report when i reach 20th secondary list after that am getting runtime error when i click again. So i wanted to know how can i avoid that run time error.
    regars
    imran

    Hi Imran,
    Basically we can have one basic list and 20 interactive lists.
    Once when we reached to 20th list then it goes to shortdump.
    So, inorder to avoid that we can modify the system field
    SY-LSIND.
    Just see this example and try this. I hope this will be useful for you.
    REPORT  ZSAMPLE1111.
    data: begin of itab occurs 0,
            matnr like mara-matnr,
            mtart like mara-mtart,
            mbrsh like mara-mbrsh,
            end of itab.
    data: begin of jtab occurs 0,
          maktx like makt-maktx,
          spras like makt-spras,
          end of jtab.
    select matnr mtart mbrsh into table itab from mara up to 10 rows.
    loop at itab.
    write:/ itab-matnr, itab-mtart, itab-mbrsh.
    hide itab-matnr.
    endloop.
    at line-selection.
    select maktx spras into table jtab from makt where spras = 'EN' .
    case sy-lsind.
    when '1'.
    loop at jtab.
    write:/ jtab-maktx, jtab-spras.
    endloop.
    when '20'.             * changes see here.
    sy-lsind = 1.
    when others .
    write:/ 'name',sy-lsind.
    endcase.
    I hope this will be helpful for you.
    <REMOVED BY MODERATOR>
    Cheers,
    Swamy kunche
    Edited by: Alvaro Tejada Galindo on Apr 15, 2008 4:01 PM

  • Intractive report/eport edit option

    Hi All,
    I have created interactive report
    SELECT EMPNO,
    ENAME ,
    JOB,
    MGR,
    HIREDATE,
    SAL,
    COMM,
    DEPTNO
    and Report Attributes=>Link Column have given Link to custom <img src="#IMAGE_PREFIX#e2.gif" border="0"> for P9_EMPNO...the editable displaying fine.
    MY Requirement was ..in the editable link...i need to control with DISBALE/ENALE with if EMPNO=100 then all 100 id records need to editable link disable and if EMPNO=120 then All 120 records editable link need to be enable..this kind of thing need in the report...
    Please help

    Hi All,
    I have created interactive report
    SELECT EMPNO,
    ENAME ,
    JOB,
    MGR,
    HIREDATE,
    SAL,
    COMM,
    DEPTNO and Report Attributes=>Link Column have given Link to custom <img src="#IMAGE_PREFIX#e2.gif" border="0"> for P9_EMPNO...the editable displaying fine.
    MY Requirement was ..in the editable link...i need to control with DISBALE/ENALE with if EMPNO=100 then all 100 id records need to editable link disable and if EMPNO=120 then All 120 records editable link need to be enable..this kind of thing need in the report...
    Please help
    or
    if give with java script also looks ok
    Edited by: anbarasan on Jan 28, 2013 9:56 PM

  • Intractive report Green geer donwload issue

    Hi All,
       i have a report with interactive there have Date column with '01-JUN-2013' displaying..but if go to the green gree donwload throw .csv /.xls Files just coming only the '01-jun-13'
       i need out put in download also 01-JUN-2013 ..Please help me on this....

    Hi,
    What version of APEX you are using?
    Have you try enter to column Number/Date format e.g. DD-MON-YYYY ?
    Regards,
    Jari

  • Intractive report with region alignment (Left to right/Right to left)

    i have two lanugage support apex application.i chnaged the page>region>Page Template Body (3)>Region Header in each launguge page.
    <b>the problem is the Searching BAR is not switching ....and Breadcrumbs also </b>
    <div class="uRegionContent clearfix" dir="RTL"></br>
    WKS:ram_r&d
    User/password: aramani/apex
    http://apex.oracle.com/pls/otn/f?p=19248:1how can switch the muliti language application when the user login page?
    Thanx,
    Ram.
    Edited by: Ramani_vadakadu on Apr 8, 2013 9:06 PM

    any update plz..

  • View detail records from interactive report with button press

    Hi I want to create a intractive report that will have a + sign for the user to expand the detail region below the record.
    Thanks.
    PKP

    thanks kartik,
    I did exectly what is there in there. But I am having problem in display. I have put my application in
    http://apex.oracle.com/pls/apex/f?p=44031:1
    login as GUEST/password
    select Company Accounts Management from Application Menu --> setup tab -> Companies from setup menu
    the detail record is not displaying. correctly.

  • I Need some Itractive Reports not using alvs and any other advanced

    I Need some Itractive Reports not using alvs and any other advanced topics like include and any other i need simple Intractive reports.

    Hello,
    Check this sample reports:
    Program name                   Report title
    DEMO_LIST_INTERACTIVE_1        Creating Detail Lists
    DEMO_LIST_INTERACTIVE_2        List Administration
    DEMO_LIST_INTERACTIVE_3        Page Headers in Detail Lists
    DEMO_LIST_INTERACTIVE_4        Messages in Lists
    If useful reward,
    Vasanth

  • Some faqs can u solve dis answers asp

    1) How do u handle table control in bdc?
    2) What is diff b/w normal functional modules and BAPI's fm's?
    3)what is fct-code of at- line- selection?
    4)why do u  use subroutine pool in scripts?
    5)name few performance techniques?
    6)in how many ways u can design interactive reprt?
    7)what is the need of table maintainance option at the begin of table creation?
    8)what is the system landscape?
    9)what is the use of submit command in exe program?
    10)how do u create secondary index?
    11) what is the diff b/w sap memory and abap memory?
    what is the max size of date records?
    2)what is the max size of IDOC?
    3)what is the relationship b/w ALE and EDI?
    4)when u have data transfer, why do u chose IDOC's?
    5)i have 200 records how u decide how many records should execute per IDOc?
    6)ALE customizing method?
    7)how do u define logical systems and assign logical systems to clients?
    8)what is change pointer technique?&what is need of change pointer technique?
    1) name the events in order in case of classical report?
    2)if i put write statemnt in at slection-screen,does it works?
    3)can u call multilple selctio screen in one report?
    4)what is diff b/w integration & at slection-screen ouput?
    5) i have a requirement like  i have 3 radio butons in one group,
    if i select one radio button then remaining radio buttons  are invisible what is the code for this?
    6) how do u decide which method is suite for paricular requirement if not specified in bdc?
    i.e session or  call transction?
    7)what is BAPI?
    8)how BAPI differ from  ALE?
    9) steps of configuring of EDI?
    10) is layout set is client dependent or not?
    11)how to transfer layout sets  to test client side?
    12)what is the protect......end protect?
    13) for what purposeu create multiple wqidows in one page?
    14)what are diff areas wher ucan ouput text in main window?
    15)what method u use to output text in    (top........endtop) or write_form?
    16)what is the reason for use of write_form rather than top------endtop?
    1)i need a logo on the right hand side of corner . how do u handle that?
    2)what is the standard table for storing standard symbols?
    3)how do u represent page no in scripts & total page nos?
    4)what is the transaction code for dump analysis?
    5)when top-of-page vent triggred?
    6)can i plce write stament in any event?does it works?
    7)what is the use of end-of-selection event?
    8)what is stop& exit?
    9)what happens if i plce write statement in end-of-selction?
    10)what is sy-ttill?
    11)does the value of sy-subrc chnge after if and write stament?
    12)what is bdc & types of bdc?
    13)when do u choose session , call transaction methods?
    14)how may types of symbols? what are they?
    15)what is the diff b/w constant & variable symbols?
    16)what are the parameters in open_form & start_form?
    17)does text orientation(190degrees ,145 degrees) is possible in sap scripts?
    18)how do u delete text from a layoutset window?
    19)what  are u need to take care  while transporting the request? for exeampl u developed a exit ,whta care do u take?
    20) what wil u do for preparing technical specs form functional specs?
    21) what is addres....endaddress in sap scripts?
    22)which method  do u prefer synchronous or asynchronous?
    23)what is output type?
    24)what does slection-screen of RBDMIDOC contains?
    25)what parameters u specifyng in RFc destination?
    26)what customiging y do to transfer the data from one logical systme to another logical system?
    27)can u explain brifely how idoc's genrated?
    28)if i just extend the idoc, what are the things u need to do?can i extend the same ouboud program?
    29)can u just explain what partner profile contains?
    30)what are process codes?
    31)if i just develop a gui status using pf-status.is it confined to single program or can be used for any other programs?
    32)what is client?
    33)what is diff b/w se01,se09,se10,stms  transction codes?
    34)what is the diff b/w select single * from kna1 and select * from kna1 for all entries?
    35)in subroutines paramaters are changing & using .what is the diff b/w them?
    1) what is the diff b/w scripts & smart forms?
    2)what are the function module used in smart forms?
    3)what are the function module? what is the use of them?
    4)what is the index? what is the secodary index ? whta is uses of them?
    5)what is the table  technical characteristics?
    6)waht is buffering? types?
    7)what is the use of interactive reprt?
    8)what is the use of alv?
    9)what are problems  u have faced when u r doing projecs?
    10)what is the diff b/w template & tables?
    11)which function module used for transferring from one version to anthoer version?
    12) what determines the sequence in events blocks are processed?
    13)in what case are otional parameters  allowed in the passig of parameters?
    a) functions  b) forms
    14)what relationship can be  esatblished in watch points?
    15)what are requiremets of reading hashed internal table?
    16)what does a context object provides?
    17)what access methods are avaliable  for accessing internal table?
    18)what operations are allowed when processing data of records in internal  table?
    19)what tasks could be performed in SAPNET?
    20)what is search  help?
    21)what is the lock object?
    22)what is diff b/w domain and data elemnt?
    23)what is diff b/w check table and value table?
    24)what are the control break statements?
    25)how to display SUM?
    26)what is the diff b/w select single  & select upto one row?
    27)collect what it did?
    28)how to findout data in internal table?
    29)syntax for describe statement?
    30)hwo to findout if internal table is empty or not?
    31)hwo to transfer data from one internal table to another internal table?
    32)how to modify internal table?
    33)Read statement syntax?
    34)what is the default event?
    35)i have write only top-of-page event in that  write: / 'welcome' what will happen?
    36)what is message-d?
    37)what is the diff b/w with events &  without events?
    38)what is the purpose of Direct input method?
    39)what is local object?
    40)is it possible  to back ground process in call transaction? how?
    41)what are diff types of errors?
    42)what are the diff types function modules used in layout set?
    43)what is the diff b/w open_form & start_form?
    44) how to define  logo?
    45)after modification how to send modified form to modified print program?
    46)what are the symbols in sap scripts? functionality of them?
    47)how to write a Report in another Report?
    48)syntx fr submitt &what it did?
    49)what is the land scape of ABAP?
    50)what is index? types?
    51)hwo many secondary indexe are possible to create?
    52)what is diff b/w select single * from & select upto one row?
    53)in my 100 records 55th record is need some changes and that record how to send body to header line?
    54) what is the use of indexs?
    55)what is the diff b/w page area & roll area?
    56)diff b/w interface & conversion?
    57)how we configured ports andpartner-profiles?
    58)what si the Enhancement and what u had did with user-exist?
    59)who can extend Idoc?
    60)how many types of select staments?
    61)what is header line?
    62)what is diff b/w internal table work area & table work area?
    63)if we don't have header line what will happen?
    64)when the user-exist will triggered? for which purpose u have used and where u have written?
    65) how we linked the tables?
    66)in at selection-screen and at user-command event which one is triggred?
    67)what is the use of at pf-status? where did u use it?
    68)is it possible to run Host command inSAP environment? how do u run it?
    69)what are user-exists? what is involved in writting them? what precautions are needed?
    70)what is the version management?
    71)if u send the objects from dev server to production server,but get some  bugs so those bugs how to handle?
    72)if u upload the data after that. i din't put committ,then what happen?
    73)how to maintain dataintegrity?
    74) how to validate fields?
    1)how u connect the unix platform from SAP server?
    2)what is database object ? Runtime object?
    3)How to populate BDC table control?
    4)How to implemnt intreactive  list in alv?tell me fumnction module for that?
    5)How to transfer from data list to transactions?
    6)How can u add anew field to Script?
    7)what are problems in processing batch input session?
    8)diff b/w select-options & ranges?
    9)what is meant by satck list?
    10)if u don't have header line for internal table what will happen?
    11)what is the max no of calling modes stacked at one time is?
    12)what is collect command ? how it is works?
    13)if u want come back from 15th list to basic list waht will u do?
    14)what is the default mode of transfers data to and from application server?
    15)what is the purpose of EXTRACT parameter?
    16) how will u delete duplicate records from internal table?
    17)in for all entries clause of select statement ,if internal table is empty what will happen?
    18) How can u find the no of records in a table?
    19)Billing and invoice details are where stored?
    20)what is the typical structure of ABAp program?
    21)what is diff b/w ABAP program &user defiend program?
    22)can a transperent table exists in a data dictionary and not in the physical database?y/n
    23)diff b/w Collect & Append?
    24)logical unit of work means?
    25) How many types of  lock objects exists? what are they?
    26)what will u don inSPRO?
    27)how many tyeps buffers?
    28) what wil do by Maintainance generator?
    29) what is o/p type? what is done by this?
    30)program for BAPI?
    31)what is ALE implementation progarm?
    32) say the function code to catch function code F2?
    33) what is IDOC& how u can extend the IDOC?
    34)what is the advantage of LSMW?
    35)how many types of symbols u have on scripts & in which order they can executes?
    36)what is purpose of data conversion into SAP format from Legacy?
    37) what si the t-code for watch the flat file in application serever?
    38) what is purpose of driver program?
    39)what is contents of Functional Spec?
    40)what is contents of Technical Spec?
    41)How do u diasble a control in a selection-screen logic?
    42)what is source structure?
    43)what is target structure?
    44)if u don't have the access to modify the print program then how do u insert the text elemnts?
    45)how can u call report in another program?
    46)specify the events for classic & intractive  reports in order?
    47)say some usally used system fields in our programs?
    48)how can u create check box in alv?
    49)diff b/w select-options & parameters?
    50)how can u create  labels in scripts?
    51)how u display the data in scripts?
    52)What is the diff b/w At selection-screen output & initialization?
    53)how u trap the errors in call transations?
    54)diff b/w scripts & smart forms?
    55)types of internal tables & explain them?
    56)how many types of loops?
    57)Diff b/w Synchronous & Asynchronous RFC
    58)How u place data in table cotrol?
    59)what are the methods execute in LSMW?
    60)diff b/w sy-index & sy-tabix?
    61) in call transaction bckground process which mode u prefer?
    62)what is configuration of ALE?
    63) what are all read operations in itab?
    64)diff b/w search help & pov, which one trigger first?
    65)where u can u do the validations in report?
    66)what are the events in Module program?
    67)diff b/w call transactions & session method and wher trap erros in both methods? how?
    68)diff b/w scripts & reports?
    69)how u define text elemnts inscripts?
    70)what are the function modules inscripts?
    71)how u diplay the data in scripts?
    72)how  do u do  the perfomance testing?
    1)when it wll triggerd initialization event? Before how many events will triggerd?what are they?
    2)how many types of meaasges ?
    3)what is use of Dump analysis?
    4)what is the use for all entries?
    5)what Is the diff  b/w check & continue?
    6)whenever use EXIt statement whappend in loop … endloop   and within subroutines,  within start-of-selection ,with in end-of-selectio  and in initialization?
    7)what is the diff b/w value table and check table?
    8)in data element level I used search help and in domain level I used value table which will be shows our criteria?
    9)without doing any changes in printprogarm  I want to add some fields how can?
    10)how many mainwindows in one page? What is the use of remaing main windows?
    11)what is sy-index & sy-tabix?
    12)what are the qualities u have to maintain to ur developments?
    13)Smart forms are client  independent how u  justify that?
    14)in keyindexex what is the relationship 1:n?
    15)in dynpro how can insert radio butto?
    16)How can u use search help?
    17)in MEDRUCk(ME21)  I have changes some fields so immediate those changes send to Vendor through e-mail or fax? What is procedure?
    18) I worked in foreground one session successfully so tommarow I have to work same session in back ground then what happen?
    19)in bdc table control wher u have to face problem?
    20)In alv grid  control at the top  I want header/ how can u display?
    21)how can u print long text in scripts?
    22)how to display Text every 4 lines after?
    1)how can  u create u r own types in an ABAP report?
    2)which system variable is encounted in loop counter?
    3) which system variable is store the record counter?
    4)does a select statement carry out any authorization chek?
    5)what is function of environment variable sy-lisel in interactive reports?
    6)how can we identify which button is pressed?
    7)diff b/w se09 ,Se10?
    8)table in which entry for development class is made?
    9)which client is authorized to create the workbench oragnizer configuration?
    10)can we provide more than one PBO PAI for one screen?
    11)which view can even possess one table?
    12)What are field symbols?
    13)which is ued to release to lock?
    14)what are the various types of customer –exists?
    15)what is port?
    16)what  are the selection-text?
    17)can we use  perform in SAP scripts?
    18)what is the t.code for table maintainance?
    1)write  validation logic for parameters option? Wher do u write ?(in at selection-screen or start-of-selection)?
    2)what is the diff b/w  ‘  ‘IN’ jn where condition and without ‘IN’ condition in where condition?
    3)how can u display 21st secondary list ?explain procedure?(code?)
    4)what is the diff b/w sorted and hashed tables?
    5)can write statement in initialization triggers first or write statemnt in start-of-selection?
    6)what can ud o if have no authorization to recording in BDC?(without F1 and Technical help)?
    7)what is the diff b/w SAPLUW and DBLUW?
    8)expalin VPN process?
    9)what is the text in reports and scripts?
    10)how can u  release ur objects to end user?
    11)write genereal statement to display dat-range?
    12)explain pricing procedure in sap?
    13)how can u display barcodes in sap scripts?
    14)explain flow of S.D?
    15)what are the performance techniques expect Modularization techniques I want remaning?
    1)what is the purpose of initialization?
    2)what are control break  statements?
    3)what is the diff b/w ‘at new and ‘on change’?
    4)what is the use of end-of-selection?
    5)in Runtime analysis what ar the main area will be displaying for tunnning?
    6)what are the ways to improve the performance the report?
    7)What is the diff b/w maintainance view and databe view?
    8)what are the type of search help?
    9)what is the diff b/w include structure and append structure?
    10)how can we generate new item in BDC program or the transaction ME21?
    11) in calltransaction while transferring the data what happens idf the power goes off?
    12) what are the standard  programs for  transfer the data for material master and vendor master?
    13)whare we can assign the page size?
    14)how can we call a subroutine in scripts?
    15)how many max pages  we have to design for script ?
    16) what is use of protected and end protected?
    17)what are the types of functional modules?
    18)how many types of screen filed validations? What ate they?
    19)how to convert  the scripts to smartforms?
    20)what is the history of purchase order? Wher is it store?
    21)can  we debug smartforms ?
    22)what is the material history and where is it store?
    23)what are the functional modules ued in ALV?
    24)what is the fieldcatalog merge use?
    25)how u print the heading in ALV ?
    26)what is the t.code for BDC?
    27)what is the purpose of application server?
    28)what are the text elements ? what is the use of text elements ?
    29)how u create vertical line  and horizanatal line in reports?
    30)what is the purpose header line?
    31)what is the purpose of occur  clause?what default area it occupies?
    32)what are  text elements?
    33)how many secondary indexes we can  create for a table?
    34)What is the ue of st05?
    35)what is the foriegn key table?and check table?
    36)what are some essential steps for loggig changes made to SAP data?

    Hi Mahesh,
    Very good questions.  Infact it's very difficult to answer all the questions.
    You can search many FAQs in net...
    If you have any specific questions related to single topic, Post message for each.
    I can send some of FAQ documents to u
    Answers
    1) Using Index like Field(1)-1st record field , Field(2) - 2nd record field etc... in Table control.. we can handle BDC
    2) BAPI will be programmed using OO concepts more.. and as Interfacing is more enhanced here than normal FM.
    etc...
    Regards,
    Manjunatha

  • Facing probelm in PF status in ALV Grid display

    HI,
    i have created a ALV grid intractive report in that i have a check box and Traffice lights , when user select the check box and press save then then traffice light color should changes to green it's doing well..but my problem is..for second time display i am calling same function module to display with chnaged traffice light color.here my probelm is after second time display when i press back it's taking me to first list not to the selection-screen. pls suggest me wot to do now for directly going to selection-screen.
    Thanks,
    saleem.
    points to awarded for all usefull answers.

    Hi again,
    1.
    <b> and press save then</b> then traffice light color should changes to green it's doing well..but
    U must have written some code
    when the BOLD occurs.
    2. This must be the call back command
      (FORM subrouritine, which the alv call backs,
       on a user command)
    3. In the same u have to write.
    4. For your reference,
       just copy paste this code.
    a) it will show records from t001 table
    b) if u double-click on any row,
        it will change the 2nd column to 'CLICKED'
        and refresh the data again.
       (it won't show alv once more in new screen)
      c) then when u do back, it will go back.
      d) See BOLD code.
    5.
    REPORT abc.
    TYPE-POOLS : slis.
    Data
    DATA : BEGIN OF itab OCCURS 0.
            INCLUDE STRUCTURE t001.
    DATA : flag tyPE c,
           END OF itab.
    DATA : alvfc TYPE slis_t_fieldcat_alv.
    DATA : alvly TYPE slis_layout_alv.
    Select Data
    SELECT * FROM t001 INTO TABLE itab.
    *------- Field Catalogue
    CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE'
      EXPORTING
        i_program_name         = sy-repid
        i_internal_tabname     = 'ITAB'
        i_inclname             = sy-repid
      CHANGING
        ct_fieldcat            = alvfc
      EXCEPTIONS
        inconsistent_interface = 1
        program_error          = 2
        OTHERS                 = 3.
    Display
    alvly-box_fieldname = 'FLAG'.
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
      EXPORTING
        it_fieldcat             = alvfc
        i_callback_program      = sy-repid "<-------Important
        i_callback_user_command = 'ITAB_USER_COMMAND' "<------ Important
        is_layout               = alvly
      TABLES
        t_outtab                = itab
      EXCEPTIONS
        program_error           = 1
        OTHERS                  = 2.
    CALL BACK FORM
    FORM itab_user_command USING whatcomm TYPE sy-ucomm whatrow TYPE
    slis_selfield.
    IMPORTANT.
    <b> 
      data : m type sy-index.
      m =  whatrow-tabindex.
      itab-butxt = 'CLICKED'.
      modify itab index m.
      whatrow-refresh = 'X'.</b>
    ENDFORM. "ITAB_user_command
    regards,
    amit m.

  • ORA-6502:  PL/SQL: numeric or value error: Character string buffer too small

    I then ran the sql in APEX- SQL tool and got the following error
         URL Encoded SQL length exceeds 32k limit
    Is there a paramter that controls this value or is my only option to shrink the column data in the intractive report ?
    Note:  Toad renders data for the SQL - only an issue in APEX.
    Thanks

    Issue in APEX, sorry.. You will need to shrink the # of characters you are returning down in your select....
    Thank you,
    Tony Miller
    LuvMuffin Software

  • How & Where Assign & Pass Request in package application

    hi friends,
    i am using package application to learn more about apex.here i have face some problems ,
    On page no 1, there are an intractive report,but it shows only Customer Name, Referencable, Users, Summary, Web Site, Category ,Status column in intractive report but there are more column in Report Attributes ,
    Plese tell me how does developer hide the unnessary column in intractive report on page no 1.
    2nd Problem is,
    i am not getting how & where developer assign & pass request LAST_PAGE_VISITED .Developer create an processes name Load Data on page no 1
    if :REQUEST = 'REPORTS' then
    :LAST_PAGE_VISITED := 20;
    else
    :LAST_PAGE_VISITED := 30 ;
    end if;
    i am not getting the meaning of this code and where developer pass and assign this Request.
    What are the role of this code.
    My Login Details
    Workspace-->customertraker
    username-->[email protected]
    password-->piwufo
    Application --> 2923
    Thanks
    Manoj

    i just need to have my message be dynamic. However, i am not using validation.xml.
    i can either use
    in My actionClass.java, i am using
    }ResourceBundle res = ResourceBundle.getBundle("struts/resource/MessageResource");
                                                     res.get("message.notify")     
                      //Is it possible to set the value of {0} from here on my resource.properties?
               or in my JSP
      <fmt:message key="message.notify"/>Thank you

  • Search bar conditionally display

    Hi All,
    Iam using Apex 3.2
    iam using Intractive report.here i need to display the serch barof interactive report based on condition.
    But In report Attributes given Only YES /NO option Only.
    But i need Conditional Display.
    I f Any One knows Pls Reply me ....
    Thanks in Advance
    user11366851

    Hi,
    Maybe something like this to page HTML header
    <script>
    function hideIrToolBar(){
      var lHiddenItemVal = $v('P5_HIDDEN1');
      if( lHiddenItemVal == 'S'){
        $x_Hide('apexir_TOOLBAR');
      }else{
        $x_Show('apexir_TOOLBAR');
    </script>And then to page HTML Body attibutes
    onload="hideIrToolBar();"And remember set Cursor focus to "Do not focus cursor" from Page Display Attributes
    Br, Jari
    PS: and take tip from Munkys post
    Edited by: jarola on Nov 17, 2009 3:28 PM

Maybe you are looking for

  • Mutt/Offlineimap Sent mail is showing up in Gmail Inbox

    Hi, I am just starting my journey with mutt and quite like the interface thus far but I am having trouble with sent emails showing up in my Gmail inbox.  It is a little annoying to always have my sent emails appear as unread in my inbox.  In my searc

  • Inferior quality when viewing a built DVD in on a computer

    I've seen a few postings with similar problems but have yet to find any good solutions. I'm creating a DVD and many of my client's clients will be viewing it on computers instead of NTSC monitors. No matter how high I set the encoding bitrate in DVDS

  • Interactive Image: Text Styles?

    Is there a standard text style we can edit to modify what shows up in the text boxes when an interactive image zooms in? According to the Style menu it's "Body Bullet" text, which just by looking at it you know that's not right. I don't see an "Inter

  • DeskTop Manager and OS X Lion

    With Lion due to be released in July. Does anyone know whether DTM will be compatible with it? Regards Mark Solved! Go to Solution.

  • Calling a java application from within another class

    I have written a working java application that accepts command line parameters through public static void main(String[] args) {} method. I'm using webMethods and I need to call myapplication from within a java class created in webMethods. I know I ha