Find the Standard/Custom programs

Hi All ,
Is there any way to know the usage of LIFNR in selection screen of reports (both standard / customised).Upon trying Where Used list and RPR_ABAP_SOURCE SCAN many hits were traced but found dificult to check all the hits .
Thanks.
Raj...

Hi,
Then i guess, you have to use the where used list, but in where used too you can restrict the search by using select range
Shruthi

Similar Messages

  • Standard/Custom program to set deletion flag for Purchase Requistions

    Hi all,
    If any of you know the Standard/Custom program to set deletion flag for purchase requistions, please let me know. It would be of great help.
    Thanks in advance,
    Karthik

    Hello
    Bapi BAPI_REQUISITION_DELETE will help you.

  • Where can we find the standard program for scripts and smartform for vl02

    where can we find the standard program for scripts and smartform for vl02
    regard,
    anil

    If it is a standard Script Output see that all config in NACE tcode was done correctly and in the Application document the output type was properly defined and attached to a medium, partner and all communication related things like printer name, when to print the output and number of messages etc are entered in the document
    the go to the related application Tcode
    (for sales order goto VA02 or VA03)
    (delivery -VL02N or VL03N)
    for Invoice VF02 or VF03
    for PO -goto ME9F
    enter doc number, Issue Output to -> screen/printer
    then see the output
    step 1 : copy the z layout into testing client thru SCC1.
    step2 : go to se71 and check modified layout.
    step3 : if it is under logistics.. go to TCODE "NACE".
    u will see various applictions for each business process.
    there u have configure ur related layout according to requirments,
    for example u consider for Request fo Quatation..
    there is APPLICATION called "EA"
    click and enter into it. configure it with ur requirments, for help consult with ur functonal consaltant, and save it.
    step 4 : goto tcode ME9A for requst for quatation(RFQ).
    step 5 : enter test data avalable and check it with message display.
    it is same for other applications like Contract agreament --> ME9k
    invoice --> vl02n
    and goes on..
    Reward points for useful Answers

  • How to find the standard smartform,sap scripts and theur driver programs

    Hi friends,
    can any one tell me how to find the standard smartforms and their driver programs and same for scripts also.
    bye
    sasi

    Hi sasidhar,
    1. Either standard or Y sapscript layouts,
       we can check their standard programs
       in this manner also.
    2. goto se71
       open the layout in DISPLAY mode.
    3.  FORM------> CHECK -
    > TEXTS
    4.  a small window will come.
        click ok (tick button)
    5. Again a new window will come
      which will list out all the DRIVER programs,
      which use this layout.
    regards,
    amit m.

  • How can we find out Standard Modified Programs

    HI Friends,
               How can we find out the Standard modified program.
               The Standard Programs which are modified by user using Acess Key.
    Thanks,

    In table ADIRACCESS you will find all objects for which an access key has been used.
    regards,
    John.

  • Execute jar file: "could not find the main class" program will terminate

    Hey,
    I am new to Java. I have started to make a small java program which supposed to help me at my studies to lean the Dominic Memory System. I have used the latest version of Netbeans 5.5.1 to build my program in. I have two problems which I cannot figure out how to solve, please help me.
    The first problem is that the java script I have made works when I compile it in Netbeans, but when I create a Jar file it does not work. I receive a pop up message in windows ?could not find the main class program will terminate? when I execute the jar file.
    The second problem I have is that I need to compare the strings generated by the "numbers" and "TIP" and if the numbers is not identical the numbers in the ?Center? JPanel should be highlighted as red.
    If anyone would like to clean up the code I would be pleased. I have copied quite a lot from anyone because of my one lack of knowledge.
    * GoListener.java
    * Created on 12. september 2007, 21:48
    * To change this template, choose Tools | Template Manager
    * and open the template in the editor.
    package grandmaster;
    import java.awt.event.*;
    import javax.swing.*;
    import java.util.Vector;
    import java.util.StringTokenizer;
    import java.awt.Color;
    * @author Computer
    public class GoListener implements ActionListener {
    private JTextField viewer;
    private JTextField TIP;
    private JTextField freq;
    private JTextField max_num;
    private Vector numbers;
    public GoListener(JTextField j,JTextField k, JTextField m, JTextField f, Vector n) {
    freq = f;
    max_num = m;
    viewer = j;
    numbers = n;
    TIP = k;
    public void actionPerformed(ActionEvent e){
    int time = Integer.valueOf(max_num.getText());
    int f = Integer.valueOf(freq.getText());
    if (e.getActionCommand() == "GO") {
    for (int i = 0; i< time;++i) {
    int number=0;
    number = (int)Math.floor(100*Math.random());
    while(number>51){
    number = (int)Math.floor(100*Math.random());
    if(number<=9){
    viewer.setText(" "+"0" + String.valueOf(number) + " ");
    } else{
    viewer.setText(" " + String.valueOf(number) + " ");
    viewer.paintImmediately(viewer.getBounds());
    numbers.add(number);
    try {
    Thread.sleep(f*1000);
    } catch (Exception exp) {
    viewer.setText(" XX ");
    viewer.paintImmediately(viewer.getBounds());
    if (e.getActionCommand() == "VIEW") {
    try {
    //int numb = Integer.valueOf( TIP.getText() ).intValue();
    StringTokenizer tokenizer = new StringTokenizer(TIP.getText(), " ");
    String[] split = null;
    int tokenCount = tokenizer.countTokens();
    if (tokenCount > 0) {
    split = new String[tokenCount];
    for (int current = 0; current < tokenCount; current++) {
    split[current] = tokenizer.nextToken();
    viewer.setText(" " + String.valueOf(numbers) + " ");
    // k=numbers(1);
    /*while(c<i){
    String.valueOf(k).equals(split[1]);
    c++;
    TIP.setText(" " + split[2] + " ");
    } catch (Exception exp) {
    try {
    //string testit = numb.toString();
    //String str = "" + numb;
    //viewer.setText(str);
    //viewer.setText(numbers.toString());
    numbers.clear();
    } catch (Exception exp) {
    * Main.java
    * Created on 12. september 2007, 21:07
    * To change this template, choose Tools | Template Manager
    * and open the template in the editor.
    package grandmaster;
    import java.util.Vector;
    import javax.swing.*;
    import java.awt.event.*;
    import javax.swing.JButton;
    import java.awt.*;
    import grandmaster.GoListener;
    * @author Computer
    public class Main extends JFrame {
    private JTextField viewer;
    public JTextField TIP;
    // private TextInputPanel TIP;
    private Vector numbers;
    /** Creates a new instance of Main */
    public Main() {
    numbers = new Vector();
    JPanel p = new JPanel(new GridLayout(0,4));
    JButton go = new JButton();
    JButton view_num = new JButton();
    go.setText("Go!");
    go.setVisible(true);
    go.setActionCommand("GO");
    view_num.setText("VIEW");
    view_num.setVisible(true);
    view_num.setActionCommand("VIEW");
    JTextField max_num = new JTextField();
    max_num.setText("5");
    JTextField freq = new JTextField();
    freq.setText("1");
    viewer = new JTextField();
    viewer.setText("XX");
    TIP = new JTextField("");
    p.add(go);
    p.add(max_num);
    p.add(freq);
    p.add(view_num);
    getContentPane().add(p,BorderLayout.NORTH);
    getContentPane().add(viewer,BorderLayout.CENTER);
    getContentPane().add(TIP,BorderLayout.SOUTH);
    setSize(200,200);
    GoListener g = new GoListener(viewer,TIP,max_num, freq, numbers);
    go.addActionListener(g);
    view_num.addActionListener(g);
    * @param args the command line arguments
    public static void main(String[] args) {
    // TODO code application logic here
    Main window = new Main();
    window.setVisible(true);
    }

    NetBeans questions should be posted to the NB site. It has mailing lists and associated forums.
    This tutorial from the NB site addresses running programs outside of NB
    http://www.netbeans.org/kb/articles/javase-deploy.html
    When you compare objects, use ".equals()" and reserve == for comparing values.

  • Cannot  see/find the  standard IDOC/BAPI in imported Business system

    Dear Friends ,
    We have installed the PI 7.1 and registered the CRM 7.0 via RZ70 in SLD of PI as techincal system and created the business system as well . Then i have mapped to the corresponding product and SWCV.
    But when i import the business system in ID , i couldn't find the standard(pre-delivered) sender and receiver  interfaces ( like IDOC etc., ) .
    Please provide your valuable inputs .

    Rangarajan,
    Have you added the correct SWCV to the BS and TS?
    i think you have not linked the TS and the Product correctly .
    Create  a Product->for this product create a SWCV->go to technical system reference the
    created product there->Go to BS and check select the TS created earlier.
    after doing above step , refresh sld cache and check again.
    Please refer this wiki post :
    http://wiki.sdn.sap.com/wiki/display/XI/WorkingwithSystemLandscapeDirectory+(SLD)
    Regards,
    Srinivas

  • How to exclude the standard Include programs in Code Inspector?

    I am running code inspector (SCi) on all the development objects using a package. But in certain repository objects standard include programs have been used. I want to exclude the standard include programs while running SCI on the package. What are the ways to achieve this?

    Hi,
    while defining an object set choose:(in the menu)
    Edit - Exclude View Maintenance Function Groups.
    This should exclude most or at least some of the includes from being checked.
    Kind regards,
    Hermann

  • Error msg Could not find the main class.Program will exit. in jar execution

    Hello,
    I have created a jar so that I can used it in the webapp.
    but when I click on it it says "Could not find the main class.Program will exit."
    I searched a lot in the net and found that it has to do with the manifest file.
    I even updated the manifest file using the command "jar umf main.txt filefolderupload.jar" with the class name mention along with the package heirarchy.
    (pakage heirarchy in /,\ and .)
    I am using JDK 1.5 . and have Updated JRE 1.6.
    Also tried with extending the class with JApplet, but in vain.
    Kindly help me in the above mention issue.
    tia,
    Sarwa

    This post hints at a number of misunderstandings on your part, and raises a couple of important questions.
    Note that this 'simple question' has a complicated answer. Given the complexity of it, it might pay to add Dukes to it, ..a lot of Dukes.
    The important questions are.
    1) Does this file/directory uploader need to provide the end-user with a file dialog in which they can choose a local directory to upload, or will a multi-file chooser do?
    2) Does this uploader need to upload to foreign sites, or does it upload back to its own server?
    Looking at this table I prepared to describe the [uploader/local file access|http://pscode.org/test/uploader/fileuploader.html] possibilities, if the answers to the questions are 'multi-file chooser will do' and 'home site only', the best option is a sandboxed app. launched using webstart (JNLP) - option 5. If either of those questions go the other way, option 6 (digitally signed with extended permissions) is needed.

  • How to find the Standard DFF Name  In oracle apps

    hi,
    How to find the Standard DFF Name In oracle apps
    thanks

    1. Open the form
    2. Choose Tools--> Diagnostics
    3. In the block field choose $DESCRIPTIVE_FLEXFIELD$
    4. Field will show the list of all the DFF's enabled for that form.
    5. Choosing one will display the name of the DFF in the value field.
    Thanks
    Nagamohan

  • The standard BDC program for FI

    hi all ,
    i would like to know the standard BDC program usd in FI , like for tcode fb01 or somethings else.
    Appreciate for any segguestion.
    thanks and regards.

    thanks
    another question,
    how the fb01 check a duplicated entry?
    any materials about this , i have seen that somewhere but can't remember it
    thansk

  • How to find the standard Layout(Forms) list in India Baseline version

    Hi,
         Can anyone suggest me how to find the standard layout(forms) in the India baseline version.
    i want total standard form(Scripts/Smartforms) name available in India baseline.
    Thanks in Advance!!

    Hello,
    Goto Se710> Do F4 in form.  In next screen goto Find->Technical Search function and execute it.  It will show no. of forms in the status bar at the bottom.
    Cheers,
    Balaji

  • Can't find the standard infoobject/infocube in BW system

    I have studied BI for only 2 months. When I try to extract data from R/3 system, I find that I can't find the standard Infoobject/infocube such as 0plant, 0purchaseorganize both in RSA5 and RSA6. Our basis team advice me to install a patch for my SAP gui. So could anybody tell me which patch should I install
    Best regards
    Edited by: Yang12 on Sep 16, 2009 4:04 PM

    Hi expert,
    I also has met this kind of issue , i can't found out infoobject( 0CO_AREA,0BUS_AREA,0RESP_PERS...) in BW(ECC6),
    And i have perform the steps base on your instruction,but still can't found 0PLANT(i have not install datasource),
    Please help me;
    By the way,
    Do we need install datasource at frist,then go to RSA1-> click on BI Contenct button on left -> click ........
    If yes,how does i know which datasource need be install;
    for installing 0PLANT - go to RSA1-> click on BI Contenct button on left -> click on object types -> Expand infoobject -> click on select objecst and clifk on find and type 0PLANT and click on transfer selections
    Edited by: 350761380 on Sep 16, 2009 4:50 PM

  • Error:-could not find the main class programe will exit(Java virtual mach)

    Hi,
    i changed the mainfest file for an executive jar file(judge.jar) using the command on dos :-"jar cvfm judge.jar c:\judge\MAINFEST.MF -C judge/ ." , but when i run this jar file again after making changes in mainfest file it is not working. an error encounter like "could not find the main class programe will exit how to solve"(Java virtual machine launcher).please suggest me how to solve this error.
    Thanks
    Ashwani Gupta

    Hi,
    mainfest file has a entry like "main -class: judge.repository.corpus"
    please tell me the solution of this error i am doing internship in national university of singapore......and my project is related to data mining.I am using judge.jar when i extract this jar files i saw there was no main-class in manifest file so i change it and make it again jar file using dos command.please suggest me how i can reomove this error.
    Thanks in advance.
    Ashwani

  • Which transaction do i find the existing custom idoc?

    Hi,
           Can you please tell me the transaction where i can find the existing custom idoc?

    Dear Subhash,
    To see the existing IDOC in any SAP system
    Use Trasaction code WE05 and select the criteria by date.
    You can see the list of IDOCS existing in the system.
    Best of Luck
    Praveen

Maybe you are looking for

  • Error while loading library fileQueries

    Hello, I am running runInstaller to install 10g database on Red Hat Enterprise Linux AS release 3. I get the following message: "There was an error while loading library fileQueries". This message is displayed after selecting "File System" radio butt

  • TO_DATE and bind variables in SQLJ

    Hi all I need to convert a date, in string format using TO_DATE in an INSERT INTO contained in a sqlj class. The reason for this is I am reading in data from a pipe delimited file created by a MUMPS application. (Don't ask:)). This works fine if I us

  • False Marketing and very unhelpful Customer Service

    I got an email from Best Buy ob February 4 about 3X Rewards Points Promotion. As I was planning on purchasing a 65" TV, I walked into BestBuy store on February 28, 2015 but could not find it available at that time.So, I thought I will purchase $1400

  • HP Mini 210-1110TV

    Hi ... my laptop have a problem in hard disk . When i open it it shown Boot Device Not Found .  What should i Do?

  • Any app to follow up with my questions to apple community?

    Any app that i can receive send apple community discussions on my iphone. I know you will be informed by your registered email. But i thought there might be an app actually you can deal with your comments and questions much more easily. Thanks