ESS Roadmap - Remove stage

Hello All,
Is it possible to remove a stage from the ESS roadmaps? i.e. in create travel expense, I need to remove the third stage 'Record Expense Receipt'.  Is this posible without coding?
Thanks,
Nick.

Even though if you use FPM framework editor via Self Service Administrator Role, the system throws RFC Dump after making the 2 or 1 step roadmap.
By searching on the sdn forums, SAP says that they are going to fix this bug with next release of ESS version.
Still need to search notes if there is such any for this RFC dump of removing road map stages.
Regards,
Anil Kumar

Similar Messages

  • ESS Roadmap Translations

    Dear All,
    I was trying to do translations for ESS Roadmap Banks.
    However, I've modified the Message Pool XLF files and it still doesn't reflect with my change.
    Can anyone let me know where is the right place to make the changes of translations of the roadmap (Overview --> Edit --> Review and Save --> Confirmation)?
    Sincerely,
    SE

    Thanks very much for the information about VC FC CC types.  I'll check and find out the details.  Can I please confirm with you guys is my below coding right
    I'm setting context attribute values on the Dropdown onSelect method as follows
    this.wdContext.currentSelectedInfotypeElement().setCom01("HOME");
    this.wdContext.currentSelectedInfotypeElement().setNum01("12345678");
    The above coding is fine, but there are other 2 com and num fields which are not getting updated in the backend.  I must say here that this is standard implementation and these fields are not introduced by me.  This is Sweden Addresses screen.  The standard screen is not working for other 2 communication subtypes.  The other 2 subtypes I'm trying to update is
    this.wdContext.currentSelectedInfotypeElement().setCom02("XXXXX");
    this.wdContext.currentSelectedInfotypeElement().setNum02("12345678");
    this.wdContext.currentSelectedInfotypeElement().setCom03("YYYYY");
    this.wdContext.currentSelectedInfotypeElement().setNum03("abdscdc");
    so I'm just trying to track if portal is passing all the values correctly to the backend function.
    Thanks
    Praveen

  • Problems when editing the ESS roadmap

    Hi All
    I have edited the Road map using Self-Service Administrator for Personal data in ESS. I have removed the last 2 steps and changed the name of the second step to Detailed View. 
    The problem is that I am getting a “nullPointerException” when I select Edit in the ESS for personal data.
    Can anyone please guide me in the right direction, am I missing a step or 2 in editing the roadmap?
    EP7
    ECC6
    Very kind regards

    Hi Wian,
    Check the SAP note 1070952.
    Hope this help.
    Sónia

  • Change button disabled in ESS add/remove dependents

    We are on version 4.7D and have noticed that ESS transaction PZ12 does not consistently allow changes to existing records. I can change a spouse, but I cannot change a child or an emergency contact via ESS.  I get the same results when accessing through R/3, but there are no messages as to what the problem is.  I have tried removing the dependents from all benefits plans, then trying to change the data in PZ12, but that does not work. I have checked for any authorization errors, and none exist. Does anyone have any ideas as to how to correct this and enable the change button in all cases?
    The dependent type 2 is set up with time constraint 3. I have checked table T591A_ESSEX and can see that the subtype is allowed to be maintained via ESS.
    Thanks in advance.

    OK. There are two ways to do this:
    1. Create a button facet in the Add remove component
    2. Modify the theme.
    For the first way here is a sampe:
    1. drag a add removelist onto the designer
    2. Edit the jsp to look like this:
                            <ui:addRemove availableItemsLabel="Available:" binding="#{Page1.addRemoveList1}" id="addRemoveList1"
                                items="#{Page1.addRemoveList1DefaultOptions.options}" moveButtons="true" selectAll="true"
                                selected="#{Page1.addRemoveList1DefaultOptions.selectedValue}" selectedItemsLabel="Selected:" style="left: 24px; top: 24px; position: absolute">
                                <f:facet name="addButton">
                                    <ui:button id="addRemoveList1_addButton" onClick="AddRemove_form1_addRemoveList1.add()" text="Lark Add"/>
                                </f:facet>
                            </ui:addRemove>3. deploy/run
    4. select an item and press the Lark Add button. The internal javascript gets called to add the item.
    The second way requires that you modify the themes. You can view these posts for information on modifying themes:
    http://blogs.sun.com/roller/page/gjmurphy?entry=quick_guide_editing_themes_for
    The default button lables are:
    AddRemove.add=Add
    AddRemove.remove=Remove
    Hope it helps,
    Lark

  • Using a function and array to remove stage instances

    I'm trying to figure out the best way to handle this.
    I have an array of items I want to be looked through and removed if a specific function is running and if the stage contains them.
    removalArray = [axScene, bridgeScene];
    public function Removal(event:Event) {
                trace("cheese");
                for (var i:uint = 0; i>removalArray.length; i++) {
                    if (stage.contains(removalArray[i])) {
                        removeChild(removalArray[i]);
                        removeEventListener(Event.ENTER_FRAME, Removal);
                        addEventListener(Event.ENTER_FRAME, CampScene);
                    } else {
                        removeEventListener(Event.ENTER_FRAME, Removal);
                        addEventListener(Event.ENTER_FRAME, CampScene);/**/
    addEventListener(Event.ENTER_FRAME, Removal);
    I'm able to get trace("cheese"); to work at its current position, but the function does not seem to like my "for" and "if" statements because putting trace("cheese") amongst them does not work.
    As always, help is appreciated, and let me know if you need more info.
    EDIT: Perhaps I should also note I am able to get
    if (stage.contains(axScene)) {
                    removeChild(axScene);
                    } else if (stage.contains(bridgeScene)) {
                        removeChild(bridgeScene);
                        } else {
                            null;
    to work correctly in that function.
    EDIT2: Would this have something to do with addChild only being able to remove one instance at a time? I can't imagine that's it since this suppose to be run through a loop.

    You appear to have an unhealthy obsession with using the ENTER_FRAME event. 
    I'm sure you're right, but realize that I'm learning by the seat of my pants and am not great with logic and stuff that doesn't happen chronological. (I'm 26, and graduated with a degree in graphic design.) If I find something that works I'm going to keep using that until I find a better way, and thus far ENTER_FRAME has been all I've had. (I can find tons of AS3 information online, but a lot of it is forum posts seems to be lacking useful context for my purposes.)
    For what it's worth (if you remember another post I did that had a ton of event listeners), I've started using more booleans and gotten rid of a lot of listeners adding and removing.
    What you might try doing instead of creating all manners of them is to have just one and within that one you manage your objects using conditionals.
    So something like this?
    if (campSceneOnStage == true) {
         addChild(campScene)
         } else if (campSceneOnStage == false) {
              removeChild(campScene);
    EDIT: Although this would keep adding a campScene instance, wouldn't it?
    EDIT2: Could I write something like this, have one constant event listener (addEventListener(Event.ENTER_FRAME, Scenes)...
    public function Scenes(event:Event) {
                if (campSceneOn == true) {
                    addChild(campScene);
                    if (stage.contains(campScene)) {
    and use a line to tell the function to temporarily stop listening if campSceneOn = true and campScene is on the stage?
    Would "null" work?
    Also, is there an equivalent to "stage.contains" that looks to see if the stage does not contain?
    That ENTER_FRAME listener is being removed as fast as it was added, whether or not there is something in the array to remove.
    So the even though the intention is to only have the removeEventListener only occur if something is found in the array to remove, the script "skips over" that and removes the event listener even if it doesn't "use" the for loop or if statements?

  • SAP HR ESS Issue - Remove Approvar

    Hello All,
    I have a query where in I need to remove the approvar in ESS. For Eg. if an employee applies for leave through ESS, it shud trigger Y and not X. How to go for i in OM?

    Hi,
    Change in HRP1001 for A002 instead of x possition give Y position.
    In system Employee Position reporting to X position.. Change from particular date on wards to Y position.
    Use T. Code:PP02
    Select object type S. Then infotype as 1001, subtype as A002, Planning Status as 1, Give dates and maintain data for Position.

  • Remove stage listener for multiple movieclips

    I would like to completely remove personalized stage listeners, for each movieclip as soon as they are placed where they need to be, but the listeners remain every single time a new clip is dragged.
    Thank you for any help!
    function clickToDrag(targetClip:MovieClip):Function {
              return function(e:MouseEvent):void {
                        startingPosition[targetClip.name] = new Point(targetClip.x, targetClip.y);
                        targetClip.startDrag(false, new Rectangle(0,0,800,600));
                        setChildIndex(targetClip,numChildren - 1);
                        trace('clickToDrag function invoked\ntargetClip: ' + targetClip.name + '\startingPosition: ' + startingPosition[targetClip.name] + '\n\n');
                        stage.addEventListener(MouseEvent.MOUSE_UP, releaseToDrop);
    /*          releaseToDrop
              @function          stopDrag for current clip, if dropped off stage, returns to recorded beginning location
              @param                     targetClip:MovieClip
              @param                     startPosition:int
              @returns          event:void
    function releaseToDrop(targetClip:MovieClip):Function {
              return function(e:MouseEvent):void {
                        targetClip.stopDrag();
                        trace('releaseToDrop function invoked\ntargetClip: ' + targetClip.name + '\n\n');
                        stage.removeEventListener(MouseEvent.MOUSE_UP, releaseToDrop);
                        stage.addEventListener(Event.MOUSE_LEAVE, mouseGone);
                        function mouseGone () {
                                  TweenLite.to(targetClip, .2, { x: startingPosition[targetClip.name].x });
                                  TweenLite.to(targetClip, .2, { y: startingPosition[targetClip.name].y });
                                  //toggle comments to ease or not ease back to startingPosition
                                  //targetClip.x = startingPosition[targetClip.name].x;
                                  //targetClip.y = startingPosition[targetClip.name].y;
                                  stage.removeEventListener(Event.MOUSE_LEAVE, mouseGone);
                                  trace('releaseToDrop function invoked\ntargetClip dragged out of bounds: ' + targetClip.name + '\n\n');
    /*          checkTarget
              @function          checks if current clip is dragged to drag1target(dock), updates boat weight and waterline, remove listeners
              @param                     targetClip:MovieClip
              @param                     lbsAmount:int
              @param                     targetLocation:MovieClip
              @returns          event:void
    function checkTarget(targetClip:MovieClip,lbsAmount:int,targetLocation:MovieClip):Function {
              return function(e:MouseEvent):void {
                        if (targetClip.hitTestObject(drag1target)) {
                                  targetClip.x = targetClip.x;
                                  targetClip.y = targetClip.y;
                                  drop.play();
                                  TweenLite.to(targetClip, .5, { alpha: 0, onComplete:fadein });
                                  function fadein() { TweenLite.to(targetLocation, .5, { alpha: 1 }); }
                                  noMC.waterlineMC.y = noMC.waterlineMC.y - 3;
                                  lbs -= lbsAmount;
                                  lbsTxt.htmlText = lbs + "<font size='16'>lbs</font>";
                                  targetClip.buttonMode = false;
                                  targetClip.mouseEnabled = false;
                                  targetClip.removeEventListener(MouseEvent.MOUSE_UP, checkTarget);
                                  targetClip.removeEventListener(MouseEvent.MOUSE_DOWN, clickToDrag);
                                  /* TODO: Issue with stage listener for every clip, opportunity to handle programmatically? */
                                  /* check to see if eventListenter is still present */
                                  if(targetClip.hasEventListener(MouseEvent.MOUSE_DOWN)) {
                                            trace(targetClip.name + ' still has MOUSE_DOWN event listener');
                                  if(targetClip.hasEventListener(MouseEvent.MOUSE_UP)) {
                                            trace(targetClip.name + ' still has MOUSE_UP event listener');
                        } else if (borderMC.hitTestPoint(targetClip.x, targetClip.y, true)){
                                  /*targetClip.y = startingPosition[targetClip.name].y;
                                  targetClip.x = startingPosition[targetClip.name].x;                              */
                                  TweenLite.to(targetClip, .2, { x: startingPosition[targetClip.name].x });
                                  TweenLite.to(targetClip, .2, { y: startingPosition[targetClip.name].y });
                        } else {
                                  /*targetClip.y = startingPosition[targetClip.name].y;
                                  targetClip.x = startingPosition[targetClip.name].x;          */
                                  TweenLite.to(targetClip, .2, { x: startingPosition[targetClip.name].x });
                                  TweenLite.to(targetClip, .2, { y: startingPosition[targetClip.name].y });

    i will try to show you a way that might help you to understand how the event-model in as3 is meant to work.
    look at this code:
    //with a MovieClip "DragClip" in the Library exoported for ActionScript
    import flash.display.MovieClip;
    import flash.events.MouseEvent;
    for (var i:int = 0; i<10;i++){
        var mc:DragClip = new DragClip();
        addChild(mc);
        mc.mouseChildren = false;
        mc.addEventListener(MouseEvent.MOUSE_DOWN, dragStart);
        mc.addEventListener(MouseEvent.MOUSE_UP, dragStop);
        addChild(mc);
    function dragStart(e:MouseEvent):void {
        e.currentTarget.startDrag();
        trace("dragging started");
    function dragStop(e:MouseEvent):void {
        e.currentTarget.stopDrag();
        trace("dragging stopped");
        e.currentTarget.removeEventListener(MouseEvent.MOUSE_DOWN, dragStart);
        e.currentTarget.removeEventListener(MouseEvent.MOUSE_UP, dragStop);
    //it places hundred Movieclips on the stage
    //makes them draggable
    //but after they are dragged once
    //they stay in place

  • Phtmlb roadmap - removing the connecting lines

    Hi all,
    I'm trying to remove the lines that connect together the roadmap items. Documentation is not available in english and I have seen, but not done, such an implementation before.
    Any idea anyone?
    Thanks and Regards,
    Kevin Wong

    I have English Documentation in my 640 (SP12) system.  I was probably delivered via a Support Package.
    I think the closest you might get is to change the stepDesgin to ROUNDTRIP.  This removes the lines and the Box around the step. However it also removes the ability to set the step to Selected/Disabled. 
    Do you just not like the lines?  Perhaps the PHTMLB ContainerSequence might be a better fit for what you want.  Check out the application SBSPEXT_PHTMLB to try out these two options and see what they look like.

  • ESS roadmap button where is it in DC?

    Hi,
    I'm customising ESS addresses screen, I could see the detail, review, bizcard view layout screens using the NWDS where is the Review and Save buttons actions and their source code located? Is it at the addresses DC level or elsewhere?
    I want to check what is the actions that Review and Save buttons are doing?
    How can I check what values are passed to the R3 just before addresses SAVE button is clicked?
    Thanks
    Praveen

    Thanks very much for the information about VC FC CC types.  I'll check and find out the details.  Can I please confirm with you guys is my below coding right
    I'm setting context attribute values on the Dropdown onSelect method as follows
    this.wdContext.currentSelectedInfotypeElement().setCom01("HOME");
    this.wdContext.currentSelectedInfotypeElement().setNum01("12345678");
    The above coding is fine, but there are other 2 com and num fields which are not getting updated in the backend.  I must say here that this is standard implementation and these fields are not introduced by me.  This is Sweden Addresses screen.  The standard screen is not working for other 2 communication subtypes.  The other 2 subtypes I'm trying to update is
    this.wdContext.currentSelectedInfotypeElement().setCom02("XXXXX");
    this.wdContext.currentSelectedInfotypeElement().setNum02("12345678");
    this.wdContext.currentSelectedInfotypeElement().setCom03("YYYYY");
    this.wdContext.currentSelectedInfotypeElement().setNum03("abdscdc");
    so I'm just trying to track if portal is passing all the values correctly to the backend function.
    Thanks
    Praveen

  • Error installing or removing Itunes after trying to upgrade to 7.6

    Hi There,
    I recently tried to upgrade to 7.6 from 7.5 and this has caused me some issues.
    Firstly when upgrading a dialog box opens stating that itunes.msi cannot be found in local settings - however it was there. I manually moved to the path still to no avail.
    I followed all steps to remove itunes and do a clean install - as stated in the support site "how to uninstall section". This failed at the add remove stage. Stating "The older version of itunes cannot be removed. Please contact your technical support group".
    As there was no add remove option I removed all references to itunes in my local settings folder, program files and registry and went to reinstall, however I am still getting the same message above when tryin to install.
    Now I am stuck with no version of itunes at all on my PC. If anyone could help I would greatly appreciate it.
    Do Apple have a default "scrubber" that will remove all reference/instances of itunes?
    Many Thanks,
    Martin

    I'm having the same exact problem! The only diffrerence is that I haven't unistalled my current version and it still works. But I REALLY want those new iPod Touch Apps! But they require 7.6! Why is it when ever Apple does something great for us they some how find a way to screw us at the same time.
    I don't want a scrubber however cause that migth wipe my settings and or library. Instead I want a magic file that fixes what ever apple screwed up and intalls 7.6!
    ....Or I suppose a copy of iTunes.msi for my version would do to....
    My iTunes version is 7.4.3.1

  • How to remove a function on the main timeline within a movie clip

    How do you remove a function that is coded on a frame in the main timeline from within a movie clip?  I tried this, but no dice:
    infoGraphicDisparity.addEventListener(MouseEvent.CLICK, fl_ClickToGoToScene);
    function fl_ClickToGoToScene(event:MouseEvent):void
        parent.removeEventListener (Event.ENTER_FRAME, parent["enterFrameHandler"]);
        MovieClip(this.root).gotoAndPlay("disparity");
    this is the event I am trying to remove:
    stage.addEventListener(Event.ENTER_FRAME, enterFrameHandler);
    any help would be appreciated as always.
    Thanks!

    from any frame (that executes after enterFrameHandler is defined) in any display object in the display list
    stage.removeEventListener(Event.ENTER_FRAME, MovieClip(root).enterFrameHandler);

  • Personalization of Roadmap steps in Roadmap UI element

    Hi All,
    I want to know of if it is possible to hide/unhide the Raodmap steps in the Roadmap UI element at runtime. When I do ctrl + right click, the entire roadmap is hidden.
    Thanks,
    Pooja

    HI Pooja,
    for personalizing i hope this would help u better :
    Changing the position and visibility of  UI elements – for example, for fields and tables.
    · Adding or changing additional interface information – for example changing the button text or adding quick infos.
    · Role-specific changing of interface labels.
    · UI element roadmap: Removing individual, unneeded process steps.
    · Statically changing individual field attributes.
    · Changing the alignment of individual UI elements – for example, line starting point, align right, centered alignment.
    · Wider selection of fonts and colors for the interface layout
    Hope this might help u.
    For further ref check on to this link:
    http://help.sap.com/saphelp_erp2005/helpdata/en/11/01754276e4c153e10000000a1550b0/frameset.htm
    Regards,
    Nagarajan.

  • UI Personalization Roadmap

    Hi,
    I'm not sure whether this topic belongs in this forum but I
    couldn't find another forum that addresses Flex and related user
    interface control personalization. If anyone knows of a better
    forum please let me know.
    Question / Discussion
    I'd need to understand the current position Adobe has on UI
    personalization when building an application based on the
    Flex/Flash framework.
    We'd like to move our product to Flex/Flash but the solution
    must permit a user to personalize our user interface and save the
    changes made. From both a business & developer perspective, we
    want to concentrate on our business solution rather than build out
    the technology to do this.
    Some of the user UI personalization changes expected are:
    - Hide non-mandatory fields, buttons, tabs or groups
    containing non-mandatory fields (typically unused features for that
    user)
    -Move a field or group of fields within an existing tab or
    other container to another container
    -Make a non-mandatory field mandatory
    -Define new custom buttons that link to existing application
    functionality or URL for mashups
    -Resize input and display fields (individual fields as well
    as columns in lists/grids)
    These UI changes need to be completed in MXML only,
    independent of the underlying business code since one product
    solution will be deployed and supported.
    The idea would be to store these user changes in a user
    profile that could guide the browser in rendering the MXML. A
    profile approach would also enable a user to share a unit of work
    that has a personalized UI with another user. Profiles need to
    migrate forward with the solution as subsequent versions are
    released to minimize maintenance & testing impact.
    We are looking for a more malleable interface that a user can
    shape to their purpose after delivery. This is similar to web
    parts.
    Are there any plans to support such a UI personalization
    mechanism on the Flex roadmap?
    Thanks.

    HI Pooja,
    for personalizing i hope this would help u better :
    Changing the position and visibility of  UI elements – for example, for fields and tables.
    · Adding or changing additional interface information – for example changing the button text or adding quick infos.
    · Role-specific changing of interface labels.
    · UI element roadmap: Removing individual, unneeded process steps.
    · Statically changing individual field attributes.
    · Changing the alignment of individual UI elements – for example, line starting point, align right, centered alignment.
    · Wider selection of fonts and colors for the interface layout
    Hope this might help u.
    For further ref check on to this link:
    http://help.sap.com/saphelp_erp2005/helpdata/en/11/01754276e4c153e10000000a1550b0/frameset.htm
    Regards,
    Nagarajan.

  • [svn] 2818: Fix up the remaining uses of stage that might cause a security violation.

    Revision: 2818
    Author: [email protected]
    Date: 2008-08-12 12:01:36 -0700 (Tue, 12 Aug 2008)
    Log Message:
    Fix up the remaining uses of stage that might cause a security violation.
    QE: YES
    Doc:
    Checkintests: YES
    Reviewer: Alex
    Bugs:
    mx/controls/DataGrid.as
    mx/controls/List.as
    Listen to mouse down on sandbox root instead of systemManager. Fix remove listener code.
    mx/controls/sliderClasses/SliderThumb.as
    Listen to mouse down on sandbox root instead of systemManager. Remove stage listener for MOUSE_MOVE since
    systemManager will add a stage listener automatically if the caller has access to the stage.
    mx/preloaders/DownloadProgressBar.as
    Use the DownloaderProgressBar's stageWidth/stageHeight properties instead of directly accessing the stage.
    Modified Paths:
    flex/sdk/branches/3.0.x/frameworks/projects/framework/src/mx/controls/DataGrid.as
    flex/sdk/branches/3.0.x/frameworks/projects/framework/src/mx/controls/List.as
    flex/sdk/branches/3.0.x/frameworks/projects/framework/src/mx/controls/sliderClasses/Slide rThumb.as
    flex/sdk/branches/3.0.x/frameworks/projects/framework/src/mx/preloaders/DownloadProgressB ar.as

    Revision: 2818
    Author: [email protected]
    Date: 2008-08-12 12:01:36 -0700 (Tue, 12 Aug 2008)
    Log Message:
    Fix up the remaining uses of stage that might cause a security violation.
    QE: YES
    Doc:
    Checkintests: YES
    Reviewer: Alex
    Bugs:
    mx/controls/DataGrid.as
    mx/controls/List.as
    Listen to mouse down on sandbox root instead of systemManager. Fix remove listener code.
    mx/controls/sliderClasses/SliderThumb.as
    Listen to mouse down on sandbox root instead of systemManager. Remove stage listener for MOUSE_MOVE since
    systemManager will add a stage listener automatically if the caller has access to the stage.
    mx/preloaders/DownloadProgressBar.as
    Use the DownloaderProgressBar's stageWidth/stageHeight properties instead of directly accessing the stage.
    Modified Paths:
    flex/sdk/branches/3.0.x/frameworks/projects/framework/src/mx/controls/DataGrid.as
    flex/sdk/branches/3.0.x/frameworks/projects/framework/src/mx/controls/List.as
    flex/sdk/branches/3.0.x/frameworks/projects/framework/src/mx/controls/sliderClasses/Slide rThumb.as
    flex/sdk/branches/3.0.x/frameworks/projects/framework/src/mx/preloaders/DownloadProgressB ar.as

  • ESS FPM

    Hi sdn friends,
    I´m triying to reduce the FPM steps of the banking service. I need to allow just-read data for my ess users (remove step 2 an 4. My problem is when I'm triying to remove an FPM step from the FPM application it's explodes when accesing the service.
    Guru's can you help me.
    NW 2004s and ERP ECC 6.0
    Regards,

    David,
    For this you have to use the Self Service Administrator Role on the portal which comes in a separate package as a .sca file in Service Market Place ....download it and deploy it using JSPM....then assign the role to user and make the change there in FPM Applications....
    Hope it helps...
    Shikhil

Maybe you are looking for

  • Issue with PO Response in SRM 7.0

    Hi Experts, We have upgraded our system from SRM 4.0 to 7.0. Post upgrade we are facing an issue with PO Response document. Scenario:          When the PO is ordred, Vendor sends a the PO response through XML. Our middleware call the an FM which uses

  • J1INCHLN Create challan not considering some documents

    Hi, J1inchln not considering some documents. When i checked in fagll03 those documents are not cleared , it still reamin as open items. In j1inmis report those docments which are not consdered by j1inchln are displaying. Because of this some price di

  • HT201328 how will i know what carrier the phone is locked with?

    how will i know to which carrier is my iphone unlocked.

  • Update Itemcost from the Production order.

    Hi Experts, I have created a UDF(Amount) in the Production order rows, if iam entering the amount for the input item the Amount should get updated in the Itemcost of the Itemmaster data.. How to write the update statement? Is it possible to update th

  • Problem in STO b/t plant with in Company code

    Dear ALL,         I have done all the configration for STO withing company in two plant(vednor & customer master for both the palnt & assign it also & also shipping point),but i am still getting the error "Shipping data for material is not maintain"