SAP Std Program Modidfication

Hi Experts,
                 I am working with an object stating " SAP Std Program Modification" . I need to add four fields for the screen and i need to update the table as well to run the particular transaction effectively.
                 When i am searching for the exits in the package i did not find any exit [ user exit, screen exit, BADI etc..]  for the transaction. So Kindly come up with different types of ideas to meet this requirement.
Folks its a kind of urgency... so revert asap... thank you....
Thanks in Advance..
Pramod

Hi satish,
                 I  am workig with EWM [ Extended warehouse Management ] . in that i am adding fileds for /SCWM/WAVE  Transaction [ Wave Management].
Thank you for the response..
awaiting for u r further response...
Pramod

Similar Messages

  • Runtime Error while executing SAP Std Pgm as per note no - 64490

    Hi,
    I'm executing SAP Std Pgm RKEAGENV(It reorganizes the TVDIR entries and the maintenance modules) as per OSS Note 64490. This program is giving dump as given below:
    Short text
        Error when importing object "FIELDTAB".
    What happened?
        Error in the ABAP Application Program.
        The current ABAP program "SAPLKEFT" had to be terminated because it has come across a statement that unfortunately cannot be executed.
    Error analysis
        An exception occurred that is explained in detail below.
        The exception, which is assigned to class 'CX_SY_IMPORT_MISMATCH_ERROR', was
         not caught in procedure "READ_INDX" "(FORM)", nor was it propagated by a RAISING clause.
        Since the caller of the procedure could not have anticipated that the exception would occur, the current program is terminated.
        The reason for the exception is:
        When importing object "FIELDTAB", the structure did not match the structure of the target object. The error occurred in component no. 58.
    Missing RAISING Clause in Interface
        Program                                 SAPLKEFT
        Include                                 LKEFTF02
        Row                                     18
        Module type                             (FORM)
        Module Name                             READ_INDX
    Please help me hoe to come out from this problem..
    Param.

    Hi Param.
    We are facing the same error. Were u able to resolve this?
    Any suggestions would be helpful
    Thanks.

  • Adding a Z Field onto an SAP Std  Screen

    Hello Experts,
    I need to add my own Z field onto an SAP Std screen. The Z field already exist in the Append stucture of the table VBAK.
    How to do this? Will it come under a screen exit or field exit?
    May i know if i need to go for screen programming such as loop at screen..endloop. etc.
    Please explain in Tech terms(code) wih an example.
    Appreciate your response with points.
    Thanks
    Dan

    Hi
    1) Here you need only to design the dynpro using the structeu VBAK and the system'll automatically store them in VBAK table.
    Could you please tell me the dynpr prog involved?
    Use trx SE80:
    - choose program option and insert 'SAPMV45A';
    - Press display and open SCREEN node;
    - Search screen 8309, do a doubleclick and press MODIFY: now you're in screen painter.
    - To insert the input/output fields use the structure VBAK: in this way the headerline of VBAK'll automatically be filled. You need only to insert the code in screen flow (PBO and/or PAI) if you need to insert some controls;
    2) U should consider all saving are made in update task, so it should be better you create a z-function to update your z-table and call that fm in update tusk into USEREXIT_SAVE_DOCUMENT
    What is the code to do the above. Pls explian.
    If you see the user-exit USEREXIT_SAVE_DOCUMENT you can see a example:
    FORM USEREXIT_SAVE_DOCUMENT.
    * Example:
    * CALL FUNCTION 'ZZ_EXAMPLE'
    *      IN UPDATE TASK
    *      EXPORTING
    *           ZZTAB = ZZTAB.
    ENDFORM.                    "USEREXIT_SAVE_DOCUMENT
    So you have to create a your function module with importing parameters structurated like your Z-table, in this way you can transfer the record you need to update/insert. In the fm you insert all code you need to do the updating/inserting:
    FUNCTION 'ZZ_EXAMPLE'.
      MODIFY ZZTAB FROM ZZTAB.
    ENDFUNCTION.
    Max

  • Questions on the SAP payment program

    Hi everyone,
    Here are general questions the SAP payment program. Even partial answers would be greatly appreciated. Thanks in advance!
    Questions:
    What are the type of accounts involved in a payment transaction? In which case a customer account could be involved?
    What could "payment proposal run" mean and imply?
    What could be done as "editing a proposal run"?
    In the "print payment media" step, what does DME stands for?
    And in general, what are the diffenrences between a posting and an FI document?
    Is the payment run launched automatically?
    Thanks again
    SB

    What are the type of accounts involved in a payment transaction? In which case a customer account could be involved?
    You will make the payments to vendors and customers accounts. Customer accounts may involve where you would like to make payment for the advance that you have received from customers.
    What could "payment proposal run" mean and imply?
    Payment proposal is nothing but SAP will give you a simulation showing what are the invoices going to be paid, what are the invoice not going to be paid (exception) due to various reasons.
    What could be done as "editing a proposal run"?
    In Editing the Payament proposal, you can block a invoice, which you would not like to make the payment. You have to create the payment block specially for the purpose of payment proposal.
    In the "print payment media" step, what does DME stands for?
    DME - Data Medium Exchange
    And in general, what are the diffenrences between a posting and an FI document?
    Posting is posting a document into the system.
    FI document is a document having debit and credit totalled. To post a document both and debit and credit must be tallied.
    Is the payment run launched automatically?
    There is no automatic launching of Automatic Payment Program. You can schedule the job in background, but I would not recommend this. I would recommend the user to enter the parameters, run proposal, execute payment run and print the media.
    Regards,
    Ravi

  • Do we any SAP Standard program to Send IDOC of Type CODCMT01

    Do we any SAP Standard program for outbound processing for IDOC Type CODCMT01
    Message was edited by: Vipin Nagpal

    - If it is for test purpose only, you could use transaction WE19 (Test Tool).
    - As well you could write your own program and user MASTER_IDOC_DISTRIBUTE function module... but in this case you need to fill yourself the fields of the IDOC
    - as well you can have a look at function group KALE...
    E.g. function module K_DOCUMENT_SEND

  • How  to add custom fields to the  sap standard  program ukm_bp_display

    How  to add new custom  fields to the  sap standard  program ukm_bp_display .
    could u  please any one help me on this?

    Hello Kumar,
    You have to modify below structure, as this structure is providing the field catalog for output display (ALV).
    Here you can see there are a lot of include structures, so if you want to add fields in the output display you can add those fileds as an append structure to any of the below mentioned structures (Like ukm_s_account, ukm_s_bp_cms_sgm etc as per your requiremnt and positon at which you need to dispaly your fields.)
    DATA: BEGIN OF gt_grid_alv OCCURS 0.
           partner LIKE but000-partner,
           credit_sgmnt LIKE ukmbp_cms_sgm-credit_sgmnt.
            INCLUDE STRUCTURE ukm_s_account.
            INCLUDE STRUCTURE ukm_s_bp_cms_sgm.
    DATA:   credit_sgmnt_txt LIKE ukmcred_sgm0t-credit_sgmnt_txt.
          Gruppe Vector
            INCLUDE STRUCTURE ukm_s_bp_vector.
          Gruppe OBL = Obligo
          include structure UKM_S_BP_CMS_MALUSDSP_OUT.
            INCLUDE STRUCTURE ukm_s_display_segment.
            INCLUDE STRUCTURE ukm_s_bp_cms.
            INCLUDE STRUCTURE bus000_dat.
    *DATA:   icon(4).
          Gruppe RAST (Raster)
    DATA:
             rast01 LIKE ukm_s_display_segment-AMOUNT_GRID,
             rast02 LIKE ukm_s_display_segment-AMOUNT_GRID,
             rast03 LIKE ukm_s_display_segment-AMOUNT_GRID,
             rast04 LIKE ukm_s_display_segment-AMOUNT_GRID,
             rast05 LIKE ukm_s_display_segment-AMOUNT_GRID,
             rast06 LIKE ukm_s_display_segment-AMOUNT_GRID.
    DATA:    rast2_6 LIKE ukm_s_display_segment-AMOUNT_GRID.
    "Summe raster 2 bis 6
    DATA:  END OF gt_grid_alv.
    Another way is you can  go  to SE38, and you can create implicit enhancements.One enhancement point is available here in this required area. so create an implementation and add your fileds with data types.This way is also simple.
    Hope this will solve yiour problems.
    Regards,
    Antony Thomas

  • What are the SAP standard programs?

    Hi PM Guys,
    I have a question that is as below:-
    We have the following Master Data:
    1) Functional Location
    2) Equipment
    3) Equipment BOM
    4) Counter
    5) Catalog Profiles
    6) Task List
    a) General Task List
    b) Equipment Task List
    7) Maintenance Plans
    a) Time Based
    b) Performance Based
    Can you tell me the SAP standard programs available for the above master data which can be used for data migration of the above master data from the flat files into SAP system.
    Thanks in Advance,
    Vijaya Krishna

    HI
    you can find the standard program while executing the T code LSMW itself.
    type LSMW ,specify the description in the next screen select the <b>Standard batch or direct input</b> under the heading you can find the in the field <b>object</b> use F4 to find all the standard programs in SAP
    0400   Equipment         
    0410   Message (IH)      
    0420   Confirmation (IH) 
    0425   Measuring point   
    0430   Measurement Documen
    0440   Functional location
    0450   Object link       
    0460   Maintenance plan  
    0470   Equipment task list
    0480   FnctnlLoc.TaskList
    0490   Gen.task list     
    regards
    thyagarjan

  • How to go for some customize change in SAP Std.

    Hi all,
    I have to hide some in F-47 and other operation in some fields.
    My question is how to go for enhancing a SAP std. and how to identify the exits in which the code is to be return and how to activate that exit. Pls help me with the steps.
    Thanks in advance,
    Vivek

    To know what are the exits present in that t-code,
    steps are:
    1) go to se-93.: write the t-code of that transaction where u want to see the exits.: ex: va01.
    display : copy the package name.
    2) cmod : create the project name.
    3) under enhancements press f4 key, now paste the package name..n enter.
    4) it will give all the existing user-exits for that va01.
    try 4 this..

  • Runtime Error In copy Of SAP Standard Program

    How do people,
    I have copied a SAP standard program H99CWTR0 because I need to add an extra
    column output in the report. I have made a few chnages regarding the INCLUDES
    When I run the program I am getting the following runtime error:
    " The structure of the COMMON PART "DRIVER_DATA_EXCHANGE"
    in program "%_T01050" is different from the calling program .....
    My question is that it says the error in program "%_T01050"  !!
    But when I enter this in SE38 it says it doesn't exist !
    Any ideas???
    Andy

    Thanks mate for replying.
    I'll have a look at what you suggest
    Andy

  • Calling SAP script program in BAPI and want to display in html format

    Dear All,
    I am writing bapi and calling sap script program in it.
    I want output in html format pl suggest me
    same coding is working for report giving error in sapscript only.
    types: begin of tt_html,
                 html type w3html,
           end of tt_html.
    data: list_tab type standard table of abaplist.
    SELTAB-SELNAME = 'S_INVNO'.
    SELTAB-KIND = 'S'.
    SELTAB-SIGN = 'I'.
    SELTAB-OPTION = 'EQ'.
    SELTAB-LOW =  INVOICE_NUM1.
    SELTAB-HIGH = INVOICE_NUM2.
    APPEND SELTAB.
    submit ZSDRDINVPNBRPT with selection-table seltab
    exporting list to memory and return.
    CALL FUNCTION 'LIST_FROM_MEMORY'
      TABLES
        listobject = MTAB_REPORT_LIST
      EXCEPTIONS
        not_found  = 1
        OTHERS     = 2.
        CALL FUNCTION 'WRITE_LIST'
         EXPORTING
           WRITE_ONLY       = 'X'
          TABLES
            listobject       = MTAB_REPORT_LIST
         EXCEPTIONS
           EMPTY_LIST       = 1
           OTHERS           = 2.
        IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        ENDIF.
    CALL FUNCTION 'WWW_LIST_TO_HTML'
           TABLES
                HTML   = MTAB_REPORT_HTML
           EXCEPTIONS
                OTHERS = 1.
    LOOP AT MTAB_REPORT_HTML.
    ENDLOOP.

    For displaying output in html format,
    u can either use BSP ( Business Server Pages)
    or Webdynpro.
    Reward if helpful.

  • Using Sap Batch Program - RFBIBL00

    Hi,
    I have gone through the forum in trying to understand the standard sap batch program, but still unable to do so.
    I have a requirement where I need to use standard sap batch program RFBIBL00
    I need to use T.code: F-22 for processing
    I have a posting text file to upload. Please explain me how to use the standard sap batch program.
    I know there are 3 structures BGR00, BBKPF and BBSEG which needs to be populated before calling the program RFBIBL00
    Please explain me in detail.
    Appreciate all the help from your end.
    Madan

    This is a brief guideline from memory, so you will have to modify it to fit your exact requirements.
    1. Initialise the work areas, can be done by
    perform init_strukturen_erzeugen(rfbibli0) using '/'
    2. Fill your batch structure BGR00 and append to output file data itab
    3. Load your data from text file, and loop around it
    4. Fill your header structure BBKPF per document, append to output file itab
    5. Fill your lines itab BBSEG per document line, append to output file itab
    6. Repeat 4 & 5 for each document in text file.
    7. Create temporary output file on App server using contents of output file itab
    8. Submit rfbibl00 program using output file name
    9. Delete the temporary file (good practice)
    Hope that helps for starters

  • Is it possible to rearrange the order of SAP STD Selection Screen?

    Hi.
    Is it possible to rearrange the order of SAP STD Selection Screen?
    Example:
    IW69 has Location data selection at bottom of screen. 
    Is it possible to move that to top of the selection screen?
    We are on ECC6.0.
    Thank you,
    Brett.

    Hello Brett
    You may try to use GuiXT:
    [Adjusting Transactions Using GuiXT|http://help.sap.com/saphelp_sm32/helpdata/en/89/91b9db194f11d5b3a30050dae02d7c/content.htm]
    Regards
      Uwe

  • Copy Standard SAP Print Program

    Dear everyone,
      Do anyone can give some guide on coping the standard SAP print program - RVADDN01.
    Regards,
    Kit

    Go to SE38
    Enter RVADDN01
    Then Click on 'Copy'button
    Enter target pgm name 'RVADDN01' click copy button
    Check all check boxes Documentation, Variants, User Interface
    Screens, Includes, CLick copy button
    Then Check all check boxes for include pgms
    then enter target zprogram names
    RVADDN01_DG --> zRVADDN01_DG
    RVADDN01_OI --> ZRVADDN01_OI
    RVADOPFO   --->     ZRVADOPFO
    RVADTABL   -
    >ZRVADTABL
    then copy...
    Then Activate all pgms form SE38 intial screen...

  • Syntax error in SAP-standard program

    Hi experts,
    i am facing syntax error in sap standard program.how i can solve that error .
    Error in include LFKPZTOP  and errro is at line 70.
    please help me ASAP.
    Thanx & Rgds
    Zeba

    Hello Zeba,
    go to include LFKPZTOP and check in line 70.
    if you are not able  to solve that.
    post the same line, so that we can understand what is error.
    as of my checking the error is "iban is already defined in the include structure bus0bk ,
    but i think it dosn't effect your programing.
    Regards!
    Edited by: Prasanth M on Feb 10, 2009 5:04 PM

  • How to fnd SAP STANDARD program of Database table

    Hi to all,
    Please can anybody tell me , how to find out SAP standard program of database Tables  S070    (Breakdown Statistics).
    As this table contain two filelds Time To Repair and Time Between Repair , i want to knew how the standard program for the table have calculate them.
    i shall be thankfull to you for this.
    Regards
    Pavneet Rana

    Hi,
    Program for table is generated dynamically for each user ID, when ever you change the selection screen in SE16 or when you are executing the table entries for first time. Usually it starts with /1BCDWB/DB followed by table name. In your case it would be /1BCDWB/DBS070.
    Go to Se16, enter your table name and click enter. Once you are in selection screen, goto Menu=>system=>Status. Here you can see the program name.
    Thanks,
    Vinod.

Maybe you are looking for