VBU-FKSAA field not updated when the item category is changed

Hi,
The sales order is created with the item category ZZZZ which is not relevant for billing. So the VBUP-FKSAA value is blank which means not relevant for billing.
Now in the change mode, the item catg is changed to XXXX. this is relevant for billing. But even after changing the item catg the billing status is not changed. so the sales order can not be billed.
Please let me know if anyone has come across this problem and also the soution.

Thank You Vincent. It works for finish goods that currently have cost in the sap-bo (taking std or avg) . Do you what should I do when the item is receiving the first-transation and it is an inventory entry coming from DTW ? Because when I test this conditions, the field "price" is ignored and when I check the inventory entry sent using dtw the recorded cost is "cero".
Thank a lot
Salomon Ponce

Similar Messages

  • Sharepoint 2013, MS Project 2013 - Task List not updating when the project file is changed

    Hi
    I have created a SharePoint task list and timeline from a MS Project 2013 file on my PC. I have then created a new Project file from that task list which then places the new project file in the site asset folder and provides me with a synced copy. I now
    only use the SharePoint copy of the project file in my MS Project as any change I make to the project file should be reflected in the Task list and vice-versa
    However if I add some tasks into the middle of the project with MS project, the SharePoint Task list is not updated to show these additional tasks. If I open the SharePoint task list with MS Project - from the task list toolbar - the project file shows the
    added tasks.....so the MS Project file in the site asset folder is correct  but the tasks in the SharePoint task list is not being updated
    Anyone seen this before ?
    Thanks
    Geoff

    Hi Esben,
    According to your description, the error occurred when opening the task list with the content approval enabled in Project.
    Per my knowledge, when we enable the content approval for the task list, the field named Approval Status which is required will be created in the list.
    However, if a project plan doesn’t contain a field that is required in SharePoint, the plan won’t sync.
    The error occurs because of the required field Approval Status when the content approval is enabled in the task list, so we need to add the required field as a custom field in Project.
    More information:
    Sync with a SharePoint tasks list:
    http://office.microsoft.com/en-in/project-help/sync-with-a-sharepoint-tasks-list-HA102828524.aspx
    Best regards.
    Thanks
    Victoria Xia
    TechNet Community Support

  • Whether Shopping cart will be updated when the PO quantity is changed

    Hello SRM Guru,
    I have one question.
    When the PO quantity is changed after the shopping cart was approved Whether this changed quantity will update the  Shopping cart ?
    Technical Scenario : extended classic
    system: SRM 7.0 SP6
    Regards
    Madhan

    Hello,
    If PO is created from shopping cart, this means that shopping cart is fully approved.
    After shopping cart is fully approved, no changes are allowed. Therefore, if PO quantity is changed, this value will not be updated in shopping cart quantity.
    Regards,
    Ricardo

  • Date field not updated when select on F4 value on editable ALV Grid

    Can some one look into this to see what was wrong.
    I have a report that display fields extracted from a ZTable and display on an ALV Editable Grid.
    The data are displayed as read only mode for these fields:
    Field A -   type char20 and have a search help available.
    Start Date - type dats
    End Date - type dats.
    Field B
    Field C ...
    When user select to add new record,  Field A, Start Date and End Date must be editable, the rest are read only.
    On field A because there is search help available, I have no problem select data on F4 pull down menu and the data is updated on the grid.
    But on field start date and end date, there is F4 menu and when you pull down, it shows the calendar date.  But when I select the date to change, it acts like nothing happens.  I run the debug mode and found out that in function module 'F4IF_FIELD_VALUE_REQUEST', after you select the date field, I got the return code irc = 8 from line 305 of this FM.
    Here is what I did.
    I build field catalog similar like BCALV_EDIT04  (add table type lvc_t_styl to each extracted record to indicate which field will be  editable.
    In the PBO,  I build field catalog and set style as enable for these fields:
    CALL FUNCTION 'LVC_FIELDCATALOG_MERGE'
        EXPORTING
          i_structure_name = p_struct
        CHANGING
          ct_fieldcat      = p_t_fieldcat.
    LOOP AT p_t_fieldcat INTO ls_fcat.
        CASE   ls_fcat-fieldname.
           when 'Field_A'.
               ls_fcat-ref_table = 'ZTABNAME'.
            ls_fcat-ref_field = 'FIELD_A'.
            ls_fcat-edit = 'X'.
            MODIFY p_t_fieldcat FROM ls_fcat.
       when 'START_DATE' or 'END_DATE'.
        ls_fcat-style = CL_GUI_ALV_GRID=>MC_STYLE_enabled.
             MODIFY p_t_fieldcat FROM ls_fcat.
       endcase.
    Just curious, I copied program BCALV_EDIT_08 to ZBCALV_EDIT08 and make field booking date as editable to test.  When I select to change booking date from F4 menu pull down, the new date is populated to the screen field.  So what was wrong between my program and BCALV_EDIT_08?  Thanks for your help.  I am stuck on this problem for 2 days and could not figure out what was wrong.

    not sure why you use that FM for date filed , you just need in the field catalog make sure that are use a date field of reference , anyway check program BCALV_EDIT_01

  • Field not updating when switching fields.

    I am using Oracle Forms Builder 10g and I created a procedure to get the data from a related table into the data block
    PROCEDURE GET_MODEL_VAL IS
    CURSOR MODEL_VAL IS
    SELECT VMODEL_NAME
    FROM VEHICLE, VEHICLE_MODEL
    WHERE :VEHICLE.VEHICLE_ID = VEHICLE.VEHICLE_ID
    AND :VEHICLE.VMODEL_ID = VEHICLE_MODEL.VMODEL_ID;
    BEGIN
      OPEN MODEL_VAL;
      FETCH MODEL_VAL INTO
      :VEHICLE.VMODEL_NAME;
      IF MODEL_VAL %NOTFOUND THEN
           :VEHICLE.VMODEL_NAME := NULL;
      END IF;
      CLOSE MODEL_VAL;
      EXCEPTION
           WHEN NO_DATA_FOUND THEN
           MESSAGE ('Model Data Not Found');
           WHEN OTHERS THEN
           MESSAGE ('Post-Query Unsuccessful');
    END;And I created an on validate trigger to check if the FK is valid and then call the above pcedure
    DECLARE
         NUM NUMBER;
    BEGIN
         SELECT COUNT(*) INTO NUM
         FROM VEHICLE, VEHICLE_MODEL
         WHERE :VEHICLE.VMODEL_ID =  VEHICLE_MODEL.VMODEL_ID;
         IF
              NUM = 0 THEN
              DISPLAY_VMID_ALERT;
              RAISE FORM_TRIGGER_FAILURE;
         END IF;
         GET_MODEL_VAL;
    END;Now here's the fun part. If I am updating the record when I tab or click away from the VMODEL_ID field the VMODEL_NAME field updates and everything is fine, however during an insert it does not.
    Any insight?
    The Oracle Peon...
    Edited by: Oracle Peon on Apr 25, 2013 10:18 AM
    Edited by: Oracle Peon on Apr 25, 2013 10:31 AM
    Edited by: Oracle Peon on Apr 25, 2013 11:25 AM

    I was just typing up a response to you Steve when it hit me, the VEHICLE_ID isn't in the database yet during an insert.
    WHERE :VEHICLE.VEHICLE_ID = VEHICLE.VEHICLE_ID
    AND :VEHICLE.VMODEL_ID = VEHICLE_MODEL.VMODEL_ID;should be
    WHERE :VEHICLE.VMODEL_ID = VEHICLE_MODEL.VMODEL_ID;Now I'm a bit new to Oracle so excuse my ignorance but you and Amatu lost me in your explanation.
    I'm going to mark this as answered but I'd appreciate either a little more detail on what you guys did answer or some links to help me learn a bit more.
    Thanks...
    The Oracle Peon...
    Edited by: Oracle Peon on Apr 25, 2013 11:25 AM

  • Smart Collections : Without Keywords does not update when removing items

    I removed a folder from Lightroom 4 (Beta1)
    Smart Collections : Without Keywords shows 325,
    But there are only 8 photos in my entire catalog.
    It appears the number of Pictures without keywords is not updating after importing or removing photos
    Lightroom 4 (Beta 1) x64 Windows
    Windows 7 x64

    had another go today
    It appears its only updates when openeing or closing LR4, or if you add/remove a keyword

  • Textfields iOS not updated when the XML allready is updated

    Hi,
    I am testing an app for iOS and later on also for Android. I am using an XML from PHP with and also without a MySQL database.
    In one case I only use the current date to be published in the app in a textfield. Problem is that to get all ML connected textfields updated even when the XML allready is updated I have to completely restart the iPod Touch which I use to test on. Is there a way that the user is able to push a button to manually update the app without closing down the device? In addition, is there away that the app automaticaly refreshes its content?
    Any help is greatly appreciated.

    Took me some time to find out why I didn't succeed.
    I finally succeeded in the way kglad suggested.
    Problem was that when you close the app and later on open it the information for example a date/time through php/xml doesnot change.
    That is untill you click something.
    So  my test with just the date didnot seem to change anything.
    But when I hit a button to another frame and send it back
    The date/time are updated.
    Thanks kglad for pointing me in the right direction.

  • TextBox does not update when drop down list selection changes

    I have drop down list the user can select a client name from. Once the client is selected and the "view report" button is clicked it the report has a textbox that displays the Client name or it is supposed too.
    The report will display the first client name but any subsequent client name does not display on the first. I am pretty sure that is because I have chosen the "Dataset" where the both the "values' have "first" in front of the field.
    How do I get the textbox to update to match as each client is chosen from the drop down list? I cannot use the report "parameter" I am passing to the stored procedure because the drop down list's parameter is the database name not the client
    name.
    Any help is appreciated.
    Thanks,
    Sue

    Okay, sorry but I am just getting back to my report. I still cannot display the Client Name in a text box at the top of my report. The textbox must be dynamic because my client name can be one of many that is picked from a drop down list box.
    I added a textbox and tried to use the "join" with my Parameter - clientname.
    In the textbox expression I used the following:
    =JOIN(First(Fields!ClientName.Value,
    "GetDatabaseName"),",")
    I got this error message:
    [rsRuntimeErrorInExpression] The Value expression for the textrun Textbox1.Paragraphs[0].TextRuns[0] contains an error: Overload resolution failed because no Public 'Join' can be called with these arguments:
        'Public Shared Function Join(SourceArray As String(), [Delimiter As String =  ]) As String':
            Argument matching parameter 'SourceArray' cannot convert from 'String' to 'String()'.
        'Public Shared Function Join(SourceArray As System.Object(), [Delimiter As String =  ]) As String':
            Argument matching parameter 'SourceArray' cannot convert from 'String' to 'Object()'.
    Preview complete -- 0 errors, 1 warnings
    I also tried setting up a "filter" on the clientname using these instructions
    Right-click the dataset (GetDatabaseName) to open the Dataset Properties.
    Click Filters in the left pane, add a filter like below:
    Expression:[DBName]
    Operator: In(multiple-parameter) or =(signal-parameter)
    Value:[@DBName]
    I get an error message too which I am not even going to display.
    I can set it up and run it as long as I don't want to change the value in the "textbox" to match the value in the drop down list. I am totally frustrated at this point. Why won't it work?
    Simply put - I want the value selected in my drop down list box to match the value in my textbox at the top of my report if drop down list says "Susie" then I want "Susie" in my textbox or if drop down changes to "Bobby" then I want Bobby to show up in my
    textbox when I generate my report.
    Any suggestions of what else I may need to try?
    Thanks for the help.
    Sue
    Sue

  • When item category is changed demand is removed from Md04

    Hi All,
          I have a requirement in which when the item category is changed in Va02 they want to make the schedule line item category constant, and when this is done the demand is removed from MD04.What has to be made to remain in MD04.
    Thanks & Regards,
    Amarnath.

    Hi,
    This may be a configuration issue.
    Check the settings for the old and new Item categories and which Schedule Line Categories are assigned to each.

  • Text not updated when changing the ResourceBundle

    this is an abstraction of what i have on my code:
    controller
    public class controller extends VBox{
         @FXML protected Label ex2;
         public CtrlMainMenu() throws Exception{
              FXMLLoader fxmlLoader = new FXMLLoader(getClass().getResource("/view/View.fxml"));
              fxmlLoader.setController(this);
              fxmlLoader.setRoot(this);
              fxmlLoader.setResources(CtrlLanguage.resource);
              fxmlLoader.load();
         @Override public void initialize(URL arg0, ResourceBundle arg1) {
              ex2.setText(arg1.getString("ex2"));
    }View
    <fx:root type="VBox" xmlns:fx="http://javafx.com/fxml">
         <children>
              <Label text="%ex1"/>
              <Label fx:id="ex2"/>
         <children>
    </fx:root>Language controller
    public class CtrlLanguage{
         private static String PATH =
              new File(
                   CtrlImageLoader.class.getProtectionDomain().getCodeSource().getLocation().getPath()
              ).getParentFile().getPath() + "/language/";
         public static ResourceBundle resource;
         public static void setLanguage(String file) throws Exception{
              try {
                   if(new File(PATH + file).exists())
                        resource = new PropertyResourceBundle(new FileInputStream(PATH + file));
                   else
                        resource = new PropertyResourceBundle(CtrlLanguage.class.getResourceAsStream("/language/"+file));
              } catch (Exception e) {
                   resource = new PropertyResourceBundle(CtrlLanguage.class.getResourceAsStream("/language/EN"));
         public static String get(String key){
              try {
                   return resource.getString(key);
              } catch (Exception e) {
                   return key;
    }problem comes when I try to change the language without changing the current root
    the elements of the view are not updated when the bundle is changed (CtrlLanguage.setLanguage("file");) until the root is changed/loaded again
    is there any way so i can make the content change without having to reload again the root?

    A method which returns an instance of the following class:
    * A localizable read only property for internationalization of string properties.
    * @author Christian Schudt
    public final class LocalizableStringProperty extends ReadOnlyStringProperty {
        private String resourceKey;
        private StringProperty text;
        private String baseName;
        private ClassLoader classLoader;
        // Keep the listener as hard reference in the class, so that it won't get GCed, until this class has no references any more.
        private ChangeListener<Locale> changeListener;
        public LocalizableStringProperty(LocaleManager localeManager, String baseName, String resourceKey) {
            this(localeManager, baseName, resourceKey, null);
        public LocalizableStringProperty(LocaleManager localeManager, String baseName, String resourceKey, ClassLoader classLoader) {
            changeListener = new ChangeListener<Locale>() {
                @Override
                public void changed(ObservableValue<? extends Locale> observableValue, Locale locale, Locale locale1) {
                    localeChanged(locale1);
            localeManager.localeProperty().addListener(new WeakChangeListener<Locale>(changeListener));
            this.baseName = baseName;
            this.classLoader = classLoader;
            this.resourceKey = resourceKey;
            text = new SimpleStringProperty();
            localeChanged(localeManager.getLocale());
        private void localeChanged(Locale locale) {
            ResourceBundle resourceBundle;
            Locale.setDefault(locale);
            if (classLoader == null) {
                resourceBundle = ResourceBundle.getBundle(baseName, locale);
            } else {
                resourceBundle = ResourceBundle.getBundle(baseName, locale, classLoader);
            text.set(resourceBundle.getString(resourceKey));
        @Override
        public String get() {
            return text.get();
        @Override
        public Object getBean() {
            return text.getBean();
        @Override
        public String getName() {
            return text.getName();
        @Override
        public void addListener(ChangeListener<? super String> changeListener) {
            text.addListener(changeListener);
        @Override
        public void removeListener(ChangeListener<? super String> changeListener) {
            text.removeListener(changeListener);
        @Override
        public void addListener(InvalidationListener invalidationListener) {
            text.addListener(invalidationListener);
        @Override
        public void removeListener(InvalidationListener invalidationListener) {
            text.removeListener(invalidationListener);
    }

  • Goods recipient field not available when creating a service purchase req

    We are trying to create a release strategy for purchase requisitions with acount assignments K, F and P.  The release strategy would use the requisitioner and goods recipient fields to determine the release group.  The issue is when creating a purchase req with item category D for any account assignment, the recipient field cannot be populated.  It is greyed out.  I tried setting the field as mandatory in the IMG at the account assignment level but it doesn't prompt me for a recipient if item category D is entered.  Is there a way to allow this field to be populated?  I don't care if the value is transferred to the purchase order but I need it populated to determine the appropriate release strategy.  We are not using workflow so that is not an option.  Any suggestions would be appreciated.

    Srinivas, I appreciate the response but the requisitioner field is not the problem.  I can set that field to mandatory.  The issue is I cannot populate the recipient field that's located on the account assignment tab of the purchase req.  The recipient field can be populated if the item category field is blank but as soon as I populate the item category with D for service, the recipient field is unavailable.  Is there a way to populate this field when the item category is D?

  • To set an error while saving the order when the item categor changed in CRM

    Hello SAP Gurus,
    As per our current system set up, whenever the order created in CRM once replicated to ERP should not change the item category in CRM .If the item category is changed( allows the system) and saved, it gives an error as u201CItem category should not be changedu201D. We have been encountering  this type of issue since long back
    To avoid this type of issue, an error should through while saving the order when the user changes the item category in CRM.
    Can someone help me to achieve this.
    Thanks in advance.
    Cheers
    Sreedhar

    Sreedhar,
    Can't you control it by Item Category determination?
    JD

  • Why QUAN_PO_E field in BBP_PDIGP tabl is not reset when PO item is deleted?

    Hi Gurus,
    For some reason, after an item is deleted at PO, its corresponding QUAN_PO_E field in BBP_PDIGP table of SC has the same quantity ( for example, 3 pieces ).
    When the buyer access the SOCO, the item is not displayed because previously the system make a validation: if quantity is equal to quan_po_e ( the difference is zero ), eliminates the item to display and reset the SOURCE_REL_IND to space.
    Somebody knows the reason for which the field QUAN_PO_E is not updated with the value of zero after deleting the items of the purchase order?
    How can I update the QUAN_PO_E field on safe way maintaining the data consistency?
    I have posted new message in order to try separately from thread Re: SOURCE_REL_IND : shopping cart not appearing in the sourcing cockpit

    Hi,
    Could you please check if note  1326380 is implemented ?
    The implementation of this note will not affect the older SC which
    didn't return to sourcing after PO deletion. But the issue should not
    happen for the POs that are deleted after the implementation of the
    note.
    Please, check if field QUAN_PO_E (table BBP_PDIGP) was not cleared after
    PO deletion.
    If not, you can clear this field for the SC item (for which the PO has
    been deleted), then clean_reqreq_up should send the SC to sourcing.
    So a work around would be to manually delete this field, and run
    clean_reqreq_up again.
    Summer

  • Why the PO action history is not updating when i perform the vacation rules

    Hi,
    Can any one explain why the action history is not updating when performed the vacation rules using the below example
    Example: A >B>C>D are in the approval hierarchy here I have defined the vacation rules by login to the user C here I selected the item type as “All” and delegated to D.
    Now the buyer “A” has sent the document for approval. The user “B” can successfully reserve funds and approved the document. Now the document is automatically delegated to D. Here D can open the document from open notifications and approved the document. Now when I checked the Action history here I cannot find the performed name D who has actually approved the document.
    Note:we are using the 11.5.10.2 version.
    The Action History in the following manner
    Seq Action Performed By
    ================================
    4 Approve C
    3 Forward B
    2 Reserved B
    1 Forward A
    0 Submit A
    From the above action history why the user D name is not showing. Can any one let me know ASAP?
    Regards,
    Keivn.
    Edited by: user10960960 on May 5, 2009 3:36 AM

    When you set up the vacation rule, if you simply delegate the ownership to D, then C retains the ownership and the approval occurs with C's limits. And hence D is treated as the approver.
    If you transfer the ownership, then C is out of the picture. The notification goes to D and when he/she approves, D's limits kick in and he will be seen as approver.
    Hope this helps,
    Sandeep Gandhi

  • Valuation Update in the Item not present in FAGL_FC_VAL

    Hi All
    In F.05 you have a " Valuation Update in the Item" indicator. what is the importnace of that indicator. and Why is this indicator not present in FAGL_FC_VAL.
    Thanks

    Hi,
    When i check the screen i am not finding any indicator like you mentioned. could you please let me know in which screen it will appear,
    Like
    1.Posting
    2. Open Items
    3. GL Balances
    4.Other
    5. FASB 52
    In which screen valuation update line item is present in f.05
    regards
    N.Kumar

Maybe you are looking for