Custom procedure does not user apps

Hi all

custom top, procedure of custom schema object is not user apps running. Even if I gave all privellages

User apps

run the test. TEST_GEMS_EBS_GL_SV_PRC

ORA-06550: line 1, column 8:

PLS-00306: wrong number or types of arguments in the call to 'TEST_GEMS_EBS_GL_SV_PRC '.

ORA-06550: line 1, column 8:

PL/SQL: Statement ignored

Concerning

LeFort

Hai Hussein,

Thanks for the kind of support,

I found the solution for above question,.

Even through I have gv all privileges of user apps, I can't run it.

Because someone creating same object name as username, i.e. issues.

Example:

For example:

Named A schema has an object called q. schema named Q exists and has an object called Z.

When you call from SchemaQ.ObjectZ to a scheme A, it looks in schema A Q.Z. Z is not found and displays the following error:

ORA-06550:... : PLS-00302: component 'XYZ' must be declared

Workaround: rename one of the objects Q to R or one letter other than Q.

Concerning

LeFort

Tags: Oracle Applications

Similar Questions

  • Why PL/SQL procedures does not allow users to enter data dynamically at run time?

    Dear all,

    I tried to do a procedure that will search for a group of approval in our database that matches.

    (1) the number of levels

    (2) the number of users by each level

    (3) the id of users by level

    entered by the user.

    I tried various methods to receive user input dynamically at run time, but in vain.

    Finally finished my procedure allowing the user to enter the parameters and then executes the procedure, to which these parameters are passed as arguments. (1 variable for the number of levels and 2 userdefinedarrays with the number of users by level and level respectively)

    Why PL/SQL procedures does not allow users to enter data dynamically at run time?

    Thanks in advance,

    Séverine Suresh

    HEY, Sebastian,

    3035408 wrote:

    Hello Sir,

    My question is that if I'm going to say, the number of levels 5, is there any way by which, at runtime, the procedure prompts me to enter at the start of the number of users per level. Now as soon as I get the number of users per level can I do the procedure ask me to enter the nicknames of the members of each level. I mean, something like a invite.

    Thank you

    Séverine Suresh

    There is no way to do it in SQL or PL/SQL, because not SQL PL/SQL is a way to get user input.  User interaction is a job for your front end, like Zlatko tool suggested in response to #5.  If your front end tool is SQL * Plus, you can use the substtitution variables, as Jarkko showed in response #6.

  • the custom words does not appear in my iPhone

    Hello

    I joined my iPhone IOS 10 6 more and I noticed that the custom words does not appear in my iPhone, even if I have them in my iTunes library. I signed up with the same Apple ID on all devices. Very few of them, I can access the lyrics in my phone, but not all of them (as he used to be in iOS 9)

    any help is appreciated.

    Thank you

    Ahmed

    I downloaded a program on my Mac (no app store unfortunately) called "get lyrical". automatically add lyrics to iTunes. Then in iTunes file > library > Update music library to iCloud. doing this during the last 20 minutes and so far it seems to work.

  • Manager of Application CC does not load apps

    My application manager does not load apps. He is just saying "Applications loading...". "I tried, stop, reboot, uninstall/reinstall. I just download Dreamweaver but can actually get to the apps. I have connected online and a shot start downloading in this way, but it passes just to the application manager that is unresponsive. Help?

    [Moved from the endorsement, general, all Adobe forums Lounge for a specific support by product - moderator forum]

    Sorry, it took me a few days to get back to you. Busy week!

    Hmmm... uninstall programs Adobe does not is not something I've encountered. It is possible to run the Creative Cloud to solve installation problems cleaning tool could help, but it can be also quite simply time for individualized technical troubleshooting so you don't waste hours of work more. To this end, I recommend you Contact customer via chat. Make sure that you are connected with the identifier Adobe associated with your subscription to the CC.

    If the cat is able to help find a solution and you is not afraid to take a few moments to share, please let us know by responding to this discussion. I want to understand what is causing the problem.

  • Creative cloud desktop application does not load Apps

    I downloaded the creative suite and configure my account with adobe, but my creative cloud application does not load apps, it remains on the blue spinning wheel, despite clicking 'Download now' on some apps it invites. Any help would be appreciated.


    -Tom

    Hi Tomgarrad,

    Go to Applications--> Utilities--> Adobe Installers.

    Uninstall Adobe Creative Cloud.

    * If it says application runs in the background, and then open the activity monitor and close the process creative cloud.

    Once the creative cloud is uninstalled then follow it mentioned below as follows:

    Please go to the library

    1. click on Finder, click go and navigate to the folder

    2. tap / library and click on Go

    3. go in Application Support and Adobe and then delete the OOBE folder.

    4 repeat step 1

    5. Type ~/Library and click Go

    6. go in Application Support and Adobe and then delete the OOBE folder.

    7. go to https://creative.adobe.com/products/creative-cloud?promoid=KLYVF

    Download Adobe Creative cloud, install it.

    If the steps above do not work. Try to enable the root user account, and then try to open Adobe Creative cloud.

    Enable the root user: activation and using the user 'root' in Mac OS X

    Thank you

    Nikhil Gupta

  • Procedure does not display output

    Hello!

    The following procedure does not show the output.

    {create or replace procedure GET_USER
    (username_in IN VARCHAR2, password_in IN VARCHAR2, OUT VARCHAR2 first_name, last_name OUT VARCHAR2)
    is
    Start
    Declare the cursor is c_user (users.username%TYPE, i_password IN users.password%TYPE IN i_username)
    Select first_name, last_name
    users
    where username_in = i_username
    and password_in = i_password;

    i_username users.username%TYPE;
    i_password users.password%TYPE;

    l_first_name users.first_name%TYPE;
    l_last_name users.last_name%TYPE;

    Start
    If c_user % isopen then
    close c_user;
    end if;
    Open c_user (i_username, i_password);
    extract the c_user in l_first_name l_last_name;
    close c_user;

    first name: = l_first_name;
    name: = l_last_name;
    end;
    end GET_USER ;}

    Output showing only:

    Name =
    Last_name =

    Thanks for any help!

    Assuming that your cursor never returns a line with name of user and password (if it is not, which seems quite a big security hole!), then your code could just be rewritten:

    create or replace procedure GET_USER (p_username_in IN VARCHAR2,
                                          p_password_in IN VARCHAR2,
                                          p_first_name OUT VARCHAR2,
                                          p_last_name OUT VARCHAR2)
    is
    begin
      select first_name, last_name
      into   p_first_name, p_last_name
      from   users
      where  username_in = p_username_in
      and    password_in = p_password_in;
    end GET_USER;
    /
    

    I modified your parameter names, as they have matched the same names as the columns in your table, and it's usually a Really Bad Idea (tm)! Keep all your unique identifiers, and you will have less problems!

  • HP 7 G2 Dose does not install apps on SD card

    I recently that Got a HP HP TAB 7 G2 and it dose not allow me to install apps on SD card.

    I have read and found that Android 4.4.2 dose does not install apps on SD card on HP tabs.

    Y at - it another way I can do it, or I can hope an update or update Android 5.0 will allow me to do.

    I like to play games on the TAB and can install only 1 or 2 big games due to the lack of internal memory (4 GB).

    Any help would be greatly appreciated.

    Hey @ApoorvMishra ,

    Welcome to the HP Forums!

    I understand you are trying to install apps on your SD card instead of internal storage.

    Unfortunately, this is not a feature available on any Android device that does not have root access.

    There are methods available, but most require rooting the device, or by using the APKs HP could not support or encourage.

    Thank you.

  • Creative cloud does not load apps

    Hello, so I'm extremely sorry if it is a simple problem with a simple answer, but I recently downloaded Adobe Creative cloud and it opens fine, but it does not load one of the applications and I'm stuck on the loading screen. I tried to wait but it never loads. It looks like this:

    Help, please!Capture1.PNG

    Hello

    Please check the help below document:

    Does not open App | Wheels of progress turn continuously

    You can also view the nets below where this issue has been addressed:

    Adobe Creative Cloud / Desktop App / Home Screen: constant spinning wheel

    Creative Cloud Desktop App taped blue spinning wheel after update.

    Hope this helps!

  • My custom workspace does not randomly.  Restart the application sometimes fix it.

    Y at - it a fix for the problem of my custom workspace does not not every time?  I was hoping that it was just a problem with CC2014.  I'm under CC2015 now.

    Quit Illustrator

    Run disk utility and set your permissions.

    Finder (hold down the Option key) > select Library > obtained in this folder

    / Library/Application Support/Adobe/Adobe Illustrator 19.

    Adobe Illustrator 19 and rename old Adobe Illustrator 19

    Start Illustrator

    I would upgrade to El Capitan.

  • I have uninstall it by accident with Adobe Acrobat PRO DC with third party software.  Now I can't install Adobe and creative cloud does not load apps.  How a fix it?

    I have uninstall it by accident with Adobe Acrobat PRO DC with third party software.  Now I can't install Adobe and creative cloud does not load apps.  How a fix it?

    Hey bellmarg,

    Please uninstall Adobe CC using this cleanup tool use the Adobe Creative Cloud cleaning tool to solve installation problems, restart your computer & reinstall it using this link Adobe Acrobat Pro DC: PDF Converter, convert PDF files from anywhere.

    Let me know how it goes.

    Kind regards

    Nicos

  • Drawing a custom profile does not work for me. It works for you?

    Drawing a custom profile does not work for me. It works for you?

    I can only apply on an existing line, but cannot make a new one with the selected profile. In fact if I change the profile other than the default uniform I also can't draw a new stroke with any other width than the default 1 point. This does not seem normal.

    Use the SC5 on a PC.

    You have "Art has basic appearance nine" checked in the appearance Panel Menu? If Yes... Clear the check box, and then try again.

  • my art custom brush does not appear in the brush palette

    Hello

    I created a custom art brush, but it does not appear in the brush palette. (I draw a shape, I drag it to the brush palette, I choose Art Brush, I see the Art brush Options window, I do all the settings, I click ok but my art custom brush does not appear in the brush palette.) It only happens for Art Brush. Please help if anyone knows why?

    Thank you

    Check the menu popup palette of brushes, this would happen if the art brushes is not checked.

  • Procedure does not--a number not valid online 12

    Question: Dear professional PL/SQL! I'm a little desperate as my procedure does not work for all my variables. The debugger in SQL-Developer produces a message error "invalid number on line 12. I checked back and fourth but can't find any error.

    You can find the bug or lead my on the right track?

    Here are some example data:

    P_CNT_GEBIET =' 5630-372
    P_STR_LRT = '9170'
    P_WG = 5
    P_BE = 1

    Curious is the fact that it works perfectly when P_STR_LRT is '9110'. With '9170' or '9171' it doesn't work anymore.

    Any help is greatly appreciated.

    BR,

    SEB

    My Proc:
    create or replace
    PROCEDURE PROC_TBL_MATRIX_INTMED_CE
      (
        P_CNT_GEBIET          VARCHAR2,
        P_STR_LRT             VARCHAR2,
        P_BE                  NUMBER,
        P_WG                  NUMBER)
    AS
    BEGIN
      DECLARE
        CNUMBER  number;
    
      BEGIN
      
      SELECT COUNT(*)
        INTO CNUMBER
        FROM TBL_MATRIX_INTERMEDIATE_RESULT
        WHERE LNG_GEBIET = P_CNT_GEBIET
        AND STR_LRT_CLASS      = P_STR_LRT
        AND INT_BE       = P_BE
        AND INT_WG       = P_WG
        AND EVAL_TYPE    = 2;
        
     IF CNUMBER = 0 THEN
      
     INSERT INTO TBL_MATRIX_INTERMEDIATE_RESULT (LNG_BAUMART, STR_BA_LANG, STR_BA_KAT, STR_BA_GRUPPE, INT_PROZENT, INT_SELTEN, EVAL_TYPE, FLAG, LNG_GEBIET, STR_LRT_CLASS, INT_WG, INT_BE, STR_GEWERTET)
     SELECT 
    Z.CNT_BAUMART, Z.BA_LANG, Z.BA_KAT, Z.BA_GRUPPE, Z.PROZENT, DECODE(Z.BA_KAT,'B','von Natur aus selten') AS SELTEN, 2, 0, P_CNT_GEBIET, P_STR_LRT, P_WG, P_BE,
    CASE WHEN Z.CNT_BAUMART = 74 AND Z.PROZENT IS NOT NULL AND (SELECT COUNT(*) FROM(SELECT
    B.CNT_BAUMART, B.BA_LANG, X.BA_KAT,
    SUM(V.DBL_BESTAND) * 100 / (SELECT SUM(V2.DBL_BESTAND)
                                       FROM   VT_TBL_BESTAND     V2,
                                              VT_PUNKTDATEN_JOIN P2
                                       WHERE  (P2.CNT_GEBIET = P_CNT_GEBIET)
                                       AND    (V2.LNG_INV_PT_ID = P2.INV_PT_ID_SUB)
                                       AND    (P2.STR_LRT_MAIN = P_STR_LRT)
                                       AND    (P2.INT_WG = P_WG)
                                       AND    (P2.INT_STATUS_SUB = 3)
                                       AND (P2.INT_BE_MAIN = P_BE)) AS PROZENT
    FROM 
    VT_TBL_BESTAND V,
    VT_PUNKTDATEN_JOIN P,
    VT_TBL_BAUMART B,
    VT_TBL_MATRIX_CUSTOM_EVAL X
    WHERE 
    (P.CNT_GEBIET = P_CNT_GEBIET)
    AND (V.LNG_BAUMART = B.CNT_BAUMART) 
    AND (V.LNG_INV_PT_ID = P.INV_PT_ID_SUB)
    AND (P.STR_LRT_MAIN = P_STR_LRT)
    AND (P.INT_WG = P_WG)
    AND (P.INT_BE_MAIN = P_BE)
    AND (P.INT_STATUS_SUB = 3)
    AND (X.LNG_GEBIET= P_CNT_GEBIET)
    AND (X.LRT_CLASS = P_STR_LRT)
    AND (X.INT_WG = P_WG)
    AND (X.INT_BE = P_BE)
    AND (X.LNG_BAUMART = V.LNG_BAUMART)
    AND (X.BA_KAT IN ('B','H', 'P', 'N'))
    AND (B.CNT_BAUMART IN (5, 6, 7, 8, 9, 81))
    GROUP BY B.CNT_BAUMART, B.BA_LANG, X.BA_KAT
    )) = 0 THEN 'Ja'
    WHEN Z.CNT_BAUMART = 72 AND Z.PROZENT IS NOT NULL AND (SELECT COUNT(*) FROM(SELECT
    B.CNT_BAUMART, B.BA_LANG, X.BA_KAT,
    SUM(V.DBL_BESTAND) * 100 / (SELECT SUM(V2.DBL_BESTAND)
                                       FROM   VT_TBL_BESTAND     V2,
                                              VT_PUNKTDATEN_JOIN P2
                                       WHERE  (P2.CNT_GEBIET = P_CNT_GEBIET)
                                       AND    (V2.LNG_INV_PT_ID = P2.INV_PT_ID_SUB)
                                       AND    (P2.STR_LRT_MAIN = P_STR_LRT)
                                       AND    (P2.INT_WG = P_WG)
                                       AND    (P2.INT_STATUS_SUB = 3)
                                       AND (P2.INT_BE_MAIN = P_BE)) AS PROZENT
    FROM 
    VT_TBL_BESTAND V,
    VT_PUNKTDATEN_JOIN P,
    VT_TBL_BAUMART B,
    VT_TBL_MATRIX_CUSTOM_EVAL X
    WHERE 
    (P.CNT_GEBIET = P_CNT_GEBIET)
    AND (V.LNG_BAUMART = B.CNT_BAUMART) 
    AND (V.LNG_INV_PT_ID = P.INV_PT_ID_SUB)
    AND (P.STR_LRT_MAIN = P_STR_LRT)
    AND (P.INT_WG = P_WG)
    AND (P.INT_BE_MAIN = P_BE)
    AND (P.INT_STATUS_SUB = 3)
    AND (X.LNG_GEBIET= P_CNT_GEBIET)
    AND (X.LRT_CLASS = P_STR_LRT)
    AND (X.INT_WG = P_WG)
    AND (X.INT_BE = P_BE)
    AND (X.LNG_BAUMART = V.LNG_BAUMART)
    AND (X.BA_KAT IN ('B','H', 'P', 'N'))
    AND (B.CNT_BAUMART IN (22,23,24,25,26,27))
    GROUP BY B.CNT_BAUMART, B.BA_LANG, X.BA_KAT
    )) = 0 THEN 'Ja'
    WHEN Z.CNT_BAUMART = 71 AND Z.PROZENT IS NOT NULL AND (SELECT COUNT(*) FROM(SELECT
    B.CNT_BAUMART, B.BA_LANG, X.BA_KAT,
    SUM(V.DBL_BESTAND) * 100 / (SELECT SUM(V2.DBL_BESTAND)
                                       FROM   VT_TBL_BESTAND     V2,
                                              VT_PUNKTDATEN_JOIN P2
                                       WHERE  (P2.CNT_GEBIET = P_CNT_GEBIET)
                                       AND    (V2.LNG_INV_PT_ID = P2.INV_PT_ID_SUB)
                                       AND    (P2.STR_LRT_MAIN = P_STR_LRT)
                                       AND    (P2.INT_WG = P_WG)
                                       AND    (P2.INT_STATUS_SUB = 3)
                                       AND (P2.INT_BE_MAIN = P_BE)) AS PROZENT
    FROM 
    VT_TBL_BESTAND V,
    VT_PUNKTDATEN_JOIN P,
    VT_TBL_BAUMART B,
    VT_TBL_MATRIX_CUSTOM_EVAL X
    WHERE 
    (P.CNT_GEBIET = P_CNT_GEBIET)
    AND (V.LNG_BAUMART = B.CNT_BAUMART) 
    AND (V.LNG_INV_PT_ID = P.INV_PT_ID_SUB)
    AND (P.STR_LRT_MAIN = P_STR_LRT)
    AND (P.INT_WG = P_WG)
    AND (P.INT_BE_MAIN = P_BE)
    AND (P.INT_STATUS_SUB = 3)
    AND (X.LNG_GEBIET= P_CNT_GEBIET)
    AND (X.LRT_CLASS = P_STR_LRT)
    AND (X.INT_WG = P_WG)
    AND (X.INT_BE = P_BE)
    AND (X.LNG_BAUMART = V.LNG_BAUMART)
    AND (X.BA_KAT IN ('B','H', 'P', 'N'))
    AND (B.CNT_BAUMART IN (46,47))
    GROUP BY B.CNT_BAUMART, B.BA_LANG, X.BA_KAT
    )) = 0 THEN 'Ja'
    WHEN Z.CNT_BAUMART = 54 AND Z.PROZENT IS NOT NULL AND (SELECT COUNT(*) FROM(SELECT
    B.CNT_BAUMART, B.BA_LANG, X.BA_KAT,
    SUM(V.DBL_BESTAND) * 100 / (SELECT SUM(V2.DBL_BESTAND)
                                       FROM   VT_TBL_BESTAND     V2,
                                              VT_PUNKTDATEN_JOIN P2
                                       WHERE  (P2.CNT_GEBIET = P_CNT_GEBIET)
                                       AND    (V2.LNG_INV_PT_ID = P2.INV_PT_ID_SUB)
                                       AND    (P2.STR_LRT_MAIN = P_STR_LRT)
                                       AND    (P2.INT_WG = P_WG)
                                       AND    (P2.INT_STATUS_SUB = 3)
                                       AND (P2.INT_BE_MAIN = P_BE)) AS PROZENT
    FROM 
    VT_TBL_BESTAND V,
    VT_PUNKTDATEN_JOIN P,
    VT_TBL_BAUMART B,
    VT_TBL_MATRIX_CUSTOM_EVAL X
    WHERE 
    (P.CNT_GEBIET = P_CNT_GEBIET)
    AND (V.LNG_BAUMART = B.CNT_BAUMART) 
    AND (V.LNG_INV_PT_ID = P.INV_PT_ID_SUB)
    AND (P.STR_LRT_MAIN = P_STR_LRT)
    AND (P.INT_WG = P_WG)
    AND (P.INT_BE_MAIN = P_BE)
    AND (P.INT_STATUS_SUB = 3)
    AND (X.LNG_GEBIET= P_CNT_GEBIET)
    AND (X.LRT_CLASS = P_STR_LRT)
    AND (X.INT_WG = P_WG)
    AND (X.INT_BE = P_BE)
    AND (X.LNG_BAUMART = V.LNG_BAUMART)
    AND (X.BA_KAT IN ('B','H', 'P', 'N'))
    AND (B.CNT_BAUMART IN (13, 14, 15))
    GROUP BY B.CNT_BAUMART, B.BA_LANG, X.BA_KAT
    )) = 0 THEN 'Ja'
    WHEN Z.CNT_BAUMART = 53 AND Z.PROZENT IS NOT NULL AND (SELECT COUNT(*) FROM(SELECT
    B.CNT_BAUMART, B.BA_LANG, X.BA_KAT,
    SUM(V.DBL_BESTAND) * 100 / (SELECT SUM(V2.DBL_BESTAND)
                                       FROM   VT_TBL_BESTAND     V2,
                                              VT_PUNKTDATEN_JOIN P2
                                       WHERE  (P2.CNT_GEBIET = P_CNT_GEBIET)
                                       AND    (V2.LNG_INV_PT_ID = P2.INV_PT_ID_SUB)
                                       AND    (P2.STR_LRT_MAIN = P_STR_LRT)
                                       AND    (P2.INT_WG = P_WG)
                                       AND    (P2.INT_STATUS_SUB = 3)
                                       AND (P2.INT_BE_MAIN = P_BE)) AS PROZENT
    FROM 
    VT_TBL_BESTAND V,
    VT_PUNKTDATEN_JOIN P,
    VT_TBL_BAUMART B,
    VT_TBL_MATRIX_CUSTOM_EVAL X
    WHERE 
    (P.CNT_GEBIET = P_CNT_GEBIET)
    AND (V.LNG_BAUMART = B.CNT_BAUMART) 
    AND (V.LNG_INV_PT_ID = P.INV_PT_ID_SUB)
    AND (P.STR_LRT_MAIN = P_STR_LRT)
    AND (P.INT_WG = P_WG)
    AND (P.INT_BE_MAIN = P_BE)
    AND (P.INT_STATUS_SUB = 3)
    AND (X.LNG_GEBIET= P_CNT_GEBIET)
    AND (X.LRT_CLASS = P_STR_LRT)
    AND (X.INT_WG = P_WG)
    AND (X.INT_BE = P_BE)
    AND (X.LNG_BAUMART = V.LNG_BAUMART)
    AND (X.BA_KAT IN ('B','H', 'P', 'N'))
    AND (B.CNT_BAUMART IN (28,29,30,31,32,33,79))
    GROUP BY B.CNT_BAUMART, B.BA_LANG, X.BA_KAT
    )) = 0 THEN 'Ja'
    WHEN Z.CNT_BAUMART = 78 AND Z.PROZENT IS NOT NULL AND (SELECT COUNT(*) FROM(SELECT
    B.CNT_BAUMART, B.BA_LANG, X.BA_KAT,
    SUM(V.DBL_BESTAND) * 100 / (SELECT SUM(V2.DBL_BESTAND)
                                       FROM   VT_TBL_BESTAND     V2,
                                              VT_PUNKTDATEN_JOIN P2
                                       WHERE  (P2.CNT_GEBIET = P_CNT_GEBIET)
                                       AND    (V2.LNG_INV_PT_ID = P2.INV_PT_ID_SUB)
                                       AND    (P2.STR_LRT_MAIN = P_STR_LRT)
                                       AND    (P2.INT_WG = P_WG)
                                       AND    (P2.INT_STATUS_SUB = 3)
                                       AND (P2.INT_BE_MAIN = P_BE)) AS PROZENT
    FROM 
    VT_TBL_BESTAND V,
    VT_PUNKTDATEN_JOIN P,
    VT_TBL_BAUMART B,
    VT_TBL_MATRIX_CUSTOM_EVAL X
    WHERE 
    (P.CNT_GEBIET = P_CNT_GEBIET)
    AND (V.LNG_BAUMART = B.CNT_BAUMART) 
    AND (V.LNG_INV_PT_ID = P.INV_PT_ID_SUB)
    AND (P.STR_LRT_MAIN = P_STR_LRT)
    AND (P.INT_WG = P_WG)
    AND (P.INT_BE_MAIN = P_BE)
    AND (P.INT_STATUS_SUB = 3)
    AND (X.LNG_GEBIET= P_CNT_GEBIET)
    AND (X.LRT_CLASS = P_STR_LRT)
    AND (X.INT_WG = P_WG)
    AND (X.INT_BE = P_BE)
    AND (X.LNG_BAUMART = V.LNG_BAUMART)
    AND (X.BA_KAT IN ('B','H', 'P', 'N'))
    AND (B.CNT_BAUMART IN (62))
    GROUP BY B.CNT_BAUMART, B.BA_LANG, X.BA_KAT
    )) = 0 THEN 'Ja'
    WHEN Z.BA_KAT = 'N' AND Z.PROZENT > 1 THEN 'Ja' 
    WHEN Z.BA_KAT = 'H' AND Z.PROZENT > 1 THEN 'Ja' 
    WHEN Z.BA_KAT = 'P' AND Z.PROZENT > 1 THEN 'Ja' 
    WHEN Z.BA_KAT = 'B' AND Z.PROZENT !=0 THEN 'Ja' ELSE 'Nein' END AS GEWERTET
    FROM ((SELECT
    B.CNT_BAUMART,
    B.BA_LANG,
    X.BA_KAT,
    SUM(V.DBL_BESTAND) * 100 / (SELECT SUM(V2.DBL_BESTAND)
                                       FROM   VT_TBL_BESTAND     V2,
                                              VT_PUNKTDATEN_JOIN P2
                                       WHERE  (P2.CNT_GEBIET = P_CNT_GEBIET)
                                       AND    (V2.LNG_INV_PT_ID = P2.INV_PT_ID_SUB)
                                       AND    (P2.STR_LRT_MAIN = P_STR_LRT)
                                       AND    (P2.INT_WG = P_WG)
                                       AND    (P2.INT_STATUS_SUB = 3)
                                       AND (P2.INT_BE_MAIN = P_BE)) AS PROZENT,
    X.BA_GRUPPE
    FROM 
    VT_TBL_BESTAND V,
    VT_PUNKTDATEN_JOIN P,
    VT_TBL_BAUMART B,
    VT_TBL_MATRIX_CUSTOM_EVAL X
    WHERE 
    (P.CNT_GEBIET = P_CNT_GEBIET)
    AND (V.LNG_BAUMART = B.CNT_BAUMART) 
    AND (V.LNG_INV_PT_ID = P.INV_PT_ID_SUB)
    AND (P.STR_LRT_MAIN = P_STR_LRT)
    AND (P.INT_WG = P_WG)
    AND (P.INT_BE_MAIN = P_BE)
    AND (P.INT_STATUS_SUB = 3)
    AND (X.LNG_GEBIET= P_CNT_GEBIET)
    AND (X.LRT_CLASS = P_STR_LRT)
    AND (X.INT_WG = P_WG)
    AND (X.INT_BE = P_BE)
    AND (X.LNG_BAUMART = V.LNG_BAUMART)
    AND (X.BA_KAT IN ('B','H', 'P', 'N'))
    GROUP BY B.CNT_BAUMART, B.BA_LANG, X.BA_KAT, X.BA_GRUPPE
    )
    UNION ALL
    (SELECT DISTINCT R.CNT_BAUMART, R.BA_LANG, D.BA_KAT, 
    NULL PROZENT, 
    DECODE(R.BA_GRUPPE,1,'Ba-Grp. 1',2,'Ba-Grp. 2',3,'Ba-Grp 3',4,'Ba-Grp. 4',5,'Ba-Grp. 5',6,'Ba-Grp. 6',7,'Ba-Grp. 7',8,'Ba-Grp. 8') BA_GRUPPE
    FROM VT_TBL_BAUMART R, VT_TBL_MATRIX_CUSTOM_EVAL D
    WHERE 
    R.CNT_BAUMART = D.LNG_BAUMART
    AND (D.LRT_CLASS = P_STR_LRT)
    AND D.BA_KAT IN ('B','H', 'P', 'N')
    AND (R.CNT_BAUMART NOT IN (SELECT DISTINCT
    B4.CNT_BAUMART
    FROM 
    VT_TBL_BESTAND V4,
    VT_PUNKTDATEN_JOIN P4,
    VT_TBL_BAUMART B4,
    VT_TBL_MATRIX_CUSTOM_EVAL X4
    WHERE 
    (P4.CNT_GEBIET = P_CNT_GEBIET)
    AND (V4.LNG_BAUMART = B4.CNT_BAUMART) 
    AND (V4.LNG_INV_PT_ID = P4.INV_PT_ID_SUB)
    AND (P4.STR_LRT_MAIN = P_STR_LRT)
    AND (P4.INT_WG = P_WG)
    AND (P4.INT_BE_MAIN = P_BE)
    AND (P4.INT_STATUS_SUB = 3)
    AND (X4.LNG_GEBIET= P_CNT_GEBIET)
    AND (X4.LRT_CLASS = P_STR_LRT)
    AND (X4.INT_WG = P_WG)
    AND (X4.INT_BE = P_BE)
    AND (X4.LNG_BAUMART=V4.LNG_BAUMART))))
    ) Z
    GROUP BY 
     CNT_BAUMART, BA_LANG, BA_KAT, BA_GRUPPE, PROZENT 
    UNION
    SELECT NULL, 'Gewertete BA > 1%' BA_LANG, NULL, NULL, NULL, NULL, 2, 1, P_CNT_GEBIET, P_STR_LRT, P_WG, P_BE, (SELECT TO_CHAR(COUNT(GEWERTET)) GEWERTET FROM (SELECT
    Z.CNT_BAUMART, Z.BA_KAT, Z.BA_GRUPPE, Z.PROZENT ,
    CASE WHEN Z.CNT_BAUMART = 74 AND Z.PROZENT IS NOT NULL AND (SELECT COUNT(*) FROM(SELECT
    B.CNT_BAUMART, B.BA_LANG, X.BA_KAT,
    SUM(V.DBL_BESTAND) * 100 / (SELECT SUM(V2.DBL_BESTAND)
                                       FROM   VT_TBL_BESTAND     V2,
                                              VT_PUNKTDATEN_JOIN P2
                                       WHERE  (P2.CNT_GEBIET = P_CNT_GEBIET)
                                       AND    (V2.LNG_INV_PT_ID = P2.INV_PT_ID_SUB)
                                       AND    (P2.STR_LRT_MAIN = P_STR_LRT)
                                       AND    (P2.INT_WG = P_WG)
                                       AND    (P2.INT_STATUS_SUB = 3)
                                       AND (P2.INT_BE_MAIN = P_BE)) AS PROZENT
    FROM 
    VT_TBL_BESTAND V,
    VT_PUNKTDATEN_JOIN P,
    VT_TBL_BAUMART B,
    VT_TBL_MATRIX_CUSTOM_EVAL X
    WHERE 
    (P.CNT_GEBIET = P_CNT_GEBIET)
    AND (V.LNG_BAUMART = B.CNT_BAUMART) 
    AND (V.LNG_INV_PT_ID = P.INV_PT_ID_SUB)
    AND (P.STR_LRT_MAIN = P_STR_LRT)
    AND (P.INT_WG = P_WG)
    AND (P.INT_BE_MAIN = P_BE)
    AND (P.INT_STATUS_SUB = 3)
    AND (X.LNG_GEBIET= P_CNT_GEBIET)
    AND (X.LRT_CLASS = P_STR_LRT)
    AND (X.INT_WG = P_WG)
    AND (X.INT_BE = P_BE)
    AND (X.LNG_BAUMART = V.LNG_BAUMART)
    AND (X.BA_KAT IN ('B','H', 'P', 'N'))
    AND (B.CNT_BAUMART IN (5, 6, 7, 8, 9, 81))
    GROUP BY B.CNT_BAUMART, B.BA_LANG, X.BA_KAT
    )) = 0 THEN 'Ja'
    WHEN Z.CNT_BAUMART = 72 AND Z.PROZENT IS NOT NULL AND (SELECT COUNT(*) FROM(SELECT
    B.CNT_BAUMART, B.BA_LANG, X.BA_KAT,
    SUM(V.DBL_BESTAND) * 100 / (SELECT SUM(V2.DBL_BESTAND)
                                       FROM   VT_TBL_BESTAND     V2,
                                              VT_PUNKTDATEN_JOIN P2
                                       WHERE  (P2.CNT_GEBIET = P_CNT_GEBIET)
                                       AND    (V2.LNG_INV_PT_ID = P2.INV_PT_ID_SUB)
                                       AND    (P2.STR_LRT_MAIN = P_STR_LRT)
                                       AND    (P2.INT_WG = P_WG)
                                       AND    (P2.INT_STATUS_SUB = 3)
                                       AND (P2.INT_BE_MAIN = P_BE)) AS PROZENT
    FROM 
    VT_TBL_BESTAND V,
    VT_PUNKTDATEN_JOIN P,
    VT_TBL_BAUMART B,
    VT_TBL_MATRIX_CUSTOM_EVAL X
    WHERE 
    (P.CNT_GEBIET = P_CNT_GEBIET)
    AND (V.LNG_BAUMART = B.CNT_BAUMART) 
    AND (V.LNG_INV_PT_ID = P.INV_PT_ID_SUB)
    AND (P.STR_LRT_MAIN = P_STR_LRT)
    AND (P.INT_WG = P_WG)
    AND (P.INT_BE_MAIN = P_BE)
    AND (P.INT_STATUS_SUB = 3)
    AND (X.LNG_GEBIET= P_CNT_GEBIET)
    AND (X.LRT_CLASS = P_STR_LRT)
    AND (X.INT_WG = P_WG)
    AND (X.INT_BE = P_BE)
    AND (X.LNG_BAUMART = V.LNG_BAUMART)
    AND (X.BA_KAT IN ('B','H', 'P', 'N'))
    AND (B.CNT_BAUMART IN (22,23,24,25,26,27))
    GROUP BY B.CNT_BAUMART, B.BA_LANG, X.BA_KAT
    )) = 0 THEN 'Ja'
    WHEN Z.CNT_BAUMART = 71 AND Z.PROZENT IS NOT NULL AND (SELECT COUNT(*) FROM(SELECT
    B.CNT_BAUMART, B.BA_LANG, X.BA_KAT,
    SUM(V.DBL_BESTAND) * 100 / (SELECT SUM(V2.DBL_BESTAND)
                                       FROM   VT_TBL_BESTAND     V2,
                                              VT_PUNKTDATEN_JOIN P2
                                       WHERE  (P2.CNT_GEBIET = P_CNT_GEBIET)
                                       AND    (V2.LNG_INV_PT_ID = P2.INV_PT_ID_SUB)
                                       AND    (P2.STR_LRT_MAIN = P_STR_LRT)
                                       AND    (P2.INT_WG = P_WG)
                                       AND    (P2.INT_STATUS_SUB = 3)
                                       AND (P2.INT_BE_MAIN = P_BE)) AS PROZENT
    FROM 
    VT_TBL_BESTAND V,
    VT_PUNKTDATEN_JOIN P,
    VT_TBL_BAUMART B,
    VT_TBL_MATRIX_CUSTOM_EVAL X
    WHERE 
    (P.CNT_GEBIET = P_CNT_GEBIET)
    AND (V.LNG_BAUMART = B.CNT_BAUMART) 
    AND (V.LNG_INV_PT_ID = P.INV_PT_ID_SUB)
    AND (P.STR_LRT_MAIN = P_STR_LRT)
    AND (P.INT_WG = P_WG)
    AND (P.INT_BE_MAIN = P_BE)
    AND (P.INT_STATUS_SUB = 3)
    AND (X.LNG_GEBIET= P_CNT_GEBIET)
    AND (X.LRT_CLASS = P_STR_LRT)
    AND (X.INT_WG = P_WG)
    AND (X.INT_BE = P_BE)
    AND (X.LNG_BAUMART = V.LNG_BAUMART)
    AND (X.BA_KAT IN ('B','H', 'P', 'N'))
    AND (B.CNT_BAUMART IN (46,47))
    GROUP BY B.CNT_BAUMART, B.BA_LANG, X.BA_KAT
    )) = 0 THEN 'Ja'
    WHEN Z.CNT_BAUMART = 54 AND Z.PROZENT IS NOT NULL AND (SELECT COUNT(*) FROM(SELECT
    B.CNT_BAUMART, B.BA_LANG, X.BA_KAT,
    SUM(V.DBL_BESTAND) * 100 / (SELECT SUM(V2.DBL_BESTAND)
                                       FROM   VT_TBL_BESTAND     V2,
                                              VT_PUNKTDATEN_JOIN P2
                                       WHERE  (P2.CNT_GEBIET = P_CNT_GEBIET)
                                       AND    (V2.LNG_INV_PT_ID = P2.INV_PT_ID_SUB)
                                       AND    (P2.STR_LRT_MAIN = P_STR_LRT)
                                       AND    (P2.INT_WG = P_WG)
                                       AND    (P2.INT_STATUS_SUB = 3)
                                       AND (P2.INT_BE_MAIN = P_BE)) AS PROZENT
    FROM 
    VT_TBL_BESTAND V,
    VT_PUNKTDATEN_JOIN P,
    VT_TBL_BAUMART B,
    VT_TBL_MATRIX_CUSTOM_EVAL X
    WHERE 
    (P.CNT_GEBIET = P_CNT_GEBIET)
    AND (V.LNG_BAUMART = B.CNT_BAUMART) 
    AND (V.LNG_INV_PT_ID = P.INV_PT_ID_SUB)
    AND (P.STR_LRT_MAIN = P_STR_LRT)
    AND (P.INT_WG = P_WG)
    AND (P.INT_BE_MAIN = P_BE)
    AND (P.INT_STATUS_SUB = 3)
    AND (X.LNG_GEBIET= P_CNT_GEBIET)
    AND (X.LRT_CLASS = P_STR_LRT)
    AND (X.INT_WG = P_WG)
    AND (X.INT_BE = P_BE)
    AND (X.LNG_BAUMART = V.LNG_BAUMART)
    AND (X.BA_KAT IN ('B','H', 'P', 'N'))
    AND (B.CNT_BAUMART IN (13, 14, 15))
    GROUP BY B.CNT_BAUMART, B.BA_LANG, X.BA_KAT
    )) = 0 THEN 'Ja'
    WHEN Z.CNT_BAUMART = 53 AND Z.PROZENT IS NOT NULL AND (SELECT COUNT(*) FROM(SELECT
    B.CNT_BAUMART, B.BA_LANG, X.BA_KAT,
    SUM(V.DBL_BESTAND) * 100 / (SELECT SUM(V2.DBL_BESTAND)
                                       FROM   VT_TBL_BESTAND     V2,
                                              VT_PUNKTDATEN_JOIN P2
                                       WHERE  (P2.CNT_GEBIET = P_CNT_GEBIET)
                                       AND    (V2.LNG_INV_PT_ID = P2.INV_PT_ID_SUB)
                                       AND    (P2.STR_LRT_MAIN = P_STR_LRT)
                                       AND    (P2.INT_WG = P_WG)
                                       AND    (P2.INT_STATUS_SUB = 3)
                                       AND (P2.INT_BE_MAIN = P_BE)) AS PROZENT
    FROM 
    VT_TBL_BESTAND V,
    VT_PUNKTDATEN_JOIN P,
    VT_TBL_BAUMART B,
    VT_TBL_MATRIX_CUSTOM_EVAL X
    WHERE 
    (P.CNT_GEBIET = P_CNT_GEBIET)
    AND (V.LNG_BAUMART = B.CNT_BAUMART) 
    AND (V.LNG_INV_PT_ID = P.INV_PT_ID_SUB)
    AND (P.STR_LRT_MAIN = P_STR_LRT)
    AND (P.INT_WG = P_WG)
    AND (P.INT_BE_MAIN = P_BE)
    AND (P.INT_STATUS_SUB = 3)
    AND (X.LNG_GEBIET= P_CNT_GEBIET)
    AND (X.LRT_CLASS = P_STR_LRT)
    AND (X.INT_WG = P_WG)
    AND (X.INT_BE = P_BE)
    AND (X.LNG_BAUMART = V.LNG_BAUMART)
    AND (X.BA_KAT IN ('B','H', 'P', 'N'))
    AND (B.CNT_BAUMART IN (28,29,30,31,32,33,79))
    GROUP BY B.CNT_BAUMART, B.BA_LANG, X.BA_KAT
    )) = 0 THEN 'Ja'
    WHEN Z.CNT_BAUMART = 78 AND Z.PROZENT IS NOT NULL AND (SELECT COUNT(*) FROM(SELECT
    B.CNT_BAUMART, B.BA_LANG, X.BA_KAT,
    SUM(V.DBL_BESTAND) * 100 / (SELECT SUM(V2.DBL_BESTAND)
                                       FROM   VT_TBL_BESTAND     V2,
                                              VT_PUNKTDATEN_JOIN P2
                                       WHERE  (P2.CNT_GEBIET = P_CNT_GEBIET)
                                       AND    (V2.LNG_INV_PT_ID = P2.INV_PT_ID_SUB)
                                       AND    (P2.STR_LRT_MAIN = P_STR_LRT)
                                       AND    (P2.INT_WG = P_WG)
                                       AND    (P2.INT_STATUS_SUB = 3)
                                       AND (P2.INT_BE_MAIN = P_BE)) AS PROZENT
    FROM 
    VT_TBL_BESTAND V,
    VT_PUNKTDATEN_JOIN P,
    VT_TBL_BAUMART B,
    VT_TBL_MATRIX_CUSTOM_EVAL X
    WHERE 
    (P.CNT_GEBIET = P_CNT_GEBIET)
    AND (V.LNG_BAUMART = B.CNT_BAUMART) 
    AND (V.LNG_INV_PT_ID = P.INV_PT_ID_SUB)
    AND (P.STR_LRT_MAIN = P_STR_LRT)
    AND (P.INT_WG = P_WG)
    AND (P.INT_BE_MAIN = P_BE)
    AND (P.INT_STATUS_SUB = 3)
    AND (X.LNG_GEBIET= P_CNT_GEBIET)
    AND (X.LRT_CLASS = P_STR_LRT)
    AND (X.INT_WG = P_WG)
    AND (X.INT_BE = P_BE)
    AND (X.LNG_BAUMART = V.LNG_BAUMART)
    AND (X.BA_KAT IN ('B','H', 'P', 'N'))
    AND (B.CNT_BAUMART IN (62))
    GROUP BY B.CNT_BAUMART, B.BA_LANG, X.BA_KAT
    )) = 0 THEN 'Ja'
    WHEN Z.BA_KAT = 'N' AND Z.PROZENT > 1 THEN 'Ja' 
    WHEN Z.BA_KAT = 'H' AND Z.PROZENT > 1 THEN 'Ja'
    WHEN Z.BA_KAT = 'P' AND Z.PROZENT > 1 THEN 'Ja' 
    WHEN Z.BA_KAT = 'B' AND Z.PROZENT !=0 THEN 'Ja' ELSE 'Nein' END AS GEWERTET
    FROM ((SELECT
    B.CNT_BAUMART,
    B.BA_LANG,
    X.BA_KAT,
    SUM(V.DBL_BESTAND) * 100 / (SELECT SUM(V2.DBL_BESTAND)
                                       FROM   VT_TBL_BESTAND     V2,
                                              VT_PUNKTDATEN_JOIN P2
                                       WHERE  (P2.CNT_GEBIET = P_CNT_GEBIET)
                                       AND    (V2.LNG_INV_PT_ID = P2.INV_PT_ID_SUB)
                                       AND    (P2.STR_LRT_MAIN = P_STR_LRT)
                                       AND    (P2.INT_WG = P_WG)
                                       AND    (P2.INT_STATUS_SUB = 3)
                                       AND (P2.INT_BE_MAIN = P_BE)) AS PROZENT,
    X.BA_GRUPPE
    FROM 
    VT_TBL_BESTAND V,
    VT_PUNKTDATEN_JOIN P,
    VT_TBL_BAUMART B,
    VT_TBL_MATRIX_CUSTOM_EVAL X
    WHERE 
    (P.CNT_GEBIET = P_CNT_GEBIET)
    AND (V.LNG_BAUMART = B.CNT_BAUMART) 
    AND (V.LNG_INV_PT_ID = P.INV_PT_ID_SUB)
    AND (P.STR_LRT_MAIN = P_STR_LRT)
    AND (P.INT_WG = P_WG)
    AND (P.INT_BE_MAIN = P_BE)
    AND (P.INT_STATUS_SUB = 3)
    AND (X.LNG_GEBIET= P_CNT_GEBIET)
    AND (X.LRT_CLASS = P_STR_LRT)
    AND (X.INT_WG = P_WG)
    AND (X.INT_BE = P_BE)
    AND (X.LNG_BAUMART = V.LNG_BAUMART)
    AND (X.BA_KAT IN ('B','H', 'P', 'N'))
    GROUP BY B.CNT_BAUMART, B.BA_LANG, X.BA_KAT, X.BA_GRUPPE
    )
    UNION ALL
    (SELECT DISTINCT R.CNT_BAUMART, R.BA_LANG, D.BA_KAT, 
    NULL PROZENT, 
    DECODE(R.BA_GRUPPE,1,'Ba-Grp. 1',2,'Ba-Grp. 2',3,'Ba-Grp 3',4,'Ba-Grp. 4',5,'Ba-Grp. 5',6,'Ba-Grp. 6',7,'Ba-Grp. 7',8,'Ba-Grp. 8') BA_GRUPPE
    FROM VT_TBL_BAUMART R, VT_TBL_MATRIX_CUSTOM_EVAL D
    WHERE 
    R.CNT_BAUMART = D.LNG_BAUMART
    AND (D.LRT_CLASS = P_STR_LRT)
    AND D.BA_KAT IN ('B','H', 'P', 'N')
    AND (R.CNT_BAUMART NOT IN (SELECT DISTINCT
    B4.CNT_BAUMART
    FROM 
    VT_TBL_BESTAND V4,
    VT_PUNKTDATEN_JOIN P4,
    VT_TBL_BAUMART B4,
    VT_TBL_MATRIX_CUSTOM_EVAL X4
    WHERE 
    (P4.CNT_GEBIET = P_CNT_GEBIET)
    AND (V4.LNG_BAUMART = B4.CNT_BAUMART) 
    AND (V4.LNG_INV_PT_ID = P4.INV_PT_ID_SUB)
    AND (P4.STR_LRT_MAIN = P_STR_LRT)
    AND (P4.INT_WG = P_WG)
    AND (P4.INT_BE_MAIN = P_BE)
    AND (P4.INT_STATUS_SUB = 3)
    AND (X4.LNG_GEBIET= P_CNT_GEBIET)
    AND (X4.LRT_CLASS = P_STR_LRT)
    AND (X4.INT_WG = P_WG)
    AND (X4.INT_BE = P_BE)
    AND (X4.LNG_BAUMART=V4.LNG_BAUMART))))
    ) Z
    ) WHERE GEWERTET = 'Ja') PROZENT FROM DUAL; 
    END IF;
      END;
    END PROC_TBL_MATRIX_INTMED_CE;

    Hello

    It's a question of data.

    All the values you pass for column LNG_GEBIET?

    Concerning
    AJR

  • 'Download files' procedure does not work in app/poster in double-page not found

    Hello

    I created an application using the procedure 'Download files' described in the chapter 'How to download and upload files in an Application' Apex 'Advanced tutorials.' It works fine on a single server, however, when I exported the applications and the data of the copy of the work and any in the APEX running from my laptop, I could download files and generate a report with a link to click and download the files again but when I clicked on these links, I would get a "Page not found" error Looks like it may not go to the procedure and instead goes to a page as follows: "http://127.0.0.1:8080/apex/DBAPORTAL.download_image?p_id=1868612316946460." On the copy on the other server, when you click on the download link, you will get a dialog box asking if you want to open or save the file.

    Someone could tell me why the procedure is not called and goes to a non-existent url while the origonal application works fine on the other server?

    I have granted permissions for the APEX_PUBLIC_USER enforcement procedure. I wonder if there are other authorities I should be granted. Should I grant permissions PUBLIC or ANONOMUSE to use the procedure "download_image"?

    I forgot to mention that I use on my laptop 11.1 database, and the server that the database is 10g.

    We hope to get an answer to this question. I already asked a few people and they are puzzled.

    Thank you in advance.

    Linda

    Linda,

    Sorry for the missing = sign, you are right.

    Show me the code you have in this function. It should be:

    if upper(procedure_name) in (
              'DBAPORTAL.DOWNLOAD_IMAGE') then
            return TRUE;
    ...
    

    Scott

  • How to grant privileges to update on the custom procedures created in the apps schema?

    Hello
    We have a R12.0.6 instance that runs within our Organization. Our programmers keep requesting access on some custom procedures that are initially created in the apps 'write (update)' scheme. I have created a read-only as database user and granted ' run/debug' privilege on these custom procedures, but always using this procedure user cannot be updated (in sufficient privileges).

    Once they change the procedure, send me the code. Using profile user apps, I can recreate it using procedures create or replace the control. In this way it works very well. Our concern is how they (programmers) themselves using database read-only user does this work? What privileges should be granted?

    Please guide me?
    Concerning
    Ariz

    Arizuddin wrote:
    Hello
    First of all, I have to give ' run/debug"on a particular procedure that exists in the apps schema. Grant then 'edit any proceedings', it works.

    "alter any procedure" is a privilege of system and now the user can change any procedure in the database. You will need to remember this security risk.

    Concerning
    Rajesh

Maybe you are looking for

  • Installation discs for Windows 7?

    I bought a PC with Windows 7 Home Premium 64-bit installed on it. My HARD drive is just came out and I tried to download the ISO from Microsoft. Unfortunately Microsoft came back with, and the error message saying that it came pre-installed so I can'

  • Slot for memory card does not support SDHC memory cards.

    Dear friends, I have a Windows XP Pavilion dv4000 laptop from 2005 with a memory card slot that does not support current SDHC memory cards.  Is there an updated driver for this niche that I need to view these maps? Greetings to all from John P. Owens

  • WIN8 do not map a drive win2008

    No problem of mapp of win7 or xp on the same share but I get "error unexpected net work...". "when I want to map the same my computer of Win8 driv.

  • Outlook Print PDF

    I have Acrobat Reader installed. When you use outlook, I try to print an e-mail message to a file, but I don't see any print to PDF option. What I have to install a paid for version of Acrobat, if yes which? So how to fix Outlook to recognize it, the

  • New Dell owner questions

    I received my new Dell laptop a few weeks ago. I can't figure out how to get a picture in an image. Any tips?