Change in Standard T.code

Hi,
Can anybody tell me example about changing the standard t.code CO01...
Like where i can do changes in exists.....
I tell u wat i do.....
I find the exits name for this t.code and click on its include....
Now i change here....in coding.....
i code in it.......like LOOP AT SCREEN.....
LOOP AT SCREEN.
IF SCREEN-NAME = 'SAPLCOMK'.
SCREEN-INVISIBLE = 0.
ENDIF.
MODIFY SCREEN.
ENDLOOP.
But it not work.....
Tell me wat can i write here.........or anywhere...........
Plz suggest...
<b>Anil Kumar</b>

hi Anil
STATTEXT            Modification exit for formatting status text lines
CCOWB001            Customer exit for modifying menu entries
COIB0001            Customer Exit for As-Built Assignment Tool
COZF0001            Change purchase req. for externally processed operation
COZF0002            Change purchase req. for externally procured component
PPCO0001            Application development: PP orders
PPCO0002            Check exit for setting delete mark / deletion indicator
PPCO0003            Check exit for order changes from sales order
PPCO0004            Sort and processing exit: Mass processing orders
PPCO0005            Storage location/backflushing when order is created
PPCO0006            Enhancement to specify defaults for fields in order hea
PPCO0007            Exit when saving production order
PPCO0008            Enhancement in the adding and changing of components
PPCO0009            Enhancement in goods movements for prod. process order
PPCO0010            Enhancement in make-to-order production - Unit of measu
PPCO0012            Production Order: Display/Change Order Header Data
PPCO0013            Change priorities of selection crit. for batch determin
PPCO0015            Additional check for document links from BOMs
PPCO0016            Additional check for document links from master data
PPCO0017            Additional check for online processing of document link
PPCO0018            Check for changes to production order header
PPCO0019            Checks for changes to order operations
PPCO0021            Release Control for Automatic Batch Determination
PPCO0022            Determination of Production Memo
PPCO0023            Checks Changes to Order Components
check which one ill suit ur req

Similar Messages

  • Extend/Change the Standard Fiori App code

    Hi,
    We have implemented FIORI App in our SAP landscape.After implementation app is running fine.I want the change the standard FIORI App code for a specific app like change the label,change the Background Image,Change the Font style etc.I googled and made changes according to the article provided.
    Steps done to change the Standard app code.
    1)Downloaded the source code and uploaded in eclipse.
    2)Created a Extension Project and replaced the entire view with my new view.
    3)Shared the project and submitted the changes in gateway system.
    4)Created semantic object and other things required to show the custom app on launch pad.
    5)But when I click on custom app developed on the Launch pad it is navigating to a blank screen with no UI elements.But standard app is working fine.
    So please tell me the correct procedure to change the app and show it on Launch pad.
    Tags edited by: Michael Appleby

    Hi Ritesh,
    Following are the steps I followed in extending a Fiori App.
    I am trying to extend HCM_LR_APV(Approve Leave request ) app.
    So I downloaded HCM_LR_APV BSP Application.
    I uploaded in Eclipse IDE .I created an Extension Project(ZHCM_LR_APV) for this.
    For testing I tried to change the Icon in one of the view.
    So I replaced the S3 view by placing the Original Code same and changing the Icon only.
    In Component.js file I gave the path to the parent application in Load function.See the below code for your reference.
    jQuery.sap.declare("hcm.mgr.approve.leaverequests.CUST_HCM_LR_APV_EXT.Component");
    sap.ui.component.load({
      name: "hcm.mgr.approve.leaverequests",
      url:"/sap/bc/ui5_ui5/sap/hcm_lr_apv",
    hcm.mgr.approve.leaverequests.Component.extend("hcm.mgr.approve.leaverequests.CUST_HCM_LR_APV_EXT.Component", {
      metadata: {
      version : "1.0",
      config : {
      "sap.ca.i18Nconfigs": {
      "bundleName":"hcm.mgr.approve.leaverequests.CUST_HCM_LR_APV_EXT.i18n.i18n"
      customizing: {
      "sap.ui.viewReplacements": {
      "hcm.mgr.approve.leaverequests.view.S3": {
      viewName: "hcm.mgr.approve.leaverequests.CUST_HCM_LR_APV_EXT.view.S3Custom",
      type: "XML",
    Then I submitted the changes and tested the Custom BSP Application.But I am getting the error as below
    Error Message:
    Failed to load resource: the server responded with a status of 404 (NOT FOUND) http://sapfiorisrvr.domain.com:portno/sap/bc/ui5_ui5/sap/zhcm_lr_apv_ext/Component-preload.js
    Thanks&Regards,
    Akhil Das

  • Standard T Code to release list of sales orders in 'Delivery Block'

    Dear All,
    Is there any standard transaction code in SAP which provides the facility to release list of sales orders in 'Delivery Block'. (Additional information - List of sales orders in 'Delivery block' is available in V.14,however it does not have release facility).
    For example, VKM3 gives the list of sales orders in 'Credit block' with release facility.On the same lines, is there any standard T code or any other facility in standard SAP which provides the facility to release list of sales orders in 'Delivery Block'.
    Thanks and Regards,
    Zahid

    As already suggested, if you execute VA14L you can see all sale orders that are blocked at
    -  header level
    -  item level
    -  credit check
    Wherever you see "X" under the tab Header level, double click on the respective sale order, so that system will take you to sale order in change mode.  You can remove the header level delivery block and save.
    thanks
    G. Lakshmipathi

  • How to change The Standard JOptionPane Icon?

    in this simple code
    i want to change the Standard JOptionPane icon to a different icon
    how could it be?
    thank you
    import java.awt.*;
    import javax.swing.*;
    import java.awt.event.WindowListener;
    import java.awt.event.WindowEvent;
    import javax.sound.sampled.*;
    import javax.swing.JPanel;
    import javax.swing.JFrame;
    import javax.swing.ImageIcon;
    import javax.swing.Icon;
    import java.awt.event.*;
      public class MyFrame extends JFrame 
    JLabel label=new JLabel("Hello");
      MyInner inner;
          MyFrame ()
            setupGUI();
        private void setupGUI()
           JFrame f =new JFrame();
        //   f.setDefaultCloseOperation (JFrame.EXIT_ON_CLOSE);
           f.setTitle("Window Event");
            f.setSize(550,350);
            f.setResizable(false);
            f.setLayout(new BorderLayout());
            f.add("Center",label);
            f.show(true);
             inner=new  MyInner();
             f.addWindowListener(inner);
                   class MyInner extends WindowAdapter
           public void windowClosing(WindowEvent ee)
                         Toolkit tool = Toolkit.getDefaultToolkit();
                  tool.beep();
                      JOptionPane.showMessageDialog(null, "Nice Work! " );
                      System.exit(0);
          public  static void main(String[]args)
             MyFrame frame=new MyFrame ();
    }

    For instance:
        class MyInner extends WindowAdapter
            public void windowClosing(WindowEvent ee)
                Toolkit tool = Toolkit.getDefaultToolkit();
                tool.beep();
                JOptionPane.showMessageDialog(null, "Nice Work! ");
                ImageIcon myImageIcon = new ImageIcon("myPic.jpg"); // needs proper path here
                JOptionPane.showMessageDialog(null, "Better Work!", "Dang, I'm smart!", JOptionPane.ERROR_MESSAGE, myImageIcon);
                System.exit(0);
        }

  • MD4C standard Transaction Code Help

    Dear All,
    I need help I want to add multiple selection screen option for WBS element in MD4C transaction. (Report Name: PP_ORDER_PROGRESS).
    If anybody has a similar issue could you please help me out without changing standard transaction code?
    Regards,
    Chanda.

    Hello,
    You mean transaction type? Then for Service Desk it is SLFN. It is not recommended to open Issues (SLFI) directly from the CRMD_ORDER transaction. You can also open change requests (SDCRs) from CRMD_ORDER, and later assign them to the maintenance cycle.
    Best regards,
    Miguel Ariñ

  • How to use standard T-CODE fields.....

    hi all ABAP masters,
    i need to use 2 field values of standard T-CODE ME11 they r NET VALUE and MATERIAL.
    i want to use the values entered in the textboxes against these to fields in my program. how can i refer to them without any modification in the standard program.
    usefuk help will be rewarded.
    thanks
    devender

    Hi Devender ,
    You have to use User Exit and you have to write your code in perticular exit include program.
    Please find below user exits belongs to ME11 . you can select suitable to your requirement from below .
    LMEDR001            Enhancements to print program
    LMELA002            Adopt batch no. from shipping notification when posting a GR
    LMELA010            Inbound shipping notification: Transfer item data from IDOC
    LMEQR001            User exit for source determination
    LMEXF001            Conditions in Purchasing Documents Without Invoice Receipt
    LWSUS001            Customer-Specific Source Determination in Retail
    M06B0001            Role determination for purchase requisition release
    M06B0002            Changes to comm. structure for purchase requisition release
    M06B0003            Number range and document number
    M06B0004            Number range and document number
    M06B0005            Changes to comm. structure for overall release of requisn.
    M06E0004            Changes to communication structure for release purch. doc.
    M06E0005            Role determination for release of purchasing documents
    ME590001            Grouping of requsitions for PO split in ME59
    MEETA001            Define schedule line type (backlog, immed. req., preview)
    MEFLD004            Determine earliest delivery date f. check w. GR (only PO)
    MELAB001            Gen. forecast delivery schedules: Transfer schedule implem.
    MEQUERY1            Enhancement to Document Overview ME21N/ME51N
    MEVME001            WE default quantity calc. and over/ underdelivery tolerance
    MM06E001            User exits for EDI inbound and outbound purchasing documents
    MM06E003            Number range and document number
    MM06E004            Control import data screens in purchase order
    MM06E005            Customer fields in purchasing document
    MM06E007            Change document for requisitions upon conversion into PO
    MM06E008            Monitoring of contr. target value in case of release orders
    MM06E009            Relevant texts for "Texts exist" indicator
    MM06E010            Field selection for vendor address
    MMAL0001            ALE source list distribution: Outbound processing
    MMAL0002            ALE source list distribution: Inbound processing
    MMAL0003            ALE purcasing info record distribution: Outbound processing
    MMAL0004            ALE purchasing info record distribution: Inbound processing
    MMDA0001            Default delivery addresses
    MMFAB001            User exit for generation of release order
    MRFLB001            Control Items for Contract Release Order
    AMPL0001            User subscreen for additional data on AMPL
    if you give me brief i can help you out more.
    Thank you .
    Regards
    Ram

  • How to batch change the standard value of routing

    Dear all,
             I meet a problem, and need you help.
            As you know, we can use T-code "CS20"  to batch change a component's quantity in different Bom by a factor.
           for example:  Component a in Fert. A,  quantity change from 6g x 0.9 = 5.4g
                               Component a in Fert. B,  quantity change from 8g x 0.9 = 7.2g
           now, my question is how to Batch change the standard value in routing. (select by work center)  CA85N can select the value, but seems can not batch change by a factor,
           thanks in advance

    It is not a big task for u prasobh...Just play in CEWB for 5-10 mins you will understand everything....
    If you face any issue let me know..
    For ur information I am also an IBM employee...
    Gobi

  • Its not possible to change outlook standard template

    this seems to be a really easy question..
    how do i change the standard-Outlook template ?
    I have tried to update the Tab spacing default from 0.5 to 0.25 but when I close it, it looses the setting!!!
    What I have tried already:
    1. I have opened a new email - changed the setting and saved.  Did not work!
    2. I have opened NormalEmail.dotm - changed the setting and saved.  Did not work!
    3. I have opened Normal.dotm - changed the setting and saved.  Setting works in Word, but not in Outlook!!!
    This is rediculous!!!
    by the way: ist not working either with Outlook 2013
    thanks for any ideas that u have checked upfront..
    ray, switzerland
    raymond reininger

    I've got the same result as you test.
    If you only want to change the Tab spacing default from 0.5 to 0.25, kindly code a vba when you create a new message - automatically change tab stop spacing to 0.25. In Word, we can easily complete it by the code:
    Sub Macro()
        Selection.ParagraphFormat.TabStops.ClearAll
        ActiveDocument.DefaultTabStop = CentimetersToPoints(0.25)
    End Sub
    However, I have no idea how to convert it to Outlook. We may post the question to the forum for Outlook Developer, and other partners who read the forums regularly can either share their knowledge or learn from your interaction.
    https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=outlookdev
    Thanks.
    Tony Chen
    TechNet Community Support

  • How to make changes to standard UWL WebDynpros?

    Hi,
    We are faced with the problem to make changes to the standard UWL Person Search Dialog. But couldn't find any documentation, blog or anything else how to achieve this. We strongly believe, that we have to create a new track in nwdi, import uwl development components, make changes to them, transport and so on.
    So, how can we make changes to standard uwl WebDynpro components?
    Thanx,
    Gerald

    After investigating hours of hours i have come to the following conclusion concerning uwl customization:
    uwl can be customized following this documenation https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/a3461636-0301-0010-3787-978f5ac8bd45
    I have tried to check out the sap standard software component (sap.com/UWLJWF), put them into a nwdi track and try to change it. Just the same way as you have to do it using ess/xss.
    But it didn't work out, because source codes are not included. I have also got the info from sap that the uwl webdynpros are not designed for custom changes.
    So, there is no way.

  • How to make changes in standard transaction ME51N.

    Hi,
       Can anyone tell me how to make changes in standard transaction ME51N.
       I want to call transaction AS01 by clicking on standard button create asset. Please do the needful.
    Regards.
    Aniruddha

    Hi anirudda
              As i understood from your question is that you want to add a new field 'CREATE ASSET' on me51n screen.
    If i am correct you can use 'MEREQ001' enhancement for this purpose and you can write you code in the exits available in this enhancement.
    Please check the documentation of this enhancement for more info.
    (Use Smod for this purpose)
    I hope it is helpful.
    Reward points
    Thanks,
    Prasanna

  • Standard Transaction Code for CRMD_ORDER

    HI,
    Can anyone tell me what is the standard transaction code for CRMD_ORDER
    Regards
    VINI

    Hello,
    You mean transaction type? Then for Service Desk it is SLFN. It is not recommended to open Issues (SLFI) directly from the CRMD_ORDER transaction. You can also open change requests (SDCRs) from CRMD_ORDER, and later assign them to the maintenance cycle.
    Best regards,
    Miguel Ariñ

  • What is module pool programming?how we can change the standard screen?

    Hi EXPERTS
    what is module pool programming?how we can change the standard screen using module pool programming ?
    please explain with example.

    Check the below link:
    http://wiki.ittoolbox.com/index.php/FAQ:What_is_module_pool_program_in_abap%3F
    http://help.sap.com/saphelp_46c/helpdata/en/35/26b1aaafab52b9e10000009b38f974/content.htm
    http://sap.mis.cmich.edu/sap-abap/abap09/sld011.htm
    http://sap.mis.cmich.edu/sap-abap/abap09/index.htm
    http://www.geocities.com/ZSAPcHAT
    http://www.allsaplinks.com/files/using_table_in_screen.pdf
    http://help.sap.com/saphelp_webas630/helpdata/en/9f/db9cdc35c111d1829f0000e829fbfe/content.htm
    http://www.sapdevelopment.co.uk/dialog/dialoghome.htm
    http://www.sap-img.com/
    http://help.sap.com/saphelp_46c/helpdata/en/08/bef2dadb5311d1ad10080009b0fb56/content.htm
    http://www.sapgenie.com/links/abap.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/c9/5472fc787f11d194c90000e8353423/frameset.htm
    You can also check the transaction ABAPDOCU which gives you lot of sample programs.
    Also you can see the below examples...
    Go to se38 and give demodynpro and press F4.
    YOu will get a list of demo module pool programs.
    One more T-Code is ABAPDOCU.
    YOu can find more examples there.
    See the prgrams:
    DEMO_DYNPRO_TABLE_CONTROL_1 Table Control with LOOP Statement
    DEMO_DYNPRO_TABLE_CONTROL_2 Table Control with LOOP AT ITAB
    http://www.geocities.com/ZSAPcHAT
    http://www.allsaplinks.com/files/using_table_in_screen.pdf
    regards,
    venkat.

  • Change ABAP Program return code

    Dear ABAP Gurus,
    I need to change internal return(message) code inside APAP program (report).
    Program starts  as the first program in a scheduled job with several programs in, and we want to have the following  programs do not start in some cases which are evaluated in the first program. Normally program ends will internal return (message) code 0000. I need to change this return code.
    Thank you very much,
    Svetlana

    Hi Svetlana,
    Can I suggest a solution that is closer to standard?
    You could schedule your job with only the first program due to run.  If it runs sucessfully, it will programatically submit a new job with the next abap program to run, and if not, it write a log (spool, or messages).
    How does that sound?
    If your first program is a standard program and you don't wish to modify it, you could schedule your job with the standard program first, followed by a custom program that could determine the sucess of the first (by checking database entries, or by reading the spool of the first program, etc.) and then it would submit the subsequent jobs (or not).
    Hope that helps.
    Brad

  • Tracking and maintaining data about modifications done to Standard SAP code

    Hi All,
    I need your help to know if there is a way to track and maintain the modification changes done to standard SAP code. I have gone through SE95 but not much help. Is there any DB tables which stores these information after a standard SAP code has been modified like for example when the core Mod was done, transport number for the MOD, object in which the MOD was done, version of the object etc.
    Thanks in advance.

    Hi,
        Try the following tables.
    SMODILOG & VRSD.
    Regards
    Kiran Sure

  • Change the XP revision code displayed using winver

    Hi
    I need be able to display/change the XP revision code displayed when running 'winver.exe' under Embedded 2009 Standard. Does anyone know which component/setting I can use to change the revision code (or part of it) to my own version number?
    I have no control over the program that will run on the system, so I need a way of having a revision code that can be displayed to a standard user using standard windows mechanisms, either computer properties or 'winver.exe'
    Many thanks
    Steve W

    You can create an C:\WINDOWS\system32\OEMINFO.INI file, this information will be shown in the "System" control panel the file may look like this:
    [General]
    Manufacturer = Your company name
    Model = MyDevice 1000, SW V1.00
    SupportURL = http://www.yoursite.com
    [OEMSpecific]
    OEM1=Your company name
    I don't think that there is a (official, of course) way to change the versions shown in winver.exe.

Maybe you are looking for

  • JBO-26048 error after insert delete commit

    Using JDeveloper 10.1.2 running local OC4J against Oracle 9i database * JBO-26048: Constraint "APPLREFLTR_PK" violated during post operation:"Insert" using SQL Statement "BEGIN INSERT INTO DCSAT_APPL_REF_LETTER(APPLICANT_ID,LETTER_ID,LETTER_INF,CREAT

  • After downloading the latest Thunderbird update (24.5.0), I can no longer download emails.

    I just downloaded the latest release, and my email apparently is no longer connecting to my server. I tried reinstalling Thunderbird and rebooting my computer with no success. My server settings are correct, and have not changed since last night. Whe

  • HT5622 Recently Purchased Songs Not Showing Up In Cloud

    So I got a new computer for my birthday and decided to put on Itunes for me and my girlfriend to use. I have a huge library so I wanted to get it all redownloaded from itunes. I downloaded my songs from the cloud and noticed many were missing (recent

  • Trouble compiling Servlets... simple problem?

    PATH: %SystemRoot%\system32;%SystemRoot%;%SystemRoot%\System32\Wbem;C:\PROGRA~1\ULTRAE~1;C:\j2sdk1.4.0\bin;C:\j2sdkee1.3.1\bin CLASSPATH: C:\j2sdkee1.3.1\lib\j2ee.jar;C:\j2sdkee1.3.1\lib\j2eetool.jar Yet for some reason I can't compile anything using

  • Can't export from Lightroom 4.3 -

    Tried TIF,  JPG and web gallery.  I get the message, "file could not be written".  Just upgraded to 4.3 and I can't export any files.