Total Settlement Value field  not getting populated in IW38  Transaction

Dear all PMCS group Members,
I have a list of  Maintenance Orders on which  Actual Costs are posted and also periodic settlements done before TECO.  When i list these Maintenance Orders in IW38 transaction the system is bringing in the values in  Total Actual Costs column  but  not the Settlement values in Total settlement column which i need to cross check before i do mass TECO. 
Your help will be greatly appreciated.
regards,
rajaraman.

Dear Rajaraman,
You can see the Total Settlement values by using tcode IW38.
---> Goto IW38
---> Execute the Report for selected Orders
---> Click on the Current Tab or Press CTRL+F8
---> Select the Column of Total Settlements and Actual Settlements
---> Click on the Save Button... it will ask you to enter the Layout... Enter it and hit Enter
Your Required Fields will be Displayed.
Regards
BK

Similar Messages

  • XREF3 field not getting populated in BSEG table while posting MIRO

    Hi,
         I have one query in MIRO tcode.I have activated xref3 field in MIRO tcode using enhancement LMR1MF6Q.Now when i try to post document with some values in xref3 field on screen ,value is not getting populated in BSEG table.Please tell me what else needs to be done to achieve this ?
    any hint on this?
    Thanks & Regards,
    Soniya S.

    Hi,
    1.- According to SAP Note 904652 - MIRO: Different from FB60
    https://service.sap.com/sap/support/notes/904652
    MIRO is an independent Materials Management (MM) transaction that does not
    claim to be the same as the accounting transactions (such as FB60 or FB01).
    MIRO was developed to allow users to process vendor invoices within the
    context of the MM procurement processes as simply as possible.
    For this reason, among other differences, the field selection was limited
    to the absolutely necessary. For example, the following fields from the
    accounting document are not available in Transaction MIRO (this list is not
    complete):
    Reference key (BSEG-XREF1, -XREF 2, -XREF 3)
    2.- SAP Note 1156325 - BAdIs in the Logistics Invoice Verification environment
    https://service.sap.com/sap/support/notes/1156325
    Have a look at badi MRM_ITEM_CUSTFIELDS.
    This badi will create a new tab at item level in order to display the new fields.
    I haven´t used this badi so i cannot talk from experience here.
    Think twice before deciding.
    Best regards.

  • Fom field not getting populated

    Hi,
    I have a field in the form role(multi select field). The value of another field in the form 'abc' is depedent on role selection. I have a rule with a switch and case statements for this. In the rule i am using
    <Rule>
    <switch>
    <ref>role</ref>
    <case>
    </case>
    </switch>
    </Rue>
    I tested the rule and it's working good.
    Now i am calling the rule in the field 'abc':
    <Field name='abc>
    <block trace'true'>
    <Expansion>
    <rule name='xxx'/>
    </Expansion>
    </block>
    </Field>
    The prolem here is that, even after i select the role, this field is not getting populated. It is empty.
    Not sure what i am missing. Please help.
    Thanks,

    step1) when you are getting value in the field on which "abc" is dependent , how are you getting that value?you are getting this value in derivation or expansion???
    step2: write the code logic for field "abc" in Derivation instaed of expansion. That should help.
    Please let me know if you are still facing the problem.
    Warm Regards,
    G

  • Workday field not getting populated in BAPI_ENTRYSHEET_CREATE

    Hi MM gurus,
    I am trying to upload service entry sheets using bapi's , i checked the note 420334 and its working fine now.But, i want to populate  the workday field also in the service entry sheets, but this field is not getting populated even if i enter this field in the test data directory.
    Can anyone give me the reason for this?

    Hi
    Are you trying to populate the workdays field using BAPI in SE37 transaction??
    If you are executing the BAPI in SE37 then the data would not get updated in database.
    You need to run the BAPI FM & another BAPI "BAPI_TRANSACTION_COMMIT" in sequence in SE37 to post the data in database.
    I hope this helps.
    Thanx
    Prasad

  • Fields Not getting Populated in Queries on Multi Provider

    Hi All,
    Product class,Product form and Packet size from Zqn6x03 (ods) are not getting populated in Queries(Multiprovider). Our`s is Heterogenous Multi Provider
    Points will be awarded.
    Thanks in Advance....

    Hi xys redd,
    After checking all the options it is very much important to run a report "RSR_GEN_DIRECT_ALL_QUERIES" IN SE38.
    This is the report used to generate all the changes to reflect in BEx
    It will aolve your problem if am not wrong.
    Don't forget to assign points.
    Venkat

  • Field value is not getting populated in Display mode

    Hello All,
    I have created a custom drop down field in the DEAL component through EEWB. From the GUI, I could able to select a value form the drop down list field and save it.
    In DISPLAY mode,  the value is not showing but when I change the screen to EDIT mode then the value is getting populated.
    Please advise.
    Thanks in advance.

    When debugging the set_property method I see the following code:
    If ME->IS_CHANGEABLE( ) = ABAP_TRUE and                  "CLASS=CL_CRM_BOL_ENTITY
               LV_PROPS_OBJ->GET_PROPERTY_BY_IDX( LV_IDX ) ne IF_GENIL_OBJ_ATTR_PROPERTIES=>READ_ONLY
    *     change value
          <VALUE> = IV_VALUE.
    In display mode none of these conditions are fulfilled, meaning value is not set.
    So, is there a way of avoiding this behavior?

  • Custom Field value is not getting populated in Display mode

    Hi Experts ,
    I have created a custom field on sales tab for BP Role Bill to prty in BP transaction in SAP CRM. The problem i am facing is that , after i chose my sales area field value is not populating in first time no matter whether i am in display or change mode but the moment i switch to the other mode the value is being populated. Kindly help me in solving this.
    Regards,
    Ameet

    Dear Chetan,
    If the field is added through AET, can you please check the Get & Set Methods?
    If the field value has fixed values which you have defined while creating, then check GET_V & GET_P methods.
    Thanks & Kind Regards,
    Ravi Kumar A R

  • Foreign key fields not getting populated in datacontrol palette for EJB app

    Hi,
    I am quite new to ADF and EJB.I developed a jdeveloper application with JSF and EJB tiers.(I am using jdeveloper 10.1.3.5)
    For database the default HR database is used.I created the entities for the EMPLOYEES and DEPARTMENTS table.
    I also created a session bean and a data control for the session bean.
    I am having a JSF page that receives all the details of a new Employee and insert into database (i.e persistEntity)
    But the Employees constructor from the Data control palette is not populating the MANAGERID and DEPARTMENTID fields which are
    the foreign key constraints for the EMPLOYEES table and hence while trying to persist the entity
    with the auto populated fields an error message is thrown.
    If I used ADF BC instead of EJB then i could populate all the fields including MANAGERID and DEPARTMENTID.
    Is it possible to have two text fields for Manager and Department in the jsf to insert the Employee details with EJB as the Model?.
    If possible how do I bind the values of these fields to the Employees entity object in EJB.
    Kindly need your insights on this.
    Thanks,
    Guna.

    Hi,
    How are you using MANAGER_ID and DEPARTMENT_ID fields, are they exposed as Long (or some other numeric type), or did you map them on the entity, something like this
    @ManyToOne
    private Employee manager; // this by default uses the column named MANAGER_ID
    @ManyToOne
    private Department department; // this by default uses the column named DEPARTMENT_ID
    .... If you mapped them (which is the right way), when you create an employee you should set these attributes before persisting the entity, by using employee.setManager(manager) and employee.setDepartment(department). Then, the foreign keys get populated automatically by your persistence provider (Toplink).
    If you are using data controls, it is a little different process to set the department and manager, but you should take a look at this tutorial http://www.oracle.com/technology/obe/obe11jdev/ps1/ejb/ejb.html , it will hopefully answer a lot of your questions.
    Pedja

  • PKUNRE field not getting populated in 2LIS_13_VDITM after ECC upgrade

    Hi,
    We are seeing blank values for PKUNRE / 0BILLTOPARTY during extraction from 2LIS_13_VDITM.
    We are experiencing this issue after ECC upgrade which went live recently.
    We have applied note 580694  to correct missing fields in the billing extractor.
    This field is sourced from VBPA/VBRP.
    Our functional teams confirmed that VBPA/VBRP are updated properly and there seems to be no timing issue.
    However, the record is landing in PSA with blank BILLTOPARTY.
    Where could the problem be?
    Is there any thing we missed?
    Can any one throw some light if you have experienced this kind of an issue after upgrade.
    Thanks a ton in advance,
    Sandy.

    Hi Sandy:
        In my system I didn't find the Field PKUNRE on the VBPA / VBRP Tables, so my guess is that you're dealing with a Custom Enhancement, if this is the case the SAP Note 576886 - "Change to user-defined fields not extracted" might help you in solving this issue.
    Regards,
    Francisco Milán.
    ***Follow up note:
    I double checked and found the Field PKUNRE on the Extract Structure for 2LIS_13_VDITM (using Transaction Code LBWE) so now I know that you're working with a Standard field and not with a custom ehnancement, the SAP Notes below address a similar issue to yours but they are related to Applications 11 and 12, not for App 13. I apologize for the confusion.
    Note 621684 - "Fields PKUNRE and PKUNRG are not filled from delivery"
    Note 379237 - "BW Content LE-SHP: missing partners in 2LIS_12_VCITM"
    Edited by: Francisco Milan on Jan 28, 2011 12:54 PM

  • Custom field not getting populated in the "Show Results where" drop down

    Hi all,
    In appointment detail page by clicking on Add button on the user related information section , it takes us to a search layout showing the list of available users.
    Here we have to filter the user's based on a custom field which has already been created in the user object. But I am not able to add the custom field in the "Show results where" drop down for which the search has to be done.
    It is getting reflected in the normal search layouts.So Can any one tell me why the change is not getting reflected in the user related info search layout?

    I tested your use case and you are correct. I would recommend that you submit a service request to CRM On Demand customer care in reference to this issue.

  • COPA value field not getting complete SD condition value

    Hi Gurus,
    I find a strange issue when a billing document is transferred to COPA (well basically, after a billing document is released to accounting, all the controlling docs and COPA docs are generated). The issue is, I have a SD pricing condition which has been assigned to COPA value field. I also have the transfer +/- sign checked on this value field. Now consider the following 2 scenarios:
    Scenario 1: In VKOA, two different G/l accounts have been assigned to the corresponding pricing condition account key. These 2 G/L accounts have been defined as cost elements with category '12' (its related to sales deduct). and fall under the same cost element group. When a billing doc is posted to accounting and hence to COPA, I see that there is no value in the value field and the corresponding condition type. Then I ran a simulation using KE4ST and found that I have two lines with the same pricing condition type and value field but one carries a positive value and the other one carries a negative value. Then I came to a conclusion that may be these two lines are netting out and hence there is no value being posted on the value field.
    Scenario 2: In VKOA, I have assigned two different G/L accounts which fall under different cost element group and one is defined as category 12 and the other as category 1. This time I see that only 1 line of value field is brought into COPA corresponding to the pricing condition and hence I see a value in COPA value field. But business doesn't want to go with scenario 2 as they don't want to use two cost elements in different cost element group. Also one is sales deduct and the other is primary cost/ cost reducing revenue. So there is a balance getting accumulated in the primary cost/cost reducing revenue element.
    How do I resolve this issue to post a value to the COPA value field using scenario 1?  I have also tried to uncheck the transfer +/- sign but I am unable to even release a billing doc to accounting as it is giving me a error message,: "correct the value field assignment for the condition type".
    Please help me !!
    Regards,
    Sony

    Version of SAP?

  • Functional Area field not getting populated in the AUFK table

    Hi Friends,
    The table AUFK is the table for Internal Order master data.
    The issue which we are facing is:
    In a particular Order type, the field 'Functional Area' is suppressed in the field status group for the order master data.
    But the cost centers which are maintained in the order master has the functional area field populated with value.
    In the table AUFK, the functional area field is populated for some internal orders and not populated for others. In all cases it should pick the functional area from the cost center which is maintained in the internal order.
    Please guide us about what can be the possible reason(s) for populating the field in some cases while not populating in other cases.
    Thanks a lot in advance for your help.
    Regards,
    Shilpi

    Hi,
    maintain the functional area in order master data to ensure 100% functional area is available in AUFK.
    I can't tell you the reason why its sometimes appearing and sometimes not bur FUNC_AREA is not picked from responsible/requesting cost center (from master data).
    If in customizing of internal order order types a "model-order" is assigned with maintained functional area, this func_area is taken if you create a new order for this ordertype.
    Best regards, Christian

  • CProjects dash board fields not getting populated

    Hi
    Currently using cProjects 4.0 on ECC6.0 server.
    Facing problem for dash board data. Have created the project in cProject. Completed all the tasks, phases and project header also. I want actual start and actual finish date data to appear on the dash board.
    For evaluations I have done following settings:
    Activated Use Dashboard for corresponding project type ('Define Project Types' under 'Evaluations' and 'Dashboard').
    Specified when evaluations are executed as : Only with background processing ( 'Define Project Types' under 'Evaluations' and 'Dashboard').
    Assigned the extract layout to the corresponding project types for the dashboard evaluations
    Other settings:
    Transaction SPRO -> Collaboration Projects -> Evaluations -> Define Extract Layouts
    extract layour here is 0_DASHBOARD, attributes for this extract layout selected as Actual finish, actual start by checking the box of Always extract
    But I am still unable to see the dates in the Actual finish and Actual start fields on the dash board for the project of that project type.
    secondly,
    Currently Actual start and Actual finish fields are hidden, I make them to displyed column in the settings, but whenever I leave the the home page and again come to home page these fields are again going to the hidden column. I want them to be shown permanently.
    Please help on the same.
    Thanks and Regards,
    Niraj Sikligar

    hi Yogesh,
    I did the same as mentioned by you.
    Now I am getting following error message:
    Error when processing your request
    The following error text was processed in the system EC6 : Property GROUP_AGGREGATION with the value X is not allowed for key figure (PRIORITY)
    Any Solution?

  • Tax Field not getting populated

    Hi SAP SD Gurus
    I am calculating tax with condition type MWST. In the pricing procedure the tax is getting calculated. The Tax Amount is also getting deducted from the Net Amount. But, on the Conditions Tab Page of Item Details, it is not displaying the Tax Field (KOMP-MWSBP) below the Net (KOMP-NETWR) Field.
    Thanks & Regards.

    Hi,
    Plz check if you have input the plant name in the shipping tab at item level.
    Without putting the plant name,tax (MWST) will not be visible in the conditions tab because there is a routine set in the pricing procedure against a tax condition.
    Reward points if it helps.
    Regards
    Karan

  • M204 field not getting populated in VA01

    I have to map order number to M204 field according to requirement using ORDERS05 Idoc and i am using EXIT for it.
    .but that field does not come during creating sales order.
    If I try to modify BDC DATA and try to append that field it says that its not an input field.
    What can be done???

    Hi,
    1.- According to SAP Note 904652 - MIRO: Different from FB60
    https://service.sap.com/sap/support/notes/904652
    MIRO is an independent Materials Management (MM) transaction that does not
    claim to be the same as the accounting transactions (such as FB60 or FB01).
    MIRO was developed to allow users to process vendor invoices within the
    context of the MM procurement processes as simply as possible.
    For this reason, among other differences, the field selection was limited
    to the absolutely necessary. For example, the following fields from the
    accounting document are not available in Transaction MIRO (this list is not
    complete):
    Reference key (BSEG-XREF1, -XREF 2, -XREF 3)
    2.- SAP Note 1156325 - BAdIs in the Logistics Invoice Verification environment
    https://service.sap.com/sap/support/notes/1156325
    Have a look at badi MRM_ITEM_CUSTFIELDS.
    This badi will create a new tab at item level in order to display the new fields.
    I haven´t used this badi so i cannot talk from experience here.
    Think twice before deciding.
    Best regards.

Maybe you are looking for

  • IPod won't sync more than 22songs

    I have an iPod touch with sw her 2.1.1 and iTunes ver 8.my iPod used to sync fine,but after a recent motherboard change and subsequent windows vista reinstallation,after copying 22songs,iTunes hangs on my computer and iPod screen keeps showing "sync

  • Do I need to uninstall lightroom 3 before installing lightroom 5?

    I have lightroom 3 and have just purchased the CC plan. Do I need to unistall light 3 before downloading 5? Will it just update or mess everything up if I don't?

  • Having an issue with a sub menu

    On this page http://www.nznutraceuticals.com/home_copy When you roll over product the menu is way off to the right.  I think it is picking up on the wrapper class that does the margin-left:auto; margin-right:auto; but even with messing with that it s

  • Safari quits unexpectedly, again and again!

    Dear all, I am not sure what happened but the Safari has started crashing since this evening. Could any Mac experts help me to 'decode' the crash report and tell me what I should do, please? Thanks in advance! Process: Safari [270] Path: /Application

  • I cannot load my Zen Micro any longer (warrant

    I hop you understand what I'm write because I am not the best in English: Before approx. .5 years I bought a MP3-Player (Zen Micro). But now I cannot load it any longer and this is not because of the cable! Sinc 2002 in Germany all manufacturers of t