Which tabel holds project information for a transport?

Hello all,
In which table do i find the connection between a transport and a project?
If I look in E070, here I see all transports imported to the system, but there is no entry in the table telling which project the different transports are assigned to.
So which table holds these information?
Thanks in advance.
Regards,
Kenneth

Hi,
You can find this information in table TMSBUFREQ
Regards,
Gowrinadh

Similar Messages

  • Which table holds INFOSET information?

    Hi,
    Does anybody know which table holds information about infosets?
    For a certain type of analysis I need to find out which source-objects are used in an InfoSet by means of an automated (ABAP) process.

    Hi
    Actually I dont have any Infoset created.
    But if I am not wrong, just "DISPLAY THE DATA" through tyhe particular INFOSET object.
    Check whether you can see the any TABLE NAME...??But I dont think so..It is also more like Multi Provider.
    Just the difference is that Multi Provider...UNION OF SETS and Info set  uses JOINS of SETS.
    Also you dont need run the Automate process for INFOSET.
    Once the INFOPROVIDER or OBJECT you are using in Infoset updated already, then you would be able to see DATA.
    Hope this helps. Also check for more info in SAP HELP.
    check this link:
    http://help.sap.com/saphelp_nw70/helpdata/en/ad/2225391d4f000be10000000a114084/frameset.htm

  • Regular snapshots of project information for trend analysis

    Hi folks,
    I am working with a client who wants to take regular (monthly) snapshots of Project Server data, specifically project status, estimated, actuals, resource allocations etc. I note that 2007 and 2010 doesn't have anything OOTB besides BL functionality, does
    Project Server 2013 offer anything new in this area?
    Example: we want to match SAP actuals with Project Server current/estimates and record monthly snapshots of this information so we can do trend analysis. Is it possible in Project Server 2013 OOTB to take monthly snapshots beyond BL 10+1 ?
    Thanks,
    Gavin.

    Hi Gavin,
    As Guillaume and Sachin have correctly stated, there is no monthly snapshotting functionality OOTB. The easiest solution is to do this via SQL. I blogged about a simple example a few years back, see below:
    http://pwmather.wordpress.com/2012/04/27/projectserver-data-snapshot-for-reporting-ps2010-msproject-sp2010-excel-ssrs-sql/
    That should give you an idea.
    Paul
    Paul Mather | Twitter |
    http://pwmather.wordpress.com | CPS

  • Built in BAPI/RFC or FM for Project Information

    Hello,
    Is there any built in RFC or FM which will give project information of the employee depending upon personal number (PERNR) or any other FMs??
    Any Help??
    Thanks,
    Prashant

    Mark as a "Not a Question"

  • Which table holds the link between Purchase requisition and Reservations ?

    Hi Guys,
    We are using MRP and as a result of the MRP run the reservations are converted to purchase requisition. When i look at transaction MD04 it shows me the Purchase requisition against a reservations.
    I would like to know which table holds this information? I mean which table will give me the reservations tied to a purchase requisition or vice a versa.
    I have looked into RESB and RSBD but could not find what i am looking at. RESB table has BANFN field for purchase requisition but this field is not populated. RSBD table hold the Purchase requisition and reservations but it only holds the relation for Direct procurement and not for all.
    Any idea where i can find the Preq and Reservations created through MRP run?
    Thanks
    VJ

    Try RKPF..
    thanks
    jz

  • How to find latest load information for a DSO?

    Hello, I would like to know how to find the number of records loaded in the most recent load to a DSO without counting the records in the active table of the DSO.  Is there some table that keep stats on requests loaded in a DSO?
    Thanks.

    I already tried that (where used) and had trouble finding the right table.    Does anyone know which table holds this information that's shown on the "Requests" screen of the DSO management screen?
    I was able to do it this way:
       find the most recent load for the DSO in table   RSICCONT
       Find all the entries in RSMONICDP WHERE RNR = RSICCONT-RNR
                  SUM REC_INSERT COLUMN
       I didn't want to count the entries in the active table of the DSO, since it's huge DSO.
    Still looking for any better way of doing this.  Possibly a single table that holds the information that's shown on the Manage screen?
    Thanks.

  • Time information for PO based Invoice

    Hi Gurus,
    In which table the time information for PO based Invoice is stored & how can we find out the invoice creation time for a particular PO (with particular line item, for ex. line item 10, 20, 30 etc.)?
    Thanks & Regards,
    VK

    please check the invoice header table which will give you the info on who created, when created etc may be RBKP or please check at SE11 or BSEG Table etc.

  • I reset my disabled ipad 2 and it is asking me for the apple id which first set it up but i forgot the password for that apple id and the password/recovery information for the recovery email address. What can i do?

    i reset my disabled ipad 2 and it is asking me for the apple id which first set it up but i forgot the password for that apple id and the password/recovery information for the recovery email address. What can i do?

    Click here and use Apple's iForgot service, or contact their Account Security team, or if you're the device's original owner, take it and its purchase receipt to a physical Apple Store.
    (124525)

  • Which views/tables to use for retrieving item information

    Hi All,
    I need to write a PL/SQL procedure for retrieving detailed information for a specified item (given inventory item ID and organization ID). I'm not quite sure which views/tables to us for this.
    I found out that view MTL_SYSTEM_ITEMS_FVL is the underlying view for the Master Item Form (via help / record history menu option). But when looking up in eTRM following warning is described:
    Warning: Oracle does not recommend you query or alter data using this view. It may change dramatically in subsequent minor or major releases.
    The second view I found is MTL_SYSTEM_ITEMS_VL. But when quering for data in this view, it turned out that the view is empty.
    Can anybody tell me for what purposes this view is used?
    Is it the correct way to use one of these views (or any other?) for retrieving detailed item information or should I better define a new query within the procedure using tables such as MTL_SYSTEM_ITEMS_B, MTL_SYSTEM_ITEMS_TL and MTL_PARAMETERS (any others) ?
    Any ideas for that?
    Best Regards,
    Carolin

    Hi Carolin,
    It's usually more efficient to use base tables instead of views. The tables you will actually need will depend on your requirements. Regarding your question about MTL_SYSTEM_ITEMS_VL, it's usually ok to use the _VL views. These typically contain the same information as the base tables plus some logic to get the appropriate translations for fields that can be shown in different languages (for instance, DESCRIPTION). Typical table names you will need could be:
    Item Master: MTL_SYSTEM_ITEMS_B
    Organizations: MTL_PARAMETERS
    Subinventories: MTL_SECONDARY_INVENTORIES
    Units of Measure: MTL_UNITS_OF_MEASURE
    Onhand Quantity: MTL_ONHAND_QUANTITIES_DETAIL
    Material Transactions: MTL_MATERIAL_TRANSACTIONS
    Categories: MTL_CATEGORIES_B, MTL_CATEGORY_SETS_B, MTL_ITEM_CATEGORIES
    If your query didn't return any data, it's probably because the language was not properly setup in your session (check USERENV ('LANG') so see what's the language in your session).
    Hope it helps.

  • Which table holds data for plant, soldto party and shipto party? Help!

    Hi Experts,
             Which table holds data for plant, soldto party and shipto party?
             Basically I want get palnt and associated soldto party and shipto party.
             Kindly help!
    Thanks
    Gopal

    Hi
    You have to link VBAK and VBAP tables.
    regards
    Srinivas

  • I'm using Premiere Elements 11, which automatically opens in a project window for HD. I want to reset the default for SD. How can I reset the defaul for opening a project?

    I'm using Premiere Elements 11, which automatically opens in a project window for HD. I want to reset the default for SD. How can I reset the default for opening a project?

    scottypet
    For Premiere Elements 11 and 12, you cannot change its default project preset from NTSC AVCHD Full HD1080i30 or its PAL counterpart PAL AVCHD Full HD1080i25 to something else.
    For each project, you can set the project preset manually if you do not want the program to take over setting the project preset based
    on the properties of the first drag to the Timeline.
    To set the project preset manually, open the project to the Expert workspace, go to File Menu/New/Project and Change Settings.
    In the Change Settings area, change the project preset. Before you exit that area, be sure to have a check mark next to "Force Selected Project Setting on This Project" in the new project dialog.
    Then you import your source media, using the appropriate Add Media choice.
    ATR Premiere Elements Troubleshooting: PE11: Accuracy of Automatic Project Preset (New Project Dialog) Setting
    If you want a version of Premiere Elements that uses the default project preset of NTSC DV Standard or its PAL counterpart PAL DV Standard, then you need to look to a version of Premiere Elements earlier than 11.
    Please let me know if you have any further questions on this or need clarification.
    Thank you.
    ATR

  • Using Project Settings creates an app.config and dozens of errors about "Could not find schema information for the element...

    I am trying to work with Application settings.  I would just like to put together a very simple example of using these, but I can't get the most basic example to work.  Virtually every tag regarding the new Settings produces an Error "Could not find the schema information for the element "applicationSettings". or the element "Settings" etc. etc.  I am not using IIS, this is not a Web Project, and I am not working with User Settings.  Just simple read-only Application Settings.  I've read every MSDN page regarding this subject, I don't see that I am missing a reference - HELP !!!
    REPRODUCING THE PROBLEM:
    Step 1. Create a new C# solution and Windows Forms project. 
    Step 2. Add a reference to System.configuration
    Step 3. Right click the project, choose Properties, then Settings.
    Step 4. Using the Settings Designer, create ONE setting called "MySetting" as a String with the value "MyValue".
    RESULT: Observe the Errors like these, complaining about all of the Settings tags and elements.
    Message 1 Could not find schema information for the element 'applicationSettings'. 
    Message 2 Could not find schema information for the element 'LoadOriginalLists.Properties.Settings'. 
    Message 3 Could not find schema information for the element 'setting'. 
     HERE IS MY APP.CONFIG, AS GENERATED BY THE SETTING DESIGNER TOOL:
    <?xml version="1.0" encoding="utf-8" ?>
    <configuration>
    <configSections>
    <sectionGroup name="applicationSettings" type="System.Configuration.ApplicationSettingsGroup, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" >
    <section name="LoadOriginalLists.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
    </sectionGroup>
    </configSections>
    <applicationSettings>
    <LoadOriginalLists.Properties.Settings>
    <setting name="MySetting" serializeAs="String">
    <value>MyValue</value>
    </setting>
    </LoadOriginalLists.Properties.Settings>
    </applicationSettings>
    </configuration>

    Ummmm... okay so these are Messages that are in the Error List.  Whether or not they are actually Errors is debatable.  They are in the Error List, so they are errors. 
    The application runs, so my question is slightly changed to the following.
    I would like to use Application Settings.  However, having settings in my app.config pollutes my Error List with a bunch of meaningless messages like "Could not find the schema information for...".  These messages then hide real errors. 
    Am I missing some setting or is there something I can do to make Visual Studio not show me these messages? 

  • Is projection work for Infotype which got subtype?

    Is projection work for Infotype which got subtype?
    I use the following statment but there is nothing show in my report.
    PROVIDE stras FROM p0006 BETWEEN pn-begda AND pn-endda
    WHERE P0006-subty = '1'.
    anyone can help?

    anyone can help?
    I'm quite confuse why projection is not work if I put the where clause for subtype.

  • The project file is not bound to source control, but the solution contains source control binding information for it.

    This may be more of a SQL Server Management Studio question, but I couldn't find a SSMS forum...
    I've got a database solution that contains several projects.  They're just to keep track of changes to stored procedures, triggers, views, etc in a few databases I maintain.  There is a problem with two of the projects though.  No matter what I do, I can't seem to get them bound to source control right.  When I open the solution, I get:
    The project file is not bound to source control, but the solution contains source control binding information for it.
    With two options, use solution binding and remove solution binding.  If I keep the solution binding, everything works fine.  But it's really annoying to have to deal with every time I open the solution.  If I remove the solution binding, the projects are now unbound again.  If I try to fix them (using the change source control or Add Selected Projects to Source Control options under the File->source control menu), I just end up in the same situation.  I've even tried deleting the projects and re-creating them from scratch, then re-adding them to VSS.  If I open the solution files in a text editor I can see the SCC tags in every project, but these two.  Since I can't manually add the tags, and Management Studio itself only seems to want to bind them the wrong way, I'm getting really frustrated.
    Can anyone point me toward a way to bind these so they work like the rest?

    However, that does not appear to be the ONLY cause of the problem.  I am a single user and only using TFS2010 and SSMS2008R2.  My issue is that I wanted a solution file for each project so that they could managed independently, and a super-solution
    file that contained all projects, so that I could perform system-wide searches and cross-checks.
    I solved the problem by:
    1. Choosing the option to use solution binding, then
    2. Adding another project to the solution.  This forced the re-write of the solution file.
    3. Adding another script to the project.  This forced the re-write of the project file.
    4. Checking in all changes.
    5. Deleting the new script and the extra project,
    6 Checking in all changes.
    This appears to have solved the problem.

  • Which CAPS 6 Project Type is best for integration purposes?

    Which CAPS 6 Project Type is best for integration purposes?
    CAPS 6 is the company standard for integrating applications so I'm looking to get started converting XML from one format to another.
    Which project type is best to use for this scenario?
    Thanks in advance.

    As John suggested you should properly post this question in an Visual Studio forum:
    https://social.msdn.microsoft.com/Forums/en-US/home?forum=visualstudiogeneral&filter=alltypes&sort=lastpostdesc
    Visual C++, C#, VB.Net are all running on the DOT.NET enviroment and are different languages that have no difference in functionality.
    C and C++ does not run on the DOT.NET platform, but directly on the CPU.
    C# does also deals with processes and threads, and you can load DLL's at runtime/compile time if you want.
    C# also have console applications.
    http://technicaltrix.blogspot.dk/

Maybe you are looking for