Std table relating planning folders to areas

hi all,
please can someone give me the standard table for relating all the planning folders to planning areas
full points will be alloted
thanks a lot
veer

Hi,
Planning folders can have variables layouts and functions from different planning areas. To get all the components of a planning folder please use table UPB_PS_PROP and for variables UPB_PM_VARIABLE.
Hope this was helpful
thanks

Similar Messages

  • What are the tables related to SD in PP relation tables if any

    what are the tables related to SD in PP relation tables if any

    SAP Production Planning Table
    Demand Management
    PBED Independent Requirements Data
    PBIM Independent Requirements by Material
    Repetitive Manufacturing
    SAFK RS Header Master Data
    S025 LIS -- Run Schedule Quantities
    S026 LIS -- Material Usage
    S028 LIS -- Reporting Point Statistics
    CEZP Reporting Point Document Logs
    CPZP Reporting Points - Periodic Totals
    MRP Records
    MDKP MRP Document Header Data
    MDTB MRP Table Structure (no data)
    PLSC Planning Scenario (Long-term Planning)
    MDFD MRP Firming Dates
    MDVM Planning File Entries
    S094 LIS -- Stock/Requirements Analysis
    Reservations
    RESB Reservations/Dependent Requirements
    Planned Orders
    PLAF Planned Orders
    Discrete Production
    AFKO Order Header
    AFPO Order Item Detail
    AFVC Order Operations Detail
    AFFL Order Sequence Details
    AFFH Order PRT Assignment
    AFBP Order Batch Print Requests
    AFRU Order Completion Confirmations
    AFFW Confirmations -- Goods Movements with Errors
    AFRC Confirmations -- Incorrect Cost Calculations
    AFRD Confirmations -- Defaults for Collective Confirmation
    AFRH Confirmations -- Header Info for Confirmation Pool
    AFRV Confirmation Pool
    AFWI Confirmations -- Subsequently Posted Goods Movements
    Classification
    KLAH Class Detail
    CABN Characteristic Detail
    AUSP Characteristic Values
    CAWN Characteristic Values
    CAWNT Characteristic Value Texts
    KSML Characteristic Allocation to Class
    KSSK Material Allocation to Class

  • Are there any new RESTful SDK related planned for 4.1 SP3 release

    Gurus,
    Recently i saw the SAP BusinessObjects BI4.1 SP03 What’s new guide. But did not find anything about RESTful SDK on it.
    Are there any new RESTful SDK related planned for 4.1 SP3 release? where can i find those information.
    Thanks,
    Tilak

    @Terry,
    In SP3 we are releasing
    1) Major feature which is the ability to GET/POST/PUT/DEL input controls
    2) Also we are delivering helpers to GET/POST/PUT/DEL any kind of table in a given report, so a consummer who wants to add a table just has to submit the xml describing the table instead of the XML describing the entire report. (includes ranking)
    3) GET datapath of a given Report Element
    4) GET dataset of a report Report Element
    5) GET/PUT LOV of a Data Object
    6) GET/POST/PUT/DEL Custom Property for a given Report Element
    7) GET/POST/DEL a webi document as zip (create a zip file containing the webi document html + images, then retrieve it, or delete it)
    All this is documented in the WebI REST SDK Online Guide that will be made availble by when the SP3 is released to customers.

  • What are the tables  related to Goods receipt details

    Hi,
    Please tell me the GR related data base tables.
    What are the tables  related to Goods receipt details
    Regards,
    Sunil Kumar.T
    Edited by: sunil kumar on Apr 28, 2008 8:49 AM

    Hi,
    If you want to know tables which are related to transaction.
    Use recording through SHDB tcode.
    go to shdb tcode
    after enter name of your zname.
    after for which transaction you are doing recording enter that tcode here migo.
    after press start recording.
    then enter data into fields after at last save and back.
    then it goew to control recording session screen
    after press program for create.
    then enter attributes ,select source code after save your code.
    Using this tables and which fieldsa you are using for perticular requirement.
    this is an easy procedure to know tables and fields.
    or
    USE ST05 tcode by entering single filed into application.
    These two approaches are usefull but go to first one if you knew which data you have to entered.
    Otherwise go to st05.
    *Reward points
    for goods receipt tcode by entering data

  • Table usage: relative to folders

    Hi,
    If I know of a certain table, is there a fast way to query all my folders to find which folders are using that table?
    Thank you,
    Tim

    I am also trying to get the custom folders that are using a particular table.
    From all that was explained above, I figured out a way how to get the custom folders. The table eul5_segments can handle long sql statements because it puts them into four "chunks" of length 250 characters. I combined them into one string to do the search.
    select t.obj_name
    from eul_us.eul5_segments us,
    eul_us.eul5_objs t,
    (select seg_id,seg_chunk1||seg_chunk2||seg_chunk3||seg_chunk4 chunk
    from eul_us.eul5_segments ) union_chunks
    where us.seg_id = union_chunks.seg_id and
    t.obj_id = us.seg_cuo_id and
    union_chunks.chunk is not null and
    instr (union_chunks.chunk,'table_name')<>0
    Leah

  • Tables related to PM order for actual and commitment items

    Hello Experts,
    I need help in finding the tables related to PM order for actual and commitment items.
    I need develop a report which can show the actual and commitment items for each order and Operation/component under that each ITEM wise and its related documents.
    For the component we can find the table RESB.
    But i am getting the difficult to find the data related to Operation (services)
    In my client we can able to see PM orders with activity types and SKF
    How can build the logic to find the values for each operation item and its commitments (PO, PR) and actual that is FI documents
    Please guide me the   TABLES and fields or else give me the hints, how can find the tables
    Thanks and Regards,
    Narendra

    Hi,
    The tables are COEP (actuals) and COOI (commitments); that is if you mean the financial figures.
    Regards,
    Eli

  • View links in multi table relations

    Is it advisable (in terms of performance e. g.), to create view links and view objects as local variables in multi table relations?
    examle: the jdev online help says to use
    such multi table relations like this:
    // A (one) -> B (many) -> C (many)
    ViewLink a2b = appMod.findViewLink("AtoB");
    ViewLink b2c = appMod.findViewLink("BtoC");
    ViewObject aV = a2b.getSource();
    ViewObject bV = a2b.getDestination();
    ViewObject cV = b2c.getDestination();
    while(aV.hasNext())
    Row aR = aV.next();
    while(bV.hasNext())
    Row bR = cV.next();
    while(cV.hasNext())
    Row cR = cV.next();
    I would rather keep everything concerning
    a, b, c together, especially when more
    tables (d, e, ...) are added, like this
    ViewLink a2b = appMod.findViewLink("AtoB");
    ViewObject aV = a2b.getSource();
    while(aV.hasNext())
    Row aR = aV.next();
    ViewLink b2c = appMod.findViewLink("BtoC");
    ViewObject bV = a2b.getDestination();
    while(bV.hasNext())
    Row bR = cV.next();
    ViewObject cV = b2c.getDestination();
    while(cV.hasNext())
    Row cR = cV.next();
    Is there anything to say against this approach (in term of performance for example). I am not sure to remeber,
    if this was the approach used in the HotelResevationSystem example.
    Thanks.
    Rx
    null

    For this to work you have to either build a view based on the entities from which you need attributes (joined by the FK) or build a ViewObject with the sql statement giving you all the attributes you need.
    The first case enables you the edit the attributes, the second gives you read only access to the attributes.
    What you try to do isn't a master-detail connection, you are doing a join of some tables.
    Timo

  • In windows 7 how to view folders that are only online on onedrive?

    I have uploaded massive amounts of information to onedrive for online storage without syncing.
    How am I able to view those folders on a win7 machine folders system not with the browser?
    I also have a 8.1 tablet that points to the same onedrive account. Tried to create a symbolic link(/J) on that tablet onedrive to point to the actual location where the folders actually are, and later make that symbolic visible on the win7 machine.
    It didn't work. The folder showed on the win7 machine, but empty. On the 8.1 tablet the symbolic folder works as it should though.

    Hi,
    If you want to view the file from OneDrive application instead of browser, do the following:
    For Windows 7, OneDrive is not the built-in application, thus you need download the related applilcation to view your files.
    For more information about how to use the desktop OneDrive and download address, please read this article:
    OneDrive desktop app for Windows: FAQ
    http://windows.microsoft.com/en-in/onedrive/windows-app-faq#1TC=other
    For Windows 8.1, you just sign in the built-in OneDrive app with the account to use it. You don't need  to set any symbolic link.
    Karen Hu
    TechNet Community Support

  • Table relating fields Equipment number and grouping2.

    hi all,
    i m making a report for T-code 'IE03' and i have to display grouping2(FGRU2) and its description in output with respect to Equipment number(EQUNR), but problem is that i m not getting the table relating to both fields. can anyone please help me as soon as possible plz.?
    i have these fields in ITAB, so if i get any relation from grouping2 then our problem will be solved.
    DATA : BEGIN OF itab OCCURS 0 ,
           equnr TYPE itob-equnr ,                  "Equipment No.
           shtxt TYPE itob-shtxt ,                  "Description
           answt TYPE itob-answt ,                  "Acquistn Value
           inbdt TYPE itob-inbdt ,                  "DATE
           anlnr TYPE itob-anlnr ,                  "ASSET
           aufnr TYPE itob-aufnr ,                  "ORDER NO.
    *******New Addition
           HERST type ITOB-HERST ,                  "Manufacturer
           mapar TYPE itob-mapar ,                  "Manufacturer Part Number
           serge TYPE itob-serge ,                  "Manufacturer Serial Number
           brgew TYPE itob-brgew ,                  "WEIGHT
           groes TYPE itob-groes ,                  "DIMENSION
           fgru2 TYPE efhm-fgru2 ,                              "Grouping2
           fgrtxt TYPE tcf13-fgrtxt,                "GROUPING2 DESCRIPTION
           END OF itab .
    regards saurabh.

    Hi.
    itob is database view.
    tcf13 is tras.Table.
    efhm is Structure.
    You cannot select data from a structure.
    A structure / work area contains data only at the run-time.
    You can select data from views and tables.
    The data you need to select will be in Database tables. All you need to do
    is to find those table and select from there.

  • Tables related to Costing module

    Hi
    What are the tables related to the tcode s_alr_87013611 with respect to time and HRS taken

    Hi Pradeep the Related tables to the Transaction s_alr_87013611  are
    *TABLES COSP                         
    TABLES COSS                         
    TABLES COSPP                        
    TABLES COSSP                        
    TABLES COSL                        
    TABLES COSR                        
    TABLES CCR1S                        
    TABLES CCSS                         
    TABLES CCR1Z                      *

  • Using attribute variables in the planning folders

    Hi all,
    Is there way to use attribute variables in the planning folders?
    There is a following situation. We have a number of cost centers (0COSTCENTER). Cost center has responsible person (0RESP_PERS) as attribute.
    We planning some costs for cost center.
    To select certain cost center to cost planning we created
    variable ZVAR1 as type CHAR and placed this variable in the header of planning folder.
    Now we have to restrict list of cost center for selection according to selected responsible person.
    Of course, I can add 0RESP_PERS to my cube, create variable ZVAR2 as type CHAR based on this character. Then place this variable to folder. For variable ZVAR1 use type of replacement as "User Exit" and ABAP routine will restrict list of available cost centers based on value of ZVAR2.
    But... Is there way to use variable with type of attribute and place this variable to header of folder?
    Thanks in advance!

    Hi Dmitry,
        Yes, you can use the attribute variable in your folder.
        Just create attribute variable with 0COSTCENTER as the basic char and 0RESP_PERS as attribute.then when you create your folder with UPSPM, make sure to choose notweb-enable type then under the variable category you will see the the attribute vairable you just created at BPS0, just drug it to you folder, you are done.

  • FS CD Table Relation Ships Required

    Hi
    I am looking for the SAP table Relation ships in FS-CD (Financial Services - Collections & Disbursements).
    Earlier answers will be rewarded.
    Regards.
    Nikhil.B

    Below are the list of tables in FICA
    DFKKOP Items in contract account document
    DFKKOPK Items in contract account document
    DFKKKO Header Data in Open Item Accounting Document
    DFKKREP05 Payment History: Reversals and Write-Offs
    DFKKREP06 Tax Report Data (Invoicing Time or Triggered)
    DPAYCHKH Header: Accounting Using Creation of Payment Media
    DPAYCHKH1 Supplemental Assignments with Creation of Payment Media
    Table fields Short descriptn
    DPAYC Payment program - administrative records
    DPAYCHKH Header: Accounting Using Creation of Payment Media
    DPAYCHKH1 Supplemental Assignments with Creation of Payment Media
    DPAYCHKP Header: Accounting Using Creation of Payment Media
    DPAYG Payment program - payment group
    DPAYH Payment program - data for payment
    DPAYP Payment program - data on paid item
    DPAYV Payment program: Variants for payment medium and list
    TFK042Q Payment Medium: Note of First Direct Debit
    TFK042U Payment Medium: Internal Note to Payee
    TFK042X Payment Program: Company Codes blocked by Payt Run
    YZFKKMAKO Dunning History Header
    FKCRPO Clarification Worklist Credit
    DFKKCFPAYRUN Clarif. Worklist: Payt Program
    DFKKCIBW FICA: Extraction of Cleared Items
    DFKKCOLFILE_H_W Subm. of Receivable for Collection: Header Data Buffer
    DFKKCOLFILE_P_W Subm. of Receivable for Collection: Item Buffer
    DFKKCOLFILE_T_W Subm. of Receivable for Collection: Trailer Data Buffer
    DFKKCOLLHBW_ST Collection Agency Extraction - Status Table
    DFKKCOLLHBW_TMP Collection Agency Extraction - Blocked Interval
    DFKKCOLLH_I_W Buffer: Collection Agency Information File (Header Data)
    DFKKCOLLP_IM_W Buffer: Coll. Agency Info File (Item Master Data Change)
    DFKKCOLLP_IP_W Buffer: Collection Agency Info File (Item for Payments)
    DFKKCOLLP_IR_W Buffer: Collection Agency Info File (Item for Callback)
    LAUFD Date ID
    DFKKCOLLT_I_W Buffer: Collection Agency Information File (Footer)
    DFKKCOMA Correspondence Dunning
    DFKKCOMAKT Correspondence Dunning Activities
    DFKKCRP Creditworthiness Record: Generating Actions
    DFKKDDA Debit Memo Notification (England)
    DFKKENQ Temporary Lock Entries for Mass Activities
    DFKKLOCKS FI-CA: Business Locks
    DFKKMACFCSMK FICA Dunning - Blocked Accounts
    DFKKOPCOLL Collection: Log of Receivables Submitted
    LAUFD Date ID
    DFKKOPKC Card Data Appendix for FICA Document
    DFKKORDERHIST Requests: Document History
    DFKKORDOPHIST Standing Requests: Document History
    DFKKPNBKC Prenotification file creation run: administration data
    DFKKPOH Payment Order: Header Data
    DFKKRDI Revenue Distribution
    DFKKRPL Link from Mass Run Interval for Application Log
    DFKKSTAT Table for Temporary Statistics Data, for Mass Activities
    LAUFD Date ID
    DFKKTAXEX Table of FI-CA Tax Exemptions
    DFKKTAX_EXEMPT Table of FI-CA Tax Exemptions
    DFKKUR Update Run: Run Data
    DFKKURE Update Run: Defective Data Records
    DFKKWOH Write-Off History
    DFKKZW2 Doubtful/Indiv. Val. Adjustments for Receivables - Tfr Pstg
    DFKKZWPT Log Table for Mass Activ. for Tfr Posting of Dbt Rec/IVAs
    DFK_JC_CNTR Container for Related Jobs
    DFKKCFRLS Clarification Cases: Returns Lots
    DFKKCFZST Clarification Cases from Payment Lot
    Reward points..

  • Where can I get the orders related to the sales area

    Hi,
    Could anybody tell me the Orders related to the Sales Area in CRM.
    Thanks,
    bsv.

    HI,
    YOu can use table CRMD_ORDERADM_H, CRMD_LINK and CRMD_ORGMAN.
    Get order GUID from CRMD_ORDERADM_H
    find record in CRMD_LINK with
    GUID_HI = Order GUID from CRMD_ORDEARDM_H
    OBJTYPE_HI = '05'
    OBJTYPE_SET = '21'
    You will get one and ony one record. now take GUID_SET from this record and goto table CRMD_ORGMAN
    Use this GUID_SET in CRMD_ORGMAN to get your sales area..
    This must solve your problem.
    Kindly reward with points in case helpful
    Sharif.

  • Table for Plan Data

    Hi Experts
    Created Cost Element Groups and Cost Center Groups and have Uploaded Plan data in KP06.
    Kindly provide me the Table Names for Cost Element groups,Cost Center groups and Plan Fixed Costs.
    Thanks & Regards
    KumarRaja
    Edited by: Kumar Raja D on Oct 7, 2009 2:36 PM

    Hi,
    Tables for groups are SETNODE and SETLEAF. Select by object class the required group (cost centres, cost elements, etc.) The tables for planning are COKP (primary) and COKS (secondary).
    Regards,
    Eli

  • GLPCT-GLPCA, GLPCA-BFOD_A/BFOK_A table relations

    Hi,
    How are these tables related to one another? What are the fields that I can match?
    1. GLPCT and GLPCA
    2. GLPCA and BFOD_A or BFOK_A.
    Thanks.

    refer the link
    http://www.auditware.co.uk/SAP/Extras/SAPTables.pdf
    In page no :8 , you can see the clear link between  GLPCT, GLPCA, GLPCO, GLPCC
    regards
    vivek
    *mark points if this helps

Maybe you are looking for

  • How do I create mutliple events from a single event?

    I have a large event clip which I want to divide into multiple smaller clips. The edit commands only seem to effect the clips in a project. In view of this I inserted the clip into a new project and then split the clip. However I cannot now transfer

  • Acrobat 9 Pro - can't accept EULA

    I thought I would try one more time to see if anyone can help me. I have recently installed Acrobat 9 Pro as administrator on Vista Home Premium 32.  No problems with the install but when I launch the program the EULA window comes up and wants me to

  • QuickEdit Changes not saved

    My version of ODI is 11g.1.1.5 After adding sources and joins to an existing interface in the QuickEdit screen and closing the tab, I am not prompted to save the changes and the changes are not there when I return to the interface QuickEdit screen. A

  • How could the page background be changed?

    It will be useful if in Adobe Reader the color of the page background could be changed, when possible (as in other PDF Readers). There are people like me who find stressing for the eyes a white background.

  • "Software for Album Art"

    Hello everybody, I used to use a program called, "Fetch Art" for find album art work and I had good luck with it overall..however since the recent update of iTunes I cannot use this program anymore--it errors out. Other than signing up for an iTunes