Cash weekly summary

hi experts
I am working on FI module cash weekly summary, in my output i should get particulars as
1-Apr to 7-Apr          85,610.00          5,38,474.00           1,73,860.00 Dr
8-Apr to 14-Apr             77.00           1,21,100.00            52,837.00 Dr
15-Apr to 21-Apr        45,685.00              52,077.00                46,445.00 Dr
1.here the dates should  be calculated as 1-apr + 6  =  7-apr, etc  according to the date what we enter in the selection screen. what ever date we enter it should be divided by 7 and the balance days should be displayed.
2. amount 85,610.00 is the sum of 1-apr to 7-apr, similarly the other calculations also
3. to find the highest  amount among the selection screen date
iam attaching the specs and codes plz help me
thanks in advance
maaya
specs:-
                                                    Cash
                                          Weekly Summary
                                   1-Apr-2007 to 19-Jul-2007
                                                                                Page 1
P a r t i c u l a r s                     Transactions                          Closing
                                            Debit                 Credit                Balance
Opening Balance                                                     26,724.00 Dr
1-Apr to 7-Apr                    6,85,610.00         5,38,474.00             1,73,860.00 Dr
8-Apr to 14-Apr                           77.00           1,21,100.00            52,837.00 Dr
15-Apr to 21-Apr                       45,685.00                52,077.00              46,445.00 Dr
22-Apr to 28-Apr                    1,04,382.00             1,02,619.00                 48,208.00 Dr
29-Apr to 5-May                    3,01,532.00              2,78,110.00                71,630.00 Dr
6-May to 12-May                      46,607.00                73,202.00                45,035.00 Dr
13-May to 19-May                     91,607.00             1,01,719.00                34,923.00 Dr
20-May to 26-May                     77,485.00                62,889.00               49,519.00 Dr
27-May to 2-Jun                        62 ,411.00               69,738.00              42,192.00 Dr
3-Jun to 9-Jun                          2,79,008.00            2,83,598.00              37,602.00 Dr
10-Jun to 16-Jun                       1,02,153.00              93,729.00              46,026.00 Dr
17-Jun to 23-Jun                      5,28,608.00             5,32,870.00             41,764.00 Dr
24-Jun to 30-Jun                       43,333.00                 46,299.00             38,798.00 Dr
1-Jul to 7-Jul                         2,49,350.00                2,18,776.00            69,372.00 Dr
8-Jul to 14-Jul                          27,095.00                   58,599.00           37,868.00 Dr
15-Jul to 19-Jul                        15,000.00                     7,233.00          45,635.00 Dr
G r a n d T o t a l                   26,59,943.00               26,41,032.00        45,635.00 Dr
A v e r a g e                           1,66,246.44                 1,65,064.50            55,107.13 Dr
Highest                                (dt. 19-Jun-2007)       (dt. 19-Jun-2007)     (dt.4-May-2007)
Balance                                 4,83,238.00                   4,95,563.00        2,88,728.00 Dr
Lowest                       (dt. 14-Apr-2007)           (dt. 14-Jul-2007)                (dt. 2-Apr-2007)
Balance                                        77.00                   533.00                 23,724.00 Dr
my codings are as follows
*& Report  ZCASH_WEEK
REPORT  ZCASH_WEEK no standard page heading line-size 200.
tables: bkpf,
       bseg,
       skb1.
data: begin of it_skb1 occurs 0,
      saknr like skb1-saknr,
      end of it_skb1.
data: begin of it_bkpf occurs 0,
      belnr like bkpf-belnr,
      gjahr like bkpf-gjahr,
      blart like bkpf-blart,
      budat like bkpf-budat,
      monat like bkpf-monat,
      end of it_bkpf.
data: begin of it_bseg occurs 0,
      budat like bseg-augdt,
      date(60),
      belnr like bseg-belnr,
      koart like bseg-koart,
      shkzg like bseg-shkzg,
      dmbtr like bseg-dmbtr,
      hkont like bseg-hkont,
      end of it_bseg.
data : it_closedbal like it_bseg occurs 0 with header line.
data : Begin of it_data occurs 0,
        budat like bkpf-budat,
        debit like bseg-dmbtr,
        credit like bseg-dmbtr,
         clbal like bseg-dmbtr,
        end of it_data.
data : Begin of it_clbal occurs 0,
        budat like bkpf-budat,
        debit like bseg-dmbtr,
        credit like bseg-dmbtr,
         end of it_clbal.
   data : v_closedate like bkpf-budat,
          v_closebal like bseg-dmbtr,
          v_cldeb like bseg-dmbtr,
          v_clcre like bseg-dmbtr,
          v_days(3) , v_week(4),
          v_budat like bkpf-budat,
          v_date(60), v_date1(11), v_dat(7),
          v_max_credit like bseg-dmbtr,
          v_min_credit like bseg-dmbtr,
          v_max_debit like bseg-dmbtr,
          v_min_debit like bseg-dmbtr,
          v_max_closebal like bseg-dmbtr,
          v_min_closebal like bseg-dmbtr,
          v_avg_credit like bseg-dmbtr,
          v_avg_debit like bseg-dmbtr,
          v_avg_closebal like bseg-dmbtr,
          v_grd_credit like bseg-dmbtr,
          v_grd_debit like bseg-dmbtr,
          v_grd_closebal like bseg-dmbtr.
Selection-screen :begin of block b1.
    Parameter: p_bukrs like  bkpf-bukrs obligatory,
              p_saknr like ska1-saknr.
                p_hkont like bseg-hkont.
    select-options: s_budat for bkpf-budat.
  selection-screen end of block b1.
start-of-selection.
to fetch data.
perform get_data.
to calculate the days.
perform get_days.
to fetch the closing balance
perform get_CLOSEDBAL.
to display the output
perform get_output.
to get the grand total.
perform get_grandtot.
to get the average balance
Perform get_average.
to get the max & min balances
perform get_high_low_bal.
end-of-selection.
*&      Form  get_data
      text
-->  p1        text
<--  p2        text
FORM get_data .
select saknr from skb1 into table it_skb1 where bukrs = p_bukrs
                                       and saknr = p_hkont.
select * from bkpf into corresponding fields of table it_bkpf
                   where bukrs  = p_bukrs
                   and budat in s_budat.
select * from bseg into corresponding fields of table it_bseg
                    for all entries in it_bkpf
                    where  belnr = it_bkpf-belnr and
                    hkont = p_hkont.
select * from bseg into corresponding fields of table it_bseg
                     for all entries in it_skb1
                     where  hkont = it_skb1-saknr.
loop at it_bseg.
select single budat from bkpf into it_bseg-budat where belnr = it_bseg-belnr.
modify it_bseg.
endloop.
break-point.
***select max( dmbtr ) from it_bseg  into v_max_credit where budat between s_budat-low and s_budat-high
                                                shkzg = 'H'.
perform get_day.
**move the documents into itab where date lies between input dates low & high
loop at it_bseg.             "where budat between s_budat-low and s_budat-high.
if it_bseg-budat >= s_budat-low or it_bseg-budat <= s_budat-high.
  it_data-budat = it_bseg-budat.
   if it_bseg-shkzg = 'H'.
      move it_bseg-dmbtr to it_data-credit.
    else.
       move it_bseg-dmbtr to it_data-debit.
    endif.
    endif.
append it_data.
endloop.
**move the documents into itab_close  one day less than low range ( s_budat-low - 1 )
v_closedate = s_budat-low - 7.
loop at it_bseg.
where budat between v_closedate and s_budat-low .
if it_bseg-budat >= v_closedate or it_bseg-budat <= s_budat-low.
   move it_bseg-budat to it_clbal-budat.
   if it_bseg-shkzg = 'H'.
      move it_bseg-dmbtr to it_clbal-credit.
    else.
       move it_bseg-dmbtr to it_clbal-debit.
    endif.
endif.
append it_clbal.
endloop.
ENDFORM.                    " get_data
*&      Form  get_days
      text
-->  p1        text
<--  p2        text
FORM get_days .
v_days = s_budat-high - s_budat-low.
v_week = v_days / 7.
*write:10 'days',  v_days,
      50  'week', v_week.
ENDFORM.                    " get_days
*&      Form  get_closedbal
      text
-->  p1        text
<--  p2        text
FORM get_closedbal .
*break-point.
loop at it_clbal.
*sum.
  v_cldeb = v_cldeb + it_clbal-debit.
  v_clcre  = v_clcre + it_clbal-credit.
v_closebal =  v_cldeb -  v_clcre .
  v_closebal =   v_clcre - v_cldeb .
endloop.
skip 2.
*write: 'Opening Balance' , v_closebal.
ENDFORM.                    " get_closedbal
*&      Form  get_day
      text
-->  p1        text
<--  p2        text
FORM get_day .
*break-point.
loop at it_bseg.
v_budat = it_bseg-budat.
CALL FUNCTION 'CONVERSION_EXIT_SDATE_OUTPUT'
  EXPORTING
    INPUT         = v_budat
IMPORTING
   OUTPUT        = v_date.
   v_dat = v_date+0(6).
move v_dat to it_bseg-date.
write:/10 v_date , v_dat.
modify it_bseg.
endloop.
ENDFORM.                    " get_day
*&      Form  get_output
      text
-->  p1        text
<--  p2        text
FORM get_output.
      WRITE : /60 'Cash'.
      WRITE : /55 'Weekly Summary'.
     WRITE : /30 v_budat-low, 50 v_budat-high.
      write :/125 'Page 1'.
   skip 1.
   uline (135).
   write  : /5 'Particulars',  45 '|', 60 'Transactions', 120 'Closing'.
   write : /45 sy-uline(71), 120'Balance'.
   write : /45 '|', 55 'Debit', 90 'Credit', 115 '|'.
write  : / sy-uline(135).
write : / 'Opening Balance' , 120 v_closebal.
write : / v_dat1.
*loop at it_data.
WRITE :  /1 sy-vline, IT_DATA-
ENDFORM.                    " get_output
*&      Form  get_grandtot
      text
-->  p1        text
<--  p2        text
FORM get_grandtot .
break-point.
loop at it_data.
sum.
endloop.
move it_data-credit to v_grd_credit.
move it_data-debit to v_grd_debit.
v_grd_closebal = v_closebal + v_grd_debit - v_grd_credit.
uline.
write: 'Grand Total', 55 v_grd_credit, 90 v_grd_debit, 120 v_grd_closebal.
uline.
ENDFORM.                    " get_grandtot
*&      Form  get_average
      text
-->  p1        text
<--  p2        text
FORM get_average .
write:/ 'Average' ,55 v_avg_credit, 90  v_avg_debit, 120 v_avg_closebal.
skip 1.
ENDFORM.                    " get_average
*&      Form  get_high_low_bal
      text
-->  p1        text
<--  p2        text
FORM get_high_low_bal .
write:/ 'Highest',55 '(dt.           )' , 90'(dt.           )', 120 '(dt.           )'.
write:/ 'balance',55 v_max_credit,90 v_max_debit, 120 v_max_closebal.
skip 1.
write:/ 'Lowest' , 55 '(dt.           )' , 90'(dt.           )', 120 '(dt.           )'.
write:/ 'balance',55 v_min_credit,90 v_min_debit ,120 v_min_closebal.
uline.
ENDFORM.                    " get_high_low_bal

If you have any suggestions that you think might enhance the Apple Watch you can send Apple your feedback here.

Similar Messages

  • Alert me setting - daily or weekly summary

    When I add a alert to my document library, I get the confirmation that the alert has been succesfully created.
    A daily or weekly summary does not work.  Only an immediately alert works.
    Does anyone have an idea?
    Thanks

    Try running "stsadm -o getproperty -pn alerts-enabled -url http://sharepoint" from your box to start with.
    This should confirm that alerts are enabled. Then run...
    stsadm -o getproperty -pn job-daily-alerts -url http://sharepoint
    and
    stsadm -o getproperty -pn job-weekly-alerts -url http://sharepoint
    This should return a value if set or false if not! If not, then this is your problem. To correct run...
    stsadm -o setproperty -propertyname job-daily-alerts -url http://sharepoint -propertyvalue "daily between 22:00:00 and 06:00:00"
    and
    stsadm -o setproperty -propertyname job-weekly-alerts -url http://sharepoint -propertyvalue "weekly between Fri 22:00:00 and Mon 06:00:00"
    Replace http://sharepoint with the relevant value for your site collection and the -propertyvalue with the required value and you should be away!
    Regards,
    Chris

  • Weekly summary

    1. The watch showed me my weekly summary on Sunday (calories burnt, standing, exercise etc.) - how do I pull it up again, once I dismiss it?

    If you have any suggestions that you think might enhance the Apple Watch you can send Apple your feedback here.

  • 2 lines for agents on weekly summary report

                       I have used the attached report definition to run a report, when running it on the customer site, although I believe the week runs Monday - Sunday, when I run the report, whether it is Monday - Sunday  11th Feb - 17th Feb, or Sunday to Satuday  10th Feb -16th Feb, I still get 2 lines for some agents.
    It would appear that the extra line is the Sunday 17th Feb....
    We have checked that the agents are signing out, is there anything else we should be looking at.
    Has anyone else experienced this and how have they resolved it.
    Have attached the Report definition.
    thanks for helping.

    David writes:
    >Best practice is to have a single line. I think the SRND addresses this.
    Not so. The SRND defines the two-line paradigm. I'm with Chris.
    Two lines is fine. I like to have the first line the CC line. I like auto-answer on headset from CUCM and no call waiting, no voice mail on that line.
    The second line (the DID) should have the normal settings - call waiting, not auto answer, Unity voice mail.
    If the agents are in the ready state, they need to be reminded to not answer (or initiate) a call on their private line without going not ready. If they forget, it's not a big deal as auto-answer will not be activated - they will have to manually answer. They normally drop off the private line quickly and take the call. Some agents break this "rule" in order to be more productive - depends on how busy the CC is.
    While on a customer call, a call to their private line will ring a couple of times and go to voice mail. They are asked to just let it go.
    Aside: In the past I wrote a little Java app called Agent Toggle that connected to JTAPI and to the CTI server. When a call arrived on (or was made from) their private line, it made the agent not ready; when the call terminated, it made them ready again. A little science project that seemed to work fine.
    Some customers like to invert the lines because they want the red light to come on when voice mail is waiting. If it's the second line, the standard behaviour is to show the little envelope next to the line.
    Although Cisco recommend that the top line be the CC line, I can understand the inversion.
    You adjust the calling search spaces so that private lines cannot call contact center lines; but not the other way around. Non-agents just have the one "private" line.
    I believe this works correctly and efficiently, albeit with some agent discipline. Once the operating parameters are understood, the agent with two lines can be more productive.
    Regards,
    Geoff

  • Cash Flow summary report

    Hi All,
    The user was trying to run the following report.
    Report: ZKIOR095
    Description
    This report is a variant of the cash flow report for use by the
    ngineering department. The report is unique because it mixes both actuals and budget on a given line reporting on each IO.
    The report lists on line per IO. Each line list a cash flow figure for each month. The monthly cash flow figure is either actuals or budget based on the crossover period number entered on the selection screen.
    If the month is less than or equal to the crossover period, actuals will be display. If the month is greater than crossover period, budget amounts will be displayed. Excess and unused budget amounts are carried over to the next month and only December allows a negative budget amount to be displayed.
    Thanks,
    Shravya

    Hi,
    You can do this in the function group's TOP include for the keyword FUNCTION-POOL.
    You need to go to the function module's function group and then in the top-include(Include with TOP in the name) you can do this.
    FUNCTION-POOL zfunction_group MESSAGE-ID zms_cl.
    Regards,
    Sesh

  • Not getting Summary Email

    In My Ops Insights, I don't seem to have an option to receive summary emails to my organisational email address.
    If I sign in, there is no tick box under settings to "Receive email notifications of new Azure Operations Insights Alerts".  I'm presuming this is the weekly summary report setting.
    My account is a Ops Insights administrator.  I tried with another account that is just a "user". No option there either.
    If I sign in with a Microsoft Account outside my organisation, then the option is there, and by default that account has been getting the weekly emails.
    any help appreciated.

    Cool, let's cross-link it so more folks can find it
    http://feedback.azure.com/forums/267889-azure-operational-insights/suggestions/7636869-summary-email-for-organisational-accounts
    thanks!

  • Data Summary Help

    I have a simple ordering application built with CF using an
    Access db. I need to produce some weekly summary stat reports and
    don't know how to go about doing it. I will be using sql.
    My db contains a date_submitted (when the order was entered
    into the system) and a date_closed (when the order was closed in
    the system after it is filled).
    For my report, I need to do the following :
    If 10 orders were submitted for 3/14/07 but only 3 of those
    ten were closed the same day, I need to show both summary figures
    along with a percentage (indicating on time percentage). Then the
    same summary for next day, etc., so each line of the report would
    contain 5 major column/headings for each day of the week, and each
    column/heading would contain three sub column/headings to represent
    total orders submitted for that day, of those submitted, how many
    were closed the same day, and the on time percentage. There would
    be four lines for the entire month, one line for each week.
    How can I do this, I have no idea where to begin. Thanks for
    any help.

    I would begin with baby steps.
    Start with a query that gets the number of orders submitted
    each day.
    Then add the part about the order being closed on the same
    day. (in access that's an iif function or something like that).
    Carry on until you get all your data. Then worry about the
    display.

  • Display difference current week to prior week

    Hi everyone,
    I have following question. I need to display in a Report the difference from the current week to the prior week. I need something like this:
    weeks       |      quantity      |    difference to prior week
    30          |     1000           |
    31          |      500           |     -500
    32          |      800           |      300
    33          |     1200           |      400
    34          |     1000           |     -200
    By starting the report the user enters the "start_date" and "end_date".
    For this example the user enters from "19.07.2009" to "22.08.2009"
    Do you have any ideas how to solve this?
    Many thanks in advance
    Mario

    Hi Salah,
    many thanks for your answer but this doesn't work on my side because each week is a summary of many different records from the database. If I work with "previous" it only subtracts the last quantity from the weeks summary, not the last weeks summary from this weeks summary.
    Is it possible to change the formula to something like this:
    sum ({quantity}, {@calendarweek} ) - previous (sum ({quantity}, {@calendarweek} )
    something like this whould help me I think but I receive an error from the "previous" too much parameters
    Now I tried to create a new formula like this:
    @quantity_calenderweek
    = sum ({quantity}, {@calendarweek} )
    and used it with my previous formula:
    {@quantity_calenderweek} - previous ({@quantity_calenderweek})
    but now crystal sais that this field hast no prior or following value...

  • Is there a way customize the community Notifications, some instant, some daily/weekly summaries?

    Is there a way customize the community Notifications, some instant, some daily/weekly summaries? I need some of the discussions emailed to me instantly, while others, the threads that take a while for Apple to correct, are needed in a daily summary and/or a weekly summary. Is there a place to do this or do I have to create rules in Mail ?
    Thanks in advance.

    Not that I know of, however it's not a bad suggestion. I'd recommend posting to www.apple.com/feedback. Don't expect to hear back though.

  • Alert set through timer job is not working in sharepoint 2010 as expected

    Hi,
    I create the standard sharepoint alerts through timer job.
    in my timer job, i loop through a list and based on the user value in the alert to field i create alert for the users and the condition for the alert are only when new items are created and something changes in the below view.
    all the properties are set fine. Email triggered on new items additions and on specific daily or weekly summary.
    The view filteration is not working at all:(
    But after the timer job ran and set the alert, if i open the alert settings on UI and without changing anything if i click ok , then the view filteration is happening and alerts are working fine.
    What is wrong here? is it a bug or anything am missing?
    Aruna
    try
    SPList Configlist = web.Lists.TryGetList("Configuration");
    foreach (SPListItem oItem in Configlist.Items)
    ProfilePicker = oItem["ProfilePicker"].ToString();
    ProfileViewer = oItem["ProfileViewer"].ToString();
    string MIS = oItem["MIS"].ToString();
    SPList list = web.Lists.TryGetList(ProfileViewer);
    SPList ProfileList = web.Lists[ProfilePicker];
    foreach (SPListItem oItem in ProfileList.Items)
    frequency = oItem["Frequenzy"].ToString();
    created = (DateTime)oItem["Created"];
    string createdDate = created.ToString();
    createdDate = DateTime.Parse(createdDate).ToShortDateString();
    DateTime today = DateTime.Today.Date;
    string dateonly = today.ToString(); ;
    dateonly = DateTime.Parse(dateonly).ToShortDateString();
    SPFieldUserValue fieldValue = null;
    SPFieldUser UserColumn = (SPFieldUser)oItem.Fields.GetField("Alert_x0020_owner");
    fieldValue = UserColumn.GetFieldValue(oItem["Alert_x0020_owner"].ToString()) as SPFieldUserValue;
    if (fieldValue != null)
    alertowner = fieldValue.User;
    alert = alertowner.ToString();
    //if (createdDate == dateonly)
    SPUser user = web.EnsureUser(alert);
    SPAlert newAlert = user.Alerts.Add();
    newAlert.AlertType = SPAlertType.List;
    newAlert.List = list;
    newAlert.DeliveryChannels = SPAlertDeliveryChannels.Email;
    newAlert.EventType = SPEventType.Add;
    if (frequency == "Daily")
    createDailyAlert(newAlert, list, user);
    else
    createWeeklyAlert(newAlert, list, user);
    catch (Exception ex)
    // Danfoss.Sharepoint.Logger.DanfossLogger.LogToOperations(ex, "Exception occurred in setting the profile alert", 0, EventSeverity.Error, DanfossExceptionCategory.General);
    private static void createDailyAlert(SPAlert newAlert, SPList list, SPUser user)
    newAlert.Title = "My Daily Profile viewer Alert";
    newAlert.AlertFrequency = SPAlertFrequency.Daily;
    newAlert.AlertTemplate = list.AlertTemplate;
    newAlert.AlertTime = new DateTime(DateTime.Today.Year, DateTime.Today.Month, DateTime.Today.Day, 10, 0, 0);
    newAlert.AlertTime = newAlert.AlertTime.AddDays(0);
    SPAlert existingAlert = null;
    newAlert.Properties.Add("filterindex", "4");
    newAlert.Properties.Add("viewid", list.Views["Daily Alert"].ID.ToString("D"));
    newAlert.Properties.Add("filterpath", string.Format("{0}/", list.Views["Daily Alert"].ServerRelativeUrl.TrimStart('/')));
    foreach (SPAlert alerts in user.Alerts)
    string al = alerts.AlertFrequency.ToString();
    // Filter down the alert to the list you wish to report on.
    if (al == "Daily")
    // Found your existing your custom alert. Don't create one.
    existingAlert = alerts;
    if (existingAlert == null)
    newAlert.Update(false);
    private static void createWeeklyAlert(SPAlert newAlert, SPList list, SPUser user)
    newAlert.Title = "My weekly profile viewer Alert";
    newAlert.AlertFrequency = SPAlertFrequency.Weekly;
    newAlert.AlertTemplate = list.AlertTemplate;
    newAlert.AlertTime = new DateTime(DateTime.Today.Year, DateTime.Today.Month, DateTime.Today.Day, 10, 0, 0);
    newAlert.AlertTime = newAlert.AlertTime.AddDays(0);
    SPAlert existingAlert = null;
    newAlert.Properties.Add("filterindex", "4");
    newAlert.Properties.Add("viewid", list.Views["Weekly Alert"].ID.ToString("D"));
    newAlert.Properties.Add("filterpath", string.Format("{0}/", list.Views["Weekly Alert"].ServerRelativeUrl.TrimStart('/')));
    foreach (SPAlert alerts in user.Alerts)
    string al = alerts.AlertFrequency.ToString();
    // Filter down the alert to the list you wish to report on.
    if (al == "Weekly")
    // Found your existing your custom alert. Don't create one.
    existingAlert = alerts;
    if (existingAlert == null)
    newAlert.Update(false);
    This is my code. alerts are not sending based on the view:(

    Hi sathyaav,
    I followed the example and made a test in my environment, it works like a charm.
    I suggest you check if you have inputed the valid site URL when you create the project solution.
    If you deployed succeed in the Central Administrator Site using Visual Studio, then the job named "Simple Job Definition" will appear in the job definition list.
    Best Regards
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Zhengyu Guo
    TechNet Community Support

  • Report t codes

    Dear All,
    pl let me know the Tcodes for the FICO Stadard Reports and Formats.
    Cash Day book
    Day book
    Sales Register
    Sundry Creditors Statuotory
    Purchase Account
    VAT Computation
    FBT Computation Report
    Cash Flow Summary
    Funds Flow Summary
    Bills Reveivable Report
    Profit and Loss A/C
    Ratio Analysis
    Balance Sheet
    Trial Balance
    Bills Payable Reports
    Negative Ledger A/C's
    Form ER 1 (Ann19,46)
    Form ST -3
    GAR-7
    FBT Filling Form(283)
    TDS/TCS tax challan form(281)
    Form W
    Fomr 1
    Form 280
    Form  16,16A
    Form 26 Q
    Form 24,27A and Annex
    Income Tax return

    Hi,
    Run the T Code Se16 and look for the table TSTC. In the selection criteria give ' Z* '.
    This will give you all Z transactions from the table.
    Identifying whether its a report or some process transaction, will have to done manually based on the descriptions given in the table.
    Hope that helps.
    Regards,
    Rohit.
    Edited by: Rohit Chauhan on Oct 8, 2009 8:12 AM

  • How to reference to a relative group of cells in numbers for iOS ?

    Hi,
    I'm trying to use numbers on my iPhone to track my daily work expenses, inputting my data through a formulary.
    What I've come up with so far is a 2-sheet, 1-formulary document. The first sheet contains the raw data : week number, date, place, expenses, and a few checkboxes. The second sheet is meant to be a weekly summary where each row synthesizes a whole 5-day week, giving me the total money spent on that week and the number of checkboxes ticked.
    Say my raw data sheet contains daily expenses on column C.
    In my weekly summary sheet, I write a formula that sums first sheet's C1:C5.
    But as I copy that formula down, I don't get the result I want. Where I look for the sum of first sheet's C6:C10, I get the sum of C2:C6, C3:C7 when I want C11:C15 and so on.
    How can I tell Numbers to give me the sum of a group of 5 consecutive rows, and then use the same formula on the next rows getting the sums of the next 5-item group ? (manually modifying each formula to refer to the right cells is not an option)
    Hope that was clear. Thanks for your answers.
    Guillaume

    Hi j4nitor
    Would the "Find" option in the "Tools" menu do the job?
    If you search for the part number, it will be highlightet, and with your outline for a setup, I guess that would give you the overview you are talking about.
    Hope it helps.
    Best regards
    Ole

  • ITunes U Raw Data Report fail to show Chinese Character

    As catpioned. The tsv file seems in wrong encoding. All chinese characters are displayed as question marks ---> "????" .
    To Apple Support, please fix it as soon as possible.
    To other iTunes U Site Administrator, did you encounter the same problem?

    Thanks for your feedback, Darudh.
    Can't agree with you more. The original weekly summary report is good enough. We have already built up the datafeed automation base on that. All of a sudden Apple just stop delivering the old file and introduce this new format. We have to rebuild the whole thing again.
    Appreciate if Apple can resume the weekly summary report delivery.

  • .BridgeCache files and conversion from Br5 and Br6

    Since the Bridge Cache file structure has changed between Bridge 5 and Bridge 6, the cache file structure "should" be rebuilt (an ouch if you have a large cache system).
    Are the .BridgeCache/.BridgeCacheT files created by Bridge 5 compatible with Bridge 6?  In other words, will the information in these files allow the speed-up of the cache rebuild?  Will Bridge 6 completely reprocess all images and create new versions of these .BridgeCache files?  This information is useful if you have to handle the cache re-construction of massive cache system (I have 700,000 image in cashe - weeks to full reprocess).
    Please Please Please Mr Adobe, increase the number cache entries for Bridge 6 to be at least 1,000,000 files (up from the current max of 500,000

    Thanks for the reply.
    I very strongly hope your folks can change the upper document count limit in Bridge 6 to 1,000,000 or larger.  This would make things more reasonable for those folks with large image systems. I am crossing my fingers and hope the gods will comply to my request. 
    Gee wizz, if you would provide me with a test edition of bridge with this feature I would immediately run this as an exaustive test on my current system

  • BI Publisher Bursting Problem

    Hi,
    I am trying to burst my report from BI Publisher.
    When I mention a FORMAT of PDF the bursting happens perfectly.
    But when I mention a FORMAT of EXCEL and file name as SAMPLE2401201412.xls, system goes nuts and give the below error.
    Output failed.
    [INSTANCE_ID=xxxxxxxxxxx.1383223600258] [SUBJOB_ID=2173015]
    Document generation failed
    [INSTANCE_ID=xxxxxxxxxxx.1383223600258] [OUTPUT_ID=2158251][ReportProcessor]Error rendering documentoracle.xdo.servlet.scheduler.ProcessingException: [ReportProcessor]Error rendering document
    at oracle.xdo.enterpriseScheduler.bursting.BurstingReportProcessor.renderReport(BurstingReportProcessor.java:447)
    at oracle.xdo.enterpriseScheduler.bursting.BurstingReportProcessor.onMessage(BurstingReportProcessor.java:127)
    at oracle.xdo.enterpriseScheduler.uti
    My Bursting parameters are coming from table
    KEY = 'ABC'
    TEMPLATE = 'DWPIA'
    TEMPLATE_FORMAT = 'RTF'
    LOCALE = en-US
    OUTPUT_FORMAT = EXCEL
    DEL_CHANNEL = FILE
    PARAMETER1 = /mnt/Business_Intelligence/Interim/2014/2014-P04/2014-P04-W2/Business Week SUMMARY/
    PARAMETER2 = SAMPLE2401201412.xls
    I have no clue why it runs OK for PDF and not for EXCEL...... any suggestion will be helpful.
    Cheers

    Exactly Same thing for me : (Here bipublisher log file (TRACE 32)) :
    [2014-03-25T12:36:34.207+01:00] [bi_server1] [WARNING] [] [oracle.xdo] [tid: 42] [userId: *****] [ecid: 0000KJsywYNAlJh5TB^Ayc1JCMTS000005,0] [APP: bipublisher#11.1.1]  !!!!!!! BurstingReportProcessor.renderReport :: [ReportProcessor]Error rendering document for [INSTANCE_JOB_ID=8552][[
    [JOB_ID=8568]
    [OUTPUT_ID=7851]
    [REPORT_URL=/~weblogic/TEST/report.xdo]
    [TEMPLATE=report]
    [OUTPUT_FORMAT=excel]
    ::oracle.xdo.servlet.data.DataException: Invalid format requested: excel
        at oracle.xdo.servlet.ReportException.fillInStackTrace(ReportException.java:124)
        at oracle.xdo.servlet.data.DataException.fillInStackTrace(DataException.java:127)
        at java.lang.Throwable.<init>(Throwable.java:196)
        at java.lang.Exception.<init>(Exception.java:41)
        at oracle.xdo.servlet.ReportException.<init>(ReportException.java:36)
        at oracle.xdo.servlet.data.DataException.<init>(DataException.java:39)
        at oracle.xdo.servlet.ReportImpl.renderScheduledJob(ReportImpl.java:882)
        at oracle.xdo.enterpriseScheduler.bursting.BurstingReportProcessor.renderReport(BurstingReportProcessor.java:386)
        at oracle.xdo.enterpriseScheduler.bursting.BurstingReportProcessor.onMessage(BurstingReportProcessor.java:127)
        at oracle.xdo.enterpriseScheduler.util.CheckpointEnabledListener.onMessage(CheckpointEnabledListener.java:25)
        at oracle.xdo.enterpriseScheduler.jmswrapper.client.JMSMessageConsumer.processMessage(JMSMessageConsumer.java:231)
        at oracle.xdo.enterpriseScheduler.jmswrapper.client.ThreadedMessageDispatcher$DispatchWorker.run(ThreadedMessageDispatcher.java:157)
        at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)
        at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)
        at java.lang.Thread.run(Thread.java:662)
    [2014-03-25T12:36:34.209+01:00] [bi_server1] [WARNING] [] [oracle.xdo] [tid: 42] [userId: *****] [ecid: 0000KJsywYNAlJh5TB^Ayc1JCMTS000005,0] [APP: bipublisher#11.1.1]  !!!!!!! BurstingReportProcessor.renderReport :: [ReportProcessor]Error rendering document::oracle.xdo.servlet.scheduler.ProcessingException: [ReportProcessor]Error rendering document[[
        at oracle.xdo.enterpriseScheduler.bursting.BurstingReportProcessor.renderReport(BurstingReportProcessor.java:447)
        at oracle.xdo.enterpriseScheduler.bursting.BurstingReportProcessor.onMessage(BurstingReportProcessor.java:127)
        at oracle.xdo.enterpriseScheduler.util.CheckpointEnabledListener.onMessage(CheckpointEnabledListener.java:25)
        at oracle.xdo.enterpriseScheduler.jmswrapper.client.JMSMessageConsumer.processMessage(JMSMessageConsumer.java:231)
        at oracle.xdo.enterpriseScheduler.jmswrapper.client.ThreadedMessageDispatcher$DispatchWorker.run(ThreadedMessageDispatcher.java:157)
        at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)
        at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)
        at java.lang.Thread.run(Thread.java:662)

Maybe you are looking for

  • Obiee 11.1.1.6.0 error

    hi experts during the sampleapp deployment i have faced some doubts can any body clarify me with the correct answers according to the sample app deployment document http://www.oracle.com/technetwork/middleware/bi-foundation/downloads/sampleapp107-dep

  • Downloaded book doesn't show up

    Have downloaded an ePub book, and it shows up on ADE when first downloaded, but when I leave ADE and come back, it does not show up.  Is there some way to "search" for a particular book?  This book is a collection of 12 novels, 12 different authors,

  • Hdd not picked up at right size

    im sorry to post this here, im sure there a simple and easy answer but i am not in an environment to find that out right now so ill ask and hope i get a response. My board detects the hdd as 180gb western digital, im using an 875p neo fis2r and it wo

  • View what queries have been run in SQL 2005

    I've been asked to have a look at building an MI mart from a transactional DB.  The source Db is in SQL 2005. The transaction logs are showing that there are approx. 35-40 timeouts per day while the quantity of transactions written is  <1000 per day.

  • Spry Repeat List does not appear in Google Chrome 28

    Spry repeat list works in IE8 and Firefox 22.  However in Google Chrome 28 no data appears (data is blank).  This is the code: <div>               <p><span class="headline">events</span></p>               <div spry:region="Events">                 <d