Order by to_char(month) for a chart

Hi There,
I was using the following query to display a chart item in APEX. I was wondering what would be the best way to order by the output so that the months show up in an ordered way.
(code)
SELECT NULL
, TO_CHAR(MA.DATE_LOGGED,'Mon')
, COUNT(*) Parts
FROM
table1 A ma, table2 el
WHERE
MA.ERROR = EL.ERROR
AND MA.ERROR IS NOT NULL
AND EL.ERROR_TYPE = 'P'
GROUP BY TO_CHAR(MA.DATE_LOGGED,'Mon')
ORDER BY 2
I am on 11g.
Thanks,
Sun                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

Hope below helps:
create table testval(col1 date,col2 varchar(10),col3 varchar2(1));
SET DEFINE OFF;
Insert into TESTVAL
   (COL1, COL2, COL3)
Values
   (TO_DATE('06/01/2012 00:00:00', 'MM/DD/YYYY HH24:MI:SS'), 'err1', 'P');
Insert into TESTVAL
   (COL1, COL2, COL3)
Values
   (TO_DATE('07/02/2012 00:00:00', 'MM/DD/YYYY HH24:MI:SS'), 'err1', 'P');
Insert into TESTVAL
   (COL1, COL2, COL3)
Values
   (TO_DATE('08/01/2012 00:00:00', 'MM/DD/YYYY HH24:MI:SS'), 'err1', 'P');
Insert into TESTVAL
   (COL1, COL2, COL3)
Values
   (TO_DATE('01/01/2012 00:00:00', 'MM/DD/YYYY HH24:MI:SS'), 'err1', 'P');
Insert into TESTVAL
   (COL1, COL2, COL3)
Values
   (TO_DATE('02/01/2012 00:00:00', 'MM/DD/YYYY HH24:MI:SS'), 'err1', 'P');
Insert into TESTVAL
   (COL1, COL2, COL3)
Values
   (TO_DATE('03/01/2012 00:00:00', 'MM/DD/YYYY HH24:MI:SS'), 'err1', 'P');
Insert into TESTVAL
   (COL1, COL2, COL3)
Values
   (TO_DATE('04/01/2012 00:00:00', 'MM/DD/YYYY HH24:MI:SS'), 'err1', 'P');
Insert into TESTVAL
   (COL1, COL2, COL3)
Values
   (TO_DATE('05/01/2012 00:00:00', 'MM/DD/YYYY HH24:MI:SS'), 'err1', 'P');
Insert into TESTVAL
   (COL1, COL2, COL3)
Values
   (TO_DATE('06/03/2012 00:00:00', 'MM/DD/YYYY HH24:MI:SS'), 'err1', 'P');
COMMIT;
select col1,to_char(col1,'mon'),col2,col3 from testval
order by to_char(col1,'mm') ;
TO_CHAR(COL1,'MON')|COL2|COL3
jan|err1|P
feb|err1|P
mar|err1|P
apr|err1|P
may|err1|P
jun|err1|P
jun|err1|P
jul|err1|P
aug|err1|PRegards,
Vijay.

Similar Messages

  • When I pre ordered my iphone 6 i was told I was going to get an additional 1 gig of data per month for a year.  It even shows it on the receipt i received with the phone.  When will I see that reflected on my account.  I have had my new phone for a week a

    When I pre ordered my iphone 6 i was told I was going to get an additional 1 gig of data per month for a year.  It even shows it on the receipt i received with the phone.  When will I see that reflected on my account.  I have had my new phone for a week and used tons more data than usual and am hoping that will save me this month.

    concretedonkey, I'm glad you were able to take advantage of this offer when you ordered your new iPhone 6. I can certainly review your account to ensure this was added for you. Please reply to the direct message I have sent you.
    AndreaS_VZW
    Follow us on Twitter @VZWSupport

  • Two renewal orders and charges showing every month for one account and same renewal package, WHY

    Why am I charged twice with two different orders every month for one package of 800 mins. Are they giving me 1600 minutes! I need only 800 minutes please, so please refund these extra order charges please. I just noticed this thing month today and on checking order history find that same practice has been followed for all my previous months transcations!

    Hello and welcome to the Skype Community.
    The duplicate charge has been reversed and the funds will be returned to you.

  • HT5714 If a song is available for download in a pre order will it count towards single chart counts?

    If a song is available for download in a pre order will it count towards single chart counts?

    Apple has not released any information as to how any of their charts and features are calculated, so no one here will know.
    Regards.

  • I just purchased a month-to-month subscription to Adobe Acrobat. But my computer has rejected the program three times so I'd like to cancel that order and exchange it for the Adobe Export program. I just need to edit some PDFs that have pencil marks on th

    I just purchased a month-to-month subscription to Adobe Acrobat. But my computer has rejected the program three times so I'd like to cancel that order and exchange it for the Adobe Export program. I just need to edit some PDFs that have pencil marks on them.

    Hi Susan,
    Please let me know what exact error you get while editing PDFs as I might be able to help you.
    If you still wantto cancel your Acrobat monthly subscription and get it exchanged with Adobe ExportPDF online service, then visit:
    Contact Customer Care
    Regards,
    Anubha

  • Display Month verbiage on chart but sort by month number

    Hello,
    I have inserted a simple bar chart (values by month for a single year) and my goal is to get the data values to group by month.
    I found that I can achieve this by using a formula that extracts the month from my Date/TIme field MONTH({Command.OB_DELIVERY_DATE}).
    This works OK and displays months as 1, 2, 3,  etc. on my chart), but I want to display the month text instead (Jan, Feb, Mar)
    I tried a second variable:  ToText({Command.OB_DELIVERY_DATE},'MMMM')
    This works in displaying the verbiage of the months, however, the problem is that it groups the months on my chart alphabetically now (April is now my 1st month instead of January).
    What is the trick to displaying month verbiage on my chart, but still sorting these months in their proper numerical order?
    Many Thanks!

    Hi Dave,
    Try this please:
    1) Insert a Crosstab and place it on the Report Header. Use the Delivery Date field as the row and add the measure field as the Summary Field with the right Sum function
    2) Highlight the Delivery Date field > Group Options > set it to print 'For Each Mointh'
    3) While in the Crosstab Expert highlight the Delivery Date field > Click Group Options > Options  tab > check the option 'Customize Group Name field' > Select 'use formula as group name' and click the formula button beside. Use this code:
    ToText({Command.OB_DELIVERY_DATE},'MMMM')
    4) Right-click the Crosstab and select Insert Chart. Choose the right Chart Type
    5) Suppress the Section that holds the Crosstab
    Hope this helps.
    -Abhilash

  • Generating the output in Ascending order of Date (Month-YY)

    Hi I have a query as below...
    I want the result to be in Ascending order of date in the form of (Month-YY)
    but i couled get the desired order
    the result is next to the query...
    SELECT TO_CHAR (TRUNC (TO_DATE (poh_date_d), 'MON'), 'MONTH') || ' - ' || TO_CHAR (TO_DATE (poh_date_d), 'YY'), class_code_c, COUNT (coach_no_c)
    FROM mecd_coach_m
    WHERE poh_date_d BETWEEN TO_DATE ('01-JAN-07') AND TO_DATE (SYSDATE)
    AND poh_stn_c = 'MTN'
    GROUP BY TO_CHAR (TRUNC (TO_DATE (poh_date_d), 'MON'), 'MONTH') || ' - ' || TO_CHAR (TO_DATE (poh_date_d), 'YY'), class_code_c
    ORDER BY TO_CHAR (TRUNC (TO_DATE (poh_date_d), 'MON'), 'MONTH') || ' - '
    || TO_CHAR (TO_DATE (poh_date_d), 'YY')
    The Output
    TO_CHAR(TRUNC( CLASS_CODE COUNT(COACH_NO_C)
    APRIL - 07 ACCN 12
    APRIL - 07 ACCW 7
    APRIL - 07 ART 1
    APRIL - 08 ACCN 16
    APRIL - 08 ACCW 8
    APRIL - 08 ART 4
    APRIL - 08 GFSCWAC 1
    AUGUST - 07 ACCN 12
    AUGUST - 07 ACCW 3
    AUGUST - 07 CT 2
    AUGUST - 07 DCBACEN 1
    DECEMBER - 07 ACCN 14
    DECEMBER - 07 ACCW 7
    DECEMBER - 07 ART 3
    DECEMBER - 07 GFSCWAC 2
    FEBRUARY - 07 ACCN 9
    FEBRUARY - 07 ACCW 5
    FEBRUARY - 07 GS 27
    FEBRUARY - 07 GSCN 60
    FEBRUARY - 08 ACCN 13
    FEBRUARY - 08 ACCW 9
    FEBRUARY - 08 FACCW 1
    JANUARY - 07 ACCN 1
    JANUARY - 07 ACCW 4
    JANUARY - 07 ART 3
    JANUARY - 07 GFSCWAC 1
    JANUARY - 08 ACCN 15
    JANUARY - 08 ACCW 13
    JANUARY - 08 ART 4
    JANUARY - 08 GFSCWAC 2
    JULY - 07 ACCN 8
    JULY - 07 ACCW 13
    JULY - 07 ART 2
    JULY - 07 BUO 1
    JUNE - 07 ACCN 15
    JUNE - 07 ACCW 10
    JUNE - 07 ART 2
    JUNE - 07 FCZ 1
    JUNE - 07 FSCN 1
    JUNE - 08 ACCW 1
    JUNE - 08 ART 1
    JUNE - 08 GS 2
    JUNE - 08 GSCN 3
    MARCH - 07 ACCN 18
    MARCH - 07 ACCW 7
    MARCH - 07 GS 30
    MARCH - 08 ACCN 13
    MARCH - 08 ACCW 9
    MARCH - 08 GFSCWAC 1
    MARCH - 08 GS 55
    MARCH - 08 GSCN 79
    MAY - 07 ACCN 10
    MAY - 07 ACCW 8
    MAY - 07 ART 4
    MAY - 07 FSCN 1
    MAY - 08 ACCN 4
    MAY - 08 ACCW 3
    MAY - 08 ART 1
    MAY - 08 FACCW 1
    MAY - 08 GS 11
    NOVEMBER - 07 ACCN 15
    NOVEMBER - 07 ACCW 12
    NOVEMBER - 07 ART 1
    NOVEMBER - 07 GS 32
    NOVEMBER - 07 GSCN 70
    OCTOBER - 07 ACCN 14
    OCTOBER - 07 ACCW 7
    OCTOBER - 07 ART 1
    OCTOBER - 07 FACCW 1
    OCTOBER - 07 GS 38
    SEPTEMBER - 07 ACCN 8
    SEPTEMBER - 07 ACCW 9
    SEPTEMBER - 07 ART 1
    SEPTEMBER - 07 DCTACEN 1
    SEPTEMBER - 07 DCTEN 2
    Please suggest me the Solution
    Thank You....

    U r right. It will give error.I am sorry for it. I am sending the correct code. I think it will work.
    SELECT TO_CHAR(TO_DATE(PD,'MM-YY'),'MONTH')||'--'||TO_CHAR(TO_DATE(PD,'MM-YY'),'YY') DATE,class_code_c,COUNTS
    FROM
    SELECT TO_CHAR (TRUNC (TO_DATE (poh_date_d), 'MM'), 'MM') || ' - ' || TO_CHAR (TO_DATE (poh_date_d), 'YY') pd,
    class_code_c, COUNT (coach_no_c) COUNTS
    FROM mecd_coach_m
    WHERE poh_date_d BETWEEN TO_DATE ('01-JAN-07') AND TO_DATE (SYSDATE)
    AND poh_stn_c = 'MTN'
    GROUP BY TO_CHAR (TRUNC (TO_DATE (poh_date_d), 'MM'), 'MM') || ' - ' || TO_CHAR (TO_DATE (poh_date_d), 'YY'),
    class_code_c
    ORDER BY TO_CHAR (TRUNC (TO_DATE (poh_date_d), 'mm'), 'MM') || ' - '
    || TO_CHAR (TO_DATE (poh_date_d), 'YY'))
    For checking:
    select to_char(to_date(dt,'mm--yyyy'),'month')||'--'||to_char(to_date(dt,'mm--yyyy'),'yyyy'),SUM
    from
    (select to_char(hire_date,'mm')||'--'||to_char(hire_date,'yyyy') dt,sum(salary) SUM from employees
    group by to_char(hire_date,'mm')||'--'||to_char(hire_date,'yyyy')
    order by
    to_char(hire_date,'mm')||'--'||to_char(hire_date,'yyyy'))

  • Sorting by last 12 months in a Chart with data from the last 24 months

    Hi Guru's
    I am trying to create a Trend chart which will show the trend percentage vs previous year.
    In the X -axis I have Month wich is currently sorted by Jan, Feb, Mar etc ...Dec.
    The problem is that I want to show the last 12 months instead, but since I need data for the last 24 months to do so, I am having problems with the chart to show correct sorting.
    If this month is Oct 2011, I would want the chart to show the follwoing in the x axis:
    Oct10, Nov10, Dec10, Jan11,Feb11, Mar11, Arp11, May11, Jun11, Jul11, Aug11, Sep11.
    The problem is that in order for me to create the diff between previous year/month, the chart will either show last 24 months or 12 months thus causing the previous years values to disapear.
    So far I have managed to create a variable that will tell the age of the values in a month. The Chart is filtered and will now only contain data for the last 24 months. I have a variable which calculates the diff for each month agains previuos years values.
    So far so god, but how can I solve so that values are are included in the chart and sorted by the last 12 months?

    I discovered the solution, appereantly it was as easy as using the IN operator:
    =[Year] Where ([vAgeMonths] <= 12) In ([Time].[Short month])
    Now I am able to sort this by year and then month. Sometimes it helps tinkering a bit and a sollution will reveal it self.

  • Table for open Purchase order and pending invoices for vendors

    Hi,
    Are there any table to know open Purchase orders and pending invoices for vendors.
    Quick response will be appreciated.
    Thanks & Regards

    hi,
    Purchase Order:
    S011:(PURCH: Purch. Group Statistics)
    Statistics (SSOUR)
    Version (VRSIO)
    Month (SPMON)
    Day (SPTAG)
    Week (SPWOC)
    Posting Period (SPBUP)
    Purchasing Org (EKORG)
    Purchasing Group (EKGRP)
    Vendor No (LIFNR)
    S012: (PURCHIS: Purchasing Statistics)
    Statistics (SSOUR)
    Version (VRSIO)
    Month (SPMON)
    Day (SPTAG)
    Week (SPWOC)
    Posting Period (SPBUP)
    Purchasing Org (EKORG)
    Purchasing Group (EKGRP)
    Material No (MATNR)
    Plant (WERKS)
    Info Record Category (ESOKZ)
    Material Group (MATKL)
    Info Record (INFNR)
    Country (LAND1)
    EINE: (Purchasing Info Record: Purchasing
    Organization Data)
    Info Record (INFNR)
    Purchasing Org (EKORG)
    Info Record Type (ESOKZ)
    Plant (WEKS)
    EKET: (Delivery Schedules)
    Purchasing Doc (EBELN)
    Item (EBELP)
    Delivery Schedule (ETENR)
    EKPO: (Purchasing Document Item)
    Purchasing Doc (EBELN)
    Item (EBELP)
    EKKN: (Account Assignment in Purchasing
    Document)
    Purchasing Doc (EBELN)
    Item (EBELP)
    Account Assignment (ZEKKN)
    EKKO: (Purchasing Document Header)
    Purchasing Doc (EBELN)
    EORD: (Purchasing Source List)
    Material No (MATNR)
    Plant (WERKS)
    Source List No (ZEORD)
    thx,
    Ganpat

  • How to get min date of every month for six months?

    Hi, i have data like this.
    Process_date SEQ_No
    16-MAR-13     733
    09-MAR-13     732
    02-MAR-13     731
    24-FEB-13     730
    16-FEB-13     728
    09-FEB-13     727
    02-FEB-13     726
    26-JAN-13     725
    21-JAN-13     724
    12-JAN-13     723
    05-JAN-13     722
    29-DEC-12     721
    24-DEC-12     720
    15-DEC-12     719
    08-DEC-12     718
    03-DEC-12     717
    22-NOV-12     716
    17-NOV-12     715
    10-NOV-12     714
    03-NOV-12     713
    29-OCT-12     712
    23-OCT-12     711
    13-OCT-12     710
    05-OCT-12     709
    28-SEP-12     708
    22-SEP-12     707
    15-SEP-12     706
    08-SEP-12     705
    01-SEP-12     704
    everymonth admin will refresh actual data table and automatically this above table will update with unique seq_no and process_date.
    I need to extarct min date of everymonth(First refresh of last 6 months - excluding currrent month) and also seq_no related to that month so using joins(using seq_no - that is available in main table) i can combine actual data.
    I need result like:
    02-MAR-13     731 ( I don't need MAR as it should not take current month data)
    so i need final result like below:
    02-FEB-13     726
    05-JAN-13     722
    08-DEC-12     718
    03-NOV-12     713
    05-OCT-12     709
    01-SEP-12     704

    995263 wrote:
    Hi, i have data like this.
    Process_date SEQ_No
    16-MAR-13     733
    09-MAR-13     732
    02-MAR-13     731
    24-FEB-13     730
    16-FEB-13     728
    09-FEB-13     727
    02-FEB-13     726
    26-JAN-13     725
    21-JAN-13     724
    12-JAN-13     723
    05-JAN-13     722
    29-DEC-12     721
    24-DEC-12     720
    15-DEC-12     719
    08-DEC-12     718
    03-DEC-12     717
    22-NOV-12     716
    17-NOV-12     715
    10-NOV-12     714
    03-NOV-12     713
    29-OCT-12     712
    23-OCT-12     711
    13-OCT-12     710
    05-OCT-12     709
    28-SEP-12     708
    22-SEP-12     707
    15-SEP-12     706
    08-SEP-12     705
    01-SEP-12     704
    everymonth admin will refresh actual data table and automatically this above table will update with unique seq_no and process_date.
    I need to extarct min date of everymonth(First refresh of last 6 months - excluding currrent month) and also seq_no related to that month so using joins(using seq_no - that is available in main table) i can combine actual data.
    I need result like:
    02-MAR-13     731 ( I don't need MAR as it should not take current month data)
    so i need final result like below:
    02-FEB-13     726
    05-JAN-13     722
    *08-DEC-12     718 (why??? if we have 03-DEC-12     717)*
    03-NOV-12     713
    05-OCT-12     709
    01-SEP-12     704i think you want something like this:
    WITH T(d,s) AS
    select to_date('16-MAR-13','dd-MON-yy'),733 from dual union all
    select to_date('09-MAR-13','dd-MON-yy'),732 from dual union all
    select to_date('02-MAR-13','dd-MON-yy'),731 from dual union all
    select to_date('24-FEB-13','dd-MON-yy'),730 from dual union all
    select to_date('16-FEB-13','dd-MON-yy'),728 from dual union all
    select to_date('09-FEB-13','dd-MON-yy'),727 from dual union all
    select to_date('02-FEB-13','dd-MON-yy'),726 from dual union all
    select to_date('26-JAN-13','dd-MON-yy'),725 from dual union all
    select to_date('21-JAN-13','dd-MON-yy'),724 from dual union all
    select to_date('12-JAN-13','dd-MON-yy'),723 from dual union all
    select to_date('05-JAN-13','dd-MON-yy'),722 from dual union all
    select to_date('29-DEC-12','dd-MON-yy'),721 from dual union all
    select to_date('24-DEC-12','dd-MON-yy'),720 from dual union all
    select to_date('15-DEC-12','dd-MON-yy'),719 from dual union all
    select to_date('08-DEC-12','dd-MON-yy'),718 from dual union all
    select to_date('03-DEC-12','dd-MON-yy'),717 from dual union all
    select to_date('22-NOV-12','dd-MON-yy'),716 from dual union all
    select to_date('17-NOV-12','dd-MON-yy'),715 from dual union all
    select to_date('10-NOV-12','dd-MON-yy'),714 from dual union all
    select to_date('03-NOV-12','dd-MON-yy'),713 from dual union all
    select to_date('29-OCT-12','dd-MON-yy'),712 from dual union all
    select to_date('23-OCT-12','dd-MON-yy'),711 from dual union all
    select to_date('13-OCT-12','dd-MON-yy'),710 from dual union all
    select to_date('05-OCT-12','dd-MON-yy'),709 from dual union all
    select to_date('28-SEP-12','dd-MON-yy'),708 from dual union all
    select to_date('22-SEP-12','dd-MON-yy'),707 from dual union all
    select to_date('15-SEP-12','dd-MON-yy'),706 from dual union all
    select to_date('08-SEP-12','dd-MON-yy'),705 from dual union all
    select to_date('01-SEP-12','dd-MON-yy'),704 from dual
    SELECT MIN(D),
           MIN(S) KEEP(DENSE_RANK FIRST ORDER BY D)
      FROM (SELECT D,
                   S,
                   TO_CHAR(D, 'mm') M,
                   TO_CHAR(D, 'yy') Y,
                   DENSE_RANK() OVER(ORDER BY TO_CHAR(D, 'yy') || TO_CHAR(D, 'mm') DESC) RN
              FROM T)
    WHERE RN BETWEEN 2 AND 7
    GROUP BY M, Y
    ORDER BY 1 DESC

  • Goods Issue after STO warning "Price change of  % in month / for mater"

    Dear all,
    This is my process for Inter-co plant stock transfer:
    1. Create STO via ME21N
    2. Raise Goods Issue from source plant via MIGO_GI
    3. I get this warning message "Price change of  % in month / for mater", details as below:
    Price change of  % in month / for material
    Message no. M7306
    Due to action taken the quantity and value of the material  are changed. This leads to calculation of a new moving average price: The new price deviates from the old one by .
    Procedure
    Before you carry out the posting, you should determine the reason for this difference.
    You could check the material line items to find out which postings have led to the current moving average price. If the action taken refers to a purchase order, you could contact Purchasing to find out whether a mistake was made when entering the order price.
    Has anyone seen this before and what should be the cause of action? Well, I was still able to proceed with the GI successfully but I'd like to know what has caused the message?
    Thanks.
    Steven

    Hi Manohar,
    My previous stock was 0.
    So i received material  100 qty at 20 INR.
    Total stock value = 2000
    Now as per you:
    2000 / ( 0 *6) * 100   =    33.33
    I am not getting 390,17 %
    Utsav

  • How to handle the weekly planned order which cross month?

    Dear All,
    We do weekly production plan and balance the plant capacity by month. All the planned orders generated on each Monday and covered one week. But we need to measure the plant perfermance by month and use the monthly perfermance report. So there is a issue, when last week crossed two months, the planned order in that week will attribute to the first month. Therefor, the monthly perfermance reports can not captured very correct data.
    Is there a setting which can split the weekly planned order into two month automatically at month end?   
    If not, what is the best way for us to do?
    Thanks,
    May

    Hi Rajesha,
    Thanks for your quick reply. As your example, we have 4 weeks in a month. If there are only 28 days in M1, there is no issue. But most time, a month can not have 4 natural weeks.
    For example. Month2 contains 31 days. So we have W1-4 (total 28 days)  and extra 3 days, we can called it W5. The total demand in W5 is 100, but in the first 3 days, only maybe 50.  As our lot size-U1, (1 week, beg. of week), in W5, all the volume will come to Monday. But we have only 3 days in this week in M2. So when we run monthly report, it tell us we need to product 100 in W5, plus W1-4, we need to do 500 in all. But actually in this month, we only need to do 3 days plus W1-4, only 450.
    Now,here come to my question, how to deal with W5 planned orders? Can system split it automatically?
    Best Regards,
    May

  • Incomplete Process order settlement at Month end.

    We have issue with order settlement during the month end. We have process orders that run over the week (thus will run over the month-end), with REL, PCNF, and PDLV status at the month end. Production does not want to close/ TECO those orders, as we are not yet done. But FI wants to settle them for the month end.
    1) Can FI settle those REL work orders, as mentioned before?
    This is what I found:
    2) The standard practice is TECO, is to set before closing the order.
    3) You can only perform (business) closing for a process order if (CLSD):
    The order has status Released (REL), Control recipe created (CRCR) or Control recipe discarded (CRAB), or Technically completed (TECO). To have status Technically completed, the order must have already reached status Released.
    The order balance is 0.
    There are no more open purchase requisitions, orders, or commitments for it.
    All data related to the process order is available and correct (For example, the inspection lots for the order must be completed).
    There are no future change records from the confirmation processes
    2) So, if statement 1) is correct, is this correct lifeycle:
    A.     Settlement at month end for all orders with REL status.
    B.      TECO after settlement, and also after DLV and CNF status.
    C.      Close after TECO.
    Upload in your comments, if there is any link.
    Thanks, points will be rewarded.

    Hi Abi,
    Since the Process order is in uncompleted stage and partially delivered to stock, still it has WIP to be delivered to stock.
    Calculate the WIP value & settle the order in Month end.
    Prerequisite for WIP calculation is order should has REL status.
    In month end for Uncompleted order , calculate WIP value & settle the Order.
    General steps for month end practice:
    Over head calculation
    WIP calculation
    Variance calculation -  Once the Order receives  -  DLV /TECO  status.
    Order settlement.
    Order closing
    Regards
    Pradeep

  • Hello, I have Acrobat XI Pro for which I pay by monthly subscription. Each month, for the past three months or so, at renewal time, I receive a note stating that my trial period has expired and I cannot open my Acrobat Files. I have telephoned three or fo

    Hello, I have Acrobat XI Pro for which I pay by monthly subscription. Each month, for the past three months or so, at renewal time, I receive a note stating that my trial period has expired and I cannot open my Acrobat Files. I have telephoned three or four times each time this happens and have been told that the matter has been resolved - it has not! At one time I had paid inadvertently for three account for Acrobat XI Pro running at the same time - I only need 1. I'm afraid that I may have just opened a second account by mistake in order to open my files. I repeat, I only require one account. Would you please advise and assure me that this matter has finally been resolved and that I will no longer receive these notifications each month..

    I don't work for Adobe but it seems to me you might be signing in to Acrobat with the wrong Adobe ID.
    Check the Adobe ID you use in Acrobat.
    Check this Adobe ID on Adobe's to make sure that it has an active subscription.

  • Why is basic visual voice mail free on the Note 3 and 2.99 a month for the S4 ?

    Why is basic visual voice mail free on the Note 3 and 2.99 a month for the S4 ?

    I'm trying to reach these issues myself. There are a few different flavors of voicemail:
    Basic voice mail -- the kind you call in with your phone and press touch tones, like people used to do twenty years ago. Included with contract.
    Basic visual voice mail -- see your messages listed by caller, choose which one to play. Included with contract, but only on certain phones. The Note yes, Galaxy s5 yes, Galaxy s4 no.
    Visual Voice Mail -- the 2.99/mo version Verizon wants you to pay for. Has the features of 2, but also will transcribe your voice mails into text. Available on most phones because it is a Verizon app.
    iphone visual voicemail. Same as 2, for all intents and purposes. Has always been included because Apple established it as a condition for the carriers to be permitted to sell them.
    The mystery is number 2, what you are asking about. Though it is mentioned on a verizon comparison chart, 'basic visual voicemail' is not discussed in any verizon literature and I suspect most techs don't know about it yet. It seems to have been enabled with a kitkat update (version 4.4.4 of Android) that has been released on some, but not all phones. I think the way it worked is that users were given a free trial of the pay version of voicemail, but at the end of the trial were able to 'downgrade' to basic voicemail and keep that without paying.
    I also have an S4, and basic /no cost visual voice mail does not seem to be possible, though I have heard there may be some ways to make it work with technical workarounds. I have not confirmed any of these methods but they almost certainly would not be recommended by Verizon staff.
    To get back to your question, basic visual voicemail and what Verizon calls regular 'visual voicemail' are different products. The basic seems to be a recent product only available on some phones. The regular 'visual voicemail' is the pay service available on all phones.

Maybe you are looking for

  • Data entered by user in the front end is lost when ever their is an error

    Hi, I am working for an internal tool aplication which is used to enter/manipulate employee details. We are using ORACLE APEX for this. We have completed most of the application wr.t Master detail page But when we are testing we had this problem as b

  • ITunes will not load songs on IPod

    Recently, my Itunes has stopped adding songs to my Ipod. When I try to drag a playlist into my Ipod, Itunes will load one song and then stop. I've made sure that I have my Ipod set to manually manage my music. I've connected another Ipod and the same

  • Vertical Scroll Bar

    I must sound like such a NOOOOOOOB! I have CS4 and have come to remake a website on Flash for a friend. The content that will be put onto the site is quiet a lot so for design reasons I would rather have an internal scrolling area as apposed to scrol

  • What is a 3rd Party System?

    Is a "3rd Party System" anything that isn't developed by Apple? IF so, since I updated to Mavericks, I have a "mac" compatible program that I can't get into, eveb though it had a new dmg to download making it OK for Mavericks. (Same thing happened go

  • Weird exception in 12c (ORA-01461: can bind a LONG value only for insert into a LONG column)

    I have a Windows app that accesses an Oracle 12c database via ODBC (the driver version is 12.01.00.01). I have a table that has a key column named REGION_ID (NVARCHAR2(9)), and about a dozen other columns, three of which are named REGION1, REGION2, a