How to get 2011 PLANS in TEVEN?

Hi
I have this problem that i need to populate the position field in TEVEN table. Users can do that from SE30->2011 and edit the position there. but that doesn't refeclt the TEVEN position field even though there are two position field in there (i am not sure why there r two of them). Can any one point me to the documentaion or some thing which will give me some idea how to make the link or relation between 2011 screen and TEVEN table. so that when the users change the position from 2011 screen that will also populate or change one of the position field in TEVEN.
Please help.
Thanks
Message was edited by:
        Anwarul Kabir
Message was edited by:
        Anwarul Kabir

I have found out so far that the field from the 2011 screen saves the data to P2APL-PLANS. But what's the relation between TEVEN and this structure? how do i get the data from P2APL?
Message was edited by:
        Anwarul Kabir

Similar Messages

  • How to get execution plan in a CLOB?

    Hello,
    I want to get execution plans of a query in a CLOB format. I am trying to run following query against v$sql view. One of the columns I want is the execution plan for the query. I am getting following error. Eventually, I am going to insert this data into a log table to keep history of all SQLs and their execution plans.
    How can I do that?
    Thank you in advance.
    SQL> SELECT sql_id,
      2         plan_hash_value,
      3         TO_CLOB (DBMS_XPLAN.display_awr (sql_id            => sql_id,
      4                                          plan_hash_value   => plan_hash_value,
      5                                          format            => '+PEEKED_BINDS'))
      6            sql_plan_clob,
      7         buffer_gets,
      8         executions
      9    FROM v$sql
    10   WHERE ROWNUM < 5;
           TO_CLOB (DBMS_XPLAN.display_awr (sql_id            => sql_id,
    ERROR at line 3:
    ORA-00932: inconsistent datatypes: expected NUMBER got SYS.DBMS_XPLAN_TYPE_TABLE

    try first
    select *
      from table(DBMS_XPLAN.display_awr(sql_id          => sql_id,
                                        plan_hash_value => plan_hash_value,
                                        format          => '+PEEKED_BINDS'
                )to see the table returned
    then try to adapt http://asktom.oracle.com/pls/apex/f?p=100:11:0::::P11_QUESTION_ID:68212348056 to produce fixed length rows.
    look for describe_columns procedures in http://docs.oracle.com/cd/E11882_01/appdev.112/e25788/d_sql.htm#i1025449 for column length information available in internal tables and write the rows directly to clob instead of writing to disk and loading your clob from there.
    Regards
    Etbin
    Edited by: Etbin on 31.10.2012 19:56
    pointing to dbms_sql package added

  • How to get the planned quantity of past month from md61

    Hi all,
           I couldnt get the planned quantity of past month from the tcode md61.It shows only the current and future month's demand.I want to know the planned quantity of past month's.
    I have checked PBIM,PBED,PBHI tables,here also I am facing the same problem.
        Is it possible to get past month quantity from md61? If No how to know the quantity planned for past month?...Please tel your ideas..
    Thanks in Advance!!!
    Edited by: Ranganayahi Chandirasekaran on Jul 30, 2008 8:17 AM

    Hi,
    You can check History of PIR through MD62 itself.
    Select particular row, Goto Menu, Select Item History(Shift +F6).
    Or
    You may pls execute transaction MD73.
    Plz select option "3 :History Planned ind reqmnts " in the display options and execute the report.
    Regards,
    R.Brahmankar

  • How to get execution plan from plsql

    i have a nasty sql inside plsql and want to get the execution plan. what is the best way of getting it.
    v_sql:= 'select loop_f1.loopid
             FROM rdw.WDM_Prov seg_f1,
                 rdw.WDM_loop_Prov_association assoc_f1,
                 rdw.WDM_potential_loop_makeup loop_f1,
                 rdw.WDM_Prov seg_fx,
                 rdw.WDM_loop_Prov_association assoc_fx,
                 TABLE(CAST( :loopInfo as ermarc.t_CustomerLoopElement)) input_loop
            WHERE loop_f1.CO_illc =  :f1_co_illc
            AND loop_f1.LOOPID = assoc_f1.LOOPID
            AND  assoc_f1.Prov_NUMBER = :f1_Prov_number
            AND  assoc_f1.Prov_ID = seg_f1.Prov_ID
            AND  Upper(TRIM(LEADING 0 FROM  seg_f1.CABLE))  =:f1_cable
            AND  (seg_f1.low_rep <= :f1_rep AND  seg_f1.high_rep >= :f1_rep)
            AND  seg_f1.TERMSYSID = :f1_termsysid
            AND  assoc_f1.Prov_number = 1
            AND  loop_f1.loopid = assoc_fx.loopid
            AND  assoc_fx.Prov_ID = seg_fx.Prov_id
            AND  assoc_fx.Prov_number = input_loop.Prov_number
            AND   Upper(TRIM(LEADING 0 FROM  seg_fx.CABLE)) = Upper(TRIM(LEADING 0 FROM  input_loop.cable))
            AND  (seg_fx.low_rep <= input_loop.rep and seg_fx.high_rep >= input_loop.rep)
            AND  seg_fx.termsysid = input_loop.termsysid
            GROUP BY loop_f1.loopid
            HAVING MAX(assoc_fx.Prov_NUMBER) = :v_cntProvs
            AND  COUNT(CASE WHEN assoc_fx.Prov_number = input_loop.Prov_number THEN 1 ELSE 0 END) = :v_cntProvs';
    EXECUTE IMMEDIATE v_sql BULK COLLECT  INTO v_looplist
    USING loopInfo,
           loopInfo(1).co_illc,
           loopInfo(1).Prov_number,
           Upper(TRIM(LEADING 0 FROM   loopInfo(1).cable)),
           loopInfo(1).rep,
           loopInfo(1).rep,
           loopInfo(1).termsysid,
           v_cntProvs,
           v_cntProvs;

    Sorry, a tag or a statement_id is a way of identifying a particular SQL statement by an identifier other than its SQL_ID to make getting the plan easier. If I want the plans for two different statements, I can provide a statement_id and use that as an argument for DBMS_XPLAN later on.
    SQL> ed
    Wrote file afiedt.buf
      1  begin
      2    execute immediate
      3      'explain plan set statement_id = ''JCAVE_DEPT'' for select * from dept'
      4    execute immediate
      5      'explain plan set statement_id = ''JCAVE_EMP'' for select * from emp';
      6* end;
    SQL> /
    PL/SQL procedure successfully completed.
    SQL> select *
      2    from table( dbms_xplan.display( null, 'JCAVE_DEPT', null ));
    PLAN_TABLE_OUTPUT
    Plan hash value: 3383998547
    | Id  | Operation         | Name | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT  |      |     4 |   120 |     3   (0)| 00:00:01 |
    |   1 |  TABLE ACCESS FULL| DEPT |     4 |   120 |     3   (0)| 00:00:01 |
    Note
    PLAN_TABLE_OUTPUT
       - dynamic sampling used for this statement
    12 rows selected.
    SQL> ed
    Wrote file afiedt.buf
    Wrote file afiedt.buf
      1  select *
      2*   from table( dbms_xplan.display( null, 'JCAVE_EMP', null ))
    SQL> /
    PLAN_TABLE_OUTPUT
    Plan hash value: 3956160932
    | Id  | Operation         | Name | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT  |      |    14 |  1218 |     3   (0)| 00:00:01 |
    |   1 |  TABLE ACCESS FULL| EMP  |    14 |  1218 |     3   (0)| 00:00:01 |
    Note
    PLAN_TABLE_OUTPUT
       - dynamic sampling used for this statement
    12 rows selected.Justin

  • How to get the plan I originally signed up?

    Hi,
    This is such a nightmare and long long story. When iphone 6 came out last month, I upgraded my old phone and signed up for More Everything plan with the 10gb data for $80 in the store plus for each phone I get 1 gb free data per upgraded smartphone (I have 3 lines that were upgraded). At first, the sales rep said he can't make a change to my account until all my phones are activated. I told him it will be all activated by tonight. He said he will ensure to get my account change later today or tomorrow and I do not need to worry. I went back to him the next day to tell him and again I was given the same **.
    A week later, I called 611 to make sure my plan did change but the rep said he did not see any change on the account and he'd be happy to sign me up for the More Everything and their current promo for the 10gb data for $80 plus the 1gb free per line so a total of 3gb. After on the phone with the rep for over 45 mins and confirmed everything to make sure I have the plans setup and all. He said my $80 10gb data plan will stay as long as I have the plan and no changes to my account and that my new plan will go in effect on my next billing cycle which is 10/18. I trusted his words and think he put it through.
    On 10/20, my husband logged into verizonwireless.com to doublecheck and nothing was change. Very disappointing so I called 611 again. This time I was told that my plan didn't kick in and that they no longer offer that $80 10gb plus the 1gb free data for upgrading. I am sooooo upset after what I went through. On top, I found out that one of my line that I was trying to disconnect for a month did not disconnect and I am still paying for it. Even more upsetting.
    What I want right now is someone get me the data plan I was promised. I can't believe I trusted Verizon reps and salesperson for everything but for nothing. On top, I am now stuck with Verizon for 2 years since I just upgraded. I was a loyal Verizon customers for like 10 years and this is what I get?????? I hardly ever make a change in plan and I got screwed up big time. I am unable to lock in the rate I was promised.
    Verizon you guys are horrible. At this point, if I have a choice, I am leaving you guys.

    Really sorry to hear that.  If they cant follow through with what was promised then it might be time to say no thank you and try another provider.  I am currently dealing with a dispute with them where I took my phone in for the trade in program and they lost the phone and now I'm unable to get my credit.  Plus, they have the nerve to lie to me in my face and say they never took it and they cannot be held responsible.  Filed the complaint earlier today.

  • How to get active plan version dynamically

    Hi all,
    I am making some HR reports in which I am pulling up position long text from hrp1001 by giving condition - where plavr = '01' . Now if the active plan version is not 01, my condition becomes vague.
    Please let me know how to determine the active plan version dynamically in my sample code below
    SELECT APERNR AOTYPE B~STEXT INTO CORRESPONDING FIELDS OF TABLE ITAB_EMP_DEATILS3 FROM PA0001 AS A
    INNER JOIN HRP1000 AS B ON BOTYPE = AOTYPE AND BOBJID = APLANS WHERE ( BOTYPE = 'S' AND BPLVAR = '01' AND AENDDA = '99991231' AND BENDDA = '99991231') AND A~PERNR IN PNPPERNR.
    SORT ITAB_EMP_DEATILS3 BY PERNR.
    DELETE ADJACENT DUPLICATES FROM ITAB_EMP_DEATILS3.

    Simply call FM RH_GET_PLVAR  

  • How to get the PLANNING SHORTAGE in the forecast tab of /sapapo/rrp3?

    Hi to all!
    I need your help!
    I'd like to take the planning shortage quantities in the forecast tab of the product view /sapapo/rrp3 and the related date and I'd like to insert that quantity on the 9AAFCST key figure in the related time bucket.
    Have you got any idea on how to go on?
    Thanks a lot!
    Maria

    This is now possible in the LIO solution pack available in extensibility pack 3.4 And above.   You can read more about it on OTN, LIO solution pack guide.   There is also a training overview recording available on the collaboration sites.

  • How to get second plan CC ?

    I have CC for photographers(student) I want to get a second plan CREATIVE CLOUD COMPLETE
    - when i press "buy now" it says that i have already a plan register and don't let me get a new plan?
    can  anybody help me please

    what is in the entire Cloud http://www.adobe.com/creativecloud/catalog/desktop.html

  • How to get cost plan value in tcode 'CJ40'

    Hi guys,
    Run tcode 'CJ40', user can input the cost in WBS element (in the 'cost plan' column).
    Now the requirement is that , we should get the value from this column and I have find some functions. But all don't work.
    So seek help from you experts.
    Welcome any suggestion!.
    Thanks very much!!

    Refer COSS, COEP and COSP tables for actual and plan costs.
    Thanks,
    Santosh

  • How to get GL plan value plant wise

    Hello,
    Can you tell anybody where to updated GL plan value plant wise. In GP12N there is no planner profile for plant wise.
    Thanks & reagrds,
    Preethi kadkol

    Hi,
    Go toT.code FAGLL03 (GL Account Line Item Display G/L View).You Select the Custom Selections (Ctrl+F1) Button and there In GL Account Line Items select Plant and Click on Copy Selected Button at the bottom and provide the Plant Details and Saveyou have an option to change the layout and select the available fields in the layout. Plant and have it in the line items report, provided you maintain it as a special field using T. Code: OBVU/O7R3 (Line layaout variant for special fields).
    Thanks,
    Raviteja

  • How enable the explain plan in JDeveloper?

    Can you tell me how to get explain plan in JDeveloper?
    Thanks in advance.

    If you are using jdev 11 just open a sql work sheet, type in your statement or query and hit F6 (Execute Explain Plan) or the third button from the right in the work sheet toolbar.
    Timo

  • How to get the floor plan in Webdynpro component ?

    Hi,
    How to get the floor plan in Webdynpro component ?
    Best Regards,
    Tripathi

    Hi,
    Just copy the templates from Webdynpro Component by choosing OIF or GAF or QAF template.
    Regards,
    Bansidahr

  • How to get the personnel plan work schedule

    Hi,
    I write a report ,need get the personnel plan work schedule of the input month.
    for example:
    at input screen : I input : 2007-01  and pernr:10000001;
    I hope get the plan work schedule days (rusult :25 work days)of  the  person 10000001  at  January 2007 .
    Now I find some HR TM functions ,such as :
    HR_PERSONAL_WORK_SCHEDULE
    HR_PERSONAL_WORK_SCHEDULE_PNP
    but I don't know how to test , I had try many times ,but not get what I want . so I want to know if have any other function can make me get what I want .

    Hi Olivia,
    tables: ptpsp.
    parameters:
    pernr type pa0001-pernr,
    begda type pa0001-begda,
    endda type pa0001-endda.
    data:
    i_ptpsp type table of ptpsp.
    <b>CALL FUNCTION 'HR_PERSONAL_WORK_SCHEDULE'</b>
           EXPORTING
               <b> PERNR             = PERNR
                BEGDA             = BEGDA
                ENDDA             = ENDDA</b>
              KUG               =
              REFRESH           = 'X'
              WORKING_HOURS     = 'X'
              SWITCH_ACTIV      =
              MODIFY_ENTRIES    = 'X'
              I0001_I0007_ERROR = '0'
         IMPORTING
              WARNING_OCCURED   =
           TABLES
              I0000             =
              I0001             =
              I0002             =
              I0007             =
              I0049             =
              I2001             =
              I2002             =
              I2003             =
      <b>          PERWS             = I_PTPSP</b>
         EXCEPTIONS
              ERROR_OCCURED     = 1
              ABORT_OCCURED     = 2
              OTHERS            = 3
      IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    table <b>I_PTPSP</b> is having all the data u needed..

  • I had a "pdf export" plan and upgraded it to "pdf pack" plan and it was charged the full price of the new plan in my credit card. How to get the refund of the non used part of the old plan?

    I had a "pdf export" plan and upgraded it to "pdf pack" plan and it was charged the full price of the new plan in my credit card. How to get the refund of the non used part of the old plan?

    Hi edilsoncf,
    I've seen your question on several forums, and responded there. Did you get your subscription sorted out?
    See: How do I get a refund if I have multiple Acrobat service subscriptions?
    Best,
    Sara

  • How to get/view document number for KP06 Planning upload

    Hi,
    I have uploaded excel for Cost center/cost element Planning in KP06 using exccel planning.Now i want the document number which for which i have posted in KP06-Plan values using excel upload.
    Kindly advice me how to get the document number for CO-OM(Cost center/Cost element planning) in KP06?
    Thanks
    Supriya

    Hello,
    Please execute report KSBL. It should be useful.
    Regards,
    Ravi

Maybe you are looking for

  • Printing with HP B9180 and Photoshop Elements 8 and Color Management

     I've got a bit of confusion about certain settings in the printing process and I've posted a rather long discussion of my 'issues' and confusion.  I hope someone can give me some guidance here.  I've seen a lot of these issues addressed in many plac

  • Report on Remote connections

    Hi there, I am scanning through zcc.log to check number of remote sessions we have. Is there any report available to let me know how many session for a specific date and when the sessions were and for how long. ie. 50 remote session a day average of

  • Nv driver issues

    I figure this is the place to put this because the problem is on a laptop and it's not really a hardware problem. I have installed all the updates and am running an archck kernel on a dell inspiron 9400 right now. It works fine except suspend to ram

  • Lightroom - metadata auto-save vs. export

    Hello! I understand that with auto-save XMP metadata on, most of an image's Lightroom changes will be auto-saved with the original photograph file whereever it may be. However, what I don't understand is whether when you export from Lightroom (not ex

  • How do I change a bad location in the new photos app for Mac?

    I am not sure why but hundreds of my photos have the wrong location stored for them. Is there any easy way to change them in the new Photos app for mac? Thanks