How to fix a range of values in y-axis

hi,
We are using the column charts in the design studio 1.3 to display the sales information. In the Y- Axis the max/ Min values are 5000/100000000, we want to fix the range between each scales so that the number of the scale can be defined and the graph will also looks clear. Please let me know is there option to achieve this.
Thank You,
Palani

Have you looked at the min / max scaling property of the chart - see picture below:

Similar Messages

  • How to fix 'Unexpected error: Incorrect value: Location URL' in WSDL

    Hi All,
    Using SOAMANAGER  transaction, I created a service ECC_CUSTOMERQUOTEERPCRTRC and its binding 'ECC_CUSTOMERQUOTEERPCRTRC_binding' using the Create Service option under the tab Configurations and using the web service definition 'ECC_CUSTOMERQUOTEERPCRTRC'.  When I click on the link "Open WSDL document for selected binding" under the tab 'Overview', I get the following XML code in the popup window for the WSDL.
    - <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
    - <soap:Body>
    - <soap:Fault>
      <faultcode>soap:Server</faultcode>
      <faultstring>Unexpected error: Incorrect value: Location URL for subject IF {http</faultstring>
    - <detail xmlns:slibfault="http://xml.sap.com/2005/11/esi/slib/fault/">
      <slibfault:timestamp>Wed, 17 Nov 2010 22:29:02 GMT</slibfault:timestamp>
    - <slibfault:exception>
      <slibfault:text>Incorrect value: Location URL for subject IF {http://sap.com/xi/APPL/Global2}:CustomerQuoteERPCreateRequestConfirmation_In not found</slibfault:text>
      <slibfault:position program="CL_SIDL_SUBJECT_ADAPTER=======CP" include="CL_SIDL_SUBJECT_ADAPTER=======CM006" line="47" />
      </slibfault:exception>
      </detail>
      </soap:Fault>
      </soap:Body>
      </soap:Envelope>
    The XML code for nthe WSDL displays an error 'Unexpected error: Incorrect value: Location URL for subject IF '. It looks like the code could find the required URL. Please let me know how to fix this error.
    Thanks in advance.
    --R D

    Hello.
    In SOAMANAGER delete your "unexpected" service (endpoint).
    Then create it again.
    If same error will occurs - try to delete all definitions of this service (include sicf-transaction) and then create it completely again.
    Hope it helps.

  • How to fix "ORA-31038:Invalid value ..." in a XML schema

    Hello,
    We are in 11gR2 :
    select * from v$version;
    BANNER
    Oracle Database 11g Enterprise Edition Release 11.2.0.2.0 - 64bit Production
    PL/SQL Release 11.2.0.2.0 - Production
    CORE    11.2.0.2.0      Production
    TNS for Linux: Version 11.2.0.2.0 - Production
    NLSRTL Version 11.2.0.2.0 - ProductionWe load XML files based on a registered XML schema.
    Here is the top of our XML schema:
    <?xml version="1.0" encoding="UTF-8"?>
    <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
             xmlns:xdb="http://xmlns.oracle.com/xdb"
             xmlns="http://www.capgemini.com/xsd/projet.xsd"
             targetNamespace="http://www.capgemini.com/xsd/projet.xsd"
             elementFormDefault="unqualified"
             blockDefault="#all">
      <xsd:element name="WORKBENCH_PROJECT" xdb:defaultTable="WORKBENCH_PROJECT_TABLE">
        <xsd:complexType xdb:maintainDOM="false">
          <xsd:sequence>
            <xsd:element ref="BaseCalendars"/>
            <xsd:element ref="PoolResources"/>
            <xsd:element ref="Projects"/>
          </xsd:sequence>
    ...We experience error ORA-31038: Invalid number value ... at the load of the XML, when the focus goes to a string type attribute :
    Here it is :
            <Task
              UID="AJ\&apos;UF`2=_```)O0H;&quot;P!```?P```0" earlyStart="2010-04-20T08:00:00" category="Run"
              baseTime="2010-03-26T09:22:00" lateStart="2010-04-20T08:00:00" start="2010-04-20T08:00:00"
              proxy="false" earlyFinish="2010-05-12T17:00:00" lateFinish="2010-05-12T17:00:00"
              critical="true" status="2" shortName="OASIS 3.2" outlineLevel="4" baseFinish="2010-06-11T17:00:00"
              finish="2010-05-12T17:00:00" summary="false" baseStart="2010-05-17T08:00:00" baselineDuration="20.0"
              milestone="false" name="OASI 3.2.1 : Association d&apos;un plan à un PFO" fixed="true"
              locked="false" key="false" percComp="1.0" totalSlack="0.0" unplanned="false">
              <Assignments>
                <Assignment
                  status="2" actualWork="24.0" resourceID="SMOUFLIH" start="2010-04-20T08:00:00" baselineWork="0.0"
    Here is the XML schema part where the load fails ( at the attribute *<xsd:attribute name="name" type="xsd:string"/>* ) :
      <xsd:element name="Task" xdb:defaultTable="">
        <xsd:complexType xdb:maintainDOM="false">
          <xsd:sequence>
            <xsd:element ref="Assignments" minOccurs="0"/>
            <xsd:element ref="BaselineDetails" minOccurs="0"/>
            <xsd:element ref="Constraints" minOccurs="0"/>
            <xsd:element ref="Notes" minOccurs="0"/>
          </xsd:sequence>
          <xsd:attribute name="UID"/>
          <xsd:attribute name="taskID" type="xsd:string"/>
          <xsd:attribute name="baseFinish" type="xsd:NMTOKEN"/>
          <xsd:attribute name="baseStart" type="xsd:NMTOKEN"/>
          <xsd:attribute name="baseTime" type="xsd:NMTOKEN"/>
          <xsd:attribute name="baselineDuration" type="xsd:decimal"/>
          <xsd:attribute name="category" type="xsd:string"/>
          <xsd:attribute name="critical" type="xsd:string"/>
          <xsd:attribute name="earlyFinish" type="xsd:NMTOKEN"/>
          <xsd:attribute name="earlyStart" type="xsd:NMTOKEN"/>
          <xsd:attribute name="finish" type="xsd:NMTOKEN"/>
          <xsd:attribute name="fixed" type="xsd:string"/>
          <xsd:attribute name="guidelines" type="xsd:string"/>
          <xsd:attribute name="key" type="xsd:string"/>
          <xsd:attribute name="lastUpdatedBy" type="xsd:string"/>
          <xsd:attribute name="lastUpdatedDate" type="xsd:NMTOKEN"/>
          <xsd:attribute name="lateFinish" type="xsd:NMTOKEN"/>
          <xsd:attribute name="lateStart" type="xsd:NMTOKEN"/>
          <xsd:attribute name="locked" type="xsd:string"/>
          <xsd:attribute name="methodID" type="xsd:string"/>
          <xsd:attribute name="milestone" type="xsd:string"/>
          <xsd:attribute name="name" type="xsd:string"/>
          <xsd:attribute name="outlineLevel" type="xsd:integer"/>
          <xsd:attribute name="percComp" type="xsd:decimal"/>
          <xsd:attribute name="priority" type="xsd:string"/>
          <xsd:attribute name="proxy" type="xsd:string"/>
          <xsd:attribute name="shortName" type="xsd:string"/>
          <xsd:attribute name="start" type="xsd:NMTOKEN"/>
          <xsd:attribute name="status" type="xsd:integer"/>
          <xsd:attribute name="summary" type="xsd:string"/>
          <xsd:attribute name="totalSlack" type="xsd:double"/>
          <xsd:attribute name="unplanned" type="xsd:string"/>
          <xsd:attribute name="userText1" type="xsd:string"/>
          <xsd:attribute name="userText2" type="xsd:string"/>
          <xsd:attribute name="userText3" type="xsd:string"/>
          <xsd:attribute name="userText4" type="xsd:string"/>
          <xsd:attribute name="userText5" type="xsd:string"/>
      We know how to fix it manually :
    The workaround is to :
    remove all "&apos;" in each attribute called "name" But we suppose we need to amend the XML schema with a proper change. And we don't know how to do this.
    The weird is that we've never noticed this error earlier on a 11gR1 DB... This error only occurs on our brand new 11.2.0.2
    I hope it's clear enough for your understanding.
    Do you have any advice ?
    Thanks in advance,
    Olivier

    What are your NLS Settings
    SQL> select *
      2  from nls_database_parameters
      3  where parameter in ('NLS_LANGUAGE', 'NLS_TERRITORY', 'NLS_CHARACTERSET');
    PARAMETER                                SQL> select *
      2  from nls_database_parameters
      3  where parameter in ('NLS_LANGUAGE', 'NLS_TERRITORY', 'NLS_CHARACTERSET');
    PARAMETER                    VALUE
    NLS_LANGUAGE              AMERICAN
    NLS_TERRITORY             AMERICA
    NLS_CHARACTERSET       AL32UTF8
    SQL>With my settings I do not see a problem with a cut-down test...
    SQL> spool testcase.log
    SQL> --
    SQL> connect sys/oracle as sysdba
    Connected.
    SQL> --
    SQL> set define on
    SQL> set timing on
    SQL> --
    SQL> def USERNAME = CG
    SQL> --
    SQL> def PASSWORD = &USERNAME
    SQL> --
    SQL> -- def XMLDIR = &1
    SQL> --
    SQL> def USER_TABLESPACE = USERS
    SQL> --
    SQL> def TEMP_TABLESPACE = TEMP
    SQL> --
    SQL> drop user &USERNAME cascade
      2  /
    old   1: drop user &USERNAME cascade
    new   1: drop user CG cascade
    User dropped.
    Elapsed: 00:00:01.72
    SQL> grant create any directory, drop any directory, connect, resource, alter session, create view to &USERNAME identified by &PASSWORD
      2  /
    old   1: grant create any directory, drop any directory, connect, resource, alter session, create view to &USERNAME identified by &PASSWORD
    new   1: grant create any directory, drop any directory, connect, resource, alter session, create view to CG identified by CG
    Grant succeeded.
    Elapsed: 00:00:00.01
    SQL> alter user &USERNAME default tablespace &USER_TABLESPACE temporary tablespace &TEMP_TABLESPACE
      2  /
    old   1: alter user &USERNAME default tablespace &USER_TABLESPACE temporary tablespace &TEMP_TABLESPACE
    new   1: alter user CG default tablespace USERS temporary tablespace TEMP
    User altered.
    Elapsed: 00:00:00.01
    SQL> connect &USERNAME/&PASSWORD
    Connected.
    SQL> --
    SQL> -- create or replace directory XMLDIR as '&XMLDIR'
    SQL> -- /
    SQL> var SCHEMAURL1    varchar2(256)
    SQL> VAR XMLSCHEMA1    CLOB;
    SQL> VAR INSTANCE1     CLOB;
    SQL> --
    SQL> set define off
    SQL> --
    SQL> alter session set events='31098 trace name context forever'
      2  /
    Session altered.
    Elapsed: 00:00:00.00
    SQL> begin
      2    :SCHEMAURL1:= 'http://xmlns.example.com/testcase.xsd';
      3    :XMLSCHEMA1 :=
      4  '<?xml version="1.0" encoding="UTF-8"?>
      5  <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xdb="http://xmlns.oracle.com/xdb" elementFormDefault="qualified" attributeFormDefault="unqualified">
      6     <xsd:element name="Task" xdb:defaultTable="TASK_TABLE">
      7      <xsd:complexType xdb:maintainDOM="false">
      8        <xsd:sequence>
      9          <xsd:element name="Notes" type="xsd:string" minOccurs="0"/>
    10        </xsd:sequence>
    11        <xsd:attribute name="UID"/>
    12        <xsd:attribute name="taskID" type="xsd:string"/>
    13        <xsd:attribute name="baseFinish" type="xsd:NMTOKEN"/>
    14        <xsd:attribute name="baseStart" type="xsd:NMTOKEN"/>
    15        <xsd:attribute name="baseTime" type="xsd:NMTOKEN"/>
    16        <xsd:attribute name="baselineDuration" type="xsd:decimal"/>
    17        <xsd:attribute name="category" type="xsd:string"/>
    18        <xsd:attribute name="critical" type="xsd:string"/>
    19        <xsd:attribute name="earlyFinish" type="xsd:NMTOKEN"/>
    20        <xsd:attribute name="earlyStart" type="xsd:NMTOKEN"/>
    21        <xsd:attribute name="finish" type="xsd:NMTOKEN"/>
    22        <xsd:attribute name="fixed" type="xsd:string"/>
    23        <xsd:attribute name="guidelines" type="xsd:string"/>
    24        <xsd:attribute name="key" type="xsd:string"/>
    25        <xsd:attribute name="lastUpdatedBy" type="xsd:string"/>
    26        <xsd:attribute name="lastUpdatedDate" type="xsd:NMTOKEN"/>
    27        <xsd:attribute name="lateFinish" type="xsd:NMTOKEN"/>
    28        <xsd:attribute name="lateStart" type="xsd:NMTOKEN"/>
    29        <xsd:attribute name="locked" type="xsd:string"/>
    30        <xsd:attribute name="methodID" type="xsd:string"/>
    31        <xsd:attribute name="milestone" type="xsd:string"/>
    32        <xsd:attribute name="name" type="xsd:string"/>
    33        <xsd:attribute name="outlineLevel" type="xsd:integer"/>
    34        <xsd:attribute name="percComp" type="xsd:decimal"/>
    35        <xsd:attribute name="priority" type="xsd:string"/>
    36        <xsd:attribute name="proxy" type="xsd:string"/>
    37        <xsd:attribute name="shortName" type="xsd:string"/>
    38        <xsd:attribute name="start" type="xsd:NMTOKEN"/>
    39        <xsd:attribute name="status" type="xsd:integer"/>
    40        <xsd:attribute name="summary" type="xsd:string"/>
    41        <xsd:attribute name="totalSlack" type="xsd:double"/>
    42        <xsd:attribute name="unplanned" type="xsd:string"/>
    43        <xsd:attribute name="userText1" type="xsd:string"/>
    44        <xsd:attribute name="userText2" type="xsd:string"/>
    45        <xsd:attribute name="userText3" type="xsd:string"/>
    46        <xsd:attribute name="userText4" type="xsd:string"/>
    47        <xsd:attribute name="userText5" type="xsd:string"/>
    48             </xsd:complexType>
    49     </xsd:element>
    50  </xsd:schema>';
    51    :INSTANCE1 :=
    52  '<Task
    53            UID="AJ\&apos;UF`2=_```)O0H;&quot;P!```?P```0" earlyStart="2010-04-20T08:00:00" category="Run"
    54            baseTime="2010-03-26T09:22:00" lateStart="2010-04-20T08:00:00" start="2010-04-20T08:00:00"
    55            proxy="false" earlyFinish="2010-05-12T17:00:00" lateFinish="2010-05-12T17:00:00"
    56            critical="true" status="2" shortName="OASIS 3.2" outlineLevel="4" baseFinish="2010-06-11T17:00:00"
    57            finish="2010-05-12T17:00:00" summary="false" baseStart="2010-05-17T08:00:00" baselineDuration="20.0"
    58            milestone="false" name="OASI 3.2.1 : Association d&apos;un plan A  un PFO" fixed="true"
    59            locked="false" key="false" percComp="1.0" totalSlack="0.0" unplanned="false"/>';
    60  end;
    61  /
    PL/SQL procedure successfully completed.
    Elapsed: 00:00:00.00
    SQL> set define on
    SQL> --
    SQL> declare
      2    V_XML_SCHEMA xmlType := XMLType(:XMLSCHEMA1);
      3  begin
      4    DBMS_XMLSCHEMA.registerSchema
      5    (
      6      SCHEMAURL        => :SCHEMAURL1,
      7      SCHEMADOC        => V_XML_SCHEMA,
      8      LOCAL            => TRUE,
      9      GENBEAN          => FALSE,
    10      GENTYPES         => TRUE,
    11      GENTABLES        => TRUE,
    12      ENABLEHIERARCHY => DBMS_XMLSCHEMA.ENABLE_HIERARCHY_NONE
    13    );
    14  end;
    15  /
    PL/SQL procedure successfully completed.
    Elapsed: 00:00:00.46
    SQL> desc TASK_TABLE
    Name                                      Null?    Type
    TABLE of SYS.XMLTYPE(XMLSchema "http://xmlns.example.com/testcase.xsd" Element "Task") STORAGE Object-relational TYPE "Task3632_T"
    SQL> --
    SQL> insert into TASK_TABLE values ( XMLTYPE(:INSTANCE1))
      2  /
    1 row created.
    Elapsed: 00:00:00.01
    SQL> commit
      2  /
    Commit complete.
    Elapsed: 00:00:00.09and am able to extract the value of the name attribute correct
    SQL> select XMLCAST(XMLQUERY('/Task/@name' passing OBJECT_VALUE returning content) as VARCHAR2(64))
      2    from TASK_TABLE
      3  /
    XMLCAST(XMLQUERY('/TASK/@NAME'PASSINGOBJECT_VALUERETURNINGCONTEN
    OASI 3.2.1 : Association d'un plan A  un PFO
    Elapsed: 00:00:00.00Could you try this simplied test in your database...
    Edited by: mdrake on Nov 30, 2010 8:36 PM

  • How to fix/control Purchase Order value as per delegation of powers?

    Can you please let me know the config steps required to fix a certain amount in a purchase order ( I mean to say one designated General Manager Purchase has got delegation of powers to issue purchase order for an amount of Rs. 10 lacs only). Is it possible in MM or in FI  to fix that amount of Rs.10 Lacs while creating Purchase Order  Kindly provide config steps in detail if available in MM or in FI?

    Three levels of release procedures have been configured in our company from purchase officer to finance and from there to the next higher level but not included any value/amount validation is included.   Is there any other option other than release procedure since I think meddling with the release procedure which is already working fine does not sound proper by our MM guys.

  • Infoset/query : how to fix a selection field value?

    I am writing queries with SQ01 and designing Infosets with SQ02.
    I have to restrict the results of a query to a specific plant.
    This can be done by adding the plant field in the selection screen of the query and by asking the users to fill always the same fixed  plant number when the query is started. Another solution is to filter the output.
    Isnt it possible to simplify this by forcing the plant number in the initialization of the Infoset values without display of this field in the selection screen? This value has to be initialized before the table containing the Plant field is joined to the other tables?

    Open SQ01 transaction,give your query name, click on infoset query button.
    On the right side of the screen you can define default values for those fields.
    If you want to disable the same field in selection creteria then open your infoset in SQ02
    transaction and click change, click on extras buttonin appllication tool bar,on right hand side
    in code tab you can add your logic.

  • Charts - More then 15 value in X axis

    Hi guys,
    I couldn't find how to show more then 15 value in X axis in 2D column chart. It only shows 15 values in default. I searched Chart xml but i couldnt find that which code block i need to change..
    Could you pls help me.?
    Thanks

    I just find out.
    There is an option to set Maximum Rows. It is on the series query editing page under the query text region..
    Thnks

  • How do I select a range of values in MySQL using a drop down menu

    Hi,
    I have a database of picture frames that have a value of
    frame width. I want to be able to select a range of values (i.e.
    .50" to 1") instead of each and every value (i.e. .50", .56", .76",
    etc.). I have a drop down menu (mnuWidth) with 5 ranges (see
    attached code).
    Each selection has a value from 1 to 5 indicating the range I
    want to search. In my results page I have let DW set up a recordset
    (see attached code)
    Can anyone tell me how to get this to choose a range instead
    of just the value entered by my menu?
    Thanks in advance.
    Tom

    I have been growing fond of lookup tables. Your lookup table would have your numbers in one column and the values you want returned in the next.
    Lookup table
    item
    Name
    1
    a
    2
    b
    3
    c
    4
    d
    5
    e
    6
    f
    7
    g
    8
    h
    9
    i
    Input table
    input
    Name
    1
    a
    B2 and copied down:
    LOOKUP(A2,lookup::$A$2:$A$11,lookup::$B$2:$B$11)
    Caution: Lookup will return the closest value so it it looks for "10" in this example it will return "i"
    If you don't want to see the error messages from blank inputs, wrap Lookup in IFERROR.
    hope this helps
    q

  • How to fix iframe issue that displays XML values instead of formatted XML in IE11

    The following sub.jsp file shows the formatted XML properly as expected when is opened directly:
    <% response.setContentType("text/xml"); %>
    <book>
    <chapter1>chapter 1</chapter1>
    <chapter2>chapter 2</chapter2>
    </book>
    IE11 shows the result as below which are colored and can be collapsed or un-collapsed:
    <book><chapter1>chapter 1</chapter1><chapter2>chapter 2</chapter2></book>
    But if the sub.jsp is opened in an iframe from the below main.html, it only shows the values of the XML in the iframe:
    <!DOCTYPE html>
    <html>
    <head>
    <meta charset="ISO-8859-1">
    <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
    <title>Insert title here</title>
    </head>
    <body>
    <iframe src="sub.jsp"></iframe>
    </body>
    </html>
    The iframe shows only the XML values, i.e., chapter 1 chapter 2 in IE11. This issue does not happen in IE8.
    I appreciate to your if you know how to address this issue.
    Regards, Amir

    The following sub.jsp file shows the formatted XML properly as expected when is opened directly:
    <% response.setContentType("text/xml"); %>
    <book>
    <chapter1>chapter 1</chapter1>
    <chapter2>chapter 2</chapter2>
    </book>
    IE11 shows the result as below which are colored and can be collapsed or un-collapsed:
    <book><chapter1>chapter 1</chapter1><chapter2>chapter 2</chapter2></book>
    But if the sub.jsp is opened in an iframe from the below main.html, it only shows the values of the XML in the iframe:
    <!DOCTYPE html>
    <html>
    <head>
    <meta charset="ISO-8859-1">
    <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
    <title>Insert title here</title>
    </head>
    <body>
    <iframe src="sub.jsp"></iframe>
    </body>
    </html>
    The iframe shows only the XML values, i.e., chapter 1 chapter 2 in IE11. This issue does not happen in IE8.
    I appreciate to your if you know how to address this issue.
    This issue is also posted at below link:
    https://social.msdn.microsoft.com/Forums/en-US/5b0692b4-d312-4797-9089-42c1029ac059/how-to-fix-iframe-issue-that-displays-xml-values-instead-of-formatted-xml-in-ie11?forum=iewebdevelopment
    Regards, Amir

  • How to retrieve data from domain(Value Range)  of the table

    hi
    how to retrieve data from domain(Value Range)  of the table
    thanks

    Hello,
    You can try using the FM: DOMAIN_VALUE_GET TB_DOMAINVALUES_GET.
    BR,
    Suhas
    Edited by: Suhas Saha on Mar 24, 2009 10:08 AM

  • How to fix up EEWC for EEWB

    HI folks,
    See my requirement is need to setup in "A new custom field on the Line Item to hold the predefined values like: Max, Mini and Average for a sales Contract in the "SAP CRM Standalone", in the sense I need to create one new custom field for sales contact transaction,
    So for that I tried to fix up EEWC (Maintain System Landscape) in the "sandbox" (SAP CRM Standalone) but every time I got an error like: User's System is not entered correctly, before go to EEWB we need to fix up EEWC right.
    SO could you please guide me how to add a new custom field for a transaction in SAP CRM, how to fix up EEWC and EEWB,
    This is a bit of high priority mark,
    Cheers.

    Hi Yeseb,
    This seems like the EEWC setting issue. Please check if you have maintained the following entries in the transaction 'EEWC'.
    Two records need to be maintained in this transaction. One entry for CRM (Self Reference) and another for ECC ( RFC reference)
    System: <Your CRM System ID>
    Description: <Some meaningful Description>
    Cust Sys: <X>
    Syst. Type: <CRM>
    Role: <Dev>
    Logical System: <Your CRM System ID>
    RFC Destination: <Leave Blank>
    Namespace: <Z>
    System: <Your ECC System ID>
    Description: <Some meaningful Description>
    Cust Sys: <X>
    Syst. Type: <OLTP>
    Role: <Dev>
    Logical System: <Your ECC System ID>
    RFC Destination: <Your ECC System ID>
    Namespace: <Z>
    To know your system ID and RFC destinations, check the transaction 'SM59' or contact the BASIS person in your team.
    Once you are done with maintaining these values, try to use the EEWB all over again in the same way as you mentioned.
    This should do. Please let me know.
    Regards,
    Kris.

  • How to fix payment term in purchase order

    Hi: Everybody
    can you tell me how to fix value of payment term when creating or change purchase order? that means this field value just copy from vendor master data. and users can not change this value.
    I try to research screen field control in SPRO. however, may standard sap not provide this function.
    thank you
    Henry

    Hi
    This can be acheived using the Field selction control.
    Check the field selction key for the PO document type.
    SPRO-> Materials Management-> Purchasing-> Purchase Order-> Define Document Types.
    Now maintain the filed selction key in
    SPRO-> Materials Management-> Purchasing-> Purchase Order-> Define Screen Layout at Document Level
    In the filed selction group Terms of delivery and payment, maintain the field selection option as display for the fields
    Terms of payment
    Terms of payt. (days, percent)
    For the field selection key ME21N & ME22 also maintain the same
    Thanks & Regards
    Kishore

  • How to fix Action Link Issue in Table and Pivot Table when used Section

    My OBIEE Version: OBIEE 11.1.1.6.5
    Issue Description: Action links (Navigate to BI Content) doesn't work in PIVOT TABLE or TABLE object when used Section area (one or more columns in Section area).
    If you want to recreate this issue please follow next steps:
    1.     First of all you have to create one analyse with min 3 columns (for example Time.“Calendar date“, Product.Product, „Base Fact“. Revenue -> from Sample Sales Lite )
    2.     From column properties -> Set value Action Link Interaction on some column for example Product.Product (choose Navigate to BI Content -> any created BI report )
    3.     Click Results Tab choose Pivot Table and assigned one dimension column to Section area
    4.     Click preview icon
    5.     When you click on action link nothing happens
    6.     If you drug and drop column from Section Area to Excluded, Table or Pivot table Area then Action Link works perfectly
    How to fix this issue?
    I'll be grateful for any help!

    This is Bug:15922681 - ACTION LINK NAVIGATE TO BI CONTENT DOES NOT WORK WITH ATTRIBUTE IN SECTION
    Upgrade to 11.1.1.6.6 will fix this issue.

  • How to make column range based on a column in Oracle BI 11g

    Hello everyone!
    I want to know, how to make column range from a column in oracle bi 11g.
    for example!
    I have a column amounts and I want to build on this with other values of quantity, other column range 1-9,10-49,50-99,100-249, 249 o more.
    regards!
    when I try to make the range I have error.
    Syntax error [nQSError: 26012] . (HY000)
    SQL Issued: SELECT CASE WHEN "CUBO_DEEE_TAB"."CANTIDAD" BETWEEN 1 AND 9 THEN 1 a 9 ELSE "CUBO_DEEE_TAB"."CANTIDAD" END FROM "DM_DEEE"
    Edited by: 964157 on 09-oct-2012 11:50

    You cannot add columns dynamically. But you can define a maximum number of numbers and then hide unused columns in your form useing SET_ITEM_PROPERTY(..,VISIBLE, PROPERTY_FALSE);

  • How to fix the Error -500 issue

    Hi,
    I have developed an application using EJB, struts & hybernet with Database mySQL. This application delopyed in IBM Websphere which is at our LAN, but the problem is every day I have to restart the application. If it is not restart the application it is showing the error
    *“Error 500: ServletException in '/Tiles/Template.jsp': ServletException in '/Tiles/Header.jsp': null* ”
    I unble to fix this issue until yet. Please help how to fix this issue.
    Thanks
    Raghu

    Try to use some hardcode values instead of dynamic values in your JSPs and then check whether the same problem occurs or not.
    Edited by: S.A.Khan on May 11, 2009 10:39 PM

  • MacBook Pro has slowed significantly...Ideas on how to fix?

    Problem description:
    My mac book has become very very slow, when I look in activity monitor i have close to 150 processes, trying to figure out how to fix things.
    EtreCheck version: 2.1.5 (108)
    Report generated December 25, 2014 at 6:02:49 PM EST
    Click the [Support] links for help with non-Apple products.
    Click the [Details] links for more information about that line.
    Click the [Adware] links for help removing adware.
    Hardware Information: ℹ️
        MacBook Pro (15-inch, Mid 2010) (Verified)
        MacBook Pro - model: MacBookPro6,2
        1 2.53 GHz Intel Core i5 CPU: 2-core
        8 GB RAM Upgradeable
            BANK 0/DIMM0
                4 GB DDR3 1067 MHz ok
            BANK 1/DIMM0
                4 GB DDR3 1067 MHz ok
        Bluetooth: Old - Handoff/Airdrop2 not supported
        Wireless:  en1: 802.11 a/b/g/n
    Video Information: ℹ️
        Intel HD Graphics - VRAM: 288 MB
            Color LCD 1440 x 900
        NVIDIA GeForce GT 330M - VRAM: 256 MB
    System Software: ℹ️
        OS X 10.10.1 (14B25) - Uptime: 0:9:17
    Disk Information: ℹ️
        Hitachi HTS545050B9SA02 disk0 : (500.11 GB)
            EFI (disk0s1) <not mounted> : 210 MB
            Recovery HD (disk0s3) <not mounted>  [Recovery]: 650 MB
            Macintosh HD (disk1) / : 498.88 GB (77.70 GB free)
                Core Storage: disk0s2 499.25 GB Online
        MATSHITADVD-R   UJ-898 disk2 : (13.6 MB)
            disk2s1 (disk2s1) <not mounted> : 12 MB
            disk2s1s1 (disk2s1s1) <not mounted> : 32 KB
            Endocrine (disk2s1s2) /Volumes/Endocrine : 11 MB (0 B free)
    USB Information: ℹ️
        Apple Internal Memory Card Reader
        Apple Inc. BRCM2070 Hub
            Apple Inc. Bluetooth USB Host Controller
        Apple Inc. Apple Internal Keyboard / Trackpad
        Apple Computer, Inc. IR Receiver
        Apple Inc. Built-in iSight
    Gatekeeper: ℹ️
        Mac App Store and identified developers
    Kernel Extensions: ℹ️
            /System/Library/Extensions
        [not loaded]    com.ZTE.driver.ZTEUSBCDCACMData (1.3.9) [Support]
        [not loaded]    com.aliph.driver.jstub (1.1.2 - SDK 10.7) [Support]
        [not loaded]    com.devguru.driver.PTUMWDrv (11.1.28) [Support]
        [not loaded]    com.lge.driver.LGEMobilSolutionFamily (1.5.4) [Support]
        [not loaded]    com.logmein.driver.LogMeInSoundDriver (1.0.0) [Support]
        [not loaded]    com.novatelwireless.kext.wwan (3.0.24) [Support]
        [not loaded]    com.pantech.driver.PTRayUSBFamily (1.2.8 - SDK 10.4) [Support]
        [loaded]    com.rim.driver.BlackBerryUSBDriverInt (0.0.68) [Support]
        [not loaded]    com.rim.driver.BlackBerryUSBDriverVSP (0.0.68) [Support]
        [not loaded]    com.seagate.driver.PowSecDriverCore (5.0.1) [Support]
        [not loaded]    com.sierrawireless.driver.SierraDevSupport (2.0.2) [Support]
        [not loaded]    com.sierrawireless.driver.SierraFSCSupport (2.0.2) [Support]
        [not loaded]    com.sierrawireless.driver.SierraFSRSupport (2.0.2) [Support]
        [not loaded]    com.sierrawireless.driver.SierraHSRSupport (2.0.2) [Support]
        [not loaded]    com.smithmicro.driver.SMSIWirelessModem (3.2.7) [Support]
            /System/Library/Extensions/LGEMobileSolutionFamily.kext/Contents/PlugIns
        [not loaded]    com.lge.driver.LGELTEBus (1.5.4) [Support]
        [not loaded]    com.lge.driver.LGELTEMdmControl (1.5.4) [Support]
        [not loaded]    com.lge.driver.LGELTEMdmData (1.5.4) [Support]
        [not loaded]    com.lge.driver.LGELTENicControl (1.5.4) [Support]
        [not loaded]    com.lge.driver.LGELTENicData (1.5.4) [Support]
            /System/Library/Extensions/NovatelWirelessWWAN.kext/Contents/PlugIns
        [not loaded]    com.NovatelWireless.driver.NovatelWirelessUSBCDCECMControl (3.0.24) [Support]
        [not loaded]    com.NovatelWireless.driver.NovatelWirelessUSBCDCECMData (3.0.24) [Support]
        [not loaded]    com.novatelwireless.driver.3G (3.0.24) [Support]
        [not loaded]    com.novatelwireless.driver.3GData (3.0.24) [Support]
        [not loaded]    com.novatelwireless.driver.DisableAutoInstall (3.0.24) [Support]
        [not loaded]    com.novatelwireless.driver.NWVBE (3.0.24) [Support]
            /System/Library/Extensions/PTRayUSBFamily.kext/Contents/PlugIns
        [not loaded]    com.pantech.driver.PantechBus (1.2.8 - SDK 10.4) [Support]
        [not loaded]    com.pantech.driver.PantechCDFree (1.2.8 - SDK 10.4) [Support]
        [not loaded]    com.pantech.driver.PantechCm (1.2.8 - SDK 10.4) [Support]
        [not loaded]    com.pantech.driver.PantechMdmControl (1.2.8 - SDK 10.4) [Support]
        [not loaded]    com.pantech.driver.PantechMdmData (1.2.8 - SDK 10.4) [Support]
        [not loaded]    com.pantech.driver.PantechSer (1.2.8 - SDK 10.4) [Support]
        [not loaded]    com.pantech.driver.QmiDriver (1.2.8 - SDK 10.4) [Support]
            /System/Library/Extensions/PTUMWDrv.kext/Contents/PlugIns
        [not loaded]    com.devguru.driver.PTUMWCDFree (11.1.28) [Support]
        [not loaded]    com.devguru.driver.PTUMWCSP (11.1.28) [Support]
        [not loaded]    com.devguru.driver.PTUMWDIAG (11.1.28) [Support]
        [not loaded]    com.devguru.driver.PTUMWMdmControl (11.1.28) [Support]
        [not loaded]    com.devguru.driver.PTUMWMdmData (11.1.28) [Support]
        [not loaded]    com.devguru.driver.PTUMWUSBMergeNub (11.1.28) [Support]
            /System/Library/Extensions/SMSIWirelessModem.kext/Contents/PlugIns
        [not loaded]    com.smithmicro.driver.SMSIWirelessCDC (3.2.7) [Support]
        [not loaded]    com.smithmicro.driver.SMSIWirelessSerial (3.2.7) [Support]
            /System/Library/Extensions/Seagate Storage Driver.kext/Contents/PlugIns
        [not loaded]    com.seagate.driver.PowSecLeafDriver_10_4 (5.0.1) [Support]
        [not loaded]    com.seagate.driver.PowSecLeafDriver_10_5 (5.0.1) [Support]
        [not loaded]    com.seagate.driver.SeagateDriveIcons (5.0.1) [Support]
    Startup Items: ℹ️
        ProTec6: Path: /Library/StartupItems/ProTec6
        ProTec6b: Path: /Library/StartupItems/ProTec6b
        Startup items are obsolete in OS X Yosemite
    Problem System Launch Agents: ℹ️
        [loaded]    com.paragon.NTFS.auth.plist [Support]
    Launch Agents: ℹ️
        [loaded]    com.examsoft.softest.plist [Support]
        [loaded]    com.google.keystone.agent.plist [Support]
        [loaded]    com.oracle.java.Java-Updater.plist [Support]
        [running]    com.seagate.SeagateStorageGauge.plist [Support]
    Launch Daemons: ℹ️
        [running]    com.examsoft.softest.service.plist [Support]
        [running]    com.zeobit.MacKeeper.plugin.AntiTheft.daemon.plist [Support]
    User Launch Agents: ℹ️
        [loaded]    com.koingosw.MacCleanse4Helper.Reminder.plist [Support]
        [loaded]    com.koingosw.MacCleanse4Helper.TrashWatcher.plist [Support]
        [running]    com.zeobit.MacKeeper.Helper.plist [Support]
    User Login Items: ℹ️
        Launch Nikon Message Center 2    UNKNOWN (missing value)
    Internet Plug-ins: ℹ️
        DirectorShockwave: Version: 12.0.0r112 - SDK 10.6 [Support]
        o1dbrowserplugin: Version: 5.38.6.0 - SDK 10.8 [Support]
        LogMeInSafari64: Version: 1.0.660 [Support]
        Google Earth Web Plug-in: Version: 6.2 [Support]
        Default Browser: Version: 600 - SDK 10.10
        Flip4Mac WMV Plugin: Version: 2.4.2.4 [Support]
        AdobePDFViewerNPAPI: Version: 11.0.09 - SDK 10.6 [Support]
        FlashPlayer-10.6: Version: 15.0.0.246 - SDK 10.6 [Support]
        LogMeIn: Version: 1.0.660 [Support]
        Flash Player: Version: 15.0.0.246 - SDK 10.6 Mismatch! Adobe recommends 16.0.0.235
        iPhotoPhotocast: Version: 7.0
        googletalkbrowserplugin: Version: 5.38.6.0 - SDK 10.8 [Support]
        LogMeInSafari32: Version: 1.0.660 [Support]
        AdobePDFViewer: Version: 11.0.09 - SDK 10.6 [Support]
        QuickTime Plugin: Version: 7.7.3
        SharePointBrowserPlugin: Version: 14.4.4 - SDK 10.6 [Support]
        JavaAppletPlugin: Version: Java 7 Update 51 Check version
    3rd Party Preference Panes: ℹ️
        Flash Player  [Support]
        Flip4Mac WMV  [Support]
        Java  [Support]
        Paragon NTFS for Mac ® OS X  [Support]
        Tuxera NTFS  [Support]
    Time Machine: ℹ️
        Skip System Files: NO
        Mobile backups: ON
        Auto backup: YES
        Volumes being backed up:
            Macintosh HD: Disk size: 498.88 GB Disk used: 421.18 GB
        Destinations:
            Untitled [Local]
            Total size: 0 B
            Total number of backups: 0
            Oldest backup: -
            Last backup: -
            Size of backup disk: Too small
                Backup size 0 B < (Disk used 421.18 GB X 3)
    Top Processes by CPU: ℹ️
             4%    firefox
             4%    WindowServer
             1%    mds
             0%    ocspd
             0%    fontd
    Top Processes by Memory: ℹ️
        326 MB    firefox
        172 MB    mds_stores
        146 MB    Finder
        112 MB    WindowServer
        77 MB    MacKeeper Helper
    Virtual Memory Information: ℹ️
        3.16 GB    Free RAM
        3.68 GB    Active RAM
        612 MB    Inactive RAM
        1.14 GB    Wired RAM
        1.24 GB    Page-ins
        0 B    Page-outs
    Diagnostics Information: ℹ️
        Dec 25, 2014, 05:54:10 PM    Self test - passed

    Hello garycamp88,
    Thanks for using Apple Support Communities.
    To troubleshoot this issue where your Mac is running slowly, please see the information in the article linked to below.
    OS X Yosemite: If your Mac runs slowly
    Take care,
    Alex H.

Maybe you are looking for

  • How can I PIMP my Mail app? Any cool stuff I can add? Any customizable stuf

    Hey Folks. Just wondering what type of things I can do to my Mail app to PIMP it out! Anything you guys would recommend such as customize some stuff, any cool add ons? Any new visual layouts and stuff like that? Let me know plz. Thanks. -Joey

  • Photoshop CS 4 Print problem with Canon copiers via IP

    Try to print from Photoshop CS 4 to two Canon color copiers and we get this error message, "Before you can perform printer-related tasks such as page setup or printing a document, you need to install a printer" Fifteen Macs: Mac Pro towers, MacBook P

  • Payment Terms for Credit memos

    Hi, Please explain to me what is the significance of payment terms in credit memo. I understand that credit memo are sort of returns (sales returns or purchase returns). I am able to understand the payment terms for an invoice (which would determine

  • Question on Time Machine error log

    I have a program (Time Machine Error Log) that keeps track of the message log entries that occurr after you do a Time Machine backup. I am getting two messages each time Time Machine completes a backup. Here are the two message from the last log: Jan

  • Export and Import of Configuration Data

    Hi All, I have created a number of custom properties, structures, groups, renderers, layout sets etc and would like to move them from Dev to Test system. I have found the following in the help doco: "Export and Import of Configuration Data" http://he