TRANSFER POSTING REPORT

HI EVERY BODY
MY CLIENT HAVE AN REQUIREMENT
WHILE DOING TRANSFER POSTING FORM ONE STORAGE LOCATION
TO ANOTHER. IN REPORT CLIENT WANT TO SEE FROM WHICH STORAGE LOCATION
MATERIAL HAS COME.
REGARDS
JAYAKER

you can create new query in SQ00- read table MSEG in infoset
here MSEG-LGORT is field for sending Storage location and MSEG-UMLGO is receiving storage location
you can select for certain material and plant and for movement type 311
what is sending and what is receiving storage location

Similar Messages

  • Transfer Posting for Line Items between Reconciliation Account

    HI,
    My customer want to transfer costing the line items between a old Reconciliation Account and a New Reconciliaton Account.
    For example, i have a Account Group Vendor with a old Reconciliation Account " Vendor CEE".
    This reconciliation account has the line items concern differents Vendors.
    Edit a new Account Group calling ( CEE) to replace a Old Account Group.
    After changing in Vendor Master data the Reconciliation account, we need to transfer posting the line items in the new account reconciliation
    In Sap system is there a report can do it? Can you help me?
    Regards

    Hi,
    Thank you for the answer.
    I did that, and exactly:
    - In Trx Obbw insert the reconciliation account and Adjustement account.
    - and execute the trx FAGLF101 in test but the sap system give me the following error:
      " Account determination for transaction A00 is missing for account 0205016001 ZM P001 "
       Message no. FR005
    Can you help me?
    Regards
    Edited by: Marika De Cesare on Oct 18, 2011 1:06 PM

  • Getting error while posting reports on Unix Process Scheduler Server

    Hello ,
    I am getting the below error while posting reports on Unix Process Scheduler Server .
    PSDSTSRV.14338 (2) [09/08/09 08:21:34 PostReport](1) (JNIUTIL): Java exception thrown: java.io.IOException: Stream closed.
    PSDSTSRV.14338 (2) [09/08/09 08:21:34 PostReport](3) HTTP transfer error.
    PSDSTSRV.14338 (2) [09/08/09 08:21:34 PostReport](3) Post Report Elapsed Time: 0.0900
    PSDSTSRV.14171 (10) [09/08/09 08:21:34 PostReport](1) (JNIUTIL): Java exception thrown: java.io.IOException: Stream closed.
    Please advise ,thank you.

    user5838027 wrote:
    Node name :PS_HTTP
    URL: http://ddas1020.dev.com:16000/psreports/hrdmo
    URI:SchedulerTransfer/hr90dmo
    URI Port: 16000
    Please let me know if any other info is needed.
    Thanks.
    typo...
    URL: http://ddas1020.dev.com:16000/psreports/hr90dmo
    Hopefully, your application URL looks like http://ddas1020.dev.com:16000/psp/hr90dmo/..., your URI host looks like ddas1020.dev.com (or corresponding ip address), and hhtp is checked.
    Did you also tried to give the web login/password ?
    Nicolas.

  • BAPI_GOODSMVT_CREATE error - Duplicate Transfer Posting

    Hello,
    I'm using BAPI_GOODSMVT_CREATE for transfer posting with GM Code 04 and Movement Type 311.
    But the posted material document is incorrect. Instead of 2 lines only, the line items becomes 4.
    Could anyone please help me?
    Thanks in advance!

    Hi Gold Yap,
          I have done the Transfer posting by using BAPI_GOODSMVT_CREATE.
         Below i added my sample code. Please go through.
    Report XYZ.
    TABLES : mslb , mchb .
    DATA : BEGIN OF i_stock OCCURS 0 ,
           matnr LIKE mslb-matnr ,
           werks LIKE mslb-werks ,
           charg LIKE mslb-charg ,
           sobkz LIKE mslb-sobkz,
           lifnr LIKE mslb-lifnr ,
           lblab LIKE mslb-lblab ,
           END OF i_stock .
    DATA : BEGIN OF i_batch OCCURS 0 ,
           matnr LIKE mchb-matnr ,
           werks LIKE mchb-werks ,
           lgort LIKE mchb-lgort ,
           charg LIKE mchb-charg ,
           clabs LIKE mchb-clabs ,
           END OF i_batch .
    DATA: BEGIN OF it_mess OCCURS 10,
          charg LIKE mslb-charg ,
          lgort LIKE mchb-lgort,
          lifnr LIKE mslb-lifnr,
          err LIKE bapiret2-message,
          flag,
          END OF it_mess.
    DATA match.
    DATA :  header LIKE bapi2017_gm_head_01 . "OCCURS 0 WITH HEADER LINE .
    DATA :  code LIKE bapi2017_gm_code .  " OCCURS 0 WITH HEADER LINE .
    DATA :  item LIKE bapi2017_gm_item_create OCCURS 0 WITH HEADER LINE.
    DATA : i_return LIKE bapiret2 OCCURS 0 WITH HEADER LINE .
    DATA : matdoc LIKE bapi2017_gm_head_ret .
    SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME .
    SELECT-OPTIONS : s_matnr FOR mslb-matnr .
    PARAMETERS : p_werks LIKE mslb-werks DEFAULT 'TPFB' .
    SELECTION-SCREEN END OF BLOCK b1 .
    AT SELECTION-SCREEN OUTPUT .
      LOOP AT SCREEN .
        IF screen-name = 'P_WERKS' .
          screen-input = '0' .
          MODIFY SCREEN .
          CLEAR screen .
        ENDIF.
      ENDLOOP .
    START-OF-SELECTION .
      CLEAR: i_stock[],i_stock.
      CLEAR: it_mess[],it_mess.
      CLEAR: i_batch[],i_batch.
      SELECT matnr werks charg sobkz lifnr  lblab
      FROM mslb INTO TABLE i_stock
      WHERE matnr IN s_matnr
        AND werks = p_werks.
      DELETE i_stock WHERE sobkz <> 'O'.
      DELETE i_stock WHERE lblab <= '0.000'.
      IF i_stock[] IS INITIAL .
        MESSAGE 'NO Data Available In MSLB Table' TYPE 'S' .
      ELSE.
        DELETE i_stock WHERE charg = 'COMMON' .
        IF i_stock[] IS INITIAL .
          MESSAGE 'Already Transfer Posting to Common Batch' TYPE 'S' .
        ENDIF.
      ENDIF .
      SELECT matnr werks lgort charg clabs
      FROM mchb
      INTO TABLE i_batch
      WHERE matnr IN s_matnr
        AND werks = p_werks .
      DELETE i_batch WHERE clabs <= '0.000'.
      IF i_batch[] IS INITIAL .
        MESSAGE 'NO Data Available In MCHB Table' TYPE 'S' .
      ELSE .
        DELETE i_batch WHERE charg = 'COMMON' .
        IF i_batch[] IS INITIAL .
          MESSAGE 'Already Transfer Posting to Common Batch' TYPE 'S' .
        ENDIF.
      ENDIF .
      CLEAR : header,code,matdoc  .
      header-pstng_date  = sy-datum.
      header-doc_date    = sy-datum.
      header-pr_uname    = sy-uname.
      header-header_txt  = 'Transfer Posting'.
      code-gm_code       = '04'.
      SORT i_batch BY matnr werks charg.
      LOOP AT i_batch.
        CLEAR: item[],item.
        item-material        = i_batch-matnr.
        item-plant           =  i_batch-werks.
        item-batch           = i_batch-charg.
        item-entry_qnt       =  i_batch-clabs .
        item-stge_loc        = i_batch-lgort .
        item-move_type       = '309'.
        item-move_batch = 'COMMON'.
        APPEND item .
        CLEAR item .
        match = 'X'.
        PERFORM bapi_run USING match.
      ENDLOOP.
      LOOP AT i_stock .
        CLEAR: item[],item.
        item-material        = i_stock-matnr.
        item-plant           =  i_stock-werks.
        item-batch           = i_stock-charg.
        item-vendor          =  i_stock-lifnr .
        item-entry_qnt       =  i_stock-lblab .
        item-move_type       = '309'.
        item-spec_stock      =  'O'.
        item-move_batch = 'COMMON'.
        APPEND item .
        CLEAR item .
        match = 'Y'.
        PERFORM bapi_run USING match.
      ENDLOOP.
      IF i_stock[] IS NOT INITIAL OR i_batch[] IS NOT INITIAL .
        IF it_mess[] IS INITIAL.
          MESSAGE 'Transfer Posted Successfully' TYPE 'S' .
        ELSE.
          SORT it_mess BY charg err.
          WRITE:/2 'Batch',11'Location',20'Vendor'.
          LOOP AT it_mess.
            AT NEW charg.
              SKIP.
            ENDAT.
            IF it_mess-flag = 'X'.
              WRITE: /2 it_mess-charg COLOR 6, it_mess-lgort COLOR 3
                     INTENSIFIED OFF,it_mess-lifnr COLOR 2 INTENSIFIED OFF.
            ENDIF.
            WRITE: /10 it_mess-err.
          ENDLOOP.
        ENDIF.
      ENDIF .
    *&      Form  bapi_run
          text
    -->  p1        text
    <--  p2        text
    FORM bapi_run USING match .
      CLEAR: i_return[],i_return.
      CALL FUNCTION 'BAPI_GOODSMVT_CREATE'
        EXPORTING
          goodsmvt_header = header
          goodsmvt_code   = code
        TABLES
          goodsmvt_item   = item
          return          = i_return.
      IF i_return[] IS INITIAL.
        CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
          EXPORTING
            wait = 'X'.
      ELSEIF i_return[] IS NOT INITIAL.
        CALL FUNCTION 'BAPI_TRANSACTION_ROLLBACK'.
        LOOP AT i_return WHERE type = 'E'.
          it_mess-charg = i_stock-charg.
          IF match = 'X'.
            it_mess-lgort = i_batch-lgort.
          ELSEIF match = 'Y'.
            it_mess-lifnr = i_stock-lifnr.
          ENDIF.
          it_mess-err   = i_return-message.
          IF sy-tabix = 1.
            it_mess-flag = 'X'.
          ENDIF.
          APPEND it_mess.
          CLEAR  it_mess.
        ENDLOOP.
      ENDIF.
    ENDFORM.                    " bapi_run
    Regards,
    S.C.K

  • Similar with FB05,how should i process 'transfer posting with clearing'?

    Hi my friends,
         Customers provide an excel file that contains detial of invoices paid(Doc No, Customer No, Invoice No, Payment Amount), then i need to implement FB05 Function and transfer posting with clearing.
          I'd like to use FM 'Posting_interface_clearing', but i am not clear how i should set two parameters: payment amount and  rfopt-xrptz ( editing options->open items -> enter payment amount for residual items ).
         I refer to Program RFBIBL00, and who tell me how to fill value in  the two table FTPost and FTClear.

    hi,
    use rfbibl00 with tcode FB05 and structueres <b>BSELK and BSELP</b>
    -> look documentation with se38 to that report
    A.

  • Tax Transfer Posting ??????

    Hi,
    I got an issue with the report "S_P00_07000119": All configuration for Tax codes is done, posting accts, Target tax, .....etc.
    I did different tests but I got nothing in result, the error message " No data contains" and no line items  are displayed.
    For Information, this is a subsidiary in France and all other countries are cutomized in the system!!!!!!!!!!!!!!!!!!
    usually, I do solve issues just by  trying logical possibilities but this time, I got no possibility in mind. Please, give me feedback if u faced same issue or even if u think about a test that I can do, just to make it work.
    Thanks
    Regards,
    KL

    Hi,
    i am calculating the Service Tax through Tax Code not from Precing Procedure, in Tax code assigned Targeted Tax code,
    the transfer posting is workig but the intrim G/L account posting in Basic G/L account for ECess & SHCess
    Regards
    Akmal

  • Subcontracting for Sales Order Stock and collective Transfer Posting

    Dear Expert,
    We have a scenario in subcontracting wherein the sales order the customer also wants to see the components and as such along with the Header item of subcontracting ,we also mention the components as another line item in the sane Sales Order.
    Now from the sale sorder two Po's are created onr for the subcontractor and one for the compnens to be procured.
    Since the components are procured on sales order stock there is noway we can issue it to the Vendor stock through Movt .Type 541.
    As per SAP AG WE CAN:
    "ubcontracting is also possible in conjunction with sales order stocks and project stocks. The subcontracting orders are account-assigned to a sales order or a WBS element. Thus, the components are not transferred (using a transfer posting) to the u201Cstock of material provided to vendoru201D but are directly withdrawn from the sales order stock or the project stock at the time of the goods receipt. The material manufactured is also posted to the sales order stock or to the project stock. The cost of subcontracting is then debited to the sales order or WBS element.Since the components are not transferred to the u201Cstock of material provided to vendoru201D, we recommend that you use a transfer posting to transfer the provided components to a new storage location (for example, 9999). This enables you to obtain an overview of those stocks that are physically located at the subcontractor.This information is particularly important when you carry out a physical inventory of the sales order stocks and project stocks."
    But my query is that how many such storage locations will be created for the subcontracting vendors.
    Secondly for the stock transfer from sales to storage location , we have lots of sales order, is dera way through which we can do bulk transfer rathar than clicking at new item everytime and then doing the transfer posting.
    your expert advice shallbe helpful in resolving a longtime pending issue , waiting for the response.
    Regards
    Jabeen

    This is a known issue, the system doesnt allow stock to have two special stock statuses at the same time.
    Your concern of having to make multiple storage locations is valid (since this is a configuration).
    I suggest you do the following
    - Configure a warehouse and a single storage type (say 001). Allow mixing of materials in a single bin
    - Assign this warehouse to a new storage location.
    - Create a bin for every sales order number in the warehouse.
    - When goods are moved to subcontractor, perform a transfer posting to the storage location, and perform a putaway to the respective bin. The putaway strategy can be tweaked using a user exit to go to the relevant bin. This way you do not have to enter the WM transaction for putaway.
    - To consume the stocks, you can use 231E movement (MB1A). On the WM side, the picking strategy can be enhanced so that the picking TO is generated with the correct source bin. Make sure the GL account and CO objects are as per FICO requirements.
    This way you can track the stocks binwise (bin level reports are available in WM), perform physical inventory and also consume the stocks from the relevant bin automatically.
    We had faced the same situation, and we ended up not having sales order stock at all.
    Hope this helps.
    Regards,
    Aroop

  • Error in OASV (Transfer posting)

    Hi Experts,
    Help me on this
    I was doing transfer posting in OASV,got error message with respect to tax code Vo and created Vo with juridiction code  in the ststem and also checked setting in OBCL. Only inpux tax V0 is assigned.
    Now i am getting below error.
    Error in assigning the tax group
    Message no. FF716
    Diagnosis
    To guarantee a connection between the automatically created tax items, the initiating line items, and the tax information used for reporting, a unique code is assigned to the line items belonging together. An error occurred during this assignment.
    Procedure
    Contact your system administrator.
    Procedure for System Administration
    Create an OSS message.
    Regards,
    Pandu

    Hi,
    Please check once again. There is a deficit of stock in the storage location in the plant. I guess you are mentioning the incorrect s.loc in mb1b.
    Also check if there is any return material in the storage loc.
    Regards,
    satyajit
    Edited by: Satyajit Kumar on Dec 23, 2008 11:24 AM
    Edited by: Satyajit Kumar on Dec 23, 2008 11:25 AM

  • Transfer posting inside GR

    Hi all,
    My requirement is to do a Transfer posting for the POs which is of direct delivery while doing a GR.
    To be clear, whenever a user goes and does a GR I am checking for the PO in my custom table and if it is marked as direct delivery then I have to do a Transfer posting(MIGO_TR / MB1B) for the corresponding material details.
    The problem is I am using BADI MB_DOCUMENT_BADI to capture the PO number and do the TR process.
    But it happens to be a dump as because in both GR and TR the same process is being followed and so the BADI will be called again when we do the TR without commiting the GR process.
    So is there any way out?

    1) Create One separate program  to do TR using BDC or BAPI.
    2) In your BADI EXPORT PO Number to Memory Area.
        and then  call function Module.
    call function 'JOB_SUBMIT'
      exporting
        authcknam               = sy-uname
        jobcount                = l_jobcount
        jobname                 = im_jobname
        report                  =  im_report (That is Program for TR)
        priparams               = im_pripar
      exceptions
        bad_priparams           = 1
        bad_xpgflags            = 2
        invalid_jobdata         = 3
        jobname_missing         = 4
        job_notex               = 5
        job_submit_failed       = 6
        lock_failed             = 7
        program_missing         = 8
        prog_abap_and_extpg_set = 9
        others                  = 10.
    3) Now as your job submitted means your program schedule in background first call  WAIT statement  so your GR get time to commit  and then it will do TR through BDC or BAPI.

  • Transfer posting and Certificate of Analysis (BWUL)

    Moderator note:  I broke this off from discussion Transfer posting and Certificate of Analysis (BWUL)
    Please refer to the discussion for any background.
    This has been an interesting thread, and it's circling around the issue I am having, but I can't tell if this thread answers my question or not.  I'll ask here so as not to proliferate duplicate threads:
    I am in an environment where the business produces and tests finished goods in satellite plants and then moves them to a central DC via STO.  When I try to create COAs from the central DC, the COA program cannot find the results or specifications.
    I had the idea to change the profile to look at the production chain (thinking the batch in the production plant was part of the production chain of the identical batch in the DC).  When I did this, the program could not find the correct specifications.  I have been messing with the configuration around the results and specification origins with no success.
    I feel like this should be possible, but I can't figure out what I am missing.  Is SAP able to create a COA from a central DC for a material/batch that was produced in a satellite plant and sent via STO?
    Message was edited by: Craig S

    1) in the BWUL make sure in configuration setup it is set to include stock transports.
    2) You don't indicate where you maintain your specs.  In operations like this you should try to be reporting specs and results from the batch.  But I'm guessing you might be keeping the spec in the inspection plans only.
    3) in the COA profile, you can create your own custom FM for "results origin" and for "results specs".  You may need to create them if you keep your specs in the plans and not in the batch records.
    Craig

  • Defining Accounts for Automatic Tax Payable Transfer Posting

    Dear all,
    I would like to know about accouting process of Accounts for Automatic Tax Payable Transfer Posting.
    Please give me a detail example about business that use this account
    Thanks so much
    Minhtb

    Hello,
    This scenario applies at month end.
    Say during the month you have posted payables are receivables resulting in the following balances on your tax accounts:
    Input tax account: 10.000 Dr
    Outpux tax account 12.500 Cr
    When you prepare your tax return at month end with report "Sales Purchases tax returns", it will print out all if your input and output tax transactions, detailing the total balances mentioned above.
    At the same time you can activate the tax payable posting option with help of the variant options. Besides the printout, SAP will then also automatically post the following document:
    Dr Output tax account 12.500
    Cr Input tax account 10.000
    Cr Tax payable account 2.500
    in other words, the input/output tax accounts are zero and the remaining (payable) balance is offet to a special clearing account, the "tax payable account". This account is then cleared against cash as part of e.g. bank processing when the payment is made and that ends the process.
    hope this clarifies, please do not forget to assign POINTS if this answers your question.
    Thanks
    Rene

  • "Transfer to report" Diadem 11.0

    Does anyone else have a problem with Diadem 11.0 freezing when you try to Transfer the graphs in the View screen to the Report screen via the "Transfer to Report"? 
    Since I've upgraded to Diadem 11, I've been having this problem.  I click the Transfer button, and the screen either never switches to the Report tab or the graphs show up but when I try to move them around or resize them, the lines on the graph disappear.  The channels that I'm plotting are not so excessively big to warrant memory issues.  I've called for service on this issue before, and I was instructed to repair the installation, and that worked for a couple days, but then it defaulted back to freezing up.  I'm posting this question to the forum while repairing the installation so that I can continue making some slides.
    Does anyone have a more long term solution for this problem?  Thanks!
    Solved!
    Go to Solution.

    Here's a sample .TDV file.  The data is stored on my local machine.
    *Hey, can the forum webmasters make it possible to post DiAdem-based files to the forums without masking them in a zip file?
    Attachments:
    SampleTDVforNI.zip ‏3 KB

  • Pending transfer posting 2 steps

    Dear Experts,
    I wanted a report to show all the pending 2 steps transfer posting document i.e the documents that has not been received in the other location. I checked even for a query but the table mseg does not have the reference document so that I can know the article documents that have not any referencing document then it is not received.  but unfortunately I can not because it is not captured. can someone tell me what to do? also I don't want to make the lengthy process of stock transport order
    regards

    Greetings,
    Thank you for your immediate reply but i want the pending transfer posting document numbers.  Not the stock in transit (the stock in transit is for the STO process but the stock in transfer is for transfer posting two steps).  In addition, I know that I can get the stock in transfer from mb52.  I don't want to know the pending stocks. I want to know the pending transfer posting material documents.  Moreover, from another point of view if i get the stock in transfer only I will not be able to track this stock is belonging to which article document so that I can finis the next step.
    Regards

  • Stock Transfer Order Report

    Hi,
         How to develop a Stock Transfer Order report. I also want to track the cost of transfer from one plant to another. Plz help.

    Hi,
    First fetch the data from LTAK header table.   Based on this table you can
    get the line items from LTAP table.  You can have the list of all open TO's in this table.  Based on the Plant (Werks) you can fetch the data from EKPO for STO report.
    Reward if useful.....

  • Cost transfer posting within Training and event management

    Dear experts!
    Now, I'm getting some issues about transfer posting in Training and event management.
    - The first, I create business event.
    - Second, I posted cost of business event to CO.
    when I posted to CO, I only want to give cost of business event to one cost center. But the system require I have two cost center:
              + Sender cost center
              + Receive cost center.
    Really, I want to post cost of business event to Receive cost center.
    How do I have to do?
    Help me, Please!
    Best regards, Huy

    Hi huy daongoc ,
    you need to find out from the FICO guys. 
    If the sender cost center and the receiver cost center is same.  then give both records.  They will help you out.
    I think Sender cost center means the cost center under which the training is organised.
    Receiving cost center means the persons who are all receiving the training, those persons cost center.
    Regards
    Venu Gopal

Maybe you are looking for

  • How do I get a microsoft employee to respond to me by email?

    None of these forums address an issue, and there isn't a contact email on the company website. Don't tell me to search, I already have and it's not addressed neither here, the company's website nor any "help files". Don't ask me to explain the issue,

  • Identifying standard process & GAPS in QADB with REPORT example.

    Hi all, can anyone help me, what is QADB n how to identify GAPS in QADB n standard process with an report example? what is standard process in QADB?can we convert GAPS into standard process? <b>PLZ ANSWER REUIRED URGENTLY.....</b> Regards, Arundhathi

  • Trouble with downloading and instalation Off Prof Plus 2013

    Bought the download version of Office Professional plus 2013 via my work. Downloading it on my Windows 7 Home premium machine does not seem to work. at 87% download it stops completely "foutcode 30102-11" What have I tried so far: restart removing th

  • JButtons in a JTextArea

    I am hoping to add a JButton to a JTextArea, but to be completely honest, I am not sure if this is physically possible, let alone feasible. I have written some code which I hoped would do the trick, and although it compiles, it does not display the J

  • After migration from sccm 2007, there are many systems with no client installed

    Hi Everyone, We have migrated our environment from SCCM 2007 to SCCM 2012 , And Manual client push installation has been done by HeadQuarter SCCM admins on site code of our region. But as i see , in all systems collection based on OU, there are appro