Assignment field in the document line items

Hi,
I have a document where the assignment field is automatically populated with values. May i know where and how these automatic values are determined?
I have checked the document substitution but cannot find any rules there for this field.

Hi Raja,
What kind of documents are these? If they are billing documents, the assignment and reference fields are copied as per the configuration done for SD document copy control. If these docuemnts are uploaded documents or coming through an extenal system, the abap program must be populating these values based on sime criteria.
Kindly check let us know the kind of documents and how the entry happens.
Thanks and Regards,
Anit

Similar Messages

  • Update material doc.num in assignment field of GR/IR line item of a/c doc

    HI Experts,
    please tell me the solution for my problem
    My requirement : Transaction is : MIGO
    Before posting of material document, update material document number in assignment field of GR/IR line item of accounting document (WE) at number commitment stage
    Update MKPF-MBLNR (Material Document Number) in BSEG-ZUONR
    but already i tried AC_DOCUMENT i got a problem .
    What i did,
    first use MB_DOCUMENT_BADI with method
    mb_document_before_update.
    here i tried to get the material document and export into memory
    after use AC_DOCUMENT With method
    change_after_check.
    here Import the material document doc num and pass it to Assignment field in
    but it is not working
    when i debug first trigger the AC_DOCUMENT And then it goes to MB_DOCUMENT_BADI
    Plese help me regarding this.
    Moderator message: please open only one thread per issue.
    Edited by: Thomas Zloch on Feb 9, 2012

    Hi,
    Thanks, I will check the same. Well, I will be clearing the documents with reference to MIGO number itself. When I do my delivery chrgs migo, that number I need to be populated in my line item's assignment field. Not only that but I the same number should get populated in the delivery charges miro. Since my miro is with ref to PO it becomes difficult to fetch the field.
    Plz let me know if you can help me on this as well.
    Thanks,
    Priyanka.

  • Can not change the field BSEG-REBZG on the document line item

    Hi,
    I am not able to change the invoice reference field on the document already posted. I have tried config. settings on change document line items but unsucessully.
    The problem is with the field BSEG-REBZT, if the field value  is "V" RESIDUAL item I am not able to change it but if this field value is "Z" I am able to change it.
    Can anyone who have come across this situation please guide me on this.
    Thanks,
    Srini

    Hi Eli,
    Thanks a lot for your resolution. I have assigned points to you.
    Unfortunately my problem has not been solved inspite of implementing the so mentioned SAP notes.
    Do we need to do anyother settings? Can you please guide me?
    Thanks,
    Srini

  • Populate Assignment Field in G/L line item display (FS10N/FBL3N)

    Hi All,
    I am using FS10N to see G/L Account Line Item Display.
    I am seeing the Report Display with Coloumns like Doc.No., Type,Doc.Date,Amount in Local Currency etc etc
    There is coloumn showing Assignment.The entries are not getting populated/displayed under the same coloumn of Assignment
    When I go to Change Layout I see th Assignment field but the nothing is getting dislayed under the Assignment coloumn when I run FS10N/FBL3N.
    How do I solve the above problem?
    Thanks
    Vivek
    Edited by: VIVEK KAPOOR on Dec 11, 2009 4:11 PM

    Hi ,
    Actually when i do FS10N or FBL3N to see G/L Account Line Item Display i am able to see the display of the G/L Account but there is a coloumn under Assignment and it  shows no entries i.e. Assignment coloumn is blank.What should i do so that i get entries for assignment field because there are entries made in Assignment field.Table is BSEG and the field is ZUONR.How do i get these entries in the G/L Account Line item display for G/L Account using FS10N ?
    Thanks
    Vivek

  • WBS element field in the customer line item

    Hi Experts
    Clientu2019s requirement is to populate the WBS element in the customer line item.
    Field status of Posting key -01 for WBS element is u2013 Optional
    Field status of Customer recon a/c  for WBS element is u2013 Optional
    Still in the customer line item screen, the WBS element field is hidden.
    Kindly advise how to make the field WBS element available in the customer line item.
    Regards,
    Purnima

    Hello,
    When you post customer invoice, screen no 301 is active. Here you can find only fields like payment terms.baseline date,payment block etc.
    As this is not a cost object you will not find cost center, wbs element. You could find them on credit item.
    Regards,
    SK

  • Populate Assignment field with PO number& Line item in while invoicing

    Hi Gurus,
    My client wants to populate Purchase order number concatinating with line item (4500000000 0100 )in Assignment filed of accounting doument while doing MIRO.
    Thanks in Advance
    Best Regards
    Ashish Jain

    Hi Dominic,
    I want to populate Purchase order number concatinate with line item in Assignment filed of accounting document at time of MIRO. for all line items.
    Best Regards
    Ashish Jain

  • Ribbon Button activating when a field in the Document / List item metadata = 'Yes'

    Im hoping this is an easy answer as Im sure it must be, but my mind has gone blank!
    Basically I have created a button to run some javascript code to fire a custom (manual) workflow on an item that is selected in a Document Library (or List)
    I have set the ribbon button to only be active IF one item is selected in the Library but what I want now is to only activate the ribbon button if one item is selected AND IF a specific field in the item = 'Yes' (The field in this case being called 'DraftDoc'
    [Choice field]).
    Ive tried a few methods but none seem to work and VS2012 errors on debugging.
    My code to enable the button so far is:
    // Method to enable/disable the button on the ribbon.
    function EnableSubmitDraftDocument() {
    // request number of selected items.
    var items = SP.ListOperation.Selection.getSelectedItems();
    var count = CountDictionary(items);
    // only return true is a single item is selected.
    return (count == 1);
    Can anyone help me with the extra code I need?
    Cheers

    Hi,     
    According to your description, you have been able to set the ribbon button to be actived if one item is selected. Now, you want to activate the ribbon button if there is one
    item selected and the value of "DraftDoc" column is "Yes".
    We can achieve it by getting the value of this "DraftDoc" column of the selected item to check whether it is "Yes".
    Here is a code demo about checking whether the value of "DraftDoc" column of the selected item for your reference:
    function retrieveSelectedFiles()
    this.clientContext = SP.ClientContext.get_current();
    var web = this.clientContext.get_web();
    this.selectedItem = SP.ListOperation.Selection.getSelectedItems();
    this.selectedList = SP.ListOperation.Selection.getSelectedList();
    if (CountDictionary(selectedItem) == 1)
    this.listItem = web.get_lists().getById(this.selectedList).getItemById(this.selectedItem[0].id);
    this.clientContext.load(this.listItem);
    this.clientContext.executeQueryAsync(Function.createDelegate(this, onRequestSucceeded), Function.createDelegate(this, onRequestFailed));
    function onRequestSucceeded() {
    str = listItem.get_item('DraftDoc');
    if(str == 'Yes')
    str+="Yes";
    alert(str);
    function onRequestFailed(sender, args) {
    alert('Error: ' + args.get_message());
    Best regards
    Patrick Liang
    TechNet Community Support

  • How to break the document line items in cross company code document

    Hi,
    Currently the cross company code posting is summing up all the line items and posting as a single line item as long as the line items are having the same tax code.
    The system will break the line items only if there are non-identical tax codes. How can i change this default behaviour to break the line items in all cases?
    http://wikisend.com/download/436966/2.zip

    It is the standard SAP behaviour to sum up all the identical tax code values.

  • Text in the document line item

    Hi,
    In COI, I am doing reclassification using document type.
    System has posting the documents correctly, but strange thing is in the document header text, it was giving some text by itself.
    Example of the actual text in the document header is as below:
    "3B586AF9C74AF958DC4EFAB080B180B6D2E90F25"
    Thanks in Advance,
    Richard

    Hi Dan,
    You are correct. The text is coming by itself while doing Reclassification for dividend at PL 30.
    Still confused why it is throwing some text in the document header..
    Regards,
    Richard

  • Document Line Items fields

    Hello All:
    We want to prevent users from changing some of the a/c assignment fields on the document line items once they are parked.
    We need this only for specific document types and specific GL accounts.
    Is there any config or exits or something else to ONLY DISPLAY those specific fields.
    Thank you,
    Fred.

    We use FBV1 to create parked documents of different document types (SA, AA, ..., Z*). Some of these parked documents should not get changed until they get posted.
    The users should be able to change any or all of parked document data on SA, AA, .... document types but should not be allowed to change fields like cost center, functional area (KOSTL, FKBER,...) on the  Z* document types, when the GL account is for research (43****)
    Hope this explains it better. Appreciate your time and help.
    Fred.

  • Document line item text in Clearing document

    Dear All,
    Document line item text
    My client want the vendor invoice line item text(BSIK-SGTXT) to be captured in the corresponding clearing document line item text field(BSAK-SGTXT).
    (i.e) The vendor invoice and its payment clearing document should have the same text in the document line item text filed.
    According to me i can use  a substition rule and a user exit to assign the values. but here comes a problem* i have one clearing document against 3 to 4 vendor invoice documents* so my programming logic has got stucked here? like which vendor invoice line item text the clearing document should pick up?
    is there any other enhancements possible or can some one help me with the programming logic to be applied here.
    Thank you
    Regards,
    Vasanth D

    like which vendor invoice line item text the clearing document should pick up?
    is there any other enhancements possible or can some one help me with the programming logic to be applied here
    Why don't you discuss the issue with your client?  As you said, if you pay 5 invoices in a single run, the payment document item text can't carry all of those texts unless you use the long text.  What is the reason for the requirement?  Perhaps there's another solution.

  • We cannot see the segment in the vendor line item

    Hi,
    We have updated the Segment field as Optional in OB41 transaction for posting key equal to 21 and the same for the corresponding GL account. When we create a document in FB01 transaction with SA type for example, we can't see the segment field in the vendor line item.
    Could you tell me if we need to do something more to see the segment?
    Thanks in advance,
    SAP user

    Hi,
    whe we are  entering  the vendor line item we can enter the Fund and fund Center, our segment will be derived from the fund ( we have done it in a substitution, if the segment is empty we derive it from the fund) and in BSEG table we can see that the segment is filled correctly. But we cannot change it because this fields segment don't appear in the screen. We have reviewed the SAPMF05A 0332 Screen (screen that we can see when we are entering the vendor line item and we push in "More data" button) but the segment field don't appear.
    Thanks in advance,
    Sap Userr

  • DOCUMENT LINE ITEMS

    WHAT CONTROLS THE DOCUMENT LINE ITEMS

    Hi,
    Posting key controls the document line items and they indicate whether line item is for G/L,Vendor, Customer or Asset Account.
    Hope this helps...
    Regards,
    Vinay

  • Change Assignment Field in the Line Item

    I'm trying to change manually the Assignment field in the Line item of a FI Document but the field is not open for entry.
    In the SPRO -> Document Change Rules, Line Item settings are correct and should allow change of the field. Do you have any ideas on that problem?

    Hi
    Assigment field it system given no , the main purpose of this field is to idetify the particular line item system not allowed to chavge that one once u save the document?
    Rams

  • Bal field "Profit Center" in line item 001 not filled at the time of F-53

    We are in ECC6
    I have posted a vendor document.  The entry is shown as under.
         GL                           CC     PC     Segment
    Dr     Expense GL-1     RV01     RGV1     Hyderabad
    Dr     Expense GL-2     RV02     RGV2     Mumbai
    Cr     Vednor a/c               
    but when i am posting a payment document (Dr Bank GL and Cr vendor a/c) to this vendor I am getting the following error. 
    Balancing field "Profit Center" in line item 001 not filled.
    I have check ed the configuration setting in this regard.  Zero balance, mandatory fields for profit center and segement check box is enabled.  And also the inheratence check box is also enabled.
    Pls suggest soulution soon for the above problem.

    Hi,
    Try to default the profit center in FAGL3KEH for the Bank account and try posting.
    In SAP, the vendors and customers cannot be assigned to any profit center. They derive the profit center from the profit center picked from the GL as in the case of the expense entry that you mentioned.
    Try to assign a default profit center and check.
    Regards
    Hari

Maybe you are looking for

  • Product Registration for Macbook Pro

    I've just registered my Macbook Pro for proof of ownership so that I can buy some accidental coverage from Safeware. I registered the product online, at the end of the form it said Thank You you should receive a confirmation e-mail. So far it's been

  • Unable to install windows 7 and fedora in a dual boot even with windows 8 and fedora also

    Unable to install fedora in dual boot please help me to install, is my system supports windows 7 or not with  fedora or windows 8.1 with fedora please help me i need very urgent installation of fedora

  • 3D Graph axis font property missing

    I just updated to LV6.1 and now I have a broken VI in my application. One of my displays uses the 3D graph and when formatting data for display, I set the font size of the graph axes. This worked in 6.0.2 but in 6.1 apparently the font refnum no long

  • Want to open 2nd tab and have it load the home page which the first tab opens.

    Want to open 2nd tab and have it load the home page which the first tab opens. The first tab opens Google's advance search, the second tab opens a blank window. I always want Google to be in a new page. == This happened == Every time Firefox opened =

  • ESS/MSS limit of concurrent users

    Hi, I have to implemantation the ESS/MSS in sap with SOA. I would like to know : How many users will be accessing ESS at the same time? In particular, how many should be the concurrent users ( to do the same activity ) will be accessing ESS , to ensu