See the request previous aging bucket

Hi all

Work ERP Version 11.5.10.2


I need help, in my query to show the previous date segment.

Please see the below query

Select salesper_name client_name customer_number, TRX_NUMBER, amount_due_original,
amount_due_remaining, gl_date, amount_remaining, SALESREP_ID, end_date,

SUM (CASE WHEN ROUND (nvl (to_date (: P_TO_DATE, "HH24:MI:SS RRRR/MM/JJ), SYSDATE)-end_date, 0) < 1 THEN amount_remaining ELSE 0 END) current_buck,.
SUM (CASE WHEN ROUND (nvl (to_date (: P_TO_DATE, "HH24:MI:SS RRRR/MM/JJ), SYSDATE)-end_date, 0) BETWEEN 1 AND 30 THEN amount_remaining ELSE 0 END) buck1,.
SUM (CASE WHEN ROUND (nvl (to_date (: P_TO_DATE, "HH24:MI:SS RRRR/MM/JJ), SYSDATE)-end_date, 0) BETWEEN 31 AND 60, THEN amount_remaining ELSE 0 END) buck2,.
SUM (CASE WHEN ROUND (nvl (to_date (: P_TO_DATE, "HH24:MI:SS RRRR/MM/JJ), SYSDATE)-end_date, 0) BETWEEN 61 AND 90 amount_remaining THEN ELSE 0 END) buck3,.
SUM (CASE WHEN ROUND (nvl (to_date (: P_TO_DATE, "HH24:MI:SS RRRR/MM/JJ), SYSDATE)-end_date, 0) BETWEEN 91 AND 180 THEN amount_remaining ELSE 0 END) buck4,.
SUM (CASE WHEN ROUND (nvl (to_date (: P_TO_DATE, "HH24:MI:SS RRRR/MM/JJ), SYSDATE)-end_date, 0) BETWEEN 181 to 270 THEN amount_remaining ELSE 0 END) buck6,.
SUM (CASE WHEN ROUND (nvl (to_date (: P_TO_DATE, "HH24:MI:SS RRRR/MM/JJ), SYSDATE)-end_date, 0) BETWEEN 271 AND 360 THEN amount_remaining ELSE 0 END) buck5,.
SUM (CASE WHEN ROUND (nvl (to_date (: P_TO_DATE, "HH24:MI:SS RRRR/MM/JJ), SYSDATE)-end_date, 0) > = 361 THEN amount_remaining ELSE 0 END) buck7
from (SELECT aps. TRX_NUMBER, rs.NAME salesper_name,
AC. Customer_name, ac.customer_number, aps.amount_due_original,
APS.amount_due_remaining, aps.gl_date,
-SUM (aps.amount_due_remaining
SUM (DECODE (APS. INVOICE_CURRENCY_CODE, 'SAR', APS. AMOUNT_DUE_REMAINING, (APS. AMOUNT_DUE_REMAINING * APS. EXCHANGE_RATE))
+ (SELECT nvl (SUM (NVL (Duke. AMOUNT_APPLIED, 0)), 0)
Of ar_receivable_applications_v hayat
WHERE arav.GL_DATE > nvl (to_date (: P_TO_DATE, "HH24:MI:SS RRRR/MM/JJ), sysdate)
AND Duke. TRX_NUMBER = aps. TRX_NUMBER
AND aps. CLASS = 'INV '.
AND Duke. CUSTOMER_ID = aps. CUSTOMER_ID
)
+ (select nvl (SUM (NVL (acma. AMOUNT_APPLIED_BASE, 0)), 0) of acma, ra_customer_trx_partial_v rctpv1 ARBV_CREDIT_MEMO_APPLICATIONS
where acma. APPLIED_PAYMENT_SCHEDULE_ID = aps. PAYMENT_SCHEDULE_ID
and rctpv1. CUSTOMER_TRX_ID = acma. CUSTOMER_TRX_ID
and rctpv1.GD_GL_DATE > nvl (to_date (: P_TO_DATE, "HH24:MI:SS RRRR/MM/JJ), sysdate))
+ (select nvl (SUM (adj.amount), 0)-for the manuval credit memo)
of ar_app_adj_v Wo, ra_customer_trx_all cars
where adj.customer_trx_id = aps. CUSTOMER_TRX_ID
and adj.GL_DATE > nvl (to_date (: P_TO_DATE, "HH24:MI:SS RRRR/MM/JJ), sysdate)
and adj.ps_class "Cm", "DM".
and aps.customer_trx_id = rac.customer_trx_id
and rac.trx_number not in('706575','PO19793/INV#25013#1'))
+ (Nvl SELECT (SUM (NVL (arav.amount_applied, 0)) *-1.0))
Of ar_receivable_applications_v hayat
WHERE arav.GL_DATE > TO_DATE (: p_to_date, ' HH24:MI:SS RRRR/MM/DD ')
AND Duke. CUSTOMER_ID = aps. CUSTOMER_ID
AND Duke. CASH_RECEIPT_ID = aps. CASH_RECEIPT_ID
AND Duke. RECEIPT_NUMBER = aps. TRX_NUMBER
AND aps. CLASS = "PMT".
AND aps.GL_DATE_CLOSED > TO_DATE (: p_to_date, ' HH24:MI:SS RRRR/MM/DD ')
amount_remaining))
RS. SALESREP_ID
aps.due_date
Of ar_payment_schedules aps, ra_customers ac,.
ar_lookups look,
ar_lookups look_status,
hz_cust_accounts cust,
advantage hz_parties
hz_cust_site_uses site_uses,
hz_cust_acct_sites acct_site,
hz_party_sites party_site,
hz_locations loc,
ra_salesreps rs
WHERE the aps.gl_date < =.
NVL (TO_DATE (: p_to_date, "RRRR/MM/DD HH24:MI:SS"), SYSDATE)
AND cust.cust_account_id = acct_site.cust_account_id
AND cust.party_id = party.party_id
AND acct_site.party_site_id = party_site.party_site_id (+)
AND loc.location_id (+) = party_site.location_id
AND acct_site.cust_acct_site_id = site_uses.cust_acct_site_id (+)
AND look.lookup_type (+) = "SITE_USE_CODE".
AND look.lookup_code (+) = site_uses.site_use_code
AND look_status.lookup_type (+) = "CODE_STATUS".
AND look_status.lookup_code (+) = NVL (cust.status, 'A')
AND SUBSTRB (look.meaning, 1, 8) = ' Bill to '.
AND site_uses. PRIMARY_SALESREP_ID = rs. SALESREP_ID
AND rs.NAME = nvl(:p_sale_per,rs.NAME)
AND ac. CUSTOMER_NUMBER = cust. ACCOUNT_NUMBER
AND aps. CUSTOMER_ID = ac. CUSTOMER_ID
AND aps. CUSTOMER_SITE_USE_ID = site_uses. SITE_USE_ID
GROUP OF rs.NAME, ac.customer_name,
AC.customer_number,
APS.amount_due_original,
APS.amount_due_remaining,
APS.gl_date,
APS.trx_number
rs. SALESREP_ID, aps.due_date
ORDER BY rs.NAME)
Group of TRX_NUMBER, salesper_name, client_name, customer_number, amount_due_original,
amount_due_remaining, gl_date, amount_remaining, SALESREP_ID, end_date

Concerning

Maybe

select TRX_NUMBER,salesper_name,customer_name,customer_number,amount_due_original,
       amount_due_remaining,gl_date,amount_remaining,SALESREP_ID,due_date,
       SUM(CASE WHEN ROUND(nvl(to_date(:P_TO_DATE,'RRRR/MM/DD HH24:MI:SS'),SYSDATE) - due_date,0) < -30
                THEN amount_remaining
                ELSE 0
           END) previous_buck,
       SUM(CASE WHEN ROUND(nvl(to_date(:P_TO_DATE,'RRRR/MM/DD HH24:MI:SS'),SYSDATE) - due_date,0) BETWEEN 0 AND -30
                THEN amount_remaining
                ELSE 0
           END) current_buck,
       SUM(CASE WHEN ROUND(nvl(to_date(:P_TO_DATE,'RRRR/MM/DD HH24:MI:SS'),SYSDATE) - due_date,0) BETWEEN 1 AND 30
                THEN amount_remaining
                ELSE 0
           END) buck1,
       SUM(CASE WHEN ROUND(nvl(to_date(:P_TO_DATE,'RRRR/MM/DD HH24:MI:SS'),SYSDATE) - due_date,0) BETWEEN 31 AND 60
                THEN amount_remaining
                ELSE 0
           END) buck2,
       SUM(CASE WHEN ROUND(nvl(to_date(:P_TO_DATE,'RRRR/MM/DD HH24:MI:SS'),SYSDATE) - due_date,0) BETWEEN 61 AND 90
                THEN amount_remaining
                ELSE 0
           END) buck3,
       SUM(CASE WHEN ROUND(nvl(to_date(:P_TO_DATE,'RRRR/MM/DD HH24:MI:SS'),SYSDATE) - due_date,0) BETWEEN 91 AND 180
                THEN amount_remaining
                ELSE 0
           END) buck4,
       SUM(CASE WHEN ROUND(nvl(to_date(:P_TO_DATE,'RRRR/MM/DD HH24:MI:SS'),SYSDATE) - due_date,0) BETWEEN 181 AND 270
                THEN amount_remaining
                ELSE 0
           END) buck6,
       SUM(CASE WHEN ROUND(nvl(to_date(:P_TO_DATE,'RRRR/MM/DD HH24:MI:SS'),SYSDATE) - due_date,0) BETWEEN 271 AND 360
                THEN amount_remaining
                ELSE 0
           END) buck5,
       SUM(CASE WHEN ROUND(nvl(to_date(:P_TO_DATE,'RRRR/MM/DD HH24:MI:SS'),SYSDATE) - due_date,0) >= 361
                THEN amount_remaining
                ELSE 0
           END) buck7
  from (SELECT aps.TRX_NUMBER,rs.NAME salesper_name,ac.customer_name, ac.customer_number, aps.amount_due_original,
               aps.amount_due_remaining, aps.gl_date,
               SUM(decode(aps.invoice_currency_code,'SAR',aps.amount_due_remaining,(aps.amount_due_remaining * aps.exchange_rate)) +
                   (SELECT nvl(SUM(NVL(arav.AMOUNT_APPLIED,0)),0)
                      FROM ar_receivable_applications_v arav
                     WHERE arav.GL_DATE > nvl(to_date(:P_TO_DATE,'RRRR/MM/DD HH24:MI:SS'),sysdate)
                       AND arav.TRX_NUMBER = aps.TRX_NUMBER
                       AND aps.CLASS = 'INV'
                       AND arav.CUSTOMER_ID = aps.CUSTOMER_ID
                   ) +
                   (select nvl(SUM(NVL(acma.AMOUNT_APPLIED_BASE,0)),0)
                      from ARBV_CREDIT_MEMO_APPLICATIONS acma,
                           ra_customer_trx_partial_v rctpv1
                     where acma.APPLIED_PAYMENT_SCHEDULE_ID=aps.PAYMENT_SCHEDULE_ID
                       and rctpv1.CUSTOMER_TRX_ID = acma.CUSTOMER_TRX_ID
                       and rctpv1.GD_GL_DATE > nvl(to_date(:P_TO_DATE,'RRRR/MM/DD HH24:MI:SS'),sysdate)
                   ) +
                   (select nvl(SUM(adj.amount),0) -- for manuval credit note
                      from ar_app_adj_v adj,
                           ra_customer_trx_all rac
                     where adj.customer_trx_id = aps.CUSTOMER_TRX_ID
                       and adj.GL_DATE > nvl(to_date(:P_TO_DATE,'RRRR/MM/DD HH24:MI:SS'),sysdate)
                       and adj.ps_class in ('CM','DM')
                       and aps.customer_trx_id = rac.customer_trx_id
                       and rac.trx_number not in('706575','PO19793/INV#25013#1')
                   ) +
                   (SELECT nvl(SUM(NVL(arav.amount_applied, 0))*-1,0)
                      FROM ar_receivable_applications_v arav
                     WHERE arav.GL_DATE > TO_DATE(:p_to_date,'RRRR/MM/DD HH24:MI:SS')
                       AND arav.CUSTOMER_ID = aps.CUSTOMER_ID
                       AND arav.CASH_RECEIPT_ID = aps.CASH_RECEIPT_ID
                       AND arav.RECEIPT_NUMBER = aps.TRX_NUMBER
                       AND aps.CLASS = 'PMT'
                       AND aps.GL_DATE_CLOSED > TO_DATE(:p_to_date,'RRRR/MM/DD HH24:MI:SS')
                   )
                  ) amount_remaining,
                  RS.SALESREP_ID,
                  aps.due_date
             FROM ar_payment_schedules aps,
                  ra_customers ac,
                  ar_lookups look,
                  ar_lookups look_status,
                  hz_cust_accounts cust,
                  hz_parties party,
                  hz_cust_site_uses site_uses,
                  hz_cust_acct_sites acct_site,
                  hz_party_sites party_site,
                  hz_locations loc,
                  ra_salesreps rs
            WHERE aps.gl_date <= NVL(TO_DATE(:p_to_date,'RRRR/MM/DD HH24:MI:SS'),SYSDATE)
              AND cust.cust_account_id = acct_site.cust_account_id
              AND cust.party_id = party.party_id
              AND acct_site.party_site_id = party_site.party_site_id(+)
              AND loc.location_id(+) = party_site.location_id
              AND acct_site.cust_acct_site_id = site_uses.cust_acct_site_id(+)
              AND look.lookup_type(+) = 'SITE_USE_CODE'
              AND look.lookup_code(+) = site_uses.site_use_code
              AND look_status.lookup_type(+) = 'CODE_STATUS'
              AND look_status.lookup_code(+) = NVL (cust.status, 'A')
              AND SUBSTRB (look.meaning, 1, 8)= 'Bill To'
              AND site_uses.PRIMARY_SALESREP_ID=rs.SALESREP_ID
              AND rs.NAME = nvl(:p_sale_per,rs.NAME)
              AND ac.CUSTOMER_NUMBER=cust.ACCOUNT_NUMBER
              AND aps.CUSTOMER_ID=ac.CUSTOMER_ID
              AND aps.CUSTOMER_SITE_USE_ID=site_uses.SITE_USE_ID
            GROUP BY rs.NAME,ac.customer_name,ac.customer_number,aps.amount_due_original,aps.amount_due_remaining,
                     aps.gl_date,aps.trx_number,rs.SALESREP_ID,aps.due_date
            ORDER BY rs.NAME
       )
 group by TRX_NUMBER,salesper_name,customer_name,customer_number,amount_due_original,
          amount_due_remaining,gl_date,amount_remaining,SALESREP_ID,due_date

Concerning

Etbin

Tags: Database

Similar Questions

  • See the requests and responses

    Is there a way or a tool that can help us to see the various requests and responses of a blackberry app, whether http or no matter what protocol?

    If you use the Simulator, you can use any regular packets sniffer.

  • Want to see the request of general ledger uses ERPi

    Hi Experts,

    We use Hyperion in our system, we would like to check the queries used to extract data from General Ledger Oracle by ERPi.

    Where can I see the queries? Please let me know the navigation.

    I tried the workspace > manage > ERPi Inetgrator.

    But could not find the rule name and other configurations.

    Thanks in advance.

    Sorry I should have been more clear that I meant the operator steps in the workshop.

  • where is the arrow "previous age"?

    I just upgraded to FF3 from FF4. In FF3, next to the arrow «Back a page», there is a small triangle pointing down. When I clicked it, I got a list of the last 8 (I think) pages I had visited in this tab.

    In FF4, this triangle is gone. How can I get a clickable list of the previous pages?

    Sorry, I expect a question not a suggestion. Yes, it would have helped if Mozilla had informed the beta users and regular users with this information beforehand. This was actually blocked in towards the end of the beta process, which I'm all for who she never belonged there. Unfortunately, we're going to users to the testers poorly informed to see if things are "intuitive" which makes it difficult for people already using features of Firefox and other applications. Prior experience is real "intuitiveness" where no test subjects without prior experience, which is the major fallacies in Mozilla and Microsoft research, which would be less likely to occur with products from IBM if real research was ergonomic use and profiles.

  • assistance at the request of aging. don't know how to do this?

    Guys im a bit stuck usually I have a small idea how even start my query but for it that I don't even know where to begin to tackle
    I have a table as follows.
           create table TRRACCD (
           TRRACCD_GRNT_CODE varchar2(6),
           TRRACCD_TRANS_dATE date,
           TRRACCD_AMOUNT number(17,2),
           trraccd_detail_code varchar2(6))
    with the data as follows
    INSERT INTO TRRACCD (TRRACCD_GRNT_CODE, TRRACCD_TRANS_DATE, TRRACCD_AMOUNT, TRRACCD_DETAIL_CODE) VALUES ('400364',to_date('15-FEB-10', 'DD-MM-RR'),19764.77,'GBIL');
    INSERT INTO TRRACCD (TRRACCD_GRNT_CODE, TRRACCD_TRANS_DATE, TRRACCD_AMOUNT, TRRACCD_DETAIL_CODE) VALUES ('400364',to_date('12-MAR-10', 'DD-MM-RR'),2054.29,'GBIL');
    INSERT INTO TRRACCD (TRRACCD_GRNT_CODE, TRRACCD_TRANS_DATE, TRRACCD_AMOUNT, TRRACCD_DETAIL_CODE) VALUES ('400364',to_date('20-APR-10', 'DD-MM-RR'),4111.46,'GBIL');
    INSERT INTO TRRACCD (TRRACCD_GRNT_CODE, TRRACCD_TRANS_DATE, TRRACCD_AMOUNT, TRRACCD_DETAIL_CODE) VALUES ('400364',to_date('14-MAY-10', 'DD-MM-RR'),2570.1,'GBIL');
    INSERT INTO TRRACCD (TRRACCD_GRNT_CODE, TRRACCD_TRANS_DATE, TRRACCD_AMOUNT, TRRACCD_DETAIL_CODE) VALUES ('400364',to_date('10-JUN-10', 'DD-MM-RR'),2176.16,'GBIL');
    INSERT INTO TRRACCD (TRRACCD_GRNT_CODE, TRRACCD_TRANS_DATE, TRRACCD_AMOUNT, TRRACCD_DETAIL_CODE) VALUES ('400364',to_date('12-JUL-10', 'DD-MM-RR'),4756.29,'GBIL');
    INSERT INTO TRRACCD (TRRACCD_GRNT_CODE, TRRACCD_TRANS_DATE, TRRACCD_AMOUNT, TRRACCD_DETAIL_CODE) VALUES ('400364',to_date('13-AUG-10', 'DD-MM-RR'),28500.62,'GCSH');
    INSERT INTO TRRACCD (TRRACCD_GRNT_CODE, TRRACCD_TRANS_DATE, TRRACCD_AMOUNT, TRRACCD_DETAIL_CODE) VALUES ('400364',to_date('16-AUG-10', 'DD-MM-RR'),3602.3,'GBIL');
    INSERT INTO TRRACCD (TRRACCD_GRNT_CODE, TRRACCD_TRANS_DATE, TRRACCD_AMOUNT, TRRACCD_DETAIL_CODE) VALUES ('400364',to_date('17-SEP-10', 'DD-MM-RR'),3995.79,'GBIL');
    INSERT INTO TRRACCD (TRRACCD_GRNT_CODE, TRRACCD_TRANS_DATE, TRRACCD_AMOUNT, TRRACCD_DETAIL_CODE) VALUES ('400364',to_date('11-OCT-10', 'DD-MM-RR'),3413.6,'GBIL');
    INSERT INTO TRRACCD (TRRACCD_GRNT_CODE, TRRACCD_TRANS_DATE, TRRACCD_AMOUNT, TRRACCD_DETAIL_CODE) VALUES ('400364',to_date('11-NOV-10', 'DD-MM-RR'),2119.86,'GBIL');
    INSERT INTO TRRACCD (TRRACCD_GRNT_CODE, TRRACCD_TRANS_DATE, TRRACCD_AMOUNT, TRRACCD_DETAIL_CODE) VALUES ('400364',to_date('10-DEC-10', 'DD-MM-RR'),5905.52,'GBIL');
    INSERT INTO TRRACCD (TRRACCD_GRNT_CODE, TRRACCD_TRANS_DATE, TRRACCD_AMOUNT, TRRACCD_DETAIL_CODE) VALUES ('400364',to_date('10-DEC-10', 'DD-MM-RR'),12008.21,'GBIL');
    INSERT INTO TRRACCD (TRRACCD_GRNT_CODE, TRRACCD_TRANS_DATE, TRRACCD_AMOUNT, TRRACCD_DETAIL_CODE) VALUES ('400364',to_date('11-JAN-11', 'DD-MM-RR'),-10574.05,'GBIL');
    INSERT INTO TRRACCD (TRRACCD_GRNT_CODE, TRRACCD_TRANS_DATE, TRRACCD_AMOUNT, TRRACCD_DETAIL_CODE) VALUES ('400364',to_date('11-JAN-11', 'DD-MM-RR'),20241.9,'GBIL');
    However what I need to do, is ending up with an ageing for elements of sums up so the expected output should be something like
    tbrraccd_grnt_Code      30-60                    60-90         over90 
    400364                      20,241.90              2119.86       7,370.09  
    
    
    if your confused about how i arrived at the 7370.90 is because i have to subtract entries with GCSH on them and i also need to take 
    entries that are - and applied them to the oldest period if the balance of the period is positive. 
    IM inclined to say I can make it work with sql but the only other way I can think of is to use plsql?... any suggestions or solutions would be greatly appreciated.


    the closest I got to acomplishing this query without pl is the following. I know is lame, but I need help.

    SELECT TRRACCD_GRNT_CODE,
           TRRACCD_TRANS_dATE,
           TRRACCD_AMOUNT,
           trraccd_detail_code,
           round(sysdate - TRRACCD_TRANS_dATE) "total days"
           --sum(case when round(sysdate - TRRACCD_TRANS_dATE)>190 then "greater then 190"end )
           FROM TRRACCD
           where trraccd_grnt_Code = '400364'
           ORDER BY TRRACCD_GRNT_CODE,
                    TRRACCD_TRANS_dATE,
                    trraccd_detail_code;   

    Hello

    You may have noticed a resemblance between all these CASE expressions. I think the code easier to debug and maintain if you factored out them like this:

    WITH     got_col_num     AS
    (
         SELECT     trraccd_grnt_code
         ,     CASE
                   WHEN  trraccd_detail_code = 'GCSH'     THEN  -trraccd_amount
                                            ELSE   trraccd_amount
              END          AS net_amount
         ,     trraccd_detail_code
         ,     CASE
                  WHEN  trraccd_amount < 0               THEN  4
                  WHEN  trraccd_trans_date > SYSDATE - 30     THEN  1
                  WHEN  trraccd_trans_date > SYSDATE - 60     THEN  2
                  WHEN  trraccd_trans_date > SYSDATE - 90     THEN  3
                                            ELSE  4
              END          AS col_num
         FROM     trraccd
         WHERE     trraccd_trans_date     <= SYSDATE
    )
    SELECT       trraccd_grnt_code
    ,       SUM (CASE WHEN col_num = 1 THEN net_amount END)     AS "0-29"
    ,       SUM (CASE WHEN col_num = 2 THEN net_amount END)     AS "30-59"
    ,       SUM (CASE WHEN col_num = 3 THEN net_amount END)     AS "60-89"
    ,       SUM (CASE WHEN col_num = 4 THEN net_amount END)     AS "90 and over"
    FROM       got_col_num
    GROUP BY  trraccd_grnt_code
    ORDER BY  trraccd_grnt_code
    ;
    

    Output (similar to the last output above):

    TRRACC       0-29      30-59      60-89 90 and over
    ------ ---------- ---------- ---------- -----------
    400364    20241.9   17913.73    2119.86     7370.09
    
  • Color see the request after the code

    Hi all!
    I'm you bugging with another problem I encountered: P
    Table:
    ID NAME COLOR
    1 green #66FF00

    I have a form page, when I insert the name and using a color picker item I select a color. On the second page, I have my report which shows me

    COLOR name
    Green #66FF00

    How do I get instead of the color code, the actual color in my report? I don't want to see this color code, but the color instead. Is it possible to do?

    I tried something with blob, but without success

    Standard report or interactive?

    If the first case, use the HTML layout of the Expression attribute on the COLOR column columns to have something like < div style = "background-color: #COLOR #;" height = 16px; width = 16px"> & nbsp; < / div >.

    If it is an interactive report, you will need to generate as a column in the query.

  • Why U-tube wonder of my birth 'DAY' to see the video (I went 80)

    American law apparently has some small videos seen by children under the age of 13,
    and for this reason, Mozilla needs to know if we are this age. The U-Tube
    pop up wants to know the day, the month and the year of my birth. There is nothing in American law that requires more that year one is born in order to determine the age of a person.

    Since I'm almost 83 years, I entered only in the year I was born. I don't believe in giving the
    day and month of birth in the registers by strangers, because it's a key for identity theft information. If you want to know the video deals with African culture, namely the colorful costumes of the hundreds of
    Swazi-land Zulu dancers for their King in front of thousands of spectators. I've seen
    the same and before similar videos and the lockout was noticed, after I have updated to the 31.0 FF,
    (MacOS 10.8.5), yesterday.

    Enter only the year of birth is not accepted as proof that I'm not a child, and the video is now locked from view.

    When I tried to get help on the request of age page, my email and password for Google would not accept. I tried 3 times, but the same email and password opens but all my other Google, Google Earth, and Firefox
    access. So apparently those who want that my birthday detailed already lost some of the data they had.

    I hope Mozilla people who worked on this page to access at another glance.

    Mozilla has nothing to do with YouTube and how they determine the age of their viewers. See Google for support.

  • Version 38.0.1 does not see the passwords stored in previous versions

    Version 38.0.1 does not see the previously saved passwords, and urged it to re - enter and save the password. After revert you to the version saved 31.7.0 pass back too. We have more than hundreds of copies of the program and all cached passwords, users do not even know what their password. This failure is a serious problem.

    Problem solved. Probably the file has been corrupted signons3.txt. I deleted the file, and the new passwords are kept. After this version of the software update and new version I've seen passwords, create a logins.json file and now everything is fine. On all other computers in the company such a problem does not arise.

  • The requested URL was rejected. Please see your administrator. Your support is ID: 1237142

    The requested URL was rejected. Please see your administrator.

    Your support is ID: 12371425760646637041

    Impossible to allow:
    missing service xapi node
    Please visit http://www.sony.con/mydash for help with this problem.

  • When you send an e-mail using Outlook Express, I immediately get this message; "Some errors occurred while processing the requested tasks. Please see the list of errors below for more details"

    When you send an e-mail using Outlook Express, I immediately get this message; "Some errors occurred while processing the requested tasks. Please see the list of errors below for more details". Unfortunately, there are no errors listed below and the green bar is frozen on the screen. The message remains in my Outbox and repeated again and again sending. There is absolutely no record and file sent in my sent box. TIA - Ernie

    You have apparent dbx file corruption. A common problem.
     
    Spend most of your messages out of the Inbox and then create new folders to send and sent items box after having moved the messages you want to save to a local folder that you create.
     
    Tools | Options | Maintenance | Store folder will reveal the location of your Outlook Express files. Note the location and navigate on it in Explorer Windows or, copy and paste in start | Run.
     
    In Windows XP, Win2K & Win2K3 the OE user files (DBX and WAB) are by default marked as hidden. To view these files in Windows Explorer, you must enable Show hidden files and folders under start | Control Panel | Folder Options icon | Opinion, or in Windows Explorer. Tools | Folder options | View.
     
    With OE closed, find the DBX files for the items in the Outbox and sent and delete them.  New ones will be created automatically when you open OE.
     
    After you're done, followed by compacting your folders manually while working * off * and do it often.
     
    Click Outlook Express at the top of the the folder tree so no folders are open. Then: File | Work offline (or double-click on work online in the status bar). File | Folder | Compact all folders. Don't touch anything until the compacting is completed.
     
    General precautions for Outlook Express:
     
    Do not archive mail in the receipt or sent items box. Create your own user-defined folders and move messages you want to put in them. Empty the deleted items folder daily. Although the dbx files have a theoretical capacity of 2 GB, I recommend all a 300 MB max for less risk of corruption.
     
    Information on the maximum size of the .dbx files that are used by Outlook Express:
    http://support.Microsoft.com/?kbid=903095
     
    Disable analysis in your e-mail anti-virus program. It is a redundant layer of protection that devours the CPUs, slows down sending and receiving and causes a multitude of problems such as time-outs, account setting changes and has even been responsible for the loss of messages. Your up-to-date A / V program will continue to protect you sufficiently. For more information, see:
    http://www.oehelp.com/OETips.aspx#3 
     
    Why you don't need your anti-virus to scan your email
    http://thundercloud.NET/infoave/tutorials/email-scanning/index.htm
     
    Note that for some AV programs, it may be necessary to uninstall the program and reinstall in custom Mode and uncheck analysis when the option is the result of e-mail messages.
     
    Compact often as specified above.
     
    And backup often.
     
    Outlook Express Quick Backup (OEQB Freeware)
    http://www.oehelp.com/OEBackup/default.aspx 
  • I get an Error Message When you try to send emails. "some errors occurred while processing the requested tasks. Please see the list of errors below for more details". __

    I get an Error Message When you try to send emails. "some errors occurred while processing the requested tasks. Please see the list of errors below for more details".

    But it sends the message anyway... multiple copies, and she also is put in the "Outbox" in Outlook Express as if it is not sent.

    To stop the email to be sent repeatedly to the recipient, I erase it from the "Outbox" but a) you don't know if they really got it) b it is embarrassing for the receiver c) is this a bug I can fix it?

    Thanks for any help.

    You have a corruption of dbx file easily corrected.

    Spend most of your messages out of the Inbox and then create new folders to send and sent items box after having moved the messages you want to save to a local folder that you create.

    Tools | Options | Maintenance | Store folder will reveal the location of your Outlook Express files. Note the location and navigate on it in Explorer Windows or, copy and paste in start | Run.

    In Windows XP, Win2K & Win2K3 the OE user files (DBX and WAB) are by default marked as hidden. To view these files in Windows Explorer, you must enable Show hidden files and folders under start | Control Panel | Folder Options icon | Opinion, or in Windows Explorer. Tools | Folder options | View.

    With OE closed, find the DBX files for the items in the Outbox and sent and delete them.  New ones will be created automatically when you open OE.

    After you're done, followed by compacting your folders manually while working * off * and do it often.

    Click Outlook Express at the top of the the folder tree so no folders are open. Then: File | Work offline (or double-click on work online in the status bar). File | Folder | Compact all folders. Don't touch anything until the compacting is completed.

    General precautions for Outlook Express:

    Do not archive mail in the receipt or sent items box. Create your own user-defined folders and move messages you want to put in them. Empty the deleted items folder daily. Although the dbx files have a theoretical capacity of 2 GB, I recommend all a 300 MB max for less risk of corruption.

    Information on the maximum size of the .dbx files that are used by Outlook Express:
    http://support.Microsoft.com/?kbid=903095

    Disable analysis in your e-mail anti-virus program. It is a redundant layer of protection that devours the CPUs, slows down sending and receiving and causes a multitude of problems such as time-outs, account setting changes and has even been responsible for the loss of messages. Your up-to-date A / V program will continue to protect you sufficiently. For more information, see:
    http://www.oehelp.com/OETips.aspx#3

    Why you don't need your anti-virus to scan your email
    http://thundercloud.NET/infoave/tutorials/email-scanning/index.htm

    Note that for some AV programs, it may be necessary to uninstall the program and reinstall in custom Mode and uncheck analysis when the option is the result of e-mail messages.

    Compact often as specified above.

    And backup often.

    Outlook Express Quick Backup (OEQB Freeware)
    http://www.oehelp.com/OEBackup/default.aspx

    Bruce Hagen
    MS - MVP October 1, 2004 ~ September 30, 2010
    Imperial Beach, CA

  • How do I see the IP Source address of a customer using ACE One-armed-mode of loading balance HTTP proxy request

    I use a device of 4710 Ace deployed in armed mode, use Source TAR to balancing HTTP request to a couple of Proxy servers.

    Everything works well, but the thing is that I do not see the client IP addresses on the Proxy logs, so I can't keep track of them.

    Interfaces and the Nat configs are:

    interface vlan 200

    Description of server-side-VLAN

    Bridge-Group 5

    NAT-pool 5 10.1.1.5 10.1.1.5 netmask 255.255.255.0 pat

    entered service VIP policy

    interface vlan 300

    Client-Side-VLAN description

    Bridge-Group 5

    interface bvi 5

    IP 10.1.1.3 255.255.248.0

    Interface Client-Server virtual description

    IP route 0.0.0.0 0.0.0.0 10.1.1.1

    and the policy looks like this

    Policy-map multi-game VIP

    class port 80

    Balancing vip continues

    policy of balancing port 80

    NAT Dynamics 5 vlan 200

    The resource assignment:

    Sticky ip-netmask 255.255.255.255 address two CLASSES of RESOURCES

    Timeout 5

    Serverfarm Service80

    Any suggestions will be appreciated,

    Thank you

    Hello

    You can use X-forwarded-for to insert the IP address of the client in the header Http. take a look at the link below:

    http://www.Cisco.com/en/us/products/HW/modules/ps2706/products_configura...

    Let me know if you have any questions.

    Kind regards
    Kanwal

    Sent by Cisco Support technique iPhone App

  • Unable to see the parameters required/required in a request competing

    Hi all

    In one of the forums to my place, we are unable to see thecompulsory/mandatory parameters r in the concurrent requests, as I see them as highlighted with a yellow ish color.

    When I press F11 for query programs simultaneously and other things like the users security search > user > Define, again I do not see the field program concurrent name or username yellow turn after I press F11.

    I've attached screenshots for your reference. The purple one is what I am facing the problem with. Red E looks normal as it should.

    I searched a lot for any profile Option or anything else to fix this, but I couldn't find anything. You could help me with this?

    Captureasdf.PNG

    zxcv.PNG

    Thank you

    Prasad

    Hi all

    Finally I found this. I hope that the changes I have made are correct.

    FND: Indicator colors

    Valid values are Yes (default), No, or null. When this profile option is set to Yes:

    • Required fields are displayed in yellow.
    • Queryable fields are displayed in a different color in query mode enter.
    • Read-only fields are rendered in dark grey.

    I made this change to the color RED as the instance 'FND: indicator colors"has been set to 'NO'."

    And now I see that it has changed its colors. Please see the pictures below:

    And the simultaneous requests Phase and status changed, too:

    Thank you all for your help.

    Best,

    Prasad

  • For some reason that I do not see the developer at the bottom of the page links (Page Edit, Session, debug, etc.) How can I fix? Request Express 4.2.2.00.11

    For some reason that I do not see the developer at the bottom of the page links (Page Edit, Session, debug, etc.) How can I fix? Request Express 4.2.2.00.11

    I hope someone could help me!

    Thank you

    -Fury

    It could be caused by a known bug...

    Oracle Application Express 4.2.2 - known issues

    See: 16769040

    Concerning

  • I do not see the previous versions of Adobe Creative Cloud 3.5.1.209 products

    Hi, I don't see the option to view previous versions of Adobe products through the Creative 3.5.1.209 cloud

    This is a new installation, and we were able to select this option before.

    Clues?

    Skärmavbild 2016-03-09 kl. 11.10.48.png

    In this case, contact Adobe customer service that can help you instantly on a session remotely.

    Contact the customer service

Maybe you are looking for

  • Memory &amp; housing SIM of bike g 3rd gen

    Hello I have a few basic queries on my new phone Moto G 3rd Gen a. MotoG 3rd Gen in India has 2 slots SIM, but the 3rd Gen MotoG in the United States has a SIM card slot. All the answers on this? b. also, I bought this phone in version 16 GB and 2 GB

  • Reduced HP product warranty?

    Hello and thanks in advance. Probably I'm missing what is obvious, but I really have doubts about the following: I bought the product mentioned above in a store known worldwide [also present online] exactly on the 02.03.2015 a few days ago. While I w

  • Reset of the CAN bus without knowing the reference of the tasks

    Hello everyone, I use the API CAN channel to read data from a CAN bus while at the same time taking measures using other DAQ devices. When my VI throws an error after the CAN bus has been initialized and started, try to kick start my VI will force th

  • Wireless printer setup question

    I want to print from a laptop computer and office without cables to the printer? Is this possible with a wireless printer?  The office is connected to the network, and the laptop is connected wireless.

  • Sent this letter to a prize me if disc can be?

    Sent this letter to a prize me if disc can be? mine is a lot request information... be if maybe it's true... Thanks for your reply. Internet promotion worldwideREF number. : 07/04/1990Lot number: 9001-BNK-87Lot number: 9001-BNK-87Dear Sir / MadamWe a