Can´t change EPCF Level to 0

Hi experts,
Iu2019m trying to change de EPCF Level value to 0 at framework light properties, but when I test the page I can see that the change wasnu2019t applied.
At the html source code I have:
EPCM.relaxDocumentDomain();
EPCM.init( {
Version:6.0801,
Level:1,
InstanceId:"6946a00f2c0e84d4b0a4931b73093fae",
PortalVersion:"6.4.200703230244",
That says I am in level 1.
I did another test changing the EPCF Level to 2 and it worked, I can see u201CLevel:2u201D in my html source code, but If I change to 0 (zero) it always put u201CLevel:1u201D at html source code.
I understood that to have the lightest framework light I have to put this property (EPCF Level) to 0 (zero), but I canu2019t do it.
Do you know how to do it? There is something more to change?
Am I correct, If I put this property to zero I will have the lightest framework light?
Thanks in advance.
Walde Requena

Hi,
have you been through this page :
http://help.sap.com/saphelp_nw70/helpdata/EN/f0/6ca84016631814e10000000a1550b0/frameset.htm
Fabien.

Similar Messages

  • How can I change the level of undos in final cut X.

    I was wondering if there is a way of changing the level of undos in Final Cut X and or how many level of undos exsist in already. i.e. in the FCP 7 you had to go to prefernces and chagne it from like 3 to 99, is there something similar that needs to be done in FCP X?

    You can't. It has unlimited undos, though some things seems to be missing from the undo queue, and sometimes it fails. Basically you can't change it.

  • Can i change down level stage value?

    Aleady setting's IE6,7,8 view.
    but i need view down level stage in mobile browser.
    can i change setting value?

    Changing number formats is not in Keynote, but in the OS X System Preferences, in the International Preferences.

  • 0CO_PC_PCP_03 Cost Planning - Can I change the level of itemization?

    I want to use the extractor 0CO_PC_PCP_03 to enable me to derive cost extimates.  However the standard extractor provides itemization at the very lowest component level, and not at the sub component/assembly level in a BOM.
    Is there any way of controlling this with either a config change or an OSS note? 
    Any help would be much appreciated.
    Tim

    were you able to change the level of itemization in this case for 0co_pc_pcp_03

  • Can we change Tab Level of Application once created

    Hi,
    I have created one HTML DB Application having One Tab Level.
    Now I realized that I need to change Tabs & requires Two Level Tab. I tried in many ways, I could not change settings to have Two Level Tab. Please can anybody help on this?
    I do not wish to delete the application & recreated them back. Please suggest a method in altering the Levels for the tab of the existing application.
    Thanks in advance,
    Kind Regards,
    Prabhakar

    In the application shared objects, select 'themes' and click the edit icon by your theme. There is an option there to set the number of tab levels.

  • How can i change the level of the real instrument in the info window

    ibook G4 rt power book G3   Mac OS X (10.3.9)  
    when i use a mike for example, i do not manage to work on the level . it says in the solving problem window, check in the info window if the mike level is not to the left. in my case it is,and i can do nothing about it.
    do you have solution.

    I have no experience with that device. You might open the Audio/Midi Utility and select the Edirol to see if there's an additional slider that you can select. Or is there a software for the device with more controls? Maybe other users can jump in.

  • How can I change the level of a folder (elevate it) ?

    Somehow when I imported my photos I made several folders subfolders of a parent folder when they should have been at the same level.  How can I go about elevating the level of these subfolders so all of the folders are at the same level?

    Go to library/ folders.
    If you don't see the parent of your parent folder:
    Rightclick your parent folder and click show Parent.
    Now drag your subfolders to that folder. (Parent of parent)
    Afterwards you can hide that folder again, by rightclicking Hide this Parent.
    Frans

  • Error while Changing log level in Agentry 6.0.44.1

    Hi ,
    I am trying to change the log level from the Agentry Administration client, but i am getting the below error message.
    And it is showing any option to change the log levels for users. How can I change log level for users also.
    How can I resolve this error.
    Regards,
    Shyam

    Shyam,
    This is fixed or planned fixed in 6.0.46 Agentry Server (supposed to be available anytime soon in the Service Marketplace - it was submitted already to the SMP team). The fix was in SMP 2.3 and SMP 3.0 but it was ported back to the Agentry 6.0.X release. If you have no access to the Agentry 6.0.X patches this means that your SAP License is preventing you from downloading it. You may need to contact the SAP CIC (customer interaction center) group.
    Or you can do the manual setup for a workaround for now.
    SAP KBA article: 2048202 - AgentryGUI does not allow to change log settings - Not all setttings were successfully changed.
    Regards,
    Mark Pe
    SAP Senior Support Engineer (Mobility)

  • CHANGE THE LEVEL NUMBER IN AN SQL QUERY

    Hi
    I've this query:
    SELECT LEVEL,LPAD(' ',(LEVEL+1)*5,' ')||ENAME ENAME
    FROM EMP
    START WITH MGR IS NULL
    CONNECT BY PRIOR EMPNO = MGR
    the result is:
    LEVEL ENAME
    1 KING
    2 JONES
    3 SCOTT
    2 FORD
    3 SMITH
    my question is that if i except FORD how can i change the level number to SMITH from 3 to 2.
    for example:
    SELECT LEVEL,LPAD(' ',(LEVEL+1)*5,' ')||ENAME ENAME
    FROM EMP
    WHERE ENAME <> 'FORD'
    START WITH MGR IS NULL
    CONNECT BY PRIOR EMPNO= MGR
    the result is:
    LEVEL ENAME
    1 KING
    2 JONES
    3 SCOTT
    2 SMITH
    regards
    nadia

    Hi,
    If you notice the level of SMITH is 4 in the initial query but when you exclude FORD, then SMITH is taking up his level i.e., 3.
    SQL>     SELECT LEVEL lvl, ENAME
      2      FROM EMP
      3      START WITH MGR IS NULL
      4      CONNECT BY PRIOR EMPNO = MGR;
           LVL ENAME
             1 KING
             2 JONES
             3 FORD
    4 SMITH
             2 BLAKE
             3 ALLEN
             3 WARD
             3 MARTIN
             3 TURNER
             3 JAMES
             2 CLARK
             3 MILLER
    12 rows selected.
    SQL> Select decode(ename, 'SMITH', lag_level, lvl) dec_lvl,
      2      ename from (
      3      SELECT rownum rn, LEVEL lvl, lag(level) over (order by level) lag_level, ENAME
      4      FROM EMP
      5      START WITH MGR IS NULL
      6      CONNECT BY PRIOR EMPNO = MGR )
      7      Where ename <> 'FORD'
      8      order by rn;
       DEC_LVL ENAME
             1 KING
             2 JONES
             3 SMITH
             2 BLAKE
             3 ALLEN
             3 WARD
             3 MARTIN
             3 TURNER
             3 JAMES
             2 CLARK
             3 MILLER
    11 rows selected.
    SQL>Regards

  • How can i change VBAK-Faksk of VAO1 at header level using BAPI_SALESORD_CHA

    Hi Experts,
    How can i change the value of VBAK-FAKSK (Billing doc value) at header level .
    by using the bapi_salesorder_change.Could you please send the sample code
    how to change the value of any field in VBAk . so that i can take as reference and work accordingly ..
    It's urgent,
    thanks
    kumar.

    Hi,
    Check this
    PARAMETERS: p_vbeln type vbak-vbeln.
    DATA: l_header_inx TYPE bapisdh1x,
    l_header_in TYPE bapisdh1.
    data: lt_return type standard table of bapiret2.
    MOVE: 'U' TO l_header_inx-updateflag,
    'X' TO l_header_inx-bill_block,  " Billing
    'ZL' TO l_header_in-bill_block.  " Billing block.
    CALL FUNCTION 'BAPI_SALESORDER_CHANGE'
    EXPORTING
    salesdocument = p_vbeln
    order_header_in = l_header_in
    order_header_inx = l_header_inx
    TABLES
    return = lt_return.
    * check for errors.
    LOOP AT lt_return transporting no fields WHERE type = 'A' Or type = 'E'.
      EXIT.
    ENDLOOP.
    If sy-subrc = 0.
      write: / 'Error in updating'.
    ELSE.
      commit work and wait.
    endif.
    Thanks
    Naren

  • Can we change valuation area level ?

    Dear all :
    I have meet one question about valuation area .
    If we set a valuation area in company or in plant level , can we change the setting later
    ex : change from company level to plant level
          or change from plant level to company level
          or can't be change any more.
    And  if it can be change , what limit for the change ?
    Thanks.
    Gary

    Hi Gary
    In Versions from 4.7 or 4.6 onwards, Valuation area is always Plant level and it cant be changed...
    Only in earlier versions, valuation area at comp code was available.. Now that is completely gone and un-changeable
    Regards
    Ajay M

  • Can I use User Exit u2013 IWOC0004 u2013 Change Single-Level List for TCODE IW37N?

    Hi All,
    Can I use User Exit u2013 IWOC0004 u2013 Change Single-Level List for TCODE IW37N?
    In documentation of the User Exit I can see that I  can use this user Exit for IW37(Program - RIAFVC20) , but I want to use this for IW37N (RIH_ORDER_OPERATION_LIST).
    Please tell me is it possible.
    With best regards,
    Narendra

    Hi Pete Sir,
           I am on 4.7 , how to work with it. I am going to use screen exit IW0110018 and I want to add User fields in the IW37N.
    Thanks with best regards,
    Narendra

  • How can we change in 1st char mapping level in sap pi?

    Hi All,
    There is inbound scenario(third party system to SAP),in the mapping level they are ask us to change 1st char = "9".
    can any one pls tell me how can we change in mapping level?
    Thanks
    Narendra

    you can use predefined text function substring remove first charecter and if you want to replace first charecter then first remove by substring function then use concat function to append desired charecter.
    to remove first chaecter  use belwo values
    substring parameters as start position 1 and charecter count 0

  • Can not change the control level of item attribute "Inventory Asset Value"

    I can not change the control level of the item attribute "Inventory Asset Value" from Master Level to Org Level. It's show me the message "FRM-40200: Field is protected against update".
    Version is below:
    Oracle Application: 10.7SC
    Form: INVIDCTL 6.0.26

    I did a trace when I chage the control level. the SQL is below:
    SELECT COUNT(*)
    FROM CST_ITEM_COSTS CHILD
    , CST_ITEM_COSTS MASTER
    WHERE MASTER.INVENTORY_ITEM_ID = CHILD.INVENTORY_ITEM_ID (+)
    AND MASTER.COST_TYPE_ID = 1
    AND CHILD.COST_TYPE_ID (+) = 1
    AND NVL(MASTER.ITEM_COST,0) != NVL(CHILD.ITEM_COST (+) ,DECODE(MASTER.ITEM_COST, NULL ,0,-99999))
    AND MASTER.ORGANIZATION_ID IN (SELECT MASTER_ORGANIZATION_ID
    FROM MTL_PARAMETERS
    WHERE ORGANIZATION_ID != MASTER_ORGANIZATION_ID )
    AND CHILD.ORGANIZATION_ID IN (SELECT ORGANIZATION_ID
    FROM MTL_PARAMETERS
    WHERE MASTER_ORGANIZATION_ID = MASTER.ORGANIZATION_ID )

  • Can I change BDB's locking level (SQL api mode)?

    Can I change BDB locking level ?
    if so , how to change it ?
    I am testing SQLite vs BDB with --enable-sql_compat (configure option)
    I want to change it to Data base level , ( like SQLite )
    Edited by: 861245 on 2011. 6. 23 오후 6:54

    Hello,
    If I understand your question you want to change Berkeley DB to
    implement locking at a database level like SQLite. Please see
    the "Locking granularity" documentation at:
    http://download.oracle.com/docs/cd/E17076_02/html/programmer_reference/lock_page.html
    With the exception of the Queue access method the Berkeley DB
    access methods do page-level locking. The Queue access method
    performs record-level locking.
    Thank you,
    Sandra

Maybe you are looking for

  • How to stop bitmap conversion

    Hi All, Here is the situation. To get the reports one global temporary table has been created. Whenever reports has to generate 1) It first insert records into temporary table from multiple tables based on select statement (here global temporary tabl

  • CS2 deactivation on other computers

    I want to install and activate my old version of CS2 on my pc that is running on windows 8.1.  I have no idea how many times I have activated this program or on how many computers.  Is there a way to deactivate all but one?

  • Foxnews live won't load/stream on iPad.

    Foxnews programs run on the iPad but Foxnews live doesn't. I've deleted the FoxNews app, re-installed and the problem still exisits.

  • ADF 10.1.3.x - how to programmaticaly distinguish partial submit

    Hi I need to know how to programmaticaly distinguish in manged bean kind of user request - normal e.g when user press button or partial e.g. table selection. Kuba

  • Phone says that i need to insert an sd card

    I am having the same issue, only when I want to use the camera. It asks for me to insert an SD card. I have tried removing the card and re-inserting but is still asking for me to insert card. I have gone into settings and it says the total space is u