More than six Std. Value Key

Greetings,........
                  how to define more than six value under one standered valu key.

Hi,
Routing
0010   Workcenter (XYZ)                                Control key PP01
0020   Dummy Work Center (XYZDummy)       Control key PP01
Now for the XYZ workcenter you will have 6 standard values  and assigned to to the first Operation.
Remaining Standard values say 7, 8 and 9 will be assigned to the Std. Value key for workcenter XYZ Dummy.
Now create Order with this Routing, confirm both the operations Values will be captured as intended.
Hope this clarifies..
Regards,
Siva

Similar Messages

  • Can we give the more than 2 decimals for key figure

    Hi,
    can we give the more than 2 decimals for key figure while entering the manuall planning.
    Ex:There is keyfigure called 0DEBIT which is having values as 1000.00 USD, 137688.00 USD.which are displaying bydefault whenever we entered the values while planing or File.
    what Customer is asking us 0DEBIT keyfigure values should be display 1000.0000 USD, 137688.0000 USD. ( added two more decimals for keyfigure value).
    Can we maintained decimals more than two.........?
    Thanks,
    Ven
    Edited by: vanarasi venkat on Apr 13, 2009 4:35 AM

    Hi,
    Though you can specify the no of decimal places for each keyfigure in the 2nd screen of layout builder but say if you have entered scaling factor as 1 and decimal places as 4 and user enters value as 15.2546, then in the cube it will be stored as 15.25 because physically the keyfigure can store values only upto two decimal places, so it will round up the figure to two decimal places. But, if you specify the scaling factor as 2 and decimal places as 4 than value 15.2546 will be stored in the cube as 1525.46.
    If above explanation doesn't help you i finding out the solution for your requirement than you have to either change the number of decimal places in the keyfigure or tell user that technically it's not possible in BPS.
    Regards,
    Deepti

  • Depreciation calculated on credit memo is more than its own value

    Hi,
    We have noticed that the depreciation calculated on credit memo is more than its own values.
    please refer the screen shot below:
    24.05.2010     108,044.64     120     Goods receipt     108,044.64-     0     USD
    24.05.2010     108,044.64     120     Goods receipt     108,044.64-     0     USD
    24.05.2010     108,044.64     120     Goods receipt     108,044.64-     0     USD
    09.06.2010     128,064.75     120     Goods receipt     128,064.75-     0     USD
    22.06.2010     110,601.38     120     Goods receipt     110,601.38-     0     USD
    22.06.2010     7,346.35-     105     Credit memo in acquis. year45,337.47     0     USD
    22.06.2010     7,346.35     100     External asset acquisition     45,337.47-     0     USD
    Please let us know the possible reasons...
    Thanks a lot..

    Hi,
    Here are the details:
    Depreciation start date:21.11.2004
    Operating readiness: 23.12.2004
    Asset value date: 16.08.2010
    useful life: 01 period
    Kindly tell me know in case you need further info
    Thanks..
    Edited by: FI User on Oct 21, 2010 9:47 AM

  • Function with more than one return value

    Hi
    Please let me know how to write a function with more than one return value and in what scenario should we go for this option.
    Thank you

    user12540019 wrote:
    Please let me know how to write a function with more than one return value and in what scenario should we go for this option.Yes. And the following is the correct approach (using OUT variables is not!) - you deal with the multiple values as a data structure. This example uses an custom (user-defined) SQL data type as the structure.
    SQL> create or replace type TXYcoord is object(
      2          x       number,                  
      3          y       number                   
      4  );                                       
      5  /                                        
    Type created.
    SQL>
    SQL>
    SQL> create or replace function fooCoordinate( someParam number ) return TXYCoord is
      2  begin                                                                         
      3          -- doing some kind of calculation using input parameters              
      4          --  etc..
      5
      6          -- returning the multiple return values as a proper data structure
      7          return(
      8                  TXYcoord( 0, 0 )
      9          );
    10  end;
    11  /
    Function created.
    SQL>
    SQL> -- selecting the data structure
    SQL> select
      2          sysdate,
      3          fooCoordinate(123)      as XY
      4  from       dual;
    SYSDATE             XY(X, Y)
    2010-02-01 08:49:23 TXYCOORD(0, 0)
    SQL>
    SQL> -- selecting the properties/fields of the data structure
    SQL> select
      2          sysdate,
      3          treat( fooCoordinate(123) as TXYcoord).x        as X,
      4          treat( fooCoordinate(123) as TXYcoord).y        as Y
      5  from       dual;
    SYSDATE                      X          Y
    2010-02-01 08:49:23          0          0
    SQL>

  • Sending more than one name value pair via ajaxRequest.add()

    Hi all,
    I'm implementing AJAX in Oracle Application Express to perform DML operations on a table. I need to send more than one name value pair via the ajaxRequest object. Can someone guide me how to achieve this? Say for example i need to send 2 values(need to send 2 form elements when submit button is clicked) P3_region and P3_scope. i tried the following methods.
    Method 1:
    ======
    ajaxRequest.add('P3_region',document.getElementById('P3_region').value);
    ajaxRequest.add('P3_scope',document.getElementById('P3_scope').value);
    Method 2:
    ======
    ajaxRequest.add('P3_region',document.getElementById('P3_region').value,'P3_scope',document.getElementById('P3_scope').value);
    Neither of them is fruitful. Can someone guide me how to achieve this?
    Regards,
    Balaji Radhakrishnan.

    Hi Roel,
    The javascript goes like this.
    <script language="JavaScript" type="text/javascript">
    function getElement1()
    document.getElementById('P3_Element1').value = '';
    var ajaxRequest = new htmldb_Get(null,&APP_ID.,'APPLICATION_PROCESS=Element1Process',0);
    ajaxRequest.add('P3_Element2',document.getElementById('P3_Element2').value);
    ajaxRequest.add('P3_Element3',document.getElementById('P3_Element3').value);
    ajaxRequest.add('P3_Element4',document.getElementById('P3_Element4').value);
    ajaxRequest.add('P3_Element5',document.getElementById('P3_Element5').value);
    ajaxRequest.add('P3_Element6',document.getElementById('P3_Element6').value);
    ajaxResult = ajaxRequest.get();
    if(ajaxResult)
    var wsArray = ajaxResult.split("~");
    document.getElementById('P3_Element1').value = wsArray[0];
    </script>
    The application Process goes like this..
    declare
    v_Element1 VARCHAR2(60);
    begin
    select distinct Element1 into v_Element1 from TableA where Element2=:P3_Element2 AND Element3=:P3_Element3 AND Element4=:P3_Element4 AND Element5=:P3_Element5 AND Element6=:P3_Element6;
    htp.prn(v_Element1);
    exception
    when others then
    v_Element1 := 'Invalid Header Combination';
    htp.prn(v_Element1);
    end;
    The requirement goes like this..
    When i give Element2, Element3,Element4,Element5,Element6 as input in the form page the Element1 should get displayed automatically without refreshing the page. But when i use the above javascript and application process i get the Element1 loaded with some html scripts. I call the javascript using onChange() function.
    Regards,
    Balaji Radhakrishnan.

  • Can't press more than 2 directional arrows keys at the same time

    I just noticed that in the Macbook Pro Retina that I bought recently there's no way to press more than 2 arrow keys at the same time, or at least the system does not seem to handle it.
    All other keys can be pressed at the same time without any problems, so I think that the problem affects only the arrow keys.
    I'm surprised that in a modern computer can exist this type of limitation
    I think Apple should update the system to allow this - car gamers like me will thanks or feel less disappointed...
    Any help would be appreciated!
    Thanks
    GM

    @kalos
    Uninstalled everything PA, also uninstalled mangler which was the only thing that depended on PA. It didn't work anyway.
    No pulseaudio --kill command so I couldn't run.
    Checked systemd journal and there is no mention of PA this time.
    Checked top, and grepped ps aux and there is no PA there either.
    I also rebooted the machine completely just to make sure. However VLC and HTML5 have the same incompatibilities.
    _ vlc Videos/anime/fmab/01.mp4
    VLC media player 2.1.5 Rincewind (revision 2.1.4-49-gdab6cb5)
    [0x1bc30f8] pulse audio output error: PulseAudio server connection failure: Connection refused
    [0x1af4118] main libvlc: Running vlc with the default interface. Use 'cvlc' to use vlc without interface.
    Fontconfig warning: FcPattern object size does not accept value "0"
    Fontconfig warning: FcPattern object size does not accept value "0"
    Fontconfig warning: FcPattern object size does not accept value "0"
    Fontconfig warning: FcPattern object size does not accept value "0"
    [0x7fb604001248] main vout display error: Failed to resize display
    But the video and audio did work until I ran some HTML5 video, after which the audio worked, and then I opened it again and it didn't work...
    @nomorewindows
    I see. That's too bad. At least we're not alone.
    Last edited by Greduan (2014-11-14 01:34:29)

  • More than 1,000 values in a picklist

    Hello
    Does any one has a solution or a workaround? In release 15 I used to add more than 1000 values to a picklist throught import (csv) but now in release 16 this bug has been corrected, I tried also throught web service and now it is not possible. The problem here is that I need to add more than 1000 values to a picklist (town) and use it in a cascading picklist, I'm not able to use dynamic layouts because they are used for anther field that it is really important too.
    I need this because in Mexico we have state and municipality (city hall, town); each state has certains towns and this field could not be captured by the user because it is a key field.
    Can you help me please? Any suggestion you might have please let me know.
    Regards Catalina Valadez

    This is a helpful answer but I have a doubt, example picklist 1 "country" = Mexico, picklist 2 "state"= DF, NUEVO LEON, CAMPECHE, SONORA, SINALOA ....... but with customobject it wont be possible to filter de Municipality in order to appears just the town's related with Nuevo Leon, or just the town's releated with Campeche.
    Regards Catalina

  • I need more than 255 charater value return from the table control screen.

    Hi guys,
    I used this function module to get the dynamic table control value changes, but it export me back only 255 character value.
    because the 'DYNPFIELDS' internal table structure hold only 255 character. kindly help me in this reg to get more than 255 character length.
    or any other solution.
      CALL FUNCTION 'DYNP_VALUES_READ'
        EXPORTING
          DYNAME     = '/A1SSPC/USR_RALG_FILL'
          DYNUMB     = '1000'
        TABLES
          DYNPFIELDS = TBDYNPFIELDS.
    kindly provide me if you have any solution.
    reg,
    hari

    Hi,
    Try using the Text Editor for more info go throught the Control Examples
    Utilities--> Examples -->  Control Examples in SE38
    Regards
    Ramchander Rao.K

  • How to retrive more than one row value from table

    hi,
      I had create one table if i entered value in more than one row, the second row override the first row value and while printing it in flat file i am getting the second value entered twice.
      i created one context for each column.
        plz provide me a solution..........
           very urgent..........
            Regards,
            Kiruthika

    Hi,
    Create seperate element for each row and then set values.
    for(int i=0;i<4;i++)
    IPrivate<view name>.I<node name>Element element = wdContext.node<node name>().create<node name>Element();
    wdContext.node<node name>().addElement(element);
    element.set<Att>();
    to retrive:
    int s=wdContext.node<node name>.size();
    for(int j=0;j<s;J++){
    wdcontext.node<nodename>.getnodeelementAt(j).getAttribute();
    Check this link about tables
    https://www.sdn.sap.com/irj/sdn/downloaditem?rid=/library/uuid/bad3e990-0201-0010-3985-fa0936d901b4
    Regards,
    Vijayakhanna Raman

  • System is allowing to post the Adv Pmt amount more than the PO Value

    Hi Experts,
    I am FICO Consultant. I facing one problem regarding Advance Payment. We have a process to for making advance payment with reference to Purchase Order and Purchase Order Line Item. But system is allowing to post the advance payment amount more than the Purchase Order Value. I want to prevent this to happen. The system should not allow to make advance payment more than the Purchase Order value.
    Please help me on this issue.
    Thanks in Advance and Regards,
    Alkesh Mistry

    HI
    Please create the Advance payment request with PO number using sp gl indicator as F and then make the advance payment using the request.
    Regds
    Rajiv

  • How to set a process with more than 10 item values to be changed?

    I am trying to make a "default" button where it resets the Column checkboxes to its original state but I have more than 10 iems and I cant fill them all in the 10 slots that they have. Anyone have any ideas? thanks.
    For example I have columns 1-20 and I want something like col 1-5 to be checked and col 6-20 to be unchecked as default.

    I tried to use process where i declare the new values i.e. ID=1/true, Name=0/false etc. and still nothing happens, anyone have any suggestions?

  • How To Get more than one Return Values in LOV ADF

    In ADF LOV, I can get only one return value;
    How can I Get more than one values like in Oracle Form?
    SomeOne can help me?
    Thanks

    you may add more <set> tag like the following:
    <event name="lovSelect">
    <set property="inputValue" value="${bindings.Id.inputValue}" target="${data.work_workBusinessViewUIModel.buyCompanyId}"/>
    </event>
    or you can implement your Action

  • I Can't Download my messages more than six months

    I need help i Can't download all my messages into my friend since more than one year Please tell me how to do this I need to Download them thanks if anyone can help me Skype Manager

    Hi, kunal520. What's the exact error message & which connection are you using? Cellular data or WiFi? If you're using a cellular data, try to use a WiFi connection instead. Make sure that you have a working data connection by accessing the internet using your phone browser. You can also try to reboot the phone to refresh your phone's software. Press and hold the volume down and power keys until the phone vibrates.
    Aside from the troubleshooting steps we've provided, this article may also help you with your concern:
    http://www.windowsphone.com/en-US/how-to/wp8/apps/download-apps-and-games-faq
    Keep us posted.

  • Histograms on more than 32 character values

    I am having histogram on one of my varchar2(80) column. 30% of the records in the column have first 40 chars same because of which it is creating histograms for 80 buckets with similar endpoints and generating large cardinality though the actual resultset cardinality is only 2/3 records. Because of large cardinality query is going for FTS when searching for these strings and index scan when searching for values with 10 char string.
    In actual cardinality of the column is very low but optimizer is calculating it high because of incorrect histograms.Any idea on how to deal with histograms with more than 32 chars columns with first 32 chars similar or I should not create histograms on this column?

    Do not use histograms unless you need them. Is the data distribution for that column that far from uniform? You can run this simple query to see if you need histograms:
    select col , count(*)
    from tab
    group by col
    order by 2 descIf the difference in counts is not that great (you understand that this is an informal method), then you probably do not need histograms.
    Or you can try to calculate statistics, such as skew, to see if you need histograms.
    In case you need histograms:
    ->I do not think there is anything you can do for the 30% of the records that share the same first 40 characters. You can solve the issue by changing your table structure and queries, but that’s another topic.
    ->You might be able to create your own custom (fake) histogram about the other 70% of your data. Jonathan Lewis has a number of great posts about that - http://jonathanlewis.wordpress.com/2010/03/23/fake-histograms/
    Iordan Iotzov
    http://iiotzov.wordpress.com/

  • ALV Grid - more than six values in a dropdown-field?

    Hi,
    I have realised an alv grid with several fields that contain a dropdown-field as valuehelp.
    Although the dropdown-table has e.g. 20 entries there are shown only six entries on the alv grid. The user has to scroll through the values to choose another one. Is it possible to increase the number of shown entries of a dropdown-field on an alv grid?
    Thanks for help.
    Regards,
    Sven Keller

    Hi
    you can specify the output length of a column in the fieldcatalog by specifying this filed in your fieldcatalog slis_fieldcat-outputlen .
    And also one parameter i.e. slis_layout_alv-colwidth_optimize ,if you put this parameter as 'X' then it will optimize the column width depending on the content of your column.
    You need to set the OUTPUTLEN field in the feildcat, the field catalog is then passed to the ALV function call, or method call.

Maybe you are looking for

  • Error on Release to Accounting

    Hello Could anybody help me? When I access to transaction VF02, and try to Release to accounting a billing document, it shows me the error: Item category 40100 not allowed in accounting transaction 0200/0001 Does anybody know why? Thank you in advanc

  • Mac slow down

    My late 2009 duel core Imac after upgrading to Lion has become slow and sluggish. The hard drive works over time and i really am fearful that it will cause it to prematurely fail. I have search over these forums and see that this has been addressed m

  • What is the correct Valuation Class?

    Hi, Can we find out most appropriate Valuation class by seeing material master data? This is for the finished Product. Since due to some integration this product has added, Now we have to suggest Appropriate Valuation class and do configuration for a

  • Off Bridge Mode Question

    Trying to determine how my Airport Extreme went into off-bridge mode....noticed my A.E. was blinking the amber light...after determining it was not an update alert, I unplugged the box from the socket, and detached all wires from the back of it...rep

  • Dual Audio Outs? / HDMI and RCA Analog at the same time?

    I am trying to figure out if the Apple TV supports dual audio output. My Onkyo receiver supports dual-room/dual-source audio (powered and line-level stereo audio output for 2nd room). The problem is it can only accept an analog source for the second