ICR Process 2 - Line Item Missing from Reconciliation Step FBICR2

Dear Experts,
I am very close to process 002 working well. I have a scenario I am hoping you can help with:
1. I posted two intercompany documents
(Screenshot of Both Documents Here: http://img139.imageshack.us/img139/7264/documentsposted1of2.png)
2. Data Assignment and Reconcilation is run and three of the line items are automatically assigned, the forth is missing
(See screenshot here: http://img412.imageshack.us/img412/7334/missing4thlineitem2of2.png)
Note: The missing item appears in List of Total Documents and List of Records in the auxilary programs
Where is the $14USD debit to G/L Account 'IC Rev'? Any insight would be greatly appreciated.
Thanks,
John Scime
+1-716-803-4920

If I unassign the line it only appears in the hierarchy tree undor Company 10 /TP 20 and on the Company 10 unassign box in the dashboard.
If I go to the hieracy tree under Company 20/TP10 the other half of the document is there under Company 10 unassign box in the dashboard.
This is strange because both records will not show up on a single screen and therefore (ie. one record on the Company unassigned box and the other in the TP unassign box), they cannot be manually assigned.
Any ideas how I can bring there screens together (Ideally Auto-matching, but Ill take anything at this point)
Thanks

Similar Messages

  • One line item missing from PO created using Shopping cart

    Hello Team, we have raised a shopping cart with 6 line items, having the same vendor and account assignment details. Once the shopping cart was approved the PO was created but the 3rd line item was missing in the PO. When we checked in BBP_PD, the 3rd line item is still showing as item in transfer process. Can anyone please throw some light to this issue. All the line items were approved.
    Thanks.
    Richa

    Hi Richa,
    Is there any error in RZ20 for that shopping cart?
    Best Regards,
    Bharathi

  • Line item missing from FBL3N report

    Line item is missing from FBL3N report. I am selecting correct parameters for FBL3N report.
    The correct balance is shown in the FS10N report.
    I have checked the document, it is not reversed.
    Can anyone please tell me the reason for the same?

    HI ,
    If its related to 2009 and are you sure that you have selected fiscal year or date in which that document falls .
    Can you Do one thing Please go to Dynamic selection of FBL3N and put that document number in Document number field and then find out whether that documents  come or not .
    if it does then please look at posting date and GL accounts etc for that  and check the header data as well.
    May document is related to different company code .
    One more thing Please check when you run FS10N display line item can you see document there if you can then definatley you will be able to see .
    Please attached the screen shot of document with header data .
    Many Thanks
    Regards.

  • How 2 Copy Header & Line Item Text from Purchase Order 2 Out Bound Delivery

    Hi SD Gurus,
    I want to copy header and line item text from Purchase Order to Out Bound Delivery (This is required in Stock Transfer Process).
    I have been able to do successful config. for copying header and line item text from Sales Order to Outbound Delivery but config. doesn't seems to be same for copying text from PO to OBD.
    Is there any way to achieve the same? Can some expert show the way to achieve this.
    Thanks in advance.
    Warm regards,
    Rahul Mishra

    Hi Ravikumar thanks for u quick reply.
    This is wht is currently coded.
    concatenate values to get item text for read text function
       invar3+0(10) = invar1. "PO number
       invar3+10(5) = invar2. "PO line number
       SELECT SINGLE * FROM stxh WHERE tdobject = 'EKPO'
                                   AND tdname   = invar3
                                   AND tdid     = 'F01'
                                   AND tdspras  = sy-langu.
       IF sy-subrc = 0.
         invar4 = invar3.
    reading the text for the document items.
         CALL FUNCTION 'READ_TEXT'
           EXPORTING
             id       = 'F01'
             language = sy-langu
             name     = invar4
             object   = 'EKPO'
           TABLES
             lines    = it_itab.
    I have seen some PO's which have info rec texts in that, which gets pulled by the above code...first thing is its id is F02 which exist in STXH table also there is other text with F01 id, and hence the table it_itab gets both these text hence no pbm.
    but i came across a PO which has only one text which is info rec text with id F05 and is not store in stxh and hence doesnot get pulled by read_text fm. How do i change my cod to get this text which should not hamper other PO's as well.
    As mentioned in above msgs, this F05 could be retrieved by providing object name as EINE.
    anyhelp will be appreciated and rewarded.
    thanks

  • PO line item details from BAPI_PO_GETDETAIL1 and append to BAPI_PO_CHANGE

    Hi,
    The requirement is to get PO line item details from BAPI_PO_GETDETAIL1 and save it in the internal table and append that internal table into  the BAPI_PO_CHANGE.
    But i am getting dump in this program.
    TABLES: ekpo.
    DATA: BEGIN OF po_details.
            INCLUDE STRUCTURE BAPIMEPOITEM. "Include the structure of Dictionary Reference.
    DATA: END OF po_details.
    DATA: BEGIN OF po_details1.
            INCLUDE STRUCTURE BAPIMEPOITEM. "Include the structure of Dictionary Reference.
    data: END OF po_details1.
    DATA: it_po_details LIKE STANDARD TABLE OF po_details,
    wa_po_details like line of it_po_details.
    data: it_po_details1 like standard table of po_details,
    wa_po_details1 like line of it_po_details1.
    PARAMETERS: p_ebeln LIKE ekpo-ebeln DEFAULT '4500000016'.
    CALL FUNCTION 'BAPI_PO_GETDETAIL1'
      EXPORTING
        PURCHASEORDER = p_ebeln
      TABLES
        POITEM        = it_po_details.
    loop at it_po_details into po_details.
      read table it_po_details into wa_po_details with key PO_item = p_ebeln.
      move-corresponding po_details to po_details1.
      CALL FUNCTION 'BAPI_PO_CHANGE'
        EXPORTING
          PURCHASEORDER = p_ebeln
        TABLES
          POITEM        = it_po_details.
      append po_details to it_po_details1.
      LOOP AT it_po_details1 INTO wa_po_details1.
        WRITE:/ wa_po_details1-PO_item,
           wa_po_details1-MATERIAL,
           wa_po_details1-SHORT_TEXT,
           wa_po_details1-PLANT.
      ENDLOOP.
    endloop.

    HI,
    1st you check for the following following  authorization objects are checked:                                                                               
    M_BEST_BSA (document type in PO)                                                                               
    M_BEST_EKG (purchasing group in PO)                                                                               
    M_BEST_EKO (purchasing organization in PO)                                                                               
    M_BEST_WRK (plant in PO)          
    and to change the PO below is the eg for changing the short text:-
    TABLES: ekpo.
    DATA: BEGIN OF po_details.
            INCLUDE STRUCTURE bapimepoitem. "Include the structure of Dictionary Reference.
    DATA: END OF po_details.
    DATA: BEGIN OF po_details1.
            INCLUDE STRUCTURE bapimepoitem. "Include the structure of Dictionary Reference.
    DATA: END OF po_details1.
    DATA: it_po_details LIKE STANDARD TABLE OF po_details,
    wa_po_details LIKE LINE OF it_po_details.
    DATA: it_po_details1 LIKE STANDARD TABLE OF po_details,
    wa_po_details1 LIKE LINE OF it_po_details1,
    poheader  LIKE  bapimepoheader,
    return  LIKE STANDARD TABLE OF  bapiret2 WITH HEADER LINE,
    poitemx LIKE STANDARD TABLE OF  bapimepoitemx WITH HEADER LINE.
    PARAMETERS: p_ebeln LIKE ekpo-ebeln DEFAULT '5600010646'.
    CALL FUNCTION 'BAPI_PO_GETDETAIL1'
      EXPORTING
        purchaseorder = p_ebeln
      IMPORTING
        poheader      = poheader
      TABLES
        poitem        = it_po_details.
    LOOP AT it_po_details INTO po_details.
      READ TABLE it_po_details INTO wa_po_details INDEX 1.
      MOVE-CORRESPONDING po_details TO po_details1.
      MOVE: po_details-po_item TO poitemx-po_item,
            'X' TO poitemx-short_text.
      APPEND poitemx.
      CALL FUNCTION 'BAPI_PO_CHANGE'
        EXPORTING
          purchaseorder = p_ebeln
          poheader      = poheader
        TABLES
          return        = return[]
          poitem        = it_po_details[]
          poitemx     =
          poitemx[].
      CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'.
      APPEND po_details TO it_po_details1.
      LOOP AT it_po_details1 INTO wa_po_details1.
        WRITE:/ wa_po_details1-po_item,
        wa_po_details1-material,
        wa_po_details1-short_text,
        wa_po_details1-plant.
      ENDLOOP.
    ENDLOOP.

  • Create a report same as KSB1 and add WBS line item details from CJI3

    Hello Everyone,
    I need to create a report exactly like KSB1 which should have a selection screen exactly like KSB1 but it should also display the WBS line item details from CJI3.
    What is the right way of doing it? Please advice.
    COEP is pretty huge in Production, and we need to fetch data by a specific date in selection screen or a cost center group. This can take a long time to fetch data from the table based on selection screen input. Are there function modules or do we need to use some other tables to fetch data same as COEP?
    Thanks for all your help.
    Regards,
    Shipra.

    Hai ,
             Please go throuth the note  325546  , u need to implement the customer exit  COOMEP01 .
    regards,
    K.Vinay kumar

  • How to place a delivery block at line item level from Inbound ORDERS IDoc?

    Hi EDI/ABAP Experts,
    Can anyone please tell me how to place a delivery block at line item level from Inbound ORDERS IDoc?
    I tried using exit "EXIT_SAPLVEDA_001'. But there is no LIFSP field in either of XVBEP and YVBEP structures.
    Can you guys throw some light. How to place a delivery block @ line item level on sales order from Inbound ORDERS IDoc.
    Thanks,
    Matt .

    Look into the Include: LVEDAF5A that is the only place where this exit is hit... double click on the Structures and look which structure has billling block field.. and use that..
    FORM CUSTOMER_FUNCTION_IDOC USING IDOC_DATA.
      CALL CUSTOMER-FUNCTION '001'
        EXPORTING SEGMENT = IDOC_DATA
                  DVTCOMAG = VTCOMAG
                  DXMESCOD = IDOC_CONTRL-MESCOD
                  CONTRL   = IDOC_CONTRL
        TABLES    DXBDCDATA = BDCDATA
                  DXVBAP    = XVBAP
                  DXVBEP    = XVBEP
                  DYVBEP    = YVBEP
                  DXVBADR   = XVBADR
                  DYVBADR   = YVBADR
                  DXVBPA    = XVBPA
                  DXVBUV    = XVBUV
                  DD_FLAG_P = D_FLAG_P
                  DXKOMV    = XKOMV
                  DXVEKP    = XVEKP
                  DYVEKP    = YVEKP
        CHANGING  DXVBAK   = XVBAK
                  DD_FLAG_K = D_FLAG_K
        EXCEPTIONS
                  USER_ERROR = 01.
    If you are in ECC6.0  you can also use Enhancement point : INTERPRET_IDOC_ORDERS_01 SPOTS ES_SAPLVEDA. in include: LVEDAF2U

  • Few of my amount_cr lines are missing from the query, check GL_JE_LINES_V.

    I have a discover report which have 5 union all, and one of the select statement brings the information about the cr.type like 'MISC'from the table called ar.ar_cash_receipts_all cr.
    This query basically brings the information of amount_dr and amount_Cr from the general ledger table, the navigation for the same is as below.
    Navigation:
    Enter journals
    pick some Batch Name
    Click find button
    Place cursor on the line item from the list that has Journal Name like Miscellaneous receipts
    Click on Review Journal.
    When you check the record history pulls the information as GL_JE_LINES_V.
    I am not able to pick few of my amount_cr values.
    Tables and joints used for my query is as below.
    Please correct me if i am missing any information.
    Thanks in advance.
    Archice
    APPS.ra_customer_trx_all ct
    ,AR.ra_cust_trx_types_all ctt
    ,AR.ar_distributions_all ard
    ,apps.hz_cust_accounts_all cust
    ,AR.hz_parties cust2
    ,AR.ar_adjustments_all adj
    ,GL.gl_sets_of_books books
    where
    adj.set_of_books_id=books.set_of_books_id) and
    nvl(adj.postable,'Y')='Y') and
    adj.adjustment_id=ard.source_id) and
    ard.source_table='ADJ') and
    adj.customer_trx_id=ct.customer_trx_id)
    and ctt.cust_trx_type_id=ct.cust_trx_type_id) and
    cust.cust_account_id=decode(ctt.type,'BR',ct.drawee_id,ct.bill_to_customer_id)) and
    cust2.party_id=cust.party_id and
    ctt.set_of_books_id=books.set_of_books_id(+)

    Hi Blushadow,
    Thanks for responding my query, here is best i can mention further regarding my query problem.
    The code which I have posted earlier, has been coded by some other technical person, I have posted part of the main query which pulls ‘MISC’, the posted query is not pulling all the amount_credit (amount_cr) column information, few of the lines are missing,
    The amount_dr, amount_cr is basically called form GL_JE_LINES_V, I have checked this from record history, I want to know whether, I need any further tables to be added for the existing query, in order to pull the missing amount_cr
    Lines.
    Basically, when we check the description of the view GL_JE_LINES_V
    We have few tables.
    GL_JE_LINES JEL
    , GL_CODE_COMBINATIONS CC
    , GL_JE_LINES_RECON REC
    , GL_SYSTEM_USAGES USE
    I would like to know is there any way to use another table instead of
    GL_JE_LINES_RECON REC, because when I query it, I wont see any data from this table and this have two major joins in the mentioned view called GL_JE_LINES_V.
    Regards
    Archie

  • Error Log showing Line Items missing in APP Cheque Printing

    Hi
    Am working on APP Cheque Printing... i hav run here the F110 Steps ..Spool is also generated ...everything is cuming correct...but in spool one error log is also generated as below :
    Error log
    F0251                    In form YCHEQUE_NEW1 / window MAIN , the element 525 (Line items) is missing
    F0253                    Output of the relevant forms is defective
    YCHEQUE_NEW1  -> The Cheque Print Script  . In my Cheque Output i dont want to display the Line Items ..That's why in Script i hav deleted all the coding under the element 525 which displays Line Items data....
    then am getting this error log ..
    Please let me know how to solve  this problem..
    Thanks in Advance
    SATYA

    Hi,
    Just comment the code which is present in that text element or remove the code.
    Do not comment text element(i.e Empty text element).
    /E 525     "Do not remove or comment this line
    *Comment all code
    Edited by: Anil Mane on Sep 12, 2008 8:41 AM

  • BAPI_GOODSMVT_CREATE  (in line item, missing mseg-sgtxt in doc. generated)

    Hi all....
    I'm using this bapi to creat material documents (without purchase orders or anything like that).. In line items I fill field item_text, but when mm document is generated, mseg-sgtxt is empty.  Anyway, bapi works fine, but this field is missing....
    Is it the way that this bapi should works??
    Thanks from Barcelona......

    Hi....
    Sorry about my delay replying to you.. I don't remember the note, but I give you the SAP exit you should checkout...
    EXIT_SAPMM07M_001
    Hope it's useful for u......

  • DELJIT Idoc issue, delivery Item missing from Due list

    We have recieved an Inbound DELJIT Idoc with status 53 that means the Scheduling agreement was updated successfully, but one of the Delivery line items of the Idoc does not appear in Delivery due list in VL10,  any reason Why?
    Thanks

    Hi Dirk,
    Please see below configuration in XXXID.h file:
    // ImplementationIDs:
    DECLARE_PMID(kImplementationIDSpace, kCSDTPServiceProviderImpl, kCSDTPPrefix + 0)
    DECLARE_PMID(kImplementationIDSpace, kCSDTPIndesignResponderImpl, kCSDTPPrefix + 1)
    DECLARE_PMID(kImplementationIDSpace, kCSDTSelectionObserverImpl, kCSDTPPrefix + 2)
    DECLARE_PMID(kImplementationIDSpace, kCSDTPObserverImpl, kCSDTPPrefix + 3)
    DECLARE_PMID(kImplementationIDSpace, kCSDTPStartupShutdownServiceImpl,  kCSDTPPrefix + 4)
    Above configuration is giving me below ASSERT:
    FillOutInterfaceInfo - Impl kCSDTPObserverImpl not yet registered. Missing from factory list resource in plugin kCSDTPPluginID?
    Now I changed the configuration as below:
    // ImplementationIDs:
    DECLARE_PMID(kImplementationIDSpace, kCSDTPServiceProviderImpl, kCSDTPPrefix + 0)
    DECLARE_PMID(kImplementationIDSpace, kCSDTPIndesignResponderImpl, kCSDTPPrefix + 1)
    DECLARE_PMID(kImplementationIDSpace, kCSDTSelectionObserverImpl, kCSDTPPrefix + 2)
    DECLARE_PMID(kImplementationIDSpace, kCSDTPObserverImpl, kCSDTPPrefix + 4)        //<-------changed from 3 to 4
    DECLARE_PMID(kImplementationIDSpace, kCSDTPStartupShutdownServiceImpl,   kCSDTPPrefix + 3)    //<-------changed from 4 to 3
    Now it is giving below ASSERT:
    FillOutInterfaceInfo - Impl kCSDTPStartupShutdownServiceImpl not yet registered. Missing from factory list resource in plugin kCSDTPPluginID?
    Now this looks really wierd. I also tried with some random combinations 5,6,7 but none is working and some how 3 is not working but 4 is working. Now how can I decide which
    is going to work and why 3 is not working here.
    Please enlighten me if any one has any clue here

  • Vendor line items transferred from one vendor to another vendor

    Dear SAP Guru's
    My client created one vendor called "X" under General Vendor Group by mistake, now they realized that "X" vendor should be created under Related Party Vendor Group. Now they want all line items posted to that vendor should be transferred to New Vendor created under Related Party Vendor Group,
    Can you please suggest how to go about the data migration in this case
    Regards
    Sreenivasulu

    Hi Deepa
    As you suggested we would be blocking "X" (Vendor No - 110001) old Vendor and create new vendor "X" (Vendor No - 130012) and what about transfer of line items existing in old vendor (Vendor No-110001)
    my client wants to transfer all the line items (existing) of old vendor (Vendor No - 110001) to New Vendor (Vendor No - 130012) for entire year,
    Simultaneously my client don't want to run the report by combining both vendors to know how much business has done with that particular vendor, because of that reason we need to transfer all the line items from old vendor to new vendor
    Regards
    Sreenivasulu

  • Items missing from CC document reappear when saved as CS4

    Had a two hour chat with Adobe this afternoon and uploaded a suspect file, but am now unable to get in contact, so I'll give this a go.
    We've recently upgraded from CS3 to CC and have thousands of legacy files. The docs look fine when opened in CC and output correctly to PDF for commercial printing purposes. Today, however, has thrown a major spanner in the works. Three days ago we opened a CS3 document into CC, made amends, output a PDF proof for the client, and saved it as CC (.indd). The client has sent back the marked up PDF to make further amends. On opening the CC doc, it is immediately apparent that things aren't as they should be. Several items from different pages and different layers - images and text boxes, are missing. We scratched our heads for a while to try and work out how we could possibly have accidentally deleted various items, with no convincing answer. A confusing anomaly was that one of the items missing was a full page full colour placed image which just happened to be on the back cover also. We copied this image and tried to place it on the front but it wouldn't allow us, saying something about boundaries not being big enough - the first sign that something may be damaged.
    I then looked on the web to see if anybody else had had similar problems. It appeared that nobody had but one of the results was an Adobe page for repairing corrupted files. I decided to try one of their recommendations, which was to save as a CS4 file then reopen in CC. We did this and hey presto, it worked! All the missing items returned.
    Our initial joy was quickly replaced by dread as we realised that we had opened what appeared to be a corrupted file, with absolutely no external indication that it was damaged. If it hadn't opened at all, or if there'd been a warning to say the file was damaged, we'd have been pre-warned; but the fact that it opened with no problem whatsoever, meant we didn't know it was damaged. On this occasion, the absence of the front page image made us aware of a problem, but what if it was a 200 page catalogue that we'd just been given the go-ahead to print? Before today we certainly wouldn't have been thinking that we need to go through every page to make sure every item is still there!
    We very often open old docs and create PDFs for print without looking at the files, but even if we did, how are we possibly going to remember every item that appears on every page just to make sure they're still there when we print 3 days, 3 weeks or 3 months later.
    I've been doing this job for twenty five years and never come across this, and from a business point of view, this is VERY scary.
    Anybody any idea what's happening?

    ... this kind of problem is common enough that I never recommend opening a legacy .indd file in a newer version. Instead export the file to .inx from the original version (or .idml for CS5 or newer files) and open that for conversion.
    Peter,
    I've never seen or heard of such a thing. I have had guides get totally screwed up when files are saved down to IDML and then re-opened. That's why I don't really trust the IDML saving except for damaged files.
    But opening legacy files is not supposed to have these types of problems.
    It is very possible that this is a one-time aberration of only one file.
    But what you're recommending is too onerous for most companies to do.
    It is not feasible for companies to keep a copy of legacy software (in this case CS3) running. So they would have to anticipate needing to re-open the file as INX. They would have to keep a copy of CS3 available to export as INX. But it is doubtful that CS3 would run on today's machines running the latest OS. So what you're recommending is they have to export as IDML before they archive a file. And I don't even know if the INX from CS3 can be opened by CC. That could have just as many problems
    I'm happy for the client that saving the IDML and then re-opening in CC fixed their problem. Obviously the CS3 file was damaged.
    And there really is no excuse for not checking a document before it goes to press.
    But if people can't trust opening legacy files, Adobe has a huge problem on their hands.

  • Vendor text of PO line item replication from SRM to ECC.

    All experts,
    Users are entering the more informations for individual line item in to Vendor text field available in to SRM Purchase order.
    Client requirement is to replicate the Vendor text from PO in SRM to PO in ECC.
    Right now system is replicating PO with all information except text.
    How I can achieve it. Any help will be highly appreciate.
    Thanks in advance.
    Parag.

    This is due to a program error, and SAP has released a OSS note on this.
    Please check if this OSS Note applies to you. Note number  - 1129291
    Do reward points if useful.

  • Line items transfer from one GL account to another GL account

    Dear Experts,
    Greetings for the day !
    Is it possible to transfer all the line items of a GL account to another GL account instead of transferring the balance of the GL account.
    Thanks in advance.

    Dear Nico,
    Thanks for your suggestion.
    Actually the account is having more than thounsand line items.  is there any automated process through which we can transfer all the line items in one shot.
    Thanks & Regards

Maybe you are looking for

  • Podcast image suddenly disappeared - How can I get it back?

    This has happened before, and I just pointed the itunes image attribute in my RSS to a new .jpg file. After an hour or so, iTunes corrected it. I did the same thing this morning when I saw the image had disappeared. It's been several hours now, and i

  • Where clause in SELECT INTO statement

    Hi, I am using multiple conditions in where clause for my SELECT INTO statement as follows. SELECT count(DTLA.LOCATION_ID) INTO LOCATION_ID_count FROM DOC2_MGR.DOC_TYPE_LOB_ASSOC DTLA WHERE (DTLA.DOC_TYPE_ID = 'XYZ' AND DTLA.lob_code = 'ABC'); It con

  • Enhancement for a User Exit

    Hi Experts. Can anyone tell me how to know the enhancement for a particular user-exit. Rgds, Simran

  • MII transaction as Web service integration

    Hi MII's transaction can be called as WS but it has its own format. We have a system to integrate and this system should call MII's transaction. However the WS interface of the system is inflexible (it cannot be change, but has a very simple structur

  • Migrate peoplesoft sybase HR database to oracle 11g

    Hi All, We am looking to migrate from sybase 12 to Oracle 11g. We are not sure on which path to choose for this migration to be done. Ths sybase Database is around 55 GB. Below are few questions. Please let me know. The down time on this database can