In COGI error text "Multiple assignment of line item"

Hi Guru,
In COGI error text "Multiple assignment of line item"
Description:
ultiple assignment of a line ID
   Message no. M7357
iagnosis
   An item table, in which the line ID (LINE_ID)
   was transferred to the function module MB_CRE
ystem Response
   Processing is terminated.
rocedure
   Contact the system administration.
rocedure for System Administration
   There is an error in the calling application.
Please help me to resolved this issue.
Thanks and regards
PNU

Hi,
Thanks for reply,
It is possible to remove material from COGI list. We need to stop creation of this error.
Is there other solution to control creation of error  "Multiple assignment of line item"
Thanx & regd.
PNU

Similar Messages

  • Assignment of line item

    Hi...........SAP Experts
             I Want to know what is assignment of line item could any body send me the answesr

    Hi,
    Thanks for reply,
    It is possible to remove material from COGI list. We need to stop creation of this error.
    Is there other solution to control creation of error  "Multiple assignment of line item"
    Thanx & regd.
    PNU

  • Tcode FV50: How to find long text in FI Document line item Before Saving.

    Hi,
    How to find long text in FI Document line item.
    During Parking of the FI document through Tcode FV50 i m giving the some text in the long text not in the text field.
    I would like to validate the Long Text Before Saving in user exit "U300" under  the  "Sunstitution" .
    Please anybody can be help me out where exactly this long text is going to be stored or in which internal table or memory id.
    Please give me the answer as soon as possible .
    Note:- Read_Text function module is not useful. Because Read_text useful after saving document.

    Hi Amit,
    In application area FINANCIAL ACCOUNTING , go for node LINE ITEM. Here create a step & maintain the prerequisite as per your requirement & in the check you can mention the code or you can direct it to a custom program like ZFI_RGGBR000.
    Here while maintaining the check you will get structures BKPF & BSEG in which you will get the desired field you are looking for.
    Just try to explore in your system how the other validations are maintained.
    After you are done with all your code, you have to run the regeneration program RGUGBR00.
    Here utmost care should be taken while running regeneration program, you should select all the checkboxes in the selection screen except  GENERATE SETS, GEN SUBSTN ROUTNS IN ALL CLNTS  & TRACE PROG. GENERATE CALLS .
    Hope this make your doubt clear.
    Regards
    Abhii

  • How user can get a Sales Text for the any Line Item in the Billing?

    Salute Masters ! !
    How user can get a Sales Text for the any Line Item in the Billing?
    It's coming for other Order (Line Item for Bought out Item at Project Site - Some Item they procure at project site & complete the task).
    Where I can configure in system for all.
    Rgds
    Srivastav
    09973504950

    Hi,
    Sales text can be copied from customer to order , order to delivery and delivery to billing .
    Check the T-code : VOTXN , do the customization as per your requirement.
    check the below link :
    http://help.sap.com/saphelp_erp60_sp/helpdata/en/dd/55f993545a11d1a7020000e829fd11/content.htm

  • FB60 - Substitution rule to generate Text in automatic generated line item

    Hello SAP genious,
    While we post vendor invoice ( FB60) and customer invoice (FB70), at this time along with Dr and Cr line items one automatic additional line item is getting generated this is based on Tax type which you select while making invoice.
    now, I want to show some text in this automatically created line items. This might be possible by creating some substitution rule but i am not sure.
    and if it is possible through substitution rule then what could be my prerequisite, and check would be..?????
    can you please tell how can i get Text in this additional line item getting created due to VAT tax code.
    Thanks a Lot for your input.
    your reply will be rewarded with points.
    Thanks
    Jignesh

    Thanks for all your replies.
    I Want the field BSEG- KOBEZ i.e description field in the accounting doc of the offsetting entry to be replaced in the GL account  text field.
    Ex :
    PK    Account        Description                  Amount           Text
    31    100000         Furniture  Vendor             50             Sales
    40    1999             Inter Compy                     50             Furniture Vendor
    I want the description of offsetting entry vendor description i.e Furniture vendor (field BSEG-KOBEZ) to be replaced in GL line item text BSEG-SGTXT.
    I cant find the field BSEG- KOBEZ while i search in the substituion to replace in Text field.
    How do i write in substitution to say that the offsetting entry description should be in text field of GL account.

  • Enter Text in Price difference line item in MIRO

    Hello,
    My user wants to enter text in price difference account line item in MIRO. I tried to do it in MIRO simulation by doubl click on line item. But it does not show as we normally see in FI documents.
    Please advise how can I enter text in price difference line item while doing MIRO. Since this account gets posted automatically.
    Regards,
    Tapan

    Hi,
    You can create substitution with exit in GGB1/ OBBH
    In exit, give a popup for this price difference line item and in that popup user can enter the text and then fill that text in the line item.
    Your ABAper should be able to do it.
    Regards,
    SDNer

  • How to add the line item text in the Ledger line item report

    Hi SAP Gurus,
    I having one requirement from the user. He wants the line item text which we will enter in FB60/FB70/FB50 has to be shown in the Ledger line item report. Right now this field is not available. Is there any possible we can make this line item text in the ledger line item report i.e. FBL1N/FBL3N/FBL5N?
    advance thanks for the help.
    Regards,
    Deva.

    Hi,
    You can do the below to get this. (You can change the names of the function modules as per your wish/ organization naming convention):-
    Step 1:-
    Create function module Z_GET_SGTXT as below:-
    Import:-
    BELNR LIKE BKPF-BELNR
    BUKRS LIKE BKPF-BUKRS
    BUZEI LIKE BSEG-BUZEI
    GJAHR LIKE BKPF-GJAHR
    Export:-
    PRCTR LIKE BSEG-SGTXT
    FUNCTION Z_GET_SGTXT.
    ""Local Interface:
    *" IMPORTING
    *" VALUE(BELNR) LIKE BKPF-BELNR
    *" VALUE(BUKRS) LIKE BKPF-BUKRS
    *" VALUE(BUZEI) LIKE BSEG-BUZEI
    *" VALUE(GJAHR) LIKE BKPF-GJAHR
    *" EXPORTING
    *" VALUE(SGTXT) LIKE BSEG-SGTXT
    SELECT SINGLE SGTXT FROM BSEG INTO SGTXT WHERE GJAHR = GJAHR
    AND BELNR = BELNR
    AND BUKRS = BUKRS
    AND BUZEI = BUZEI.
    ENDFUNCTION.
    Step 2:-
    Then create the Function Modules as below:-
    Z_LINE_ITEMS_GET_SGTXT (Copy of SAMPLE_INTERFACE_00001650)
    FUNCTION Module Z_LINE_ITEMS_GET_SGTXT.
    ""Local Interface:
    *" IMPORTING
    *" VALUE(I_POSTAB) LIKE RFPOS STRUCTURE RFPOS
    *" EXPORTING
    *" VALUE(E_POSTAB) LIKE RFPOS STRUCTURE RFPOS
    Initialize Output by using the following line
    E_POSTAB = I_POSTAB.
    E_POSTAB = I_POSTAB. "<-- important
    CALL FUNCTION 'Z_GET_SGTXT'
    EXPORTING
    BELNR = I_POSTAB-BELNR
    BUKRS = I_POSTAB-BUKRS
    BUZEI = I_POSTAB-BUZEI
    GJAHR = I_POSTAB-GJAHR
    IMPORTING
    SGTXT = E_POSTAB-SGTXT
    EXCEPTIONS
    OTHERS = 1.
    ENDFUNCTION.
    Step3:-
    Transaction FIBF:-
    Settings -> Products -> of a Customer
    SGTXT Text in Line Item Display Active
    Settings -> P/S Module -> of a Customer
    00001650 SGTXT Z_LINE_ITEMS_GET_SGTXT
    Step 4:-
    Create the layout for FBL*N with display of the TEXT.
    Regards,
    Gaurav

  • Runtime error in kob5, kob1 and line items display in Cost Analysis in ko03

    Hello everyone,
    I would like to ask for your expert advice on a situation we need to have a solution. Let me tell you what happened.
    In ko88, we tried to settle an internal order to a final asset using 'partial capitalization'. We encountered an error 'Settlement amount is greated than available amount'. I checked in kob5 and we have two line items: 90,000 and 30,000. Both have to be settled to three different final assets namely asset 1, asset 2 and asset 3. The settlement rule was as follows at first:
    Line 1: 90,000 to be settled to asset 1, asset 2 and asset 3 at 65,000; 40,000 and 15,000, respectively.
    Line 2: 30,000 to be settled to asset 1, asset 2 and asset 3 at 65,000; 40,000 and 15,000, respectively.
    Due to the error, we changed the settlement rule following these directions:
    1. Remove the settlement rules that we had so we can start anew.
    2. Choose the first line item and click on "Final Settlement".
    3. Enter the necessary settlement details (total should equal to 90,000 only).
    4. Go back and save.
    5. Choose the second line item and click on "Final Settlement".
    6. Enter the necessary settlement details (total should equal to 30,000).
    7. Go back and save.
    8. Then, check again the distribution rules set.
    Everything was saved and done correctly. So, we tried to do ko88 this time. But, the previous error 'Settlement amount is greated than available amount' still occured.
    I went back to kob5 and when I ran it, a runtime error occured. I went to see the actual line items in kob1, and I encountered the same runtime error. I went to see in ko03>cost analysis>the actual debit line items, and I encountered the same runtime error. Were my actual line items lost? How do I retrieve them?
    Thanks in advance.
    Best regards,
    Peter

    hi,
    check in SAP OSS with the message number you get is there any SAP Notes tobe applied.

  • Cost Center Error in Shopping cart Multi Line items

    Hi,
    We are working on SRM 4.0. when the user is trying to create a shopping cart from catalog he gets the error message as
    "you don't have the acces to the cost object xyz12.please return to the cost assignment section and correct".
    We have given the access to that cost center in SRM even also he is getting the same error. 
    He does not have any problem with single line item against the same cost center. problem gets only when he is going to create with multiple line items in shopping cart against the same cost center.
    Request all  please advise me where i need to check to overcome the issue.
    Regards,
    Sri

    Hi,
    Thanks for your kind response. can you please elaborate bit more  step by step.
    Awaiting for your feedback.
    Regards,
    sri

  • Text in automatically generated line items

    Hi All,
    Can anybody help me how to maintain Text in line items generated automatically.eg: While posting vendor
    invoice WTax line item is entered automatically. Similarly accounting document generated from MIRO but there is
    no text assigned to it, how to do that.
    regards,
    sudha

    Hi
    Use the Substitution using the user exit.
    This is specific to some document types only, so use them in prerequisite along with the company code, also you can use the GL.
    In user exit...write a ABAP code to fill the text field with the text.
    VVR

  • One pr for multiple materials with line items while running mrp

    Hi SAP gurus,
                  I am config the system for MRP as per my client requerement.
                     We use CBP for different RAW materialsfor example they having a 10 materials for planning,were,
             MRP type is VB,
              LOT size is FX,with Different Reorder points and fix order quantity for all materials,
             My client whant run MRP for all these materials in single time that means they whant multiple item at single levels,
            i soles these requirement with the help of Product Group(sop) and its working but when we running md02 for product group all materials have planed and they give different purchase requistion numbers for all these materials but my client Wants single purchase requistion with line items for all these materials.
         Pls give me the solution for that requirement.
    thanks and Regards,
    abhi

    this is not the way SAPs MRP run works.
    Where is the benefit for this?
    the requisitions are not even split into header and item table, it is just one table EBAN, and either way you would get exact the same number of records in EBAN.

  • PO item with Multiple Goods receipt line items

    Hi Experts,
    When we create PO for specific vendor with one PO line item then at the time of Good receipt there are multiple GR line items. How to control those multiple GR line items as one GR item.
    Appreciated your help
    Regards
    Krishna

    Hi,
    If you did GR from PO with underdelivery qty in line items, SAP recognize it as partial delivery.
    Basically, in the standard system the underdelivery qty scenario is allowed, but not for overdelivery qty.
    If you intended to force the system to allow one line item in PO with only one line item in GR, therefor you could create program checking with development team.
    please check the link for your reference.
    http://help.sap.com/saphelp_47x200/helpdata/en/a5/63344643a211d189410000e829fbbd/frameset.htm
    regards,
    rob

  • Reading Text in the PO  line item

    Hi,
    I need to retrieve the Line item Text in the PO (Material PO text). Can anyone Provide me a sample code? i need to display this in a script.
    I could not retrive it from the Function Module READ_TEXT.
    Can any one help me regarding this?
    Regards,
    Navaneeth.

    DATA: BEGIN OF T_DET OCCURS 0,
           QMNUM LIKE QMEL-QMNUM,
           MBLNR LIKE QMEL-MBLNR,
           LOSMENGE LIKE QALS-LOSMENGE,
          END OF T_DET.
    DATA:F_TDOBJECT LIKE THEAD-TDOBJECT,
         F_TDNAME   LIKE THEAD-TDNAME,
         F_TDID     LIKE THEAD-TDID,
         ITAB_LINES LIKE TLINE OCCURS 0 WITH HEADER LINE.
    DATA:BEGIN OF ITAB OCCURS 10,
          DESC(72),
         END OF ITAB.
      SELECT QMNUM REFNUM QMDAT QMTXT OBJNR QMGRP QMCOD FROM QMEL
        INTO CORRESPONDING FIELDS OF TABLE T_DET
                                  WHERE QMNUM IN S_QMNUM AND
                                        QMART IN S_QMART AND
                                        QMDAT IN S_QMDAT.
    LOOP AT T_DET.
       F_TDID     = 'LTQM'.
        F_TDNAME   = T_DET-QMNUM.
        F_TDOBJECT = 'QMEL'.
        F_TDID     = 'LTQM'.
        F_TDNAME   = T_DET-QMNUM.
        F_TDOBJECT = 'QMEL'.
        CALL FUNCTION 'READ_TEXT'
          EXPORTING
            CLIENT                  = SY-MANDT
            ID                      = F_TDID
            LANGUAGE                = SY-LANGU
            NAME                    = F_TDNAME
            OBJECT                  = F_TDOBJECT
          TABLES
            LINES                   = ITAB_LINES
          EXCEPTIONS
            ID                      = 1
            LANGUAGE                = 2
            NAME                    = 3
            NOT_FOUND               = 4
            OBJECT                  = 5
            REFERENCE_CHECK         = 6
            WRONG_ACCESS_TO_ARCHIVE = 7
            OTHERS                  = 8.
        DESCRIBE TABLE ITAB_LINES LINES SY-TFILL.
        IF SY-TFILL > 0.
          LOOP AT ITAB_LINES.
            ITAB-QMNUM = T_DET-QMNUM.
            ITAB-DESC = ITAB_LINES-TDLINE.
            APPEND ITAB.
            CLEAR ITAB.
          ENDLOOP.
        ENDIF.
    ENDLOOP.

  • Prob with putting text after the Schedule line item in PO Sap script

    Hi Guys,
    I need to include a Text afetr the first schedule line item and that shouldn't print after next onwards, can anyone help me out.
    Thanks,
    Ramesh

    two things
    in this
    activate debugger and check whether the field
    &EKET-J_3ASIZE& is eq ' ' or not
    only then it will come in to else condition
    if its coming into else case check whether &T166P-TXNAM& is getting populated or not
    if it doesnt u need to go to item_text
    define a variable and move the value of &T166P-TXNAM&
    define &TEXT& = &T166P-TXNAM&
    and then
    in item_schedule
    iNCLUDE <b>&TEXT &</b> OBJECT &T166P-TDOBJECT& ID &T166P-TDID& LANGUAGE &EKKO-SPRAS& PARAGRAPH IX
    i think this will resolve the issue.
    Harish
    reward if its useful

  • AIAB Error is showing profit center line item 001 not filled

    Dear All,
    In Asset Account while posting AIAB t.code  system is showing error
    Balancing field "Profit center" in line item 001 not filled.
    Message no. GL2201
    Diagnosis.
    The profit center marked as balancing is not filled with any value in line item 001, even after document splitting
    System response
    The document cant be posted
    Procedure
    First check your entry.
    additional causes could be:
    .No value can be derived for this field from the current document data.
    .You have  entered a document type that is not designed for this business purpose.
    previously it is coming correct now we are splitting two company codes means previously company code 0555 now we are splitting and creating another company code 0666 in that company only it is showing the error.
    Regards,
    Teja

    Hi
    Did you maintain cost object in your asset master
    And does your IMG settings for the new co are in place to refer Cost Obects from asset master for Purchase and depreciation transactions
    you do this in the IMG Step "Integration with General Ledger"
    Regards
    Ajay M

Maybe you are looking for

  • How do I export a photo via bluetooth to my Blackberry

    I am using leopard 10.5.5. I am trying to send a photo from my mac to my phone via bluetooth (I don't have a yahoo pop acct to send an email to my phone so I'm trying to use bluetooth.) Why can't I export or send a photo via bluetooth?

  • When will Camera Raw support be available for the Olypus OM-D E-M5

    I have just purchased the above Camera but Lightroom is not able to laod the raw files it generates.  Does anyone know when support for the camera will be available in Camera RAW?

  • VPN works only after reload

    Hello, I have a Cisco ASA5505 setup for VPN trough IPSec (L2TP). I can connect from wherever I want to it using the user and password. The only problem is that, after 2-3 days I have to reload the appliance because it denies connection on port 500 UD

  • Mime...but different problem...please help!

    Hi there I have the same problem...I was following your directions and the difference is that I have these two files http://b]Flash Player.plugin and flashplayer.xpt and when I download flash it dosen't actually complete it and it brings me back to t

  • Adjust image

    have a new macbook pro early 2011 and am working in iweb 3.03. I can't seem to get adjust image to work. I can "edit in iphoto" but no in iweb adjust. When I click on the image and then "adjust image" the menu comes up but is blank, no buttons can be