T code for generating 103 mvt. document report.

What is the T-code used for getting the document report for Movement type 103
the document should have the following fields
Material :   Description:   Qty on order:    Qty received:   Value
& also the costing elements applied ( example freight charges, customs packaging etc. )
Pls. let me know if any of the Tcodes comes close to meet this requirment

Hi, Try MB51 / MB59, with 103 Mvt type & 'Trans./Event Type' - WE,after executing go to details list (Ctrl + Shift + F12) here change the layout & check if you are able to achieve your requirement or get it developed by your abapers as per your requirement, no such std. report.

Similar Messages

  • Is there any transaction code for uploding logo in ALV reports.

    is there any transaction code for uploding logo in ALV reports.

    hi,
    call function 'REUSE_ALV_COMMENTARY_WRITE'
           exporting
                it_list_commentary = t_header.
                i_logo             = 'Z_LOGO'.
    endform.
    Upload Logo for REUSE_ALV_COMMENTARY_WRITE
    For those who wish to upload and use a picture in your ALV abap reports.
    Steps for uploading Logo :-:
    1. Goto the transaction OAER
    2. Enter the class name as 'PICTURES'
    3. Enter the class type as 'OT'
    4. Enter the object key as the name of the logo you wish to give
    5. Execute
    6. Then in the new screen select Standard doc. types in bottom window
    Click on the Screen icon
    Now, it will ask for the file path where you have to upload the logo
    7. Now you can use this logo in REUSE_ALV_COMMENTARY_WRITE
    or
    Import Logo and Background Picture for Reporting
    In this step, you can import a customer-specific logo and a background picture into the R/3 System. These will be displayed in the header area of reports in HR Funds and Position Management.
    From the SPRO:
    HR Funds and Position Management --> Dialog Control --> Customize Reporting Interface --> Import Logo and Background Picture for Reporting.
    Activities
    1. Enter the Name of your logo/background picture as an object key in the initial screen.
    2. Make sure that the class name is PICTURES, and the class type is OT.
    3. Choose Execute.
    4. Double-click the document type Picture on the Create tab page. A dialog box will appear in which you can enter the path in which the logo/background picture can be found.
    5. Enter the path and choose Open. The logo will be uploaded into the current R/3 System. If the logo/background picture is to be transported into other systems as well, choose Transport.
    6. Return to the initial screen and repeat the procedure after having entered the Name of your background picture as an object key.
    Please note that the logo/background picture can only be displayed in ALV-based reports with an HTML header. Manually programmed reports such as business distribution plans are not based on the ALV.
    If you have selected several initial objects, ALV-based reports in HR Funds and Position Management will automatically use a hiearchical-sequential display. A logo is not displayed here either. Note also that the logo cannot be printed (see print preview in program).
    Make sure that the logo does not exceed a height of 100 pixels because it would mean that the header of the report will be scrollable.

  • Tcode for Generating ARE-2 document

    Is there any standard for generating ARE-2 Document under export,
    if not what is the round about solution for the same?
    regards
    shilpa

    As I know, Form ARE 2 is just an combined application for removal of goods for export under claim for rebate of duty paid on excisable materials used in the manufacture and packing of such goods and removal of dutiable excisable goods for export under claim for rebate of finished stage Central Excise Duty or under bond without payment of finished stage Central Excise Duty leviable on export goods.
    There is no standard process to handle ARE 2 in SAP.
    Where, rightly mention in one of the previous post that you can very much follow process flow for ARE 1  in SAP.
    So, there will not be any combine process for
    - export under claim for rebate
    - export  under bond without payment
    In SAP, you have to dealt them separately in ARE 1. 
    For further reference/understanding, refer following SDN threads links for:
    - Export Against Under Claim of Rebate
    - Export under No bond?
    Take use of following TCodes:
    TCode
    Decs
    J1IA101
    - Excise Bonding ARE-1 procedure
    J1IA102
    - Excise Bonding ARE-1 procedure
    J1IA103
    - Excise Bonding ARE-1 procedure
    J1IA104
    - Excise Bonding ARE-1 procedure
    J1IANX18
    - Pro Forma of Running Bond Account
    J1IBN01
    - Create Excise Bond
    J1IBN02
    - Change Excise Bond
    J1IBN03
    - Display Excise Bond
    J1IBN04
    - Cancel Excise Bond
    J1IBN05
    - Close Excise Bond
    J1IBONSUM
    - Bond Summary Report
    Regards
    JP

  • T Code for Generating Service Tax Half Yearly Return i.e. ST3 in 4.6 Versio

    Hi,
    Can anybody tell what is the T Code for Generating Service Tax Half Yearly Return i.e. ST3 in 4.6 Version.
    Regards
    Srinivas

    Hi Srinivas,
    I think their is no direct transaction for that, and think creation of a Pricing report using TCode  V/LA and specifying your conditions in that, and then executing it using the TCode V/LD wil do.
    Hope this Info will be helpful.
    Regards with points if Helpful.
    Regards
    Karan

  • Can some body help me to develop labview code for generating pulse to drive ac servo motor

    can some body help me to develop labview code for generating pulse to drive ac servo motor... i am using NI 9401 card ....tnx

    Driving an AC servo motor would (I missed AC on the previous msg) requires some complex hardware. This is generally done by drivers specifically designed for this purpose. I doubt you will be able to accomplish this with the hardware you currently have and it might be cheaper to just buy a driver for it and control the speed through the driver.

  • Can anyone help me wid d codes for  Generated Program for gate pass

    can anyone help me wid d codes for  Generated Program for gate pass in MM
    Message was edited by:
            Ronei Shedi

    Hi
    There is no std business process in SAP for Gate pass for the Material entry
    before GR stock entry into the stores.
    You have to write a Z program based on the details of Purchase order tables EKKO and EKPO.
    This will mainly check whether the correct PO qty was delivered or not with proper quality.
    So use the PO tables EKKO and EKPO and fetch the data and use it
    Since this is client specific there is no feneralised program for it.
    Reward points if useful
    Regards
    Anji

  • T codes for generating report in MM

    Can anyone tell me the tcodes for generating following reports in MM.
    1)Req# along with the dollar amount in the req per line item.
    2) the repot which shows the dollar value in the Info record & the dollar value in the req.

    hi latha,
    Enter Tcode SAP1 and check in MM you will get all tcodes related to reports in MM .. check if any of those match ur requirement
    regards
    pushpa

  • Hi  please send code for displaying index in alv report

    hi
    thanx in advance.
    code please for displaying index in alv report.
    thanx
    rocky

    add one more field to ur internal table
    index type i .
    before u display ALV
    loop at itab.
      itab-index = sy-tabix.
      modify itab index sy-tabix.
    endloop.
    Message was edited by:
            chandrasekhar jagarlamudi

  • Please help to write a java code for generate Random numbers

    I need a program for generate Random integer numbers by using roulette wheel theory. I search several ares, but I'm unable to find out at lease a Pseudo code for implement this. If you know or have a code for this, Please send me a mail to [email protected] or post here.

    Gagana wrote:
    I need a program for generate Random integer numbers Have a look at the java.util.Random class:
    [http://java.sun.com/j2se/1.5.0/docs/api/java/util/Random.html]
    Or Google:
    [http://www.google.com/search?q=random+java]
    by using roulette wheel theory. What is that?
    ... Please send me a mail to [email protected]
    No, that defeats the purpose of a public forum. And no one is going to e-mail you (other than someone trying to sell V1AGRA).

  • Code for generating hash chains

    hi can anyone give me a code to generate hash chains of length 8.

    you can try to use MAC.
    the result length is about 32 bit.
    if you convert in hexa format you'll have a string of 8 characters.

  • Meaning fails to generate correct code for text item in designer reports

    I have a text item in a report which is a table column governed by a domain. When the display type is set to TEXT and the Show Meaning property is set to MEANING ONLY - the code generation fails as follows:
    WHERE NTC.ICO_ID = L_ICO.ID AND
    L_ICO.ISS_CAT_CODE = L_ISS.CAT_CODE AND
    L_ICO.ISS_LEGI_CODE = L_ISS.LEGI_CODE AND
    NTC.DEM_ID = L_DEM.ID
    CG.RV_DOMAIN = 'NOTICE TYPE' AND CG.RV_LOW_VALUE = NTC.NOTICE_TYPE
    The failure is caused because the AND is omitted from the last condition in the query. (the part that gets the meaning from cg_ref_codes).
    Can anyone advise on a solution to this?

    Sander,
    Your concerns about renaming the new release 4 libraries to ofg*65.pll are understandable, but it is exactly what you have to do. The only customizations we made to the ofg* libraries in Headstart 6i are workarounds for Designer bugs that were present when we wrote Headstart 6i (at that time we used Designer release 2). These bugs have been fixed by now, so it is safe to use the Release 4 versions and get rid of the ones that shipped with Headstart 6i.
    We recommend still renaming them to ofg*65.pll, for an explanation see the Headstart User guide or the Headstart Installation Guide.
    Kind regards,
    Peter
    null

  • Material Code for Process Order Settlement document

    HI,
    When Process Order to a material having Standard Price is settled, the following entry is passed.
    Inventory Change A/C Debit/Credit
    Price difference A/C Debit/Credit
    It is being obeserved that in the line item of FI document for the Inventory Change the material code appears in the Price difference line items whereas for Inventory Change line item the material code does not appear.
    I want to know why this happens ?
    Regards
    Partha

    Using warehouse management /WM) :
    - Create a control cycle for the component, using LPK1. Here you define if the supply will be specific for the order (when weighing takes place in the warehouse) or for released orders (normallu full packages of components and weighing is done at plant level). Reference to a supply area.
    - The resource used in the operation has a reference to the supply area.
    - Components have material master views in WM for the selected storage type
    Then, when releasing the orders run LP10 - LP12 to generate the Transfer requirements for the raw materials. These TR will be converted to Transfer Orders and Confirmed, so the stock will be moved to your supply area.
    Using Inventory Management, none of the above is required. You can use MF60 to move materials from General Storage Location to Shop Floor SLoc.
    Regards

  • SDK Code for bulk opening of Webi reports and Save

    Hi,
    Is it possible to bulk open webi reports using SDK and save it again.
    Thanks,
    Chandra

    Hi Chandra,
    No, This script is for only opening the webi document & saves it back to enterprise without any processing.
    If your webi document have the refresh on open & last prompt value selected properties checked then you don't have to modify the code.
    If you want to handle the prompt as well, then you have to modify the code & write the application flow like below:-
    1. Logon to enterprise.
    2. get infostore service.
    3. get all the webi documents into infoobjects collection
    4. get engines services.
    5. load document instance.
    6. clear the prompt values & set it with new value.
    7. saves the report back to enterprise.
    The 6th point is mossing from the script. You can add that piece of code in the attached script also you can take help from the sample codes & Developer guide & API references.
    Thanks,
    Shailendra

  • ABAP Code for Key Figure selection in Report

    Hello Experts,
    I am working on one of the development request that requires following logic to be implemented at query execution. There will one KF column and based on valid combination of characteristics value from the cube, Key Figure value from the same cube will be selected and reported.
    If ((Plant = A1) and (Division = B1))
      OR ((Plant =A2 ) and (Division = B1))
      OR ((Plant = A3) and (Division = B2))
      OR ((Plant = A6) and (Division = B2)).
      Price = Moving Avg.
    Else
      Price = Standard.
    Can somebody please suggest, how to do this? Thanks in advance.
    Regards,
    Nimesh

    Nimesh,
    Step 1.Create a formula (say F1)variable with customer exit. In the customer exit code read the values of Plant and Division. If the Plant and Division combination is the one that you specified below return a 1 (for Moving Avg.) or return a 0 (for Standard).
    Step 2. Create a column with a formula having the following definition
             (F1=1)'Moving Avg.' + (F1=0)'Standard'
    So, if the combination satisfies Moving Avg will be shown else Standard will be shown.
    You can avoid customer exit coding by using  replacement variables and using them in a formula, this would make your calculation clumsy and confusing. Let me know if you cannot get the customer exit solution work.
    Hope it helps...

  • Code for generating Rank

    Hello all,
    Below is my requirement. I need to generate the rank for Value$ by plant and $ by plant within a sales org
    My itab has the following data format:
    Material   plant  SalesOrg  Value$
    I need the output as: (no material)
    Plant  SalesOrg  Value$   (Rank $ plant)  (Rank $ plant-Sales org).
    (Rank $ plant) --> rank for all plants
    (Rank $ plant-Sales org) --> rank of plants within a sales org.
    Please help with the code...
    Thanks,
    Ani.

    Yes, it would be a sort ascending for all plants and then for plants within a sales org.
    Can someone please help me with the code...

Maybe you are looking for