Reg routines(ABAPER)

hi all
FORM routine_9998
  TABLES DATA_PACKAGE TYPE tyt_SC_1_full
  CHANGING
    ABORT          LIKE sy-subrc
  RAISING
    cx_sy_arithmetic_error
    cx_sy_conversion_error.
  Perform routine_9998
  TABLES
    SOURCE_PACKAGE
  CHANGING
    l_abort.
In inventory management , they r doing one transformation.
THEY r getting the following error., plz suuggest ur solution.
E:In PERFORM or CALL FUNCTION "ROUTINE_9998", the actual parameter
"SOURCE_PACKAGE" is incompatible with the formal parameter
"DATA_PACKAGE".
Regards
Karthik

Hi Ben,
My situation was that I had added some 'z' infoobjects to a Business Content DSO. When I activated this it naturally deactivated the transformation that linked this source DSO to a target InfoCube (thanks SAP). When I subsequently tried to reactivate the transformation I got a syntax error in the Start Routine.
To correct this I had to add my 'z' infoobjects to the appropriate definition in the Start Routine, which cured the syntax error and allowed me to activate the Transformation.
This is off the top of my head, but let me know if you need anything more.
Regards,
Andrew

Similar Messages

  • Routine (ABAP Code) in Transformation for the below sceaniro

    Hi Experts,
    Please update me with the routine (ABAP)(transformations)
    Source Char:
    Policy Start Date: ZSTRT_DTE (CHAR:Data Type: DATS)
    Target Char:
    Policy Expiry Date: ZEXP_DTE (CHAR:Data Type: DATS)
    FM: FIMA_VTBKOND_CALC_DATES
    Months(I_MONTHS) = 6
    Using Policy Start Date as input need to call the FM and months input is 6 MOnths and pass that result to Target char.
    Thanks

    Hi,
    try the following :
        CALL FUNCTION 'FIMA_VTBKOND_CALC_DATES'
          EXPORTING
            i_date   = source_fields-/bic/ZSTRT_DTE
            i_months = '6'
          IMPORTING
            e_date   = result.
    hope it helps...
    regards,
    Raju

  • Start Routine (ABAP) in Transformations

    Hi Experts,
    As i am new to BW please update me with the required ABAP Code or atlease with the skeleton  Code
    Source & target fields
    Emp_ID       ZEMP_ID  (CHAR)
    Start Date:  ZESTA_DT (DATS)
    End Date  :  ZEEND_DT (DATS)
    My requirment is to write a start routine that split the record in to 2
    Emp_ID-Start_Date-Termination Date
    0001----01/01/2005---01/01/2008
    0002----01/01/2007---
    (Termination date will be blank if emp is still working)
    As per my requirment i would like to see data in DSO as
    Emp_ID-Start_Date-Termination Date
    0001----01/01/2005---
    0001----01/01/2005---01/01/2008
    0002----01/01/2007---
    I want to split the records of an employee
    Please let me know if u need any information
    Thanks

    Hi bw learner,
    In Update rules, at any keyfigure, you write a routine with return table check box selected.
    Write the below code.
    first of all you need to declare a internal table of type data target
    (Example: DATA: ITAB LIKE /BIC/FZ_CUBE). here i consider Z_CUBE as data target.
    then loop the DATA_PACKAGE.
    loop at DATA_PACKAGE.
    transfer corresponding values from DATA_PACKAGE to itab.
    then assign itab-Termination Date = ZEEND_DT.
    append ITAB to RESULT_TABLE.=
    endloop.
    By this, whatever the records that are present in the RESULT_TABLE will be added into the Data target.
    I hope you can handle now.
    Regards,
    S P.

  • Update Routine ABAP question

    Hi,
    I am updating data between two ODS objects using some update routines. I would like to write the following routine (in pseudo code):
    ++++++++++++++++++++++++++++++++++++++++++++++++++++
    Check if the characteristic i am updating is not null
    IF COMM_STRUCTURE-field1 = 'value1'     AND
             COMM_STRUCTURE-field2 = 'value2'.
    RESULT COMM_STRUCTURE-field3.
    ELSE.
    Don't update anything
    END IF
    +++++++++++++++++++++++++++++++++++++++++++++++++++
    My questions:
    1. How i tell the routine not to update anything (as specified in the pseudo code)?
    2. How i can check that the characteristic i woul like to update is not null?
    3. What is the preferred debug method in case i do not use the PSA?
    BR,
    Xibi

    Thanks Siggi for your prompt and helpful answer. There are however some fundamental things which are not fully clear to me (BTW, where i can find some good documentation on ABAP for BW??):
    > Hi,
    >
    > 1. How i tell the routine not to update anything (as
    > specified in the pseudo code)?
    >
    > set the returncode to a value <> 0.
    I wrote the following:
    returncode = 1.
    Consequently the updated failed. Maybe i am doing something wrong but my intention is not to have the whole thing fail, but rather skip the update for some records.
    > 2. How i can check that the characteristic i woul
    > like to update is not null?
    >
    > if not comm_structure-<fieldname> is initial.
    The problem is that the characteristic i am trying to update is not contained in the source ODS but only in the target one. Will "if not comm_structure-<fieldname> is initial" still work in this case?
    >
    > 3. What is the preferred debug method in case i do
    > not use the PSA?
    >
    > Without psa, you need to add a endless loop:
    > statics: st_flag type c value '0'.
    >
    > while st_flag = '0'.
    > break-point.
    > endwhile.
    >
    >
    > Hope this helps!
    >
    > regards
    >
    > Siggi

  • Update Routine - ABAP code

    Hi,
    I am trying to write an update routine to calculate and populate fields in my ODS infoprovider.
    one of the key figure field in my update rules is 'No. of Days'. Based on the 'No. of Days' range, I want to send a key figure(Infoobject:Due amount) value to another infoobject(Bucket1, Bucket2, Bucket3 ect.)in my ODS infoprovider. For example, let's say,
    IF NO. OF DAYS = >0 AND <=30
       THEN TAKE THE DUE AMOUNT PUT IN BUCKET1
    ENDIF.
    ELSE IF
       NO. OF DAYS = >31 AND <=60
       THEN TAKE THE DUE AMOUNT PUT IN BUCKET2
    ENDIF.
    ELSE IF
       NO. OF DAYS = >61 AND <=90
       THEN TAKE THE DUE AMOUNT PUT IN BUCKET3
    ENDIF.
    I think, I know the data flow logic but I don't know how to code in ABAP language. If someone can give me some psuedo like ABAP code, I would appreciate your help with points.

    Hi Roa,
    I would do this in the start routine of the update rule.
    Here is a sample on how do this. You could use a case statement for this code also.
    Loop at Data_Packet.
    IF NO. OF DAYS = >0 AND <=30
    Data_Packet-BUCKET1 = DUE AMOUNT
    ELSEIF
    NO. OF DAYS = >31 AND <=60
    Data_Packet-BUCKET2 = DUE AMOUNT
    ENDIF.
    ELSEIF
    NO. OF DAYS = >61 AND <=90
    Data_Packet-BUCKET3 = DUE AMOUNT
    ENDIF.
    modify data_packet.
    endlloop.
    Cheers! Bill

  • Routine (ABAP Code)  in Transformation error

    Hi Experts
    Please correct the ABAP CODE written as Field routine in Transformations
    Requirment
    If  ZB_AMT = '0.00'
    then result should be '0.00'
    If  ZB_AMT <> '0.00' and
    SOURCE_FIELDS-/BIC/ZB_TPE1 = 'AMOUNT'
    the result should be
    CONCATENATE '$' SOURCE_FIELDS-/BIC/ZB_AMT INTO RESULT.
    If  ZB_AMT <> '0.00' and
    SOURCE_FIELDS-/BIC/ZB_TPE1 = 'PERCENTAGE'
    the result should be
    CONCATENATE  SOURCE_FIELDS-/BIC/ZB_AMT  '%' INTO RESULT.
    The code below is not working as it should please update me where i went wrong
    Source Fields
    SOURCE_FIELDS-/BIC/ZB_AMT (CHAR)
    SOURCE_FIELDS-/BIC/ZB_TPE1 (CHAR)
    CODE
    IF SOURCE_FIELDS-/BIC/ZB_AMT = '0.00'.
          RESULT = '0.00'.
        ELSE.
          IF SOURCE_FIELDS-/BIC/ZB_TPE1 = 'AMOUNT' AND
             SOURCE_FIELDS-/BIC/ZB_AMT <> '0.00'.
            CONCATENATE '$' SOURCE_FIELDS-/BIC/ZBON_AMT INTO RESULT.
            IF SOURCE_FIELDS-/BIC/ZB_TPE1 = 'PERCENTAGE' AND
               SOURCE_FIELDS-/BIC/ZB_AMT <> '0.00'.
              CONCATENATE SOURCE_FIELDS-/BIC/ZB_AMT '%' INTO RESULT.
            ENDIF.
          ENDIF.
        ENDIF.

    Your logic will not work, if your first check on amount is 0.00 fails, the other checks fail as well. I am not sure of the requirement but..try this..
    IF SOURCE_FIELDS-/BIC/ZB_TPE1 = 'AMOUNT' AND SOURCE_FIELDS-/BIC/ZB_AMT = '0.00'.
    CONCATENATE '$' SOURCE_FIELDS-/BIC/ZBON_AMT INTO RESULT.
    ELSEIF SOURCE_FIELDS-/BIC/ZB_TPE1 = 'PERCENTAGE' AND SOURCE_FIELDS-/BIC/ZB_AMT = '0.00'.
    CONCATENATE SOURCE_FIELDS-/BIC/ZB_AMT '%' INTO RESULT.
    ELSEIF SOURCE_FIELDS-/BIC/ZB_AMT = '0.00'.
      RESULT = '0.00'.
    ELSE.
    Do nothing or throw any message
    ENDIF.

  • End Routine ABAP to read from Internal table and do calculation.

    Hi All...
    I have completed some coding in a start routine to extract some fields from a DSO containing Master Data (Stock Age) into an internal table (the internal table has been defined in the global declarations area) which will then be read in the end routine.
    (the internal table will be read) at loadtime in the end routine and used in a calculation as described below.
    I.E
    GLOBAL DATA DECLARATION
    Data: ITAB1 TYPE TABLE OF /BIC/DSOTAB
    (DSOTAB has 3 fields PLANT, STYLE, 1STDATE (1STDATE IS A DATE FIELD)
    The start routine has the following code:
    IF ITAB1 IS INITIAL.
    SELECT /BIC/PLANT /BIC/STYLE /BIC/1STDATE
                    FROM /BIC/DSOTAB
                    INTO CORRESPONDING FIELDS OF TABLE ITAB1.
    This is working fine when run under simulation i.e ITAB1 is filled no problem.
    I then need to do a calculation in the end routine.
    1. First I have to find the record in the internal table using the key of PLANT AND STYLE from the RESULT_PACKAGE.
    The code i am using now is as follows....
        READ TABLE ITAB1 TRANSPORTING NO FIELDS WITH KEY
        /BIC/PLANT = <result_fields>-/BIC/PLANT /BIC/STYLE =
        <result_fields>-/BIC/STYLE.
    Once this record has been read I then have to perform the following calculation using the following additional fields
    <result_fields>-/BIC/DYS1ST is a NUMC field in the <result_fields> that will be be filled by the result of the calculation described below.
    <result_fields>-CALDAY is a date field which is already populated in the <result-fields> which is used in the calculation below.
    The Calculation required is a difference in days between two dates
    DYS1ST = CALDAY - 1STRED.
    The code i am using is
    If sy-subrc = 0.
         <result_fields>-/BIC/DYS1ST = <result_fields>-CALDAY -
         i_t_1stred_dso-/BIC/1STRED.
    So the whole section of code inside the LOOP at RESULT PACKAGE looks like this in the end routine
           READ TABLE ITAB1 TRANSPORTING NO FIELDS WITH KEY
        /BIC/PLANT = <result_fields>-/BIC/PLANT /BIC/STYLE =
        <result_fields>-/BIC/STYLE.
    IF sy-subrc = 0.
         <result_fields>-/BIC/DYS1ST = <result_fields>-CALDAY -
         i_t_1stred_dso-/BIC/1STRED.
    Im getting the error
    "ITAB1 " is a table without a header line and therefore has no component called "/BIC/1STRED
    Please can someone advise as to what I need to do to get this fixed please.
    Thanks in advance
    Stevo:)

    Hi,
    You will have to do few changes in your code as below,
    GLOBAL DATA DECLARATION
    Data: ITAB1 TYPE standard TABLE OF /BIC/DSOTAB.
    After that declare a workarea to read the values.
    DATA: i_wa_itab1 type /bic/dsotab.
    (DSOTAB has 3 fields PLANT, STYLE, 1STDATE (1STDATE IS A DATE FIELD)
    The start routine has the following code:
    IF ITAB1 IS INITIAL.
    SELECT /BIC/PLANT /BIC/STYLE /BIC/1STDATE
    FROM /BIC/DSOTAB
    INTO CORRESPONDING FIELDS OF TABLE ITAB1.
    This is working fine when run under simulation i.e ITAB1 is filled no problem.
    I then need to do a calculation in the end routine.
    1. First I have to find the record in the internal table using the key of PLANT AND STYLE from the RESULT_PACKAGE.
    The code i am using now is as follows....
    READ TABLE ITAB1 TRANSPORTING NO FIELDS WITH KEY
    /BIC/PLANT = <result_fields>-/BIC/PLANT /BIC/STYLE =
    <result_fields>-/BIC/STYLE.
    Once this record has been read I then have to perform the following calculation using the following additional fields
    <result_fields>-/BIC/DYS1ST is a NUMC field in the <result_fields> that will be be filled by the result of the calculation described below.
    <result_fields>-CALDAY is a date field which is already populated in the <result-fields> which is used in the calculation below.
    The Calculation required is a difference in days between two dates
    DYS1ST = CALDAY - 1STRED.
    The code i am using is
    If sy-subrc = 0.
    <result_fields>-/BIC/DYS1ST = <result_fields>-CALDAY -
    i_t_1stred_dso-/BIC/1STRED.
    So the whole section of code inside the LOOP at RESULT PACKAGE looks like this in the end routine
    READ TABLE ITAB1 into i_wa_itab1 WITH KEY
    /BIC/PLANT = <result_fields>-/BIC/PLANT /BIC/STYLE =
    <result_fields>-/BIC/STYLE.
    IF sy-subrc = 0.
    <result_fields>-/BIC/DYS1ST = <result_fields>-CALDAY -
    i_wa_itab1-/BIC/1STRED.
    Once you do this changes, your code will work fine.
    Regards,
    Durgesh.

  • End Routine ABAP running slow

    We have written the following end routine but performance is too slow because of the number of loops.
    We have introduced the third loop since we need the records in the specific order to populate ZCUST.  Can someone advise on how we can optimize
    Thanks
    $$ begin of routine - insert your code only below this line        -
        data: TEMP_RESULT_PACKAGE like RESULT_PACKAGE,
              WA_RESULT_PACKAGE type TYS_TG_1,
              WA type TYS_TG_1.
        TEMP_RESULT_PACKAGE[] = RESULT_PACKAGE[].
        delete adjacent duplicates from RESULT_PACKAGE
                        comparing DIVISION DISTR_CHAN SALESORG CUST_SALES.
        loop at RESULT_PACKAGE into WA_RESULT_PACKAGE.
          clear WA.
          loop at TEMP_RESULT_PACKAGE into WA
                           where DIVISION = WA_RESULT_PACKAGE-DIVISION
                           and   DISTR_CHAN = WA_RESULT_PACKAGE-DISTR_CHAN
                           and   SALESORG = WA_RESULT_PACKAGE-SALESORG
                           and   CUST_SALES = WA_RESULT_PACKAGE-CUST_SALES.
            if not WA-SHIP_TO is initial.
              WA_RESULT_PACKAGE-SHIP_TO = WA-SHIP_TO.
            endif.
            if not WA-CUST_HIE01 is initial.
              WA_RESULT_PACKAGE-CUST_HIE01 = WA-CUST_HIE01.
            endif.
            if not WA-CUST_HIE02 is initial.
            if not WA-BILLTOPRTY is initial.
              WA_RESULT_PACKAGE-BILLTOPRTY = WA-BILLTOPRTY.
            endif.
            if not WA-PAYER is initial.
              WA_RESULT_PACKAGE-PAYER = WA-PAYER.
            endif.
            if not WA-/BIC/OSSLSREP is initial.
              WA_RESULT_PACKAGE-/BIC/ZSREP = WA-/BIC/ZSREP.
            endif.
            if not WA-/BIC/OSBRO is initial.
              WA_RESULT_PACKAGE-/BIC/ZBRO = WA-/BIC/ZBRO.
            endif.
            if not WA-/BIC/OSCTREMP is initial.
              WA_RESULT_PACKAGE-/BIC/ZREMP = WA-/BIC/ZREMP.
            endif.
            if not WA-/BIC/OSOPR is initial.
              WA_RESULT_PACKAGE-/BIC/ZPRI = WA-/BIC/ZPRI.
            endif.
            endloop.
            sort TEMP_RESULT_PACKAGE by DIVISION DISTR_CHAN SALESORG CUST_SALES /BIC/ZBRO /BIC/ZSREP /BIC/ZREMP.
            clear WA.
                  loop at TEMP_RESULT_PACKAGE into WA
                           where DIVISION = WA_RESULT_PACKAGE-DIVISION
                           and   DISTR_CHAN = WA_RESULT_PACKAGE-DISTR_CHAN
                           and   SALESORG = WA_RESULT_PACKAGE-SALESORG
                           and   CUST_SALES = WA_RESULT_PACKAGE-CUST_SALES.
            IF NOT WA-/BIC/ZCUST IS INITIAL.
              WA_RESULT_PACKAGE-/bic/ZCUST = WA-/BIC/ZCUST.
            ENDIF.
          endloop.
          modify RESULT_PACKAGE from WA_RESULT_PACKAGE.
          clear WA_RESULT_PACKAGE.
        endloop.

    Hi,
    I have to suggestions for you:
    1. use typed field-symbols for every loop
    2. I try to understand, what you are doing: you will at least be sure, that every necessary/key infoobject is filled with the same value from your result_package.
    I would try to separate it in two steps:
    1) build up your temp_result_package and make your assignments.
    2) do only a efficient read-table (sorted/hashed with key DIVISION DISTR_CHAN SALESORG CUST_SALES /BIC/ZBRO /BIC/ZSREP /BIC/ZREMP and field-symbols) on your inside your loop.
    3. by using field-symbols, your modify table is obsolete and costs a lot of time.
    Kind regards,
    Hendrik

  • Reg routines creation in sales(VOFM)

    Hi All,
    How to create routnes in VOFM transaction.My requirement is I want to create routine numbers 701(RV45C701) and 705(RV60C705) how these routnies are related to RV45CNNN?.
    I want to check some conditions(to make sure item currency is creating as doc currency in the subsequest sales document) when I am creating sales order from contract.How do I get RV45C701 and RV60C705?Please give me step by step how to create routines in VOFM transaction and then what we have to after that.
    Once I have this include programs(RV45C701,RV60C705) I know how to validations.
    Kindly help somebody.
    Regards
    Mahesh

    Hi Jyothi,
    Thanks for ur information.I have one question I understood how to create routines.
    I know that it will ask access key when we are creating user routines.
    But do we need access key for writing code in this routines also?

  • Reg: Hr/abap

    hello friends
    "To use logical database PNP in your program, specify in your program attributes".
    what i have to specify in the program attributes?
    i want to be clear

    ex--
    infotypes : 0001.
    TABLES : PERNR.
    GET PERNR.
    WRITE :/ PERNR-PERNR.
    The selection screen which u see
    is coming from logical database PNP program
    In Human Resources (HR), the following logical databases can be used as a data source for HR InfoSets:
    PNP
    PAP
    PCH
    By selecting a logical database, you determine the HR data that can be reported on using an InfoSet.
    Logical Database PCH
    This logical database generally enables you to report on all HR infotypes. However, you are advised not to use this logical database unless you want to report on Personnel Planning data.
    Logical Database PNP
    Use logical database PNP to report on HR master data. It is possible to use logical database PCH to access this data, but PNP meets such reporting requirements more quickly because it is best suited to the task of selecting persons.
    Logical database PNP enables you to access HR master data and infotypes from Personnel Planning. For example, you have the following options:
    Reporting on the costs, number of attendees booked, and instructor for a business event on which an employee is booked
    Reporting on working time and planned compensation for a position that an employee occupies
    Reporting on the validity and proficiency of a qualification that an employee fulfils
    From a technical perspective, this means you can use PNP to report on all of the infotypes that exist for objects (infotype 1000) that have a direct relationship (infotype 1001) with the Person object.
    The ability to access infotypes from Personnel Planning using logical database PNP is a special feature that you can only use in the context of SAP Query and Ad Hoc Query. You cannot use this functionality for ABAP reports you programmed yourself.
    You can also use logical database PNP to report on data from Personnel Time Management (infotypes 2000 to 2999) and Payroll (special payroll infotypes for the USA and customer infotypes; for more information, access Customizing for the Human Resources Information System and see Payroll Results).
    Logical Database PAP
    Logical database PAP enables you to access data from Recruitment.
    also check this link:
    http://help.sap.com/saphelp_nw04/helpdata/en/ca/d08606a44f11d1950c0000e82de14a/content.htm

  • Reg : Using ABAP OO in Workflow

    Hi All,
    I have very simple question and this is the place where I am still lacking in workflow?
    1. How do I identify when to use ABAP class and when to use BOR in workflow?
    2. How do I identify which class to be used? Do we have any similar to BOR (SWO3) for ABAP class as well?
    3. Anything to be kept in mind while working with ABAP classes?
    Thanks & Regards,
    Raj

    How do I identify when to use ABAP class and
    when to use BOR in workflow?
    Upto my knowledge it depends on your thinking, but personnaly I feel that instead of creating a BOR, It is very easy to maitain Business classes ( When a class is used in workflow then we call it as Business Class , because it handles the business process )..
    How do I identify which class to be used?
    Do we have any similar to BOR (SWO3) for ABAP class as well?
    When ever you find a interface IF_WORKFLOW in the class definition under interface tab then you can make use of that class in the workflow  steps.
    Anything to be kept in mind while working with ABAP classes?
    [Check the blog series of Joycelin|http://www.sdn.sap.com/irj/scn/advancedsearch?query=joycelin+]

  • Reg: An ABAP program has to run two SAP Queries via BG to Appl. server

    Hi,
    I have a requirement to develop an ABAP program to be able to run the two Z Queries respectively and be able to download to the file to the application server via background.
        The selection is based on the Query Name, Usergroup and plant.How do we capture the data from the Queries and send it to the application server? Submit Statement is not working. There is a FM: RSAQ_REPORT_NAME from which we get the Query program name when Qery name and User group is given as an input.Through the above FM I have got the Query program name and used Submit statement with List_options to capture the Internal table data of that Query. As the Query program is dynamically generated and not available in TSTC, the Submit is not Working. Kindly suggest me is there any other approach to do it.
      Please provide me the solution.
    Thanks in advance.

    Please refer to thread [Authorization Error|WDA adobe error] where various solution to the problem specified by you are described.
    Regards
    Rohit Chowdhary
    Edited by: Rohit Chowdhary on Apr 7, 2009 9:41 PM

  • Links Reg HR ABAP

    Hi,
    This i am Venkat.I am intrested in Learning HR ABAP can anyone provide me the links for HR tutorials that have in depth info.And any sample programs in HR ABAP.
    Points will be given for all the contributors.
    Thanks,
    Venkat Chaitanya

    Hi,
    Check these.
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/PAPA/PAPA.pdf
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/PAPD/PAPD.pdf
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/PYINT/PYINT_BASICS.pdf
    http://www.atomhr.com/training/Technical_Topics_in_HR.htm
    http://www.planetsap.com/hr_abap_main_page.htm
    you can see some Standard Program examples in this one..
    http://www.sapdevelopment.co.uk/programs/programshr.htm
    http://searchsap.techtarget.com/originalContent/0,289142,sid21_gci1030179,00.html?Offer=SAlgwn12604#Certification
    These are the FAQ's that might helps you
    http://www.sap-img.com/human/hr-faq.htm
    http://www.sapgenie.com/faq/hr.htm

  • Reg : USMM Abap runtime Error

    Dear Friends,
    Greetings, I got ABAP runtime error in tcode USMM after implement the oss note 1150840  correction.
    ERROR is SYNTAX_ERROR
      Syntax error in program "RSUVM000 " this program unfortunatley can not be executed.
    The following syntax error occurred in program "RSUVM000 " in include "RSUVMINC  " in line 1605
    "The type "SX_ADDRESS" is unknown."
    ECC 6.0 with SQl Server 2005 and windows 2003 server
    Pls give suggession to me friends
    Regards
    keshav

    Hi Subash,
    Basis Patch level is SAPKB70013, ABAP KA70013.
    Now we have plan to updation of patches. Before that SAp asking USMM(User Measurement report) so i can execute USMM report.
    what can i do now?
    Regards
    kesav

  • Reg SAP ABAP C_TAW12_70

    Hi
    I have some queries regarding the syllabus of SAP ABAP certification C_TAW12_70. Could someone help pls,
    1. Under ALV Grid control topic, is ALV object model also included ?
    2. Is complete programming knowledge required to attend questions in WEBDYNPRO topics?
    Thanks
    Subha

    Hi,
    You can check this book,worth fully mapped to certification syllabus.
    http://www.sap-press.com/products/SAP-Certification-Success-Guide-%E2%80%93-SAP-Certified-Development-Associate-%E2%80%93-ABAP-with-SAP-NetWeaver-7.0.html
    Other than this you can find materials from google search.Rapid share sites.
    You can take some mock tests at code excellence.com
    Regards
    Keerthi

Maybe you are looking for

  • Open Purchase Order table.

    Hi I want to prepare a report which should display open Purchase Order quantity according to latest delivery date. I explain with a example. Say a material has 3 Purchase Orders with delivery date as 1st June,15th June and 20th June.Then system shoul

  • Need help in modifying the column length

    Hi Experts, I need to modify the length of a column from char(10) to char(5), but it's showing the error of: ALTER TABLE appr_group_table MODIFY (APPR_TBLNO CHAR(5)) It's showing the below error: ERROR at line 1: ORA-01441: cannot decrease column len

  • Tables in List Cells?

    I have been experimenting with some java swing gui components lately and I want to do the following, but have had no success thus far. I have a list which I want to post some information in relative to an option the user can select. I can post some n

  • InDesign Crashes Immediately when Opened

    When I open InDesign, it crashes! I'm on a Mac, and I worked on it around a month ago. I get a crash report (attachment). I found a duplicate (of just the InDesign app) in my applications menu, so i deleated it, because that one was damaged and obvio

  • How to unlock my iPhone 3g 8gb?

    how I could unlock my iPhone?