Can I modify standard program RFASLD20?

Hello experts,
I Get the modification option when I try to change the program RFASLD20.  Can I modify the program? 
I actually need to change the program at the FM FI_PAYM_FILE_OPEN , to add the Code page (unicode system).
Cheers,
Balaji

Hi Balaji,
I've never had a problem with the modification assistant not working. To modify a standard SAP report, you need a modification key from OSS. You should always use the modification assistant to record your amendments. Think carefully about whether there is another way of acheiving what you want -- perhaps using SUBMIT...EXPORTING LIST TO MEMORY, a couple of standard reports, and then merging them into yours.
You could copy the standard report, and modify the copy, but then you put yourself outside of SAP's maintenance and bug-fix track -- you might end up having to re-copy to incorporate new features. I'd always recommend modification over copying.
Thats all i can suggest........
Let me know if you need some help.
Manas M.

Similar Messages

  • How to modify standard programs

    HI FRIENDS..........
    is there any way to modify standard programs.....

    Hi Suresh,
    in the past it was necessary to modify standard programs. Today SAP offers lots of possibilities to modify programs without doing what SAP calls MODIFICATION.
    Have a look at the <a href="http://help.sap.com/saphelp_erp2005vp/helpdata/en/94/9cdc40132a8531e10000000a1550b0/frameset.htm">Enhancement Framework</a>, especially the different <a href="http://help.sap.com/saphelp_erp2005vp/helpdata/en/70/63da4023a28631e10000000a1550b0/content.htm">Enhancement Technologies</a>
    If you do not understand everything, don't worry: Nobody does but it gives you some hints.
    Let us know why and where you think about modification. I'm convinced there are many nice solutions on hand.
    Regards,
    Clemens

  • Modify standard program

    Hi all,
    I have copied the standard program of table BSIP to an ZBSIp.
    I wanted to add few more fields in the select opitons of this program . How can i do this,.
    Regards
    Priya

    Search globally 'SELECTION' you will find where the selection screen are coded. add your select options there and modify the program logic accordingly to accomodate those selection criteria.

  • Modified standard programs

    How do i get to know which standard programs were changed. is there any utility object that i can use that will give me a list of modified standard programs

    hi,
    chk out these links ,u will get an idea
    <a href="http://www.itcserver.com/blog/2006/07/11/standard-programs-that-every-abap-developer-should-know/">http://www.itcserver.com/blog/2006/07/11/standard-programs-that-every-abap-developer-should-know/</a>
    reward useful points.
    siva

  • Unable to Modify standard program RAZUGA01

    Hello abapers,
         I am trying to modify the standard program RAZUGA01.This is using logical database ADA.In this I am adding two new fields .When  I am trying to fetch data for the two fields from database  tables based on the third radio button on selection screen(group totals), I am not able to get asset number which is getting converted to some other format.Kindly suggest me some solution.

    Hi,
    How you solved this problem?
    I am facing the same problem.
    Please reply.................
    Regards,
    Bala

  • Re:   Modified Standard Program into Not Change mode without SSCR

    Hi
    We Have Changed Standard Program with help of SSCR key.Now that Program is in Change mode We want to put that program in to SAP standard Program mode(i.e.Display mode ).Is there any Procedure For this
    Thanks & Regards

    Hi
    Generally we do this using program
    RS_TRANSTRU_ACTIVATE_ALL
    Programe to activate Transfer Rules in BW
    use program RSDS_DATASOURCE_ACTIVATE_ALL to activate the data sources
    Regards,
    Venkatesh

  • How can I modify what programs are allowed to make changes to my computer?

    OK - I'm a bonehead, I was getting the message "Do you want to allow this program to make changes to your computer" every time I opened Firefox and fixed that problem by unselecting "run as administrator" BUT, in the meantime, somehow got into a screen that allowed me to select no security at all when opening a program. How can I get back to that utility so I can reset it to the default value?

    Check that Firefox isn't set to run as Administrator.
    Right-click the Firefox desktop shortcut and choose "Properties".
    Make sure that all items are deselected in the "Compatibility" tab of the Properties window.
    * Privilege Level: "Run this program as Administrator" should not be selected
    * "Run this program in compatibility mode for:" should not be selected
    Also check the Properties of the firefox.exe program in the Firefox program folder (C:\Program Files\Mozilla Firefox\).

  • Can someone modify this program plzzzz help................

    hi i am building a small application n i need ur help . I want to take password from console in hidden format.
    as i am not a good programmer plzzzz dont advice to use passwordfield or Jpasswordfield or setEcho or setEchoChar as i hav tried it .....as i am taking input from console...... if its possible plzzzzz help me
    here is the code
    import java.io.*;
    class login
         public static void main(String[] args) throws IOException
              String name,password1="",password2="",login1="",login2="";
              char ch12[]=new char[40];
              File f=new File("PASSWORD.txt");
              BufferedReader br=new BufferedReader(new InputStreamReader(System.in));
              if((f.exists())==true)
              System.out.println("Enter User name");
         name=br.readLine();
         System.out.println("ENTER THE PASSWORD");
         password1=br.readLine();
         login1=name+":~"+password1;
              else
    System.out.println("WELCOME TO VOS FOR THE TIME PLZ ENTER THE USER NAME N PASSWORD");
    System.out.println("Enter User name");
         name=br.readLine();
    System.out.println("ENTER THE PASSWORD");
         password1=br.readLine();
    System.out.println("plz CONFiRM THE ENTERED PASSWORD");
         password2=br.readLine();
    while(!(password1.equals(password2)))
    System.out.println("SORRY U HAVE Entered TWO DIFFERENT PASSWORDS");
    System.out.println("plz ENTER THE PASSWORD again");
              password1=br.readLine();
    System.out.println("plz CONFORM THE ENTERED PASSWORD");
         password2=br.readLine();
    login1=name+":~"+password1;
    byte ch[]=login1.getBytes();
         FileOutputStream out=new FileOutputStream(f);
         out.write(ch);
         out.close();
    System.out.println("USER NAME AND PASSWORD IS SAVED");
         System.out.println("ENTER USERNAME AND PASSWORD TO LOGIN");
         System.out.println("Enter User name");
         name=br.readLine();
         System.out.println("ENTER THE PASSWORD");
         password1=br.readLine();
         login1=name+":~"+password1;
              FileInputStream fis=new FileInputStream(f);
              int x=fis.available();
              for(int i=0;i<x;i++)
              ch12=(char)fis.read();
              login2=login2+ch12[i];
         if(login1.equals(login2))
    System.out.println("LOGIN IS SUCCCESSFUL");
    else
         System.out.println("INCORRECT USER NAME OR PASSWORD");
    do
    System.out.println("AUTHENTICATION FAILS");
    System.out.println("PLZ ENTER THE USER NAME AGAIN");
         name=br.readLine();
    System.out.println("PLZ ENTER THE PASSWORD AGAIN");
    password1=br.readLine();
    login1=name+":~"+password1;
              if(login1.equals(login2))
    System.out.println("LOGIN IS SUCCESSFUL");
              while(!(login1.equals(login2)));
    Message was edited by:
    omerali0527

    You need the latest JDK for this:
    http://java.sun.com/javase/6/docs/api/java/io/Console.html
    look at the readPassword() method.
    Next time please
    - use code tags (http://forum.java.sun.com/help.jspa?sec=formatting);
    - stop using that silly sms-language (plz = please, u = you, n = and).
    Thanks

  • Standard program modification logs

    Hi,
    Is there any way/transaction we can view or store logs from a modified standard program ?
    Something like the version management in the abap editor but it must display all the standard program that has been modified .
    The purpose is to easily keep track of all the changes, in case of system refresh/update.
    Thank you.

    version management will report changes for ALL ABAP objects, including those in SAP namespace.  is that what you're asking for?

  • Unicode Error in standard program

    Hi,
    Iam working on an upgrade project
    I am getting an error as below
    "In Unicode, DESCRIBE LENGTH can only be used with the IN BYTE MODE or CHAR mode"
    How to fix this error,   as  the error is  from STANDARD PROGRAM "Include /IXOS/LDC_CF01"
    I know the answer to fix it, But since it is a STANDARD PROGRAM ,how to modify standard program\
    Thanks,
    Arjun

    Dear Arjun,
    I had to make some adjustment to an upgrade recently where we also had to upgrade programs to be UNICODE compliant.
    And we had to do this for Custom and Standard programs.
    So, before writing a message for SAP, go to transaction:
    UCCHECK
    It was using this transaction that I adapted my Standard SAP programs.
    So you should be ok with this as well....
    If you have been there already, then by all means do write a message to SAP.
    Kind Regards
    /Ricardo Quintas

  • Acessing Standard programs

    Hi Can i acess standard programs with out Acess key

    Hi Manohar,
      You can able to  execute the standard program but not modify, if you want to modify take copy to another program and modify any thing in that this is one way to modify standard program
    another way is by using user exist you can modify if there is,
    There is one more possible for modify the standard program you can modify standard through your program also but becareful in that try the following code to modify standard program through your program.
    data: begin of itab occurs 10,
              line(130),
            endloop.
    read report <program name> into itab.
    Now standard program is in internal table -itab.
    Now you can modify itab by your requirment after that insert report again like this.
    insert report < program name> from itab.
    Note: Be careful when you modify standard program because these programs are used in some another places.
    Plz Reward if useful Answer,
    Mahi.
    Message was edited by:
            Maheswari Chegu

  • 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

  • Standard programs for smartforms

    Hi experts
       How can we find standard programs for smart forms

    Hi,
    Up to  4.7 version there are no standard smartforms. But you can find standard smartforms from 5.0 version onwards.
    Go to tcode smartforms then take f4 help you can get all list of smartforms there you can find them.
    Thanks
    sarada

  • Want to carry data from one standard program to another program in run time

    dear friends,
    how to Want to carry data from one standard program to another program in run time

    Hi,
    i dont know exactly the procedure, but using SUBMIT u can call another standard program in your program and can use that standard programs data. For more details check out F1.
    By

  • Can the standard program RFBIBL00 be run as a background job ?

    Hi all,
    Can the standard program RFBIBL00 be run as a background job for the call transaction mode.
    As I tried I got the job cancelled with message"Job RFBIBL00: Data does not match the job definition; job terminated".
    As i run it in foreground it executes properly.
    Why is it failing in background? Please help.
    Thanks ,
    Stock

    Hi,
    You need to copy the program RFBIBL00 & modify the program to build the logic to upload through application server. Then schedule the modified program in background & it wl work.
    Best regards,
    Prashatn

Maybe you are looking for

  • How to put Passwords on Pages/numbers?

    What is the procedure for saving a pages document with a password?

  • Stck issue

    hi gurus, Any new sales order that we have no stock and no open purchase order the delivery date should be based on the lead time for that part. Any new sales order that we have not stock and we have an open purchase order the delivery date should be

  • Disk Utility not showing same disk space as get info on HD

    Hi, My Macbook Pro was really slow and i did Repair Disk and it seems to work much better. the problem is that when i get info on my HD it shows me that there is 200 GB free but when i go to Disk Utility it only shows me that there is 73 GB free??? H

  • Database does not open automatically

    I installed the Oracle 8i 8.1.6 on xp pro and created an repository, But when ever i start my system the database instace does started but database does not open, it says oracle not available and i have to open the database manually at sql prompt. Ho

  • Why does Yahoo's pop-ups still popup even though pop up blocker is turned on and no exception for them?

    On Yahoo's page two thing happen... 1.) Ad will all of a sudden become whole page ad and 2.) continually get a facebook for yahoo pop up usually upon opening a yahoo related news link