Any standard transaction code to check Batch Creation Date of a batch?

Please let me know if you know any transaction to check batch creation date of a batch , preferably with valuation information.

Hi
You can try with MB5B. It wont give batch creation date, but it will give posting date (most of the cases posting date may be batch creation date)
Otherwise you can try to pull the information at table level MCHA-ERSDA and develop query.
regards
Srinivas

Similar Messages

  • Bapi or FM or tabel or any standard transaction code for Production order linking to get child production orders based on parent production order

    Dear Guru's,
    we have a requirement i.e. user can convert planned orders in to production orders (CO41) based on those production orders we can get Route card( Z Smart form)  presently we are using manual input for that Route card. recently we got requirement for this i.e. make to automatic generation of route card for this requirement we need to get the list of child's production orders based on parent production order
    so as per my requirement i need to get all child part numbers production orders based on parent production order number and quantity i tried in MD4C and CO46 but those transactions codes are picking multiple lines also so for this requirement please give your valuable suggestions
    Regards,
    Venkat 

    Dear Friends,
    Thanks for your reply,
    My business process is MTS purely strategy 10, for route card all components with production orders we can give input as like bellow these production orders are converted from planned orders,between few components are don't have production orders those are F-30 materials,because of this reason i need link for production order to child components orders
    01
    IND1
    IND1
    A1CE2003520103-005
    55685815
    02
    IND1
    IND1
    A1CE2003520103-010
    55685814
    03
    IND1
    IND1
    A1CE2003520103-015
    55685813
    04
    IND1
    IND1
    A1CE2003520103-020
    55685812
    05
    IND1
    IND1
    A1CE2003520103-025
    55685811
    06
    IND1
    IND1
    A1CE2003520103-030
    07
    IND1
    IND1
    A1CE2003520103-035
    55685810

  • Transaction code for mat. pldOrd creation date and person history details

    Hi Gurus,
    How do i find who will create the Pldord or DepRqs for each material? I need to  also find the past history for the particular material and with project details.
    Thanks and regards,
    Deethya.B

    Hi,
    Use tcode:se13 and write down the table name.(PLAF)
    click the change button.
    In teh next page u should click the "Log data changes".
    After system will log all changes in this table.
    And you will display all changes with tcode:AUT10(evaluation of audit trail:standart mode) .
    I doubt you may not be able to view for deleted planned orders, once you convert to production order, system deletes it.
    Thanks,
    Venkat

  • Generic Object Services for a standard transaction code

    Hi,
    We have a requirement where we are depreciating the assets (standard transaction ABAA) using a custom BDC program. We need to maintain a history (called audit trail) for the particular asset that has been depreciated using this program. For this audit trail we have been asked to use "Generic Object Services" in transaction code ABAA.
    Unfortunately, Generic object services are not available in this transaction code. Can you please suggest me how to create "Generic Object Services" for a particular standard transaction code. Also, we have show the details of custom workflow that handles the approval process in order to depreciate the asset. How to show this workflow details using Generic Object Services. This is a very critical issue, any help will be very help ful.
    Please let me know should you require more information on this topic.
    Thanks,
    Ashish

    Hello Ashish,
    i dont think activating of GOS will solve ur probs..... GOS wont create a WF item ...... try to get some kind of GOS before u do anything in SAP systems.
    u can do like this ......
    1 create custom screen where u can enter asset details and store in custom tables....and generate one custom doc.number to track.
    2. trigger WF when user submits it for approvals.
    3.Upon final approvals.--->run BDC to do postings......
    4.Give a Option to attach documents to the parking documents. ( that GOS ).
    regards
    Prabhu

  • Transaction code to check warehouse stock with storage section combination

    Hello Gentalemen,
      Is there any transaction code to check the warehouse stock with combination of storage section in Warehouse Management?
        Please let me know.
    Thanks

    You can use LX02 or LX03. In the tool bar click the third button which will give you the dynamic inputs from LDB(click the storage bin drop down and click on storage section). You can provide the storage section there.
    Kesav

  • What is standard transaction code

    Hi fnds,
    what is standard transaction code for downlod data from application server to presentation sever ( from application server to flat file)

    Hi,
    Check this PC00_M99_URML
    Regards,
    Satish

  • Transaction code to check delivery lists

    Dear experts
              We have some transactions which shows all the orders, inquiries, quotation and billing. So I want to know is there any transaction code to check deliveries. Like for example, Va05,va15,va25 etc.
    Thanks in advance.

    Hi Shilpa,
    Please check out the below transaction codes which may useful for ur requirement
    VL06G     List of Oubound Dlvs for Goods Issue
    VL06P     List of Outbound Dlvs for Picking
    VL06T     List Outbound Dlvs (Trans. Planning)
    VL06U     List of Uncheckd Outbound Deliveries
    Thanks
    Surendra P

  • Implementation of Oracle Coding Standards and Code Quality Checks

    I wanted to implement a list of coding standards and code quality checks for my oracle packages,functions,views,tableetc .
    for example
    All variables with number datatype should start with N_ and charcter type with C_ in all my tables & views definition.
    This can be identified during peer review & can be corrected, but i think this is a repeated process which i don want to burden the developers rather i wanted a tool which does all these kind of checks which can be automated.
    Is there any tool which does this operation or can someone give me a little idea how can i automate these stuffs bu creating a generic oracle procedure which can run through all the tables,views and generate a error report for those which are deviating from the standards.
    Thus we can reduce the manual effort spent on peer review, please suggest.
    thanks in advance

    maru wrote:
    I wanted to implement a list of coding standards and code quality checks for my oracle packages,functions,views,tableetc .
    for example
    All variables with number datatype should start with N_ and charcter type with C_ in all my tables & views definition.Hungarian notation is dead. It has no place in modern programming languages. Has no place in PL/SQL. Anit ain't just me saying that.
    +"Encoding the type of a function into the name (so-called Hungarian notation) is brain damaged—the compiler knows the types anyway and can check those, and it only confuses the programmer."+
    Linus Torvalds
    +"No I don't recommend 'Hungarian'. I regard 'Hungarian' (embedding an abbreviated version of a type in a variable name) a technique that can be useful in untyped languages, but is completely unsuitable for a language that supports generic programming and object-oriented programming—both of which emphasize selection of operations based on the type an arguments (known to the language or to the run-time support). In this case, 'building the type of an object into names' simply complicates and minimizes abstraction."+
    Bjarne Stroustrup
    2) Conditional Statements
    IF (x = 1) --> Wrong
    IF ((x = 1) AND (y = 2)) --> wrong
    IF x = 1 AND y = 2 --> RightIdiotic rules. The simple rule should be readability of code. Not how many brackets to use, and when not to use brackets. Minute standards like detracts from designing and writing proper code, fast and efficiently.
    There are many more rules (which is specific to ur application) which can be incorporated in the tool, there by giving consistency ,readability and easy to maintain for the developers.Bull. The more rules there are, the more difficult it becomes for programmers to write code. As it is no longer about writing readable and flexible and performing code - it is about double checking every single statement line against a huge list of rules about do's and dont's. It is not about getting the programmer focusing on solving the problem - it is about distracting the programmer with a complex and large rule list of how the code should look like.
    Sorry - but this rubs me the wrong way. In that environment, I would be the first to tell you to shove your "+many more rules+".
    I've developed systems in over a dozen languages over the years. I've seen all kinds of standards. The standards that work are those that are short, simple and sensible. Hungarian notation is not sensible. Writing reserved words in uppercase is not sensible. Dictating how brackets should be used is not sensible.
    What is sensible is using the de facto naming standards in use today - as per .Net Guidelines for Names (MSDN) and Code Conventions for the Java Programming Language.
    What is sensible is providing guidelines like bulk collection needs to be justified (not possible using SQL only) and use the limit clause to manage memory spend on the collection variable. Or how packages need to be used to modularise code, providing a public interface and private implementation.
    Standards are about creating a sensible and easy-to-use framework for writing code. It is not about creating a list of a 1001 rules that a developer needs to remember and adhere to, as if the developer is now part of some weird religious sect that has rules for every single aspect of human behaviour.

  • Any Special transaction code for Activation of Work flow

    Hi all.
    Any Special transaction code for Activation and deactive of Work flow?
    which have we need to transport after WF (like task,method,rule)?
    To be reward all helpfull answers.
    Regards.
    Jay

    If I understand your question correctly, you want to know how to activate your workflow after transport ?
    Normally, the status of a workflow is included in your transport (if I'm not mistaken)
    So activate/deactivate in your dev-system and transport it..

  • MD4C standard Transaction Code Help

    Dear All,
    I need help I want to add multiple selection screen option for WBS element in MD4C transaction. (Report Name: PP_ORDER_PROGRESS).
    If anybody has a similar issue could you please help me out without changing standard transaction code?
    Regards,
    Chanda.

    Hello,
    You mean transaction type? Then for Service Desk it is SLFN. It is not recommended to open Issues (SLFI) directly from the CRMD_ORDER transaction. You can also open change requests (SDCRs) from CRMD_ORDER, and later assign them to the maintenance cycle.
    Best regards,
    Miguel Ariñ

  • Need to add Standard transaction code to User Menu.

    Hi All,
    I need to add Standard transaction code to User Menu. How this can be accomplished?
    Thanks

    Your Security and/or Basis team probably have control of the user menu settings.  On the other hand, if this is for YOUR user menu, you could choose to simply adjust your favorites.

  • To add feild in standard transaction code

    hi
    can anyone guide me to add one field t074u-UMSKZ( special G/L indicator) in standard transaction code FBCJ 
    under CASH PAYMENT tab ?.
    regards
    rajdeep

    You have to update the structure ISCJ_E_POSTINGS (to inser the new field) and then dynpro SAPMFCJ00110 by screen painter (SE51)...both objects are standard so you have to get the keys to update them from OSS.
    Perhaps you should update the code to get the information and put it in your new field
    Message was edited by: max bianchi

  • Standard Transaction Code for CRMD_ORDER

    HI,
    Can anyone tell me what is the standard transaction code for CRMD_ORDER
    Regards
    VINI

    Hello,
    You mean transaction type? Then for Service Desk it is SLFN. It is not recommended to open Issues (SLFI) directly from the CRMD_ORDER transaction. You can also open change requests (SDCRs) from CRMD_ORDER, and later assign them to the maintenance cycle.
    Best regards,
    Miguel Ariñ

  • Are there any standard Idocs or Bapis for posting the data into transaction

    Hi,
    Are there any standard Idocs or Bapis for posting the data into transactions ME42N and IK11?
    Thank You.

    Thank you.
    Any idea of the other one?

  • Do we have any standard T Code to list out all deleted Handling Units?

    Hi,
    Do we have any standard T Code to list out all deleted Handling Units?
    Thanks
    Krish

    Hi,
    Please find the below link :
    http://www.scribd.com/doc/3262778/SAP-HU-T-CODE
    Regards
    Sreedhar Reddy

Maybe you are looking for

  • Alv to excel download

    Probelm I'm facing while saving an ALV report to Excel Sheet by clicking on the 'Save as File Icon' button on the ALV output.=0D Here data is going into a new Line after 65 columns.I've used Function Module 'RSAQ_ALV'.This function module is ultimate

  • WD My Book 4TB opens in disk utility but does not show in finder/desktop?

    I am able to see my drive and open it from within the Disk Utility but it has disappeared from my desktop/finder. Verify and repair show NO issues. When I open it from the Disk Utility all information is intact. Thank you in advance!

  • Can the 4G antenna be changed in iphone 5S?

    So theres a big mess with the frequency bands in each country, wanted to know if its possible to change the antenna and install a different one... thanks!

  • HT1689 how do i download past purchased songs onto itunes on my computer?

    How do I download past purchased songs onto my new computer?

  • Motion export bug?

    Got some strange thing when exporting from Motion. Exported a movie in ProRes 422 (HQ), but the result was just ProRes 422. Then I tried exporting with different options and found that it exports not with the select format of the options in the expor