PO confirm view

Hi,
We use the confirm view in PO to record vendor confirm date and quantity.
Please kindly tell us which tables record those data in SAP?
Thanks a lot.

Hi,w1n 
Thanks a lot for your reply.
We have other problem now.
We didn't keyin any data on confirm control key when we created  PO.
Now we want to change the confirm date in PO confirm view by ME22 or ME22N.
But it can't be changed.
We check the field selection of ME22 or ME22N in IMG and reset those by Opt. entry.
It still can't be change.
How could I change the condfirm data?
Thanks a lot.

Similar Messages

  • Restrict components in confirmation view

    Dear Experts ,
    I have a requirement that we want to restrict the number of components in CO11n view that are being copied from prod ord component view is there any such kind of provision available in SAP .if so plz suggest answers would be awarded.
    Cheer' s
    SFC

    Hi,
    There are two ways to control back flush during production order confirmation.
    In the customization, order type confirmation control parameters (T.code: OPK4) you can select the indicator All components. Meaning it will back flush all the compoents in the order during confirmation. If you unselect this indicator it will issue only back flushed components (compoents selected for backflush indicator in the order).
    coming to your second question, once you select the back flush indicator and did partial issue of the components, it does not allow to remove the back flush indicator in the order. You have to cancel the confirmation and unselect the indicator.
    Hope this explains your query
    Thanks,

  • Confirmation view in travel expense

    Hi all,
    Recently we received a request to change an url link which place in the complete page of Create Expense Report application.
    in this page, there're 2 urls, return to all my expense requests. enter a new expense request.
    Where can I find this view in WDJ travel application ?
    Kr,
    Ben.J.

    the navigation is controlled from Homepage framework.
    So if you want to change the URL and change the position or add the new service you can achieve it  from Homepage

  • [iphone] Core Location confirmation view

    Hi,
    When calling [location startUpdatingLocation]; an alert is displayed: "App would like to use your current location". That's ok.
    The problem is that when i startUpdatingLocation, this alert is displayed 3 or 4 times. How can I display this alert only once?
    Thanks,
    Pitteri

    ...hate it when that happens
    Thanks for the follow-up & good luck w/your project.

  • Creation of new view in ICWC

    Hi All,
    I have created the new view in my custom CRM_IC. Can I know what is the next step to do in order for the new view to show in ICWC - what is the inbound or outbound plug all about?
    Appreciate if someone can list me all the steps. Thanks

    Objective
    Calling a custom Simple View for the follow-up activity. Whenever, we click the link of a follow-up activity from the activity clipboard, the system leads us to “Simple Activity” view, where we can maintain the description and the status.
    Note
    This is just a guideline document to work with customer specific view sets for one case. While following this procedure for other cases, we may need to do further enhancements.
    A.     Primary Steps
    Create Custom Package “Z_CONS_COOK1”
    Create BSP application “Z_CRM_IC1” under package “Z_CONS_COOK1”.
    B.     Creating View Sets & Controllers
    1.     Through workbench transaction, Create New View Set: SimpleActivitySet
    2.     Specify view area name “main”.
    3.     All Controller & Model Classes are generated in the background.
    4.     Redefine method “GET_STATE_DESCRIPTION” of Controller Class “ZL_Z_CRM_IC_SIMPLEACTIVIT_IMPL” & populate with following source code:
    METHOD IF_BSP_WD_HISTORY_STATE_DESCR~GET_STATE_DESCRIPTION.
    *CALL METHOD SUPER->IF_BSP_WD_HISTORY_STATE_DESCR~GET_STATE_DESCRIPTION
    EXPORTING
       IV_CURRENT_DESCRIPTION =
    RECEIVING
       DESCRIPTION            =
        DESCRIPTION = TEXT-001.     " 'Simple Activity'
    ENDMETHOD.
    5.     Corresponding BSP Page is generated with the following code:
    %@page language="abap"%
    <%@ extension name="htmlb" prefix="htmlb"%>
    <%@ extension name="xhtmlb" prefix="xhtmlb"%>
    <%@ extension name="crm_bsp_ic" prefix="crmic"%>
    <%@ extension name="bsp" prefix="bsp"%>
    <crmic:gridLayout cellSpacing="1" columnSize="1" height="100%"
    rowSize="1" width="100%">
    <crmic:gridLayoutCell colSpan="1" columnIndex="1"
    rowIndex="1" rowSpan="1">
                <bsp:call  comp_id="<%=controller->GET_VIEWAREA_CONTENT_ID( 'main' )%>"
    url="<%=controller->GET_VIEWAREA_CONTENT_URL( 'main' )%>"/>
                </crmic:gridLayoutCell>
    </crmic:gridLayout>
    6.     Activate all objects
    C.     Creating Views & Controllers
    1.     Create View using IC Web Client Workbench transaction. Give view name “SimpleActivity”.
    In the wizard enter our view name, and specify all model nodes, model attributes and links to custom controllers.
    Add Model Nodes:
    Model Nodes          BOL Entity     High-level model node    BOL Relation
    GT_BTORDER     BTOrder                         
    GR_BTADMINH     BTAdminH     GT_BTORDER          BTOrderHeader
    GR_BTSTATUS     BTStatusH     GR_BTADMINH          BTHeaderStatusSet
    GR_BTSTATUSH     BTStatus     GR_BTSTATUS          BTStatusHCurrent
    Four nodes are the pointers to the similarly named BOL entities of the focus object. The focus object will be the Activity that the user clicked in the Activity Clipboard. Whenever this happens, an instance method of the controller is called. Method “IP_INBOUNDPLUGID” retrieves the BOL entities from the global memory and places them into these attributes. They can also be seen as buffers since they are used in multiple locations within the controller class.
         Value node: Optional entry, keep it blank.
    Add Model Attributes:
    Model Attribute     Model Node          BOL Attribute
    DESCRIPTION     GR_BTADMINH     DESCRIPTION
    STATUS          GR_BTSTATUSH     STATUS
    Create Links to Custom Controller
    Context node:          GT_BTORDER
    BSP Application:     CRM_IC
    Custom Controller:     CuCoBDC.do
    Context node (Custom Controller):     CURRENTINTERACTIONRECORD
    Select View Type
    Type: Form View
    2.     Restart the IC Web Client Workbench. We will observe, controller class is generated with methods. If we want to enhance these methods we should redefine them in the corresponding *_IMPL class.
    3.     Define the Inbound Plug.
    This is the method that is called by the framework whenever we navigate to our view set. Define method “IP_INBOUNDPLUGID” and populate with following code:
    Following attributes added to the controller class, as it was showing an error message:
    GR_BTORDER      TYPE REF TO     CL_CRM_BOL_ENTITY
    GR_BTADMINH     TYPE REF TO     CL_CRM_BOL_ENTITY
    GR_BTSTATUSH     TYPE REF TO     CL_CRM_BOL_ENTITY
    GR_BTSTATUS     TYPE REF TO     CL_CRM_BOL_ENTITY
    METHOD IP_INBOUNDPLUGID.
    data: lr_bdc     type ref to cl_crm_ic_cucobdc_impl,
          lr_btorder type ref to if_bol_bo_property_access.
    *- Read Parameter
      lr_bdc ?= get_custom_controller( 'CuCoBDC' ).
      CALL METHOD lr_bdc->get_navigation_data
      IMPORTING
        ev_selected_object = lr_btorder.
    *- Read Model
    IF lr_btorder IS BOUND.
        TRY.
           gr_btorder  ?= lr_btorder.
           gr_btadminh  = gr_btorder->get_related_entity(
                          iv_relation_name = 'BTOrderHeader' ).
           gr_btstatush = gr_btadminh->get_related_entity(
                          iv_relation_name = 'BTHeaderStatusSet' ).
           IF gr_btstatush IS NOT BOUND.
              gr_btstatush = gr_btadminh->create_related_entity(
                          iv_relation_name = 'BTHeaderStatusSet' ).
           ENDIF.
           gr_btstatus = gr_btstatush->get_related_entity(
                          iv_relation_name = 'BTStatusHCurrent' ).
           IF gr_btstatush IS NOT BOUND.
              gr_btstatush = gr_btstatush->create_related_entity(
                          iv_relation_name = 'BTStatusHCurrent' ).
           ENDIF.
           CATCH cx_root.
        ENDTRY.
    ENDIF.
    ENDMETHOD.
    4.     Confirm View Layout “SimpleActivity” consistency.
    5.     Two methods are responsible for the data transfer between the model/controller and the view and are created automatically by the wizard.
    SET_MODELLS -- Sends data to the view (PBO)
    DO_HANDLE_DATA -- Retrieves data from the HTTP request fields (PAI)
    We can redefine these methods for further enhancements.
    D.     Adjusting IC Web Client Framework
    After having defined the views, controllers and classes, we need to hook them up to the runtime profile of IC Web Client.
    STEPS:
    1.     To prepare IC Web Client framework for custom-built view-sets, create a new runtime profile BSP application in the customer namespace.
    Create BSP application “Z_CRM_IC_RT_REP” under package “Z_CONS_COOK1”.
    Copy the file CRM_IC.xml from the BSP application CRM_IC_RT_REP to “Z_CRM_IC_RT_REP”.
    2.     Adjust the contents of file “CRM_IC.xml”, as under:
    <%@page language="abap"%><?xml version="1.0"?>
    <WebDynProDefinitions>
        <Application id="CRM_IC">
            <ViewSets>
    <%@include file="../Z_CRM_IC_DT_REP/CRM_IC_All_Viewsets.xml" %>
            </ViewSets>
            <NavigationalLinks>
    <%@include file="../Z_CRM_IC_DT_REP/CRM_IC_All_NavLinks.xml" %>
            </NavigationalLinks>
        </Application>
    </WebDynProDefinitions>
    3.     Create BSP application Z_CRM_IC_DT_REP in package Z_CONS_COOK1.
    4.     Copy page fragment CRM_IC_All_Viewsets.xml of BSP application CRM_IC_DT_REP to Z_CRM_IC_DT_REP and replace the file contents with the following lines:
    Page fragment: CRM_IC_All_Viewsets.xml
    <%@page language="abap"%>
    <%@include file="MainViewSet.xml" %>
    <%@include file="../CRM_IC_DT_REP/BuPaViewSet.xml" %>
    <%@include file="../CRM_IC_DT_REP/CRM_IC_All_Viewsets_wo_BUPA_and_Main.xml" %>
    This definition still works with all standard view sets, but replaces the MainViewSet.xml with our own definition, since it is now loaded from Z_CRM_IC_DT_REP.
    5.     Copy page fragment MainViewSet.xml from BSP application CRM_IC_DT_REP to Z_CRM_IC_DT_REP.
    6.     Copy page fragment CRM_IC_All_NavLinks.xml of BSP application CRM_IC_DT_REP to Z_CRM_IC_DT_REP and replace the file contents with the following line:
    <%@page language="abap" %>
    <%@ include file="../CRM_IC_DT_REP/CRM_IC_All_NavLinks.xml" %>
    This definition makes sure that standard navigational links still work and that we are able to add our own link definitions later.
    7.     Activate all objects.
    8.     Customize the IC Web Client Runtime Framework Profile in such a way that the new Source file is used with the following sample code:
    Navigation: SPRO &#61664; CRM &#61664; Interaction Center Web Client &#61664; Customer-Specific System Modifications &#61664; Define IC Web Client Runtime Framework Profiles.
    Provide new profile name “ZCUST_PROF” & populate it with following set of attributes:
    Profile name:      ZCUST_PROF
    Component Set:      ALL
    Separate Display Model: Off
    Application:      IC_BASE
    Viewset name:     workViewSet
    Runtime Rep.Type: BSP Application
    Application:          Z_CRM_IC_RT_REP
    Page:          CRM_IC.XML
    E.     Creating View Definitions for Design Time Repositories
    1.     Every new view set must be defined in Design Time Repository. For this purpose, create page fragment SimpleActivitySet.xml in BSP application Z_CRM_IC_DT_REP and maintain it as shown in the following sample code:
    Page fragment “SimpleActivitySet.xml”
    <%@page language="abap"%>
    <ViewSet id="Z_CRM_IC1 /SimpleActivitySet">
    <ViewArea id="main" views="Z_CRM_IC1 /SimpleActivity"/>
    </ViewSet>
    2.     Include file “SimpleActivitySet.xml" into page CRM_IC_All_Viewsets.xml of BSP application Z_CRM_IC_DT_REP.
    Page “CRM_IC_All_Viewsets.xml” after modification:
    <%@page language="abap"%>
    <%@include file="MainViewSet.xml" %>
    <%@include file="../CRM_IC_DT_REP/BuPaViewSet.xml" %>
    <%@include file="../CRM_IC_DT_REP/CRM_IC_All_Viewsets_wo_BUPA_and_Main.xml" %>
    <%@ include file="SimpleActivitySet.xml" %>
    3.     Activate all objects.
    F.     Creating Navigational Link Definitions for Design Time Repositories
    To provide a navigational link for the activity clipboard, define this link.
    1.     Create Page fragment “SimpleActivityNavLinks.xml” in BSP Application “Z_CRM_IC_DT_REP” and maintain layout with following code:
    <NavigationalLink name="SimpleActivity">
    <Source viewRef="IRecActivitiesClipboard"
    outboundPlugRef="default"/>
                   <Targets>
    <Target viewRef=" Z_CRM_IC1/SimpleActivity"
    inboundPlugRef="inboundplugid"/>
    </Targets>
    </NavigationalLink>
    2.     Similar to the view definition, also the Navigational Link must be included into the framework.
    Add the following line
    <%@ include file="SimpleActivityNavLinks.xml" %>  to the file
    CRM_IC_ALL_NavLinks.xml in the BSP application “Z_CRM_IC_DT_REP”.
    Page fragment “CRM_IC_All_NavLinks.xml” – source code
    <%@page language="abap" %>
    <%@ include file="../CRM_IC_DT_REP/CRM_IC_All_NavLinks.xml" %>
    <%@ include file="SimpleActivityNavLinks.xml" %>
    3.     Activate all objects.
    G.     Placing View Sets into Controller Hierarchies
    1.     Adjust the file MainViewSet.xml in BSP application Z_CRM_IC_DT_REP.
    Add the reference to our view set and activate the file as shown in the following sample code:
              Page fragment: MainViewSet.xml
    <%@page language="abap"%>
    <ViewSet id="IC_BASE/ICAPPMainViewSet">
         <ViewArea id="navigationArea" views="IC_BASE/navigationViewSet"/>
         <ViewArea id="workArea" views="IC_BASE/workViewSet"/>
         <ViewArea id="contextArea" views="IC_BASE/contextAreaView"/>
         <ViewArea id="breadCrumbsArea" views="IC_BASE/BreadCrumbsView"/>
         <ViewArea id="globalSearchArea" views="HistoryView"/>
         <ViewArea id="helpArea" views="Help"/>
           <ViewArea id="statusArea" views="StatusView"/>
         <ViewArea id="errorArea" views="IC_BASE/ErrorViewSet"/>
    </ViewSet>
    <ViewSet id="IC_BASE/navigationViewSet">
         <ViewArea id="navigationViewSetArea" views="IC_BASE/NavBarView"/>
    </ViewSet>
    <ViewSet id="IC_BASE/workViewSet">
         <ViewArea id="workViewSetArea"
                     views="<%@include file="../CRM_IC_DT_REP/StdWorkareaOccupation.xml" %>
                     Z_CRM_IC1/SimpleActivitySet "/>
    </ViewSet>
    H.     Customize Activity Clipboard
    To make activity clipboard call our new view set, change it’s customizing.
    1.     Create Activity Clipboard profile called “ZCUST_PROF”.
    Navigation: SPRO &#61664; CRM &#61664; IC Web Client &#61664; Basic Functions &#61664; Define Activity Clipboard Profiles.
    Profile name: ZCUST_PROF (copy all entries)
    Keep Technical Profile name: DEFAULT
    2.     Assign this profile to IC Web Client profile.
    3.     Create a new entry for the object BTOrder and wrapped object type BUS2000126 by copying the existing entry BTORDERBUS2000126.
    Activity Clipboard Entry ID: ZBTORDERBUS2000126
    BOL Type: BTOrder
    NavigationLink: SimpleActivity
    4.     Go back to your profile and select Assign Entries to Profile. Replace the original Entry ID BTORDERBUS2000126  with your new entry ZBTORDERBUS2000126.
    5.     Activate your changes and test the IC WebClient (application CRM_IC)

  • Only 4 interaction records display on BP confirm

    Hi,
    While confirming BP on ICWebclient we get the list of Interaction records. In our case we are getting only last 4 interaction records history on BP confirm view. But if you search through Interaction History then you get the complete list with back-Forward pages.
    But on BP confirm we get only 4 interaction records. We want to display all the interaction recods on BP confirm as well i.e. more than 4 reocrds. I tried by changing the General table settings in the View Configuration of BP but no luck..
    Regards
    Hemant.

    Hi Walter,
    Thanks for your reply...
    Since iam a technical person so not having much idea but I checked in SPRO currently it is as below...
    PFCG role            Area              TIme Frame                   description
                                  IH                    Y A
    (Y A--this Year)
    So should i changed time frame....?
    I found that when you confirm BP then only the last 4 interaction records will be displayed as per standard is it true??Can we modified it??
    Regards
    Hemant

  • When can user delete a confirmation?

    When I'm in the Display/Process Confirmation view, I noticed that come confirmations have the Delete button active, while for some the Delete button is inactive.
    At what point am I not able to delete a confirmation? I thought that once the item received is invoiced, I'm not able to delete the receipt. However, I have a confirmation that has not been invoiced but I'm not able to delete. Is it because this SC is old? It's dated a couple of months back and I just created a confirmation today.
    Please advise.
    SN

    HI,
    Is it because this SC is old?
    It's not based on SC old or new..
    check the confirmation status.. whether its transfered to R/3 Or not
    check inbound and outbound idocs.. if it is not transferd to R/3
    check in RZ20 any error messages..
    Thanks
    prasad

  • List where i can see the confirmation delivery date

    Dear guru ,
    Do you suggest me a transaction where I can see the delivery date of purchase order confirmation view ?
    Thanks

    Cris,
    ME23N.  Select the PO of interest (shift-F5)
    Expand the item overview and item detail, if they are not already expanded.
    In item overview, double click on the item of interest.
    It item detail, select the confirmation tab.  Confirmed delivery date is contained here.
    Rgds,
    DB49

  • Confirmation Link - IMG - Homepage Framework for ABAP WebDynrpo appl.

    Hi All
    I am working on Confirmation Link under the SPRO -> Cross-Application Components ->Homepage Framework ->Services->Define links on confirmation page
    This can be used to add a link to the confirmation page of the self-service application, my doubt is, is there any way to use this service for customized ABAP WebDynrpo application? i mean can we add a link to the ABAP WebDynrpo application, if yes how can i achieve this.
    Thanks and Regards
    Chaitanya.A

    Hi,
    I have created a custom web dynpro ABAP app to update a Z Infotype. I have also added it to  the ESS Personal Info area page and all works well. We want this application to work EXACTLY as other delivered ESS apps like address etc,, so we also want confirmation links on the confirmation page.
    I did go through SPRO through the path mentioned in the chain above and created an entry there ... but I have no CLUE as to how willl my web dynpro app use that information ... I am not too experienced with the Portal, just know how to create i-views, and add them to worksets and do a bit of customizing to make them appear on appropriate area page. Any help, or tutorial link or procedure to do this would be helpful. precisely i am confused on the following points:
    1. Do i need to add LinkToAction UI elements on the final view or not ?
    2. How does the portal come to know which view in my app is the final confirmation view.
    3. Do i need to code anything in the web dynpro app to read the customizing info and display the links?
    4. How does the location gets determined where the confirmation links will appear.
    I am for the time being using navigation links in my web dynpro abap application. But when I Navigate to a portal page, the portal desktop theme goes for a toss. So i want to see if confirmation links make any difference.
    Thanks in advance for any help.
    Rajat

  • FPM - Trying to get it work on Service Pack 13

    I came across the FPM today. Since I had to create a new simple application today I gave FPM a try.
    Basically my application would contain two views:
    1. A tree illustrating a HR organisation structure
    2. A table listing documents based on entry selected in the tree
    I probably need the tree soon again for some other application so I wanted to put the tree and the table into 2 different web dynpro components for reusiability. Without FPM I would have created a 3rd WDA component. The main function of this 3rd component would be to pass the lead selection (an OBJID) from the tree to the table view.
    If I understood the concept of the FPM framework correctly, the FPM_OIF_COMPONENT could help me with this passing of parameters between both WDA components and would even offer a lot more nice features.
    I played around with FPM_DEMO_FLIGHT_OVERVIEW and finally managed to create a configuration that would pass the values. But then things became difficult and maybe someone can help me with my questions (I check already all documents in the library, forums, weblogs and wiki dealing with FPM):
    1. Is a good idea to use FPM without having the Enhancement Package 1? The few tutorials and documents I found contained screenshots which look completely different to mine.
    2. In the example I could see how a button is being defined, but they wont show up in my application: to be more accurate: once a refresh button showed up but just disappeared again. I guess now, that there is some error in my configuration, but instead of telling me, that there is an error, FPM just ignores my button.
    3. Can I never navigate back to the initial screen? In my application that would be a requirement for easy selecting another element of the tree.
    4. In the Flight Demo the DELETE_OBJECT button calls the CONFIRMATION view: how is the button linked to the view? In the component controller of the Flight Demo almost all methods of the interface IF_FPM_UI_BUILDING_BLOCK are empty.
    Regards
    René

    > 1. Is a good idea to use FPM without having the Enhancement Package 1? The few tutorials and documents I found contained screenshots which look completely different to mine.
    I would be more worried bout SP13. I'm not sure the functionality of FPM is really complete on SP13.  I've done FPM application on SP14 but never SP13.  It is true however that the design tools were significantly enhanced and simplified in 7.0 EnhP1; so SAP really recommends that customers wait until the EnhP before doing a lot of FPM development.
    > 2. In the example I could see how a button is being defined, but they wont show up in my application: to be more accurate: once a refresh button showed up but just disappeared again. I guess now, that there is some error in my configuration, but instead of telling me, that there is an error, FPM just ignores my button.
    Hard to say without seeing your application and configuration.  I've never had this happen to me. Once I activated one of the standard buttons in the config. they have always appeared for me. 
    > 3. Can I never navigate back to the initial screen? In my application that would be a requirement for easy selecting another element of the tree.
    Sure - Look at the SDN Mentors' Hands-On Workshop for an example that does this ( SDN Community Day Mentor Hands-On Workshop  and http://code.google.com/p/sdn-mentor-handson-2008/downloads/list ). I use the standard Start Over button.  It fires validation and if passed will return to which ever UIBB you have defined as your Initial Screen.
    > 4. In the Flight Demo the DELETE_OBJECT button calls the CONFIRMATION view: how is the button linked to the view? In the component controller of the Flight Demo almost all methods of the interface IF_FPM_UI_BUILDING_BLOCK are empty.
    Many of the standard buttons will first fire validation methods and then if they haven't received a flag not to continue they will follow their configuration to the next step.  In the case of the delete that would be to go automatically to whatever UIBB is configured for Confirmation.

  • Inforecord price for SRM originated orders - CLASSIC scenario

    Hi! Few months' back, I have posted some questions re the behaviour of the price on the PO when orders are generated out of SRM in a classic scenarioI have just completed testing and ended up with the following results:
    1. If I create a shopping cart with material number for direct consumption and have a vendor defaulted from vendor list, the price reflected in the PO is from the inforecord. So, effectively, I could have $1000 on my shopping cart but PO showing $950 as this is the value in the inforecord. The $1000 comes from the material condition record in SRM (extracted via EBP_GET_BACKEND_PRICES).
    2. If I create a shopping cart with material number for STOCK and have a vendor defaulted from vendor list, the price reflected in the PO is that maintained on the shopping cart. Is this behaviour correct? Note that in this case, the master PO is in SRM even in a classic scenario and I wonder whether it is because of this that the pricing behaviour is different.
    Other observation: For stock purchase, I know that if I have multiple vendors (from vendor list and some from inforecords) and if I picked one of the vendors, the price will be adopted at the point of shopping cart so that the user has a 'confirmed' view of the price and there should be no discrepancies of prices between the shopping cart and the PO.
    Can someone please shed some lights as to what should the standard behaviour be?
    Cheers!
    SF

    hello SF
    rule :- shopping cart price is a material  price and it comes from your report and prices are stored in COMMPR01 .(  EBP_GET_BACKEND_PRICES BY this report).
    really the prices are picked from source of suooly like infor record , vendor list  or contract while creating the purchase order.
    i create a shopping cart for 100 USD since material price is 100 usd but PO created for 75 USD.
    since contract material price is 75  usd.
    With regards to using report EBP_GET_BACKEND_PRICES to upload the
    prices from the backend system into EBP. Please refer to the online
    documentation of this report:
    'Under "Price reference per product", you can specify if the average
    value of all valuation groups/plants is to be calculated or if the
    valuation price from the first valuation group/plant is to be used. If
    the average value is to be calculated, choose "Average of all prices".
    If you wish to use the first valuation price, choose "Use first price".
    The standard setting calls for the "Average of all prices" to be
    calculated.'
    This is how this report works. If you want to take another price you
    have to change the coding according your requirements.
    You will need to debug into the backend through
    RFC-Call for backend-table MBEW
    CALL FUNCTION 'RFC_READ_TABLE' DESTINATION iv_rfcdest
    in FORM read_mbew and see the select statement that reads this table.
    The report is taking exactly one price out of the data
    package extracted out of R/3. If this could also be a moving average
    price is more a question which kind of data is extracted out of of R/3
    and how the R/3 config looks like - and if this moving average is in thelist.

  • The stock in transit field is not visible in MD04

    Hi Team
    Stock in transit visible on MD04
    STPO 28801084 is internal stock transfer from FI25 to FI28.
    Qty of PO is visible in the ´stock in transit´ field on SAO transaction MD04 under plant FI28
    when corresponding delivery  1202400481 have been PGId  at FI25 (2014/07/07)
    Stock in transit NOT visible on MD04
    STPO 28502250 is internal stock transfer from FI31 to FI28.
    The ´stock in transit´ Qty of PO is not visible on MD04 under plant FI28.
    even if  the corresponding   delivery 1202323564 have been PGId at FI31 (2014/06/23)
    Br, Kiran Unde

    Hello
    Please take a look on question 9 of the following FAQ note, which explains the standard system behavior:
    549752 - FAQ: MRP elements in transaction MD04/MD05
    9.  Question: Why does the system not display stock in transit for stock
        transport orders with order confirmation (notified orders)?
        Answer:
        Purchase order confirmations do not have to match the original
        purchase order delivery schedule lines. Moreover, the purchase order
        confirmation (view MDLA in materials planning) does not contain the
        same information as the purchase order to determine the stock in
        transit. The display of the stock in transit is therefore not
        implemented for the purchase order confirmation in the materials
        planning evaluation transactions.
    BR
    Caetano

  • Created Migration Repository by accident as Apps User! Can I undo it?

    I am a very stupid fool, and I am scared that I might have done something to one of our clones on PROD via something I just did in SQL Developer. I am too much of a coward to mention it to one of our DBAs as violence may result from my admission!
    I was following this guide:
    http://www.oracle.com/technology/obe/11gr1_db/appdev/msamigrate/msamigrate.htm
    In case you need it, this is the result from "select * from v$version":
    Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bi
    PL/SQL Release 10.2.0.4.0 - Production
    CORE     10.2.0.4.0     Production
    TNS for IBM/AIX RISC System/6000: Version 10.2.0.4.0 - Productio
    NLSRTL Version 10.2.0.4.0 - Production
    Anyway, I got to this bit, while connected to the DB as apps user (yes, stupid I know).
    On the web guide, I got to this step:
    Creating the Migration Repository > 3 > Now you can create the repository in this users connection. Right click on the omwbrep_orcl connection and select Associate Migration Repository
    As soon as I clicked it, and it started churning away, I realised I was way, way, way out of my depth, creating stuff on the DB as an apps user (aaaaah, I am a fool).
    I cancelled the operation, and was told that something had been created.
    I am now really worried I've done something really bad on the database, but I have no idea what I just did, how to check what I did, and if possible, how to undo it.
    Any advice much appreciated, and my apologies for being so stupid, and doing stuff as an Apps user without knowing what I was doing.
    Thanks

    Aaah. I just read this in the JDeveloper help doc:
    Delete or Truncate Repository
    The Delete Repository dialog box is displayed if you click Migration, then Repository Management, then Delete Repository; the Truncate Repository dialog box is displayed if you click Migration, then Repository Management, then Truncate Repository.
    Deleting a repository removes all schema objects that are used for the migration repository. Truncating a repository deletes all data from schema objects that are used for the migration repository, but does not delete the schema objects themselves, effectively leaving you with an empty repository.
    Repository: Name of the database connection in which to delete or truncate the migration repository.
    I therefore went to Migration Repository > Delete Migration Repository, thinking I would be able to confirm / view anything first, but it just went ahead and deleted a load of stuff.
    Can anyone advise please if I have just done something even more stupid than creating a repository in the first place, and then cancelling the operating part way through?
    Good grief, I am so stupid :(

  • Personal Data Overview in ESS portal

    Hi All.
    I'm new to Webdynpro for ABAP and need help on creating the "Overview" details in the Personal Details view as displayed in the current EP7 portal.  I've managed to build my own web service for the "EDIT", "REVIEW" and the "CONFIRMATION" views and we have substitued it in the portal. It now looks the same as the JAVA applicaion (with a feew extra bits).
    I have no example of how to create the "Overview" view. In particular, if there are 2 infotype records, it displays them. I thought it might have something to do with the definition of the node in the COMPONENTCONTROLLER and the cardinality (0..n). Then buildng the logic in WDINIT to bind elements.
    I've tried most things but can't get it to work. 
    Looking forward to any advise that is out there. 
    Regards
    Sam Fazio.

    Hi Rameshb,
    1) Open the ECC
    2) Open the transaction (TCode) SPRO
    3) SAP Reference IMG  -->  Personal Management  -->  Employee Self-Service  -->  Service-Specific Settings --> Address Book --> Whos is Who --> Whos is Who (ESS) : Selection and Output
    4) In Definition of Selection and output fields --> Selection fields  --> include the parameter "P0002-MIDNM" (Middle name)
    Good Luck
    Eduardo

  • Exit from ABAP FPM application to anothor WD application (W/O FPM)

    Hi Experts,
    I am working on a custom ABAP FPM application using roadmap pattern. I have anothor WD application w/o FPM application which calls my second FPM application. I do the navigation from my first application to FPM application using an exit plug in the window of first app. This navigation works fine. Now FPM component has following steps.These views are embed from a WD component ZFPM.
    EDIT  View - WD Comp ZFPM
    REVIEW View - WD Comp ZFPM
    CONFIRMATION View - WD Comp ZFPM
    I want a button on the EDIT screen and confirmation screen which will lead me to first application (ZCOMP1). For this I created an exit plug in the EDIT window and Confirmation window. But when I debug the application i find that even though control goes to respective exit plugs navigation does not happen. I think thats because of FPM. Can anybody please suggest the posible approach for it or is it just that this navigation is not possible?
    Thanks in Advance
    Umnag
    Edited by: Umang Mathur on May 31, 2011 1:36 AM

    Hi Baskaran,
    Thanks for a reply. I have done following things. I added a toolbar button in EDIT step and  I have given  its FPM ID "EMP_PRF_BACK".
    Then on the process event method I have coded as following.
    if io_event->mv_event_id = 'BACK_EMP_PRF'.
    DATA: lv_launch TYPE FPM_S_LAUNCH_URL.
    DATA: lo_navigate_to TYPE REF TO if_fpm_navigate_to.
    lo_fpm = cl_fpm_factory=>get_instance( ).
    lo_navigate_to = lo_fpm->get_navigate_to( ).
    lv_launch-HEADER_TEXT = ''.
    lv_launch-URL = 'http://www.google.com/'.
    *USE_SUSPEND_RESUME = ''.
    *PARAMETER
    lo_navigate_to->LAUNCH_URL( is_url_fields = lv_launch ).
    endif.
    for the test purpose I am trying to open google. It open the link but It opens in a separate window. I want it to open in the same window. Please suggest how to do it.
    Thanks in advance
    Umang

Maybe you are looking for

  • How do I remove my Apple ID from kids devices?

    I have had an Apple ID for my phone and music but recently set up ids for my 2 kids who just got iPhones. My Apple ID info is still showing up on their phones and wants my password. How do we fix this? I want to add them to Family Sharing but am not

  • Fiscal Year Variant change

    Hello, We are being asked to switch our fiscal year variant from 445 to calendar month based beginning 1/1/2010.  I am curious as to how to approach this change from the BW perspective. I first did a quick look at the system to see how and where fisc

  • Release strategy of Purchase order

    Dear all,    I configured Release strategy for purchase order in which i create characteristic,Class.    I also define release procedure for PO like release group,release code,release indicator & release strategy.    But it is not reflecting in Purch

  • Essbase copy issue

    Hi We have an issue with Essbase cube copy in EAS (essbase and eas are in version11.1.2.2) .  When we copy a cube we expect the access for the users and groups to be also available in the copied cube ie say groupA is assigned read access to cube1 but

  • Cable for Attaching MacBook to TV

    We just acquired a new Samsung flat screen TV. It has all sorts of inputs that will accomodate a variety of jacks, cables and formats. So, I'd like to attach the weird port that has a screen symbol, to our new TV. What cable would you recommend? What