Replacement for F1F logical database for ECC 6.0

Hi to all experts.
What is the replacement for F1F logical database in ECC 6.0.

Hi,
it's logical database FMF. More info about conversion is in OSS note 403150.
Cheers

Similar Messages

  • Logical Database for FI Documents

    Dear all,
    I am currently searching for the logical database for all the FI documents. As I am now need to update some information for certain FI documents and i am now sure if I have updated fully for all the tables. Does anyone know which LDB that has all the linkage to all the related FI tables so when I update I won't miss any of them?
    Thanks a lot.
    Regards,
    Andrew

    Hi Andrew,
    there's no ldb with all relevant tables for fi-documents
    so goto SE11 Repository Information Sytem : Tables
    -Table Name = B*
    -dev.-class = FBAS
    taht should be all rel. tables
    regards Andreas

  • Logical Database for MD04

    I have been using Logical Database DBM to get the MRP Lists for materials (MD05). Is there a similar Logical database for the MD04 counterpart?
    Problem with MRP lists, the data is static until I run MRP, with MD04, I see the realtime result every time.

    Fernando,
    You are very fortunate to be able to use DBM.  The last system I worked on in which MDTB table was being populated was a 3.1H R/3 system in 2002, MDTB table is by default not populated in recent SAP releases, although as you have seen, this behavior can be changed through configuration, at the expense of MRP performance, .
    I am not aware of any single LDB that contains all the elements of MD04.  As you mention, most of the data in MD04 is extracted or calculated dynamically at run time, and is not stored in any tables in the same way that MRP stores data in MDKP and MDTB.  If you need to see 'current' information, then just use MD04, or create a custom report.
    Best Regards,
    DB49

  • Logical database for vendor cleared items

    Hi,
    What is the logical database for vendor cleared items.  KDF is giving me only open items. 
    Actually I am preparing a report which uses vendor cleared items and trying to get the list from BSAK table.  Which would be the better way (faster process for better performance)
    a) directly fetching data from database table like BSAK or
    b) by using logical database
    any ideas please.
    regards,
    mallik

    If  just display of all cleared items in a report,  then i would suggest you to go for Query development instead of a z report and use BSAK. Being Index table and query, we can reduce several errors in logic/easy to develop/less time.
    If you need Z report only, then also, you can go for BSAK. Where as BASK is secondary index table which helps to fetch data fast.
    In one way, BSEG - BSIK = BSAK for your case!
    Regards
    Sridevi

  • Logical Database for MM

    All,
    I have a requirement to create a report having flexi selection criteria, means the selection criteria should be according to users requirenment. If you know any logical database for that then plz tell me.
    Thanks.
    Regards,
    Pooja Joshi.

    Sir,
              In my report there should be a tab containing common fields which the user usually used for selection criteria and the user has to choose these field then these fields should appear on the selection screen as select options.These fields are from different tables of MM. then the same should be for output. only user selected field should be in output. Is there any logical database providing this functionality for mm like LDB PNP for hr master data ?
    Thanks.
    Regards,
    Pooja Joshi.

  • Dynamic Selection for non-logical database

    How to read the dynamic selections information to a table that is not in logical database for ex. : BSAD.
    Currently, i'm reading from the function module 'RS_REFRESH_FROM_DYNAMICAL_SEL'. The value for the fields are read one by one...........totalling to thousands of codes.
    Does anyone noe a shorter way of reading it ?
    Please give sme guidance. Thank you.

    Hi Mr Anthony,
    I have a report using logical database. However, the logical database used does not contain a table, BSEG, which i need to access.
    I understand that for tables which are not in the logical database, I cannot use the "GET <tablename>" in the "START_OF_SELECTION" event.
    Please advise on how to use the "SELECT" statement for the BSEG table with constraints from the dynamic selections. Thank you

  • Logical Database for a Resource

    Hello,
    I'm looking to write a query in Quickview (SQVI) and I need the logical database for a Resource.  Can anyone help?
    Thanks,
    B

    There are two ways for this -
    1. To create the functional area with a logical database
    Tools => ABAP/4 Workbench => Utilities => ABAP/4 query => Functional Areas.
    Give the functional area name and click on Create button
    In the next screen give a brief description of the functional area
    Specify the name of the logical database, for e.g. Database FI, Application S. This will be the definition for the flight database
    Click on the button Functional Group present on the application toolbar, in order to create the functional group for the required fields from the logical database tables
    In the functional group box mention the number of the functional group and the description for the functional group
    The tables from the logical database are shown in Tables Of Logical Database/Joins while the fields are displayed in the Fields Box
    Double click on the table name in order to change the list
    Every field that has to be selected in the query should be assigned a functional group number against it
    Sometimes the list of fields in the Fields box will not be completely visible. To have a wider display of the list place the cursor in the fields box area and click on Settings => Full Screen from the SAP menu bar
    To see the fields from different tables select the table and double click on it.
    Once the required fields are selected, save the functional Area by clicking on the SAVE icon on the toolbar, and then Generate the Functional Area by clicking the Generate icon on the toolbar
    To add user defined fields to the abap query use the menu bar option GOTO => Additional Field
    Give the field name and the table name from the logical database to which the field needs to be included. Click the ENTER button.
    On the next screen give the Sequence, description, title and the technical attributes for the field (field type, length). Here you can also specify the formula for the field. Click on the SAVE button to register the data to the database.
    Remember that the sequence of the field matters – if the second field uses the first field in its code then the second field should have a higher sequence than the first. Tables can also be included – to do this use the menu option Goto => Additional Tables
    You can include your own selection criteria and parameters to control the data to be selected from the database. For these additions to get activated, code needs to be written for taking care of the additional fields.
    To display something before the execution of the actual query, go to the start of selection event via the menu path Goto => Code => Start-of-selection.
    To display something just before or after the output of the query, go to the end of selection event via the menu path Goto => Code => End-of-selection.
    To display something at the beginning of the page, go to the top of page event via the menu path Goto => Code => Top-of-page.
    After finishing everything save and generate the functional area and click on the BACK icon to come out.
    2. To create a functional area without a logical database
    One of the following can be selected
    Based on a single table
    Using an ABAP/4 program
    Using Table Joins
    Using Sequential Dataset
    The steps to be followed for creating the functional area are as follows
    Tools => ABAP/4 Workbench => Utilities => ABAP/4 query => Functional Areas.
    Give the functional area name and click on Create button
    In the next screen give a brief description of the functional area
    In the Without a logical database area give the base table on which to form the ABAP query
    To form the query with two or three tables, we need to create a join. For this check the Table Join Check Box and click on the Table Join button.
    NOTE: The tables to be used in the join should have at least one field in common i.e. it should have the same name, domain or data element.
    Mention the tables that you want to include in the join condition in the Joined Tables area and press ENTER.
    A checkbox will appear against the table names on the left side, and three radio buttons will appear against the tables on the right side specifying the join type.
    Base table name remains grayed out. Select the two tables to be involved in the join by clicking the check boxes against them. Use menu path Edit => Join => Define condition to create the join. A mapping between the tables will be displayed on the right hand side. Click on the button provided (with + and down arrow symbol) to specify the join.
    Click YES on the Proposal Requested message that gets displayed.
    If the join tables have a foreign key relationship then the common fields in the tables will be marked with 00 to indicate that the join has been created. User can create the join by specifying 00, 01 etc. against the fields that qualify for the join.
    Complete the join condition by adding more tables if necessary.
    Remaining concepts for creating the functional area without a logical database are same as the concepts for creating the functional area with a logical database.
    After finishing everything save and generate the functional area and click on the BACK icon to come out.
    Thanx!

  • Listing logical database for a given application component

    hi
    which function module will return the logical database for a given application component from the SAP hierarchy.
    Example:
    Input- application component- LO
    output- MSM, etc.,
    Thank you.
    your time and answers will be compensated with points.

    Why dont you use two selects to get the required information#
    TAble <b>APADEVC</b>
    Here you will get the link from Application Component to Package
    Application Class - Packet
    Package           - Devclass
    Then if you go into Table <b>TADIR</b>
    and give the following input
    PGMID = R3TR
    OBJECT = LDBA
    DEVCLASS = package name
    you will get all the Logical Databases for that Application Component.
    Here obj_name will be the Name of the LDB's
    Message was edited by:
            Dominic Pappaly

  • Standard screen for PNP logical database

    hello All,
    I am using PNP logical database and i have modified the standard selection screen for PNP.
    But now there is a button that appears , although the rest is supressed as i wanted it to.
    Our forums active contrubutor suresh datti has provided me a solution before to go to sytem then status and then click screen 100 then invisible the push button and activate and re-execute the program. The method seems to work fine. But surprisingly after some time the button appears again..
    any idea..??
    thanks,
    Reena..

    >>>I do not knw how to create a variant or how variant are related to selection screens..can u please elaborate..
    Don't worry..then its not the issue..
    anyway Pl take a look at the following <a href="http://help.sap.com/saphelp_erp2005vp/helpdata/en/c0/980374e58611d194cc00a0c94260a5/frameset.htm">SAP Help</a> on Variants.
    ~Suresh

  • Do we have macros which we can use for the Logical Database PCH

    Dear Friends
                 I would like to know when we are using the
    Logical Database PCH .....do we have any macros
    for getting latest record etc.
    i.e i mean to say the macros which we use
    Rp-provide-from-last  in PNP logical Database
    do we have same facility in PCH logical database please let me know
    regards
    madhuri.

    hi madhuri,
    we use same macro.
    instead of get pernr .
    in pnp here  we give
    GET OBJEC.
    use this macro
    PAP_PROVIDE_FROM_FIRST P0001 SPACE PA$BEGDA PA$ENDDA
    PAP_PROVIDE_FROM_LAST P0001 SPACE PA$BEGDA PA$ENDDA.
    regards,
    sandeep patel
    Edited by: Sandeep patel on Jul 4, 2008 1:33 PM

  • Logical database for CATS

    Hi
    Anyone who know which database to use for CATS?
    Thanks  //  Peter B

    Hi Peter,
    Data entered through Cross application time sheet applications is stored in the CATSDB. Check se11 and database table CATSDB (CATS: Database Table for Time Sheet), you can see different fields / data elements with in the CATS database.
    Regards,
    Vamshi.

  • Help to find software for a client database for emailing/post

    Hi,
    Im trying to find the right software to use for my small business. I have a database of around a 500 clients that i would like to be able to contact with promotions and offers by both email and post.
    So the key things I am looking for are-
    1. To be able to mail entire database or selections of customers (ideally if I could sort customers into designated catagories)
    2. To be able to print labels for envolpopes simply, for categories or all clients
    3. Ideally but definately not essential is to be able to write the emails and schedule when they are to be sent
    Also my small team all have company ipads so if it could be accessed by ipad even better.
    Cheers

    Boot in safe mode and try again.

  • Md5sum for Oracle 9i database for linux files

    Hello!
    Can anyone provide the md5sum for the following files?
    Linux9i_Disk1.cpio.gz
    Linux9i_Disk2.cpio.gz
    Linux9i_Disk3.cpio.gz
    Thanks,
    Anders Hermansen

    user464965 wrote:
    OK ... Using DB <font face="tahoma,verdana,sans-serif" size="1" color="#000">version</font> 10.1.0.5 :
    select XMLType.getStringVal(t.xml_data) my_data from mySchema.myTable t where t.myKey = '1'
    my_data
    ==================
    <WAREHOUSE whNo="101">
    <BUILDING>Brick</BUILDING>
    </WAREHOUSE>
    <P>update mySchema.myTable t set t.xml_data = XMLType.appendChildXml(t.xml_data, '/Warehouse', XMLType('<COLOR>red</COLOR>')) where t.myKey = '1'
    ORA-19039: Keyword APPENDCHILDXML reserved for future use
    ORA-06512: at "SYS.XMLTYPE", line 230
    ORA-06512: at line 1</P>It's quite useful, Thanks for your effort!

  • Logical database PSJ for tcode CJI3 - add additional

    Hi,
    I need to create the customized program which refer to standard program RKPEP003 (CJI3) with additional fields require to be added in selection screen and ALV report.
    I checked in program attribute for program RKPEP003, there is no selection screen version exist for this logical database. Could anyone advise how do I add the additional fields in either selection screen/ ALV report (eg: Vendor).  Thanks.

    Hi,
    I managed to add the additional fields  (eg: Vendor) in ALV report in CJI3 using the user exit.EXIT_SAPLKAEP_001.
    Now, I require to add this field in the CJI3 selection screen. I tried to maintain this field via SE36 - Maintain selection Views, but the Vendor field (eg: EKKO-LIFNR) which I required is not able to display out.  Anyone have any ideas on it or how should I add this additional selection screen option?

  • Restrict Select-Options for Logical Database field

    The way we restrict select options for custom defined select option fields on selection screen.. can we restrict select options for standard Logical Database fields?
    i.e. report uses PNPCE logical database and has field called PERNR. I want to restrict select options for this PERNR field so that it has options for 'Select single values' only.
    Thanks,
    Falguni
    Edited by: Falguni V on Nov 13, 2010 6:42 AM

    You can user AT SELECTION-SCREEN event, and check whether any record is having high value for PNPPERNR.

Maybe you are looking for