Changes in STANDARD Prog...

Hi frnds,
i have changed the standard prog or include prog in DEV server. here my doubt is, in PROD server how these changes will go. as of now i am not working on PROD server. i hope, when i transport the request # the changes may go and change the prog in PROD server. am i right?
thanks in advance.
regards,
balu

Hi frnds,
thanks for your response.
i have tried to do using user exist and badi. but those things are not worked fully as per client requirement. for this, i have placed query in SDN forum also. some ppl gave good solutions. u can check my previous queries.
in me21n, i have placed one field (vendor sub range) in header using screen exist. that value should go for item level. i have completed this using badi. but that badi is triggering for whenever user has changed/entered the value in any item. suppose if user forgot to enter the value in header initially and user entered some 100 items and he gave the value for header. in this situation that badi was not working. i mean for 100 items that value not passed. but after entering any item then the header value passed to subsequent items. i found that, badi is calling only whenever user enter/change the value in item.
this is the only reason to change the standard prog.
thanks once again for all.
hi Norman Salter, what is BTEs?
regards,
balu

Similar Messages

  • How to link standard prog output to smartform?

    I have to create Smartform for Credit Memo, there is no driver progrm. Standard prog for Credit memo is in FB75 tcode.
    how to export data entered by user to the corresponding smartform?
    shall i use NACE?

    Hi,
    VOFM is tcode, where you can set the form for the standard program... this is Functional configure...need to contact the SD
    NACE is also tcode, where u can change the Rotuine & FORM name
    Regards,
    Aditya

  • Unable to change ADF standard text for af_table ("Fetching data...")

    I wish to change the standard "Fetching data..." text displayed by ADF when scrolling through a table.
    Looking at the description in http://jdevadf.oracle.com/adf-richclient-demo/docs/skin-selectors.html, I expect to achieve this by overriding "af_table.LABEL_FETCHING" in my skinning resource bundle.
    I am able to override two af_column messages, but my af_table override does NOT work.
    My bundle looks like this;
    package com.vesterli.demo.skinning;
    import java.util.ListResourceBundle;
    public class MySkinBundle extends ListResourceBundle {
    @Override
    public Object[][] getContents() {
    return _CONTENTS;
    private static final Object[][] _CONTENTS =
    { { "af_table.LABEL_FETCHING", "Hang loose, dude" },
    { "af_column.TIP_SORT_ASCENDING", "First things first" },
    { "af_column.TIP_SORT_DESCENDING", "The last shall be the first" } };
    My trinidad-skins.xml looks like this:
    <?xml version="1.0" encoding="windows-1252" ?>
    <skins xmlns="http://myfaces.apache.org/trinidad/skin">
    <skin>
    <id>vesterli.desktop</id>
    <family>vesterli</family>
    <render-kit-id>org.apache.myfaces.trinidad.desktop</render-kit-id>
    <extends>fusion.desktop</extends>
    <style-sheet-name>css/MySkin.css</style-sheet-name>
    <bundle-name>com.vesterli.demo.skinning.MySkinBundle</bundle-name>
    </skin>
    </skins>
    Since I am seeing my customized column tip texts correctly, the reference from trinidad-config.xml to my skin should be OK (I am also seeing my visual skinning correctly). Since I am seeing some of my texts, my resource bundle must be valid, too. I am using JDev 11.1.1.3.
    So why doesn't the af_table skinning work?
    Any pointers appreciated.
    Best regards
    Sten Vesterli

    I was having this problem too, found this thread and did cleanup here and there, redo etc. But ended up with no luck to fix it.
    Just now discovered the issue is reproducible on the official demo site: table Skinning Key Demo
    1. check the column sorting labels, prefixed with "Demo: "
    2. change any selector setting to trigger a table refresh, it's always displayed as "Fetching Data...", without prefix.(as highlighted in the "Resource styles" on the same page, there should be prefix too).

  • Need to Change the Standard.joboptions on Acrobat 8.0

    We are a Citrix/Terminal Server shop and have clients using Acrobat 8.0 on the server under their citrix session and they need to have the default resolution of the created PDF to change for everyone on the server from 600 dpi to 300 dpi.
    When I try to do this in the printer setup for Acrobat it tells me that I can't edit the Standard.joboptions file and save it over itself. I then tried to manually edit the file with Notepad and it is still showing 600 dpi when I look at the Standard settings.
    I also changed the Standard and set it as 300 dpi and saved it as a different name in the "Settings" folder and when I try to choose it in the drop down list of settings files I don't see that one.
    Am I missing something? How can I set the default resolution to 300?
    Thanks,
    Jason

    I don't see how to do that. Is there a document or online resource to help with that?
    Like I said, I saved the changes to another file but then do not see a way to specify that new file as the 'default'.
    Thanks,
    Jason

  • Changes in standard form

    Hello,
    I have a standard transaction MI21 for physical inventory.
    I need to change the standard form and attached back to this transaction.My first query is how to find the form name in standard program? program name is RM07IDRU.
    Can i copy the original form in zform and make a changes and attach it back to standard program.
    How to do this?
    Please let me know as its an urgent.
    Waiting for positive reply.
    Thanks
    Suchita

    Forms are  INVENT  and INVENT_VKBW you can use either of these accrding to your requirement.
    But if you copy it to Z form then you will be needed to copy the program and then change form names in OPEN_FORM.
    Reward points if useful.
    Regards,
    Nageswar

  • 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);
        }

  • 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

  • Webdynpro for ABAP, Enhancement and change of standard "visible" property

    Hi
    Is it possible to change the standard Webdynpro element (in cProjects application), so that the original control "Input" from visible property "Visible" is changed to mine Context variable? How to change that default "Visible" flag in standard element?
    thank you

    Hi Phani,
    Thanks for the info.
    I am able to see if it is not interactive.
    Displaytype is native only.
    Let me explain you the issue in detail:
    Currently Client is calling ZFORM thro Java. They have some issues with JAVA so they want to use Webdynpro to call that ZFORM and the form is ABAP Dic based.
    For Templete source I gave ZFORM name, and it automatically created a 'NODE' wrt the context in the ZFORM.
    Now I have to pass data from difft  node attributes to that 'NODE'.
    Thanks in advance,
    GG

  • How i can change to standard user, an admin user

    Hi,
    How I can change to standard user an admin user, if the check box can not be unchecked.
    I have opened the lock to allow for future changes.
    I have more than one admin user.
    As root user, I can't do it.
    Thanks.

    Hi,
    I have, but looks the same, unable to change.
    I finally decided to create a new standard user and delete this.
    Thanks for the support.

  • Change of Standard Currency Translation Logic

    Hello everybody,
    I need to achieve special goal to for a user request:
    In a BPC planning application using version 5 MS I would like to import data from another data source and perform a currency translation from LC to RC. The application is NOT set-up as a YTD application, as the planners should be able to input data on a periodic basis (i.e. month). So the default currency tranlation would take the LC amount from one month and multiply it with the rate for this month giving the amount in RC.
    I need to change the FX trans logic in a way that the LC amounts are summed up first and then the multiplication with the last FX rate is taken, i.e. similar to a YTD consolidation application. I do not want to change the existing appl into a YTD-appl as monthly input is needed.
    Therefore I need to change the standard FX trans logic from, let's say, "multiply each monthLC value by FX rate and then build the YTD value" into "sum-up each month LC value giving YTD LC value and then multiply by FX rate of the last month".
    Can I achieve that by tweaking the standard FX logic or do I need to set-up a certain FX Business Rule? Do I need a new measure ? How would the coding look like ?
    Any help is appreciated.
    Thanks.
    Wolfgang

    Does nobody have an idea how to attack such a challenge ?

  • Changing TV Standard - CRASH! Opening iDVD'04 project

    I raised this before, was hoping that the 7.0.2 update was going to fix but no.
    Is anyone out there from Apple? Helloooo! You have a defective product that I paid
    for and can't use. do you care?
    This is the displayed message when opening a project that was made with iDVD '04
    "Changing TV Standard
    Changing the TV standard will require iDVD to encode all previously encoded assets again."
    Which is total BS anyway as the standard has not changed, it was 4:3 PAL in the project and it is 4:3 PAL in the preferences
    Rapidly losing faith with Apple.
    This is in the console log:
    ===== Thursday, 3 July 2008 00:36:03 Europe/London =====
    2008-07-03 00:36:31.174 iDVD[285] * -[NSPanel window]: selector not recognized [self = 0xa563040]
    An exception of type NSInvalidArgumentException occured.
    * -[NSPanel window]: selector not recognized [self = 0xa563040]
    Stack trace:
    1 taskstartpeeking: can't suspend failed (ipc/send) invalid destination port
    2 +[NSException raise:format:] (in Foundation)
    3 taskstartpeeking: can't suspend failed (ipc/send) invalid destination port
    4 -[NSObject(NSForwardInvocation) forward::] (in Foundation)
    5 taskstartpeeking: can't suspend failed (ipc/send) invalid destination port
    6 _objcmsgForward (in libobjc.A.dylib)
    7 taskstartpeeking: can't suspend failed (ipc/send) invalid destination port
    8 0x0000bb58 (in iDVD)
    9 taskstartpeeking: can't suspend failed (ipc/send) invalid destination port
    10 -[NSAlert didEndSheet:returnCode:contextInfo:] (in AppKit)
    11 taskstartpeeking: can't suspend failed (ipc/send) invalid destination port
    12 -[NSAlert buttonPressed:] (in AppKit)
    13 taskstartpeeking: can't suspend failed (ipc/send) invalid destination port
    14 -[NSApplication sendAction:to:from:] (in AppKit)
    15 taskstartpeeking: can't suspend failed (ipc/send) invalid destination port
    16 -[NSControl sendAction:to:] (in AppKit)
    17 taskstartpeeking: can't suspend failed (ipc/send) invalid destination port
    18 -[NSCell _sendActionFrom:] (in AppKit)
    19 taskstartpeeking: can't suspend failed (ipc/send) invalid destination port
    20 -[NSCell trackMouse:inRect:ofView:untilMouseUp:] (in AppKit)
    21 taskstartpeeking: can't suspend failed (ipc/send) invalid destination port
    22 -[NSButtonCell trackMouse:inRect:ofView:untilMouseUp:] (in AppKit)
    23 taskstartpeeking: can't suspend failed (ipc/send) invalid destination port
    24 -[NSControl mouseDown:] (in AppKit)
    25 taskstartpeeking: can't suspend failed (ipc/send) invalid destination port
    26 -[NSWindow sendEvent:] (in AppKit)
    27 taskstartpeeking: can't suspend failed (ipc/send) invalid destination port
    28 -[NSApplication sendEvent:] (in AppKit)
    29 taskstartpeeking: can't suspend failed (ipc/send) invalid destination port
    30 0x000feca8 (in iDVD)
    31 taskstartpeeking: can't suspend failed (ipc/send) invalid destination port
    32 0x001144c0 (in iDVD)
    33 taskstartpeeking: can't suspend failed (ipc/send) invalid destination port
    34 0x000d1d38 (in iDVD)
    35 taskstartpeeking: can't suspend failed (ipc/send) invalid destination port
    2008-07-03 00:36:31.413 iDVD[285] NSExceptionHandler has recorded the following exception:
    NSInvalidArgumentException -- * -[NSPanel window]: selector not recognized [self = 0xa563040]
    Stack trace: 0x96c2bf10 0x92c0ee0c 0x92be7ed0 0x90a460b0 0x0000bb58 0x939b2f3c 0x9399df04 0x938518b4 0x938517e8 0x938516c8 0x9386b664 0x9386b24c 0x9386ac70 0x9380c4e0 0x937b5524 0x000feca8 0x001144c0 0x000d1d38 0x000d0228 0x000cb0d0 0x000cb328 0x000241d8 0x00009688 0x00008810 0x938ef7c0 0x938518b4 0x938517e8 0x938516c8 0x9386b664 0x9386b24c 0x9386ac70 0x938ef11c 0x9380c4e0 0x937b5524 0x937ac960 0x9389d458 0x00004e38 0x00003b9c 0x000038a0
    An exception of type NSInvalidArgumentException occured.
    * -[NSPanel window]: selector not recognized [self = 0xa563040]
    Stack trace:
    1 taskstartpeeking: can't suspend failed (ipc/send) invalid destination port
    2 +[NSException raise:format:] (in Foundation)
    3 taskstartpeeking: can't suspend failed (ipc/send) invalid destination port
    4 -[NSObject(NSForwardInvocation) forward::] (in Foundation)
    5 taskstartpeeking: can't suspend failed (ipc/send) invalid destination port
    6 _objcmsgForward (in libobjc.A.dylib)
    7 taskstartpeeking: can't suspend failed (ipc/send) invalid destination port
    8 0x0000bb58 (in iDVD)
    9 taskstartpeeking: can't suspend failed (ipc/send) invalid destination port
    10 -[NSAlert didEndSheet:returnCode:contextInfo:] (in AppKit)
    11 taskstartpeeking: can't suspend failed (ipc/send) invalid destination port
    12 -[NSAlert buttonPressed:] (in AppKit)
    13 taskstartpeeking: can't suspend failed (ipc/send) invalid destination port
    14 -[NSApplication sendAction:to:from:] (in AppKit)
    15 taskstartpeeking: can't suspend failed (ipc/send) invalid destination port
    16 -[NSControl sendAction:to:] (in AppKit)
    17 taskstartpeeking: can't suspend failed (ipc/send) invalid destination port
    18 -[NSCell _sendActionFrom:] (in AppKit)
    19 taskstartpeeking: can't suspend failed (ipc/send) invalid destination port
    20 -[NSCell trackMouse:inRect:ofView:untilMouseUp:] (in AppKit)
    21 taskstartpeeking: can't suspend failed (ipc/send) invalid destination port
    22 -[NSButtonCell trackMouse:inRect:ofView:untilMouseUp:] (in AppKit)
    23 taskstartpeeking: can't suspend failed (ipc/send) invalid destination port
    24 -[NSControl mouseDown:] (in AppKit)
    25 taskstartpeeking: can't suspend failed (ipc/send) invalid destination port
    26 -[NSWindow sendEvent:] (in AppKit)
    27 taskstartpeeking: can't suspend failed (ipc/send) invalid destination port
    28 -[NSApplication sendEvent:] (in AppKit)
    29 taskstartpeeking: can't suspend failed (ipc/send) invalid destination port
    30 0x000feca8 (in iDVD)
    31 taskstartpeeking: can't suspend failed (ipc/send) invalid destination port
    32 0x001144c0 (in iDVD)
    33 taskstartpeeking: can't suspend failed (ipc/send) invalid destination port
    34 0x000d1d38 (in iDVD)
    35 taskstartpeeking: can't suspend failed (ipc/send) invalid destination port
    ##**## Not encoding -> exit(5)

    As a test I took an old iDVD 4 project on my 933 mhz G4 running Panther and saved it as an iDVD ARCHIVE with include Themes and Encoded Assets checked.
    I then opened it on my 1.33 Ghz G4 Powerbook running Tiger and iDVD '08.
    It 'sort of worked'. Things opened fine but I had a broken asset warning on video in the menu button. I was able to drag and drop the movie on the menu in the Map view to get rid of the broken asset warning, but the movie in the menu button doesn't play. The projects preview fine, but without the movie playing in the button.
    Conclusion: an iDVD 4 PROJECT ARCHIVE with Themes and Encoded Assets included DOES open in iDVD '08, but may require some fixing.

  • How to change the standard data type in xi

    Hi,
    presently we have SCM.i want to change the standard data type i.e" Replinishment order notification ".i want to change the length of the field .
    but there is no edit option for that data type.
    i even modified Software component version( http//sap.com/xi/scmbasis/global)with objects are original objects and objects are modifible(tick the check box)
    thanks in advance.
    atmakur

    Hi Atmakur,
      <i>i even modified Software component version( http//sap.com/xi/scmbasis/global)with objects are original objects and objects are modifible(tick the check box)</i>
        After doing this have you activated the change list? If not please do it and refresh it..and try to open..it will work..
    Regards,
    Prasanthi.

  • 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

  • Info. / Doc. on Changes to Standard SAP Program, Tables, Fields in SAP 6.0

    We are in the process of upgrading our SAP from 4.6c to 6.0 and I am looking for a document or white paper that summarizes changes to Standard SAP Programs, Tables/Fields, Function Modules etc.. from what used to be in SAP 4.6c to what it is in SAP 6.0.  I am not sure if such a comprehensive document exists or is posted in the forum.
    Any help or information in this regard will be highly appreciated.
    Thanks
    ram

    Hi Ram,
    <<   We are in the process of doing our technical upgrade from SAP 4.6c to 6.0. I am looking for a white paper or documentation listing the changes made to the standard SAP Programs, Tables, Fields, Function Modules etc. from Rel. 4.6c to 6.0. >>
    Do you want to know what custom changes were done to SAP standard objects in your system or do you want to know what changes SAP did from 4.6c to ECC6.0.
    There is no white paper or documentation to find out custom changes made to SAP standard objects. but there were many tools in the market to find out and tell what changes were done to sap standard objects in your system.
    Your question seems ambiguous please clear it.
    Thanks,
    Kiran.

  • Change PNP standard selection screen attributes

    Hi experts,
    I need to change the standard PNP selection screen parameter BUKRS into "obligatory".
    I know it can be done for all reports using PNP through SPRO, but I need it only for one customer report.
    Best regards,
    A. Cepa.

    You can hide the standard field on the screen using this -
    INITIALIZATION.
    LOOP AT SCREEN.
    IF screen-name = 'PNPBUKRS-LOW'.
    screen-active = '1'.
    screen-input = '0'.
    screen-invisible = '1'.
    ENDIF.
    IF screen-name = 'PNPBUKRS-HIGH'.
    screen-active = '1'.
    screen-input = '0'.
    screen-invisible = '1'.
    ENDIF.
    MODIFY SCREEN.
    ENDLOOP.
    Regards,
    Amit

Maybe you are looking for

  • Why I reverted to Snow Leopard from Lion....

    Mac Mini (Late 2009) 2GHz Processor 2G RAM 320GB Hard Drive I've loved this computer from the moment I got it....used...on eBay...Leopard disk included, but wiped clean by seller. My second Apple purchase after the iPhone 4. I loved the way that Appl

  • Spotlight Not Showing Many Results

    I am supposed to see many different results... Including web results... Also Evernote (app) Results... There are obviously results that are supposed to be shown by Spotlight that are not being shown.... This has been an issue since the beggining for

  • Computer keeps crashing/freezing from Liquify tool???? THIS IS DRIVING ME NUTS!!! HELP ME

    My Mac keeps freezing/crashing when I use the liquify tool. I have photoshop cs6 Version: 13.0.6 just updated it and still same problem. I even signed up for creative cloud and tried liquifying from there and still no luck. Can someone send me a link

  • Compilation error when used SET or MULTISET operator on nested tables

    Dear All, I am getting Compilation error when used SET or MULTISET operator on nested tables inside a procedure. This is working fine in other DB installations of 10g but does not work in another 10g DB. it says "wrong number of parameter or datatype

  • Navigation is not possible as there is not any business transaction

    Hi  Gurus I am using IC Web Client 5.0. When i clicked on sales order view in the ic web client Navigetion bar i have encountered  with a problem. "Error:  Navigation is not possible as there is not any business transaction". can anyone give me the s