Webutil, read registry with defaut entry?

webutil, read registry not working well?
Hi,
I cannot read the default value for an entry in the registry.
if I read another value, it works fine.
On metalink, a note was giving an exemple that was doing that... but it doesn't work when I try it....
Doc ID:      Note:121909.1
Subject:      How to Open a File with its Associated Program from Forms ?
Here is my code, the first block works, but the others don't work. Could somebody explain me how do I do to access the default value?
PROCEDURE P_TEST IS
lv_valeur_retour1 VARCHAR2(255);
BEGIN
BEGIN
-- this works fine
lv_valeur_retour1 :=
CLIENT_WIN_API_ENVIRONMENT.READ_REGISTRY
('HKEY_CURRENT_USER\Software\Microsoft\Windows NT\CurrentVersion\Windows',
'Device',
TRUE);
message(lv_valeur_retour1);
pause;
EXCEPTION
WHEN NO_DATA_FOUND THEN
:F_RETOUR := '10';
END;
pause;
BEGIN
-- this doesn't work
lv_valeur_retour1 :=
CLIENT_WIN_API_ENVIRONMENT.READ_REGISTRY
('HKEY_CLASSES_ROOT\' || '.doc',
NULL,
TRUE);
message(lv_valeur_retour1);
pause;
EXCEPTION
WHEN NO_DATA_FOUND THEN
:F_RETOUR := '11';
END;
pause;
BEGIN
-- this doesn't work
lv_valeur_retour1 :=
CLIENT_WIN_API_ENVIRONMENT.READ_REGISTRY
('HKEY_CLASSES_ROOT\' || '.doc',
'Default',
TRUE);
message(lv_valeur_retour1);
pause;
EXCEPTION
WHEN NO_DATA_FOUND THEN
:F_RETOUR := '12';
END;
pause;
BEGIN
-- this doesn't work
lv_valeur_retour1 :=
CLIENT_WIN_API_ENVIRONMENT.READ_REGISTRY
('HKEY_CLASSES_ROOT\' || '.doc',
'(Default)',
TRUE);
message(lv_valeur_retour1);
pause;
EXCEPTION
WHEN NO_DATA_FOUND THEN
:F_RETOUR := '15';
END;
pause;
BEGIN
-- this doesn't work
lv_valeur_retour1 :=
CLIENT_WIN_API_ENVIRONMENT.READ_REGISTRY
('HKEY_CLASSES_ROOT\' || '.doc',
'0',
TRUE);
message(lv_valeur_retour1);
pause;
EXCEPTION
WHEN NO_DATA_FOUND THEN
:F_RETOUR := '14';
END;
pause;
BEGIN
-- this doesn't work
lv_valeur_retour1 :=
CLIENT_WIN_API_ENVIRONMENT.READ_REGISTRY
('HKEY_CLASSES_ROOT',
'.doc',
TRUE);
message(lv_valeur_retour1);
pause;
EXCEPTION
WHEN NO_DATA_FOUND THEN
:F_RETOUR := '13';
END;
END;

I had to customize the webutil.pll to get this to work. I modified the WEBUTIL_C_API.ADD_PARAMETER_WU function so it did not always consume null string parameters. The change follows.
FUNCTION ADD_PARAMETER_WU (paramList IN ParameterList, parameterType IN PLS_INTEGER,
inOut IN PLS_INTEGER, str IN VARCHAR2, strmaxlen IN PLS_INTEGER) RETURN ParameterHandle IS
paramHnd ParameterHandle;
BEGIN
     IF (str = 'mjpNULLmjp') THEN
                    WebUtil_Core.SetProperty(WebUtil_Core.WUL_PACKAGE,'WUL_PARAM_PROPERTIES', 'B|' -- indicate Bind
          || TO_CHAR(paramList.hnd) || '|'
          || TO_CHAR(parameterType) || '|'
          || TO_CHAR(inOut) || '|'
          || TO_CHAR(strmaxlen) || '|'
          || '',false);
     ELSE
          IF str IS NULL THEN
          WebUtil_Core.SetProperty(WebUtil_Core.WUL_PACKAGE,'WUL_PARAM_PROPERTIES', 'B|' -- indicate Bind
          || TO_CHAR(paramList.hnd) || '|'
          || TO_CHAR(parameterType) || '|'
          || TO_CHAR(inOut) || '|'
          || TO_CHAR(strmaxlen) || '|'
          || '(null)',false);
     ELSE          
          WebUtil_Core.SetProperty(WebUtil_Core.WUL_PACKAGE,'WUL_PARAM_PROPERTIES', 'B|' -- indicate Bind
          || TO_CHAR(paramList.hnd) || '|'
          || TO_CHAR(parameterType) || '|'
          || TO_CHAR(inOut) || '|'
          || TO_CHAR(strmaxlen) || '|'
          || str,false);
     END IF;
     END IF;
     paramHnd.hnd := TO_NUMBER(WebUtil_Core.GetProperty(WebUtil_Core.WUL_PACKAGE,'WUL_ADD_PARAMETER'));
     RETURN paramHnd;
EXCEPTION
when WebUtil_Core.BEAN_NOT_REGISTERED then
WebUtil_Core.Error(15,WebUtil_Core.getImplClass(WebUtil_Core.WUF_PACKAGE));               
RAISE FORM_TRIGGER_FAILURE;
when WebUtil_Core.PROPERTY_ERROR then
RAISE FORM_TRIGGER_FAILURE;
END ADD_PARAMETER_WU;
Here is an example call to get the default registry entry:
reg_val := CLIENT_WIN_API_ENVIRONMENT.READ_REGISTRY('HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\IEXPLORE.EXE','mjpNULLmjp',FALSE);

Similar Messages

  • Webutil reading registry entries.

    I have the following program unit that works in forms 6i using the win_api_environment.read_registry program unit.
    l_filetype := WIN_API_ENVIRONMENT.Read_Registry
    ('HKEY_CLASSES_ROOT\'||l_extension, null, TRUE);
    -- Get associated OPEN command e.g.
    -- 'c:\win32app\msoffice\winword\winword.exe "%1"'
    l_command := WIN_API_ENVIRONMENT.Read_Registry
    ( 'HKEY_CLASSES_ROOT\' || l_filetype
    ||'\shell\open\command'
    , null, TRUE);
    However, when I converted this to work with webutil by adding client_ to the win_api_environment, I get a no_data_found error.
    In 6i, this returns the (default) value in the registry, if I change the null in both commands to '(default)', I still get no_data_found. If I insert a string value in the key I am looking at, it will return that key.
    Basically, my question is how do I get the (default) value returned?
    Thanks
    Stephen

    From my understanding of the source code of Client_win_api_environment.read_registry you need to explicitly pass the RegEntry as the second parameter to that function.
    l_command := client_WIN_API_ENVIRONMENT.Read_Registry ( 'HKEY_CLASSES_ROOT\',l_filetype ||'\shell\open\command', TRUE);
    (Because of the following line in Client_win_api_environment.read_registry, see webutil.pll:
    vcRoot := upper(substr(RegPath,1,instr(RegPath,'\')-1));
    RegPath is trimmed to the first appearance of '\')
    Hope this helps
    Gerald Krieger

  • Can't read registry entry AppPath... - My solution

    Good news! For me, there was a simple solution when I got this error message. (Some background: We just upgraded Office to 2007 and RoboHelp 8 from RoboHelp 5.) Today when I tried to open RoboHelp for Word (version 8) for the first time, I received this error message:
    "Can't read registry entry AppPath. RoboHelp may not be installed properly.
      Re-install RoboHelp if you continu to get this message."
    Actually, I didn't need to do anything major to successfully open RoboHelp for Word. The solution seemed to be simply to open RoboHelp for Word BEFORE opening Word. (Apparently, in my original attempt, I already had Word open.) So I rebooted my PC, and opened RoboHelp-for-Word first, and (Yeah!), RoboHelp for Word opened just fine.
    Perhaps this will help someone else.

    This forum is maintained by users of RoboHelp, not by Adobe, so your comments will not be seen by them.
    You say you are dissappointed with the Adobe RoboHelp team but you don't say if you have been to Support and what they suggested.
    I'm not sure what the problem is but I do know you cannot have more than one version of RoboHelp for Word installed on one PC. Maybe that is the cause.
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • How to configure webutil 1.06 with oracle Developer suite 10g R2

    Hello everyone,
    My computer configuration is
    OS-> Windows 7 Ultimate (32-bit)
    RAM-> 1GB
    I have successfully installed oracle XE and developer suite 10g R2 in my computer. Now i want to configure webutil. Please give me the step-by-step procedure for it.
    Thanks in advance.

    hi
    plz search this forum u will find so many answered threads anyways.
    plz read the following.
    Webutil Settings
    Requirements
    ·     Download Jacob 1.8 archive and webutil  1.06
    (Download http://prdownloads.sourceforge.net/jacob-project/jacob_18.zip 
       and extract to a temporary staging area. Do not attempt to use 1.7 or 1.9.
    webutil can be downloaded from http://otn.oracle.com )
    Database  Setup
         Login as SYS
          create user webutil identified by webutil
                  default tablespace users
                      temporary tablespace temp;
         grant connect, create session, create procedure, create public synonym to webutil;
         grant resource, connect to webutil;
         grant execute on dbms_lob to   webutil;
         login as webutl user  and  run
         create_webutil_db.sql
         create public synonym webutil_db for webutil.webutil_db;     
         grant execute on webutil_db to public;
              set serveroutput on
    declare
        a  boolean;
    begin
        a:=webutil_db.closeblob(1);
        If a then
            dbms_output.put_line('webutil/blob setup '||'TRUE');
        else
            dbms_output.put_line(' webutil/blob setup  '||'FALSE');
        end if;
    end;
    copy jacob.jar and copy  frmwebutil.jar  to ORACLE_HOME/forms/java directory.
        Make sure you can download these using the below
         http://machinename.com/forms/java/jacob.jar
         http://machinename.com/forms/java/frmwebutil.jar  
    Create  directory webutil under [OraHome]/forms/webutil and .
           copy jacob.dll , JNIsharedstubs.dll, d2kwutil.dll
           Check the permissions. Read /Execute
    Forms.conf   AliasMatch ^/forms/webutil/(..*)      
    $ORACLE_HOME/forms/webutil/$1"
              http://machinename.com/forms/webutil/jacob.dll 
              http://machinename.com/forms/webutil/JNIsharedstubs.dll
              http://machinename.com/forms/webutil/d2kwutil.dll  
    In the  default.env update
         WEBUTIL_CONFIG=/opt/oracle/product/10gas/forms/server/webutil.cfg
           CLASSPATH=c:\temp\webutil\lib\frmwebutil.jar;c:\"Program      Files"\Java\j2re1.4.2_06\lib\rt.jar  (Include rt.jar)
         Also include  C:\Dev10g\forms\java\ frmall.jar
    Settings for     webutil.cfg
         logging.file=c:\temp\webutil.log
         logging.enabled=TRUE
         logging.errorsonly=TRUE
         logging.connections=TRUE
         transfer.database.enabled=TRUE
         transfer.appsrv.enabled=TRUE
         transfer.appsrv.workAreaRoot=<Enter Directory /folder on Server>
         transfer.appsrv.accessControl=TRUE
         transfer.appsrv.read.1=<Enter Directory /folder on Server>
         transfer.appsrv.write.1=<Enter Directory /folder on Server>
    Entry in the formsweb.cfg
    [webutil]
         WebUtilArchive=frmwebutil.jar,jacob.jar
         WebUtilLogging=on
         WebUtilLoggingDetail=normal
         WebUtilErrorMode=Alert
         WebUtilDispatchMonitorInterval=5
         WebUtilTrustInternal=true
         WebUtilMaxTransferSize=16384
         baseHTMLjinitiator=basejpi.htm
         baseHTMLjpi=webutiljpi.htm
         #archive_jini=frmall_jinit.jar
         lookAndFeel=oracle
         form=WELCOME.fmx
         userid=webutil/Webutil$123@ORCL
         width=955
         height=545
         jpi_download_page=https://java.sun.com/products/archive/j2se/1.4.2_09/index.ht     ml
         jpi_classid=clsid:8AD9C840-044E-11D1-B3E9-00805F499D93
         jpi_codebase=https://java.sun.com/products/plugin/autodl/jinstall-1_4-windows-     i586.     cab#Version=1,4,0,0
    jpi_mimetype=application/x-java-applet;version=1.4
    Sign jacob.jar ( Not mandatory )
       Open a DOS command prompt.
       Add [OraHome]\jdk\bin to the PATH:
          set PATH=[OraHome]\jdk\bin;%PATH%
       Sign the file, and check the output for success:
          [OraHome]\forms\webutil\sign_webutil [OraHome]\forms\java\jacob.jar
    [Previously this point stated that frmwebutil.jar also needed to be signed. This is no longer necessary and should not be done.]
    Start Forms Builder and connect to a schema in the RDBMS used in step (4).
       Open webutil.pll, do a "Compile ALL" (shift-Control-K), and generate to PLX (Control-T).
       If the PLX is not generated, the Webutil.pll library would have to be attached with
       full path information to all forms wishing to use WebUtil. This is NOT recommended.
    Create a new FMB.
           Open webutil.olb, and Subclass (not Copy) the Webutil object to the form.
            There is no need to Subclass the WebutilConfig object.
            Attach the Webutil.pll Library, and remove the path.
             Create a new button on a new canvas, with the code
                   show_webutil_information (TRUE);
       in a WHEN-BUTTON-PRESSED trigger.
            Compile the FMB to FMX, after doing a Compile-All (Shift-Control-K).
       Under Edit->Preferences->Runtime in Forms Builder, click on "Reset to Default" if
                the "Application Server URL" is empty.
       Then append "?config=webutil" at the end, so you end up with a URL of the form
         http://server:port/forms/frmservlet?config=webutil
    Compile the webutil.pll and attach it to the fmb. Compile it
    Debugging
    Clear the browser cache and enable the jinitator / sun java plugin.
    For Sun Java Plugin
    Start ->Settings ->Control –Panel->Java->Advanced ->Show Java Console
    Debugging  ->Select All
                  Clear the plugin cache and once again access the URL. Make sure all the dlls,jar files
    are getting downloaded.
    FRM-92050   failed to connect to server /forms90/;90serlvet -1
       oracle.forms.net,connectionexeption : form session  failed during startup.
    Java console shows  -
    When you are not able to download the webutil.jar file
    java.lang.ClassNotFoundException:
    java.io.IOException: open HTTP connection failed.
         at sun.applet.AppletClassLoader.getBytes(Unknown Source)
         at sun.applet.AppletClassLoader.access$100(Unknown Source)
         at sun.applet.AppletClassLoader$1.run(Unknown Source)     at
    java.security.AccessController.doPrivileged(Native Method)     
    at sun.applet.AppletClassLoader.findClass(Unknown Source)
    Cause
    Ensure that the  ORACLE_HOME  in the .Env file points to a correct home.
    Frm-40735 when-custom-item-event triger raised unhandled exception ora-06508
    Cause
    Ported webutil to Unix . The form appears , but when a call is made to webutil
    functions, it resulted in the above error .The reason was PLL was not compiled
    on unix .
    Reference
    Metalink Note 418970.1 ORA-06508 When Starting Webutil
    Read / Write - image file
    The code was not erroring out, but the image was not getting copied in the
    image item .
    Cause
    transfer.appsrv.workAreaRoot=<name of the temp directory >
    transfer.appsrv.accessControl=TRUE was not specified in the webutil.cfg file
    The root of the location in which WebUtil can store temporary files
    uploaded from the client.
    While Writing Image file ( remember its the client to which the image
    is written to ).
    Example
    client_image.write_image_file('d:\myimg\','GIF','CTRL.MY_IMG',
    maximize_compression,     original_depth);
    Then ensure that on the thin client , there exist a directory  called as "myimg" in the D drive .
    One should watch out for the error in the console or the log depending on how
    the logging has been set to .In case if the directory does not exist on the
    client message appears that cannot create a file ...
    These are the steps that occurs -
    1) WebUtil creates a working directory that is private to the user
      on the applciation server using the value of transfer.appsrv.workAreaRoot
      This is that <ipaddress>\<ntuser name> directory
    2) The basic forms Write Image file is used to extract a temporary copy
       of the image into that  directory.
    3) The image is downloaded into the client machine and saved as the name
       that you specified as the filename in the write_image_file command.
    4) The temporary copy of the image held in the workAreaRoot on the Appserver
       is cleaned up.
    4) Client_host - The  command is supposed to run the executable on the client .
       But if you are trying to call an exe which is not in the path , you will not
       get any error.
    Error Message while opening the fmb in the forms builder
    Add jacob.jar and frmwebutil.jar  to CLASSPATH or FORMS_BUILDER_CLASSPATH ... otherwise there is an error message when opening the canvas in the new created fmb
    {code}
    hope this helps u.
    sarah                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Unable to read registry key for log4net configuration location

     I am getting this error "Unable to read registry key for log4net configuration location." 
    Regards Ravin

    Thanks for reply.
    I m using log4net in Biztalk server 2010. I wrote code in my orchestration  like
    // Create the logger using the ProjectName property value
    from the .btdfproj
    logger = log4net.Ext.Serializable.SLogManager.GetLogger("MyProjectName",
    log4net.helpers.CallersTypeName.Name);
    // Configure the logger by referencing the registry key written
    during the deployment process
    logger.RegistryConfigurator();
    // Set some properties in the PropertiesCollectionEx object
    logProps.Set("InstanceId", MyOrchestration(Microsoft.XLANGs.BaseTypes.InstanceId));
    // Write a debug level entry to Log4Net including the properties
    object
    logger.Debug(logProps, "Received top level request...");
    After successfully Deploying solution. Im getting this error.
    I think problem is with  the " log4net 64bit".
    Regards Ravin

  • Popup with 1 entry field?

    hi guys
    im looking for a FM with 1 entry field with text and numbers.
    this pop up must exist but i cant find it.
    tks in advance.

    Sure, check this out.
    report zrich_0001.
      data: ivals  type table of sval.
      data: xvals  type sval.
      xvals-tabname   = 'VBAK'.
      xvals-fieldname = 'AUART'.
      append xvals to ivals.
      call function 'POPUP_GET_VALUES'
           exporting
                popup_title     = 'Choose Order Type'
           tables
                fields          = ivals
           exceptions
                error_in_fields = 1
                others          = 2.
    read table ivals into xvals index 1.
    write:/ xvals-value.
    Regards,
    RIch Heilman

  • TS1424 I am trying to update itunes so that I can sync my new iphone.  I get a message Error 7(Windows Error 127).  I have uninstalled all apple software and tried to reload with no luck.  I have also cleaned my registry with software.

    I am trying to update iTunes so that I can sync my new iPhone.  I get a message Error 7 (Windows Error 127).  I have uninstalled all Apple software and tried to reload with no luck.  I have also cleaned my computer's registry with registry cleaning software.  Even tried reloading operating system disk to fix errors.  Any ideas?

    Hello chathamcpa,
    I found an article with steps you can take when you are getting Error 7 when opening iTunes.  I recommend following the steps in this article:
    iTunes for Windows: "Error 7" message when opening iTunes
    http://support.apple.com/kb/ts3074
    Thank you for using Apple Support Communities.
    Best,
    Sheila M.

  • Why is my address book no longer being automatically updated with new entries?

    why is my MacBook Pro address book no longer being automatically updated with new entries?
    thanks!
    Joe

    thanks for the question!
    i have an iphone that uses addresses/contacts.  i don't use icloud because i was getting doubled calendar entries.
    updating is done "via itunes on this computer"

  • Opening pdf within app using Reader X with Acrobat 5.0 installed

    I have Acrobat 5.0 (full version) installed and also Reader X.  Acrobat 5 was installed 1st and has been my default.  But, I loaded Reader X because Acrobat 5 can't open many newer PDF's.  I have gone into Explorer and set Reader X as the "open with" application and double-clicking a PDF in Explorer results in Reader X opening the file.  The problem is within various applications which have menu links to PDF's.  Many of these still attempt to open the PDF with Acrobat 5.  I believe this may be more a Windows XP problem, but thought maybe someone might know what registry item I should look for to correct this problem since it is related to Acrobat.

    Adobe doesn't recommend the use of Reader X with anything but Acrobat X. Earlier versions of Acrobat and Reader (any version) will cause problems. Remove Acrobat, re-install Reader X and if needed upgrade to Acrobat X or Remove Reader X and re-install ACrobat 5.

  • Problem with Variable Entry Screen

    Hello All,
    We upgraded our development systems to NW2004s and came across the following issue:
    All our Bex queries have restricted time characteristics with variables entries. When we execute a query it should pop-up the variable selection screen for us to enter the restriction values but the query is ignoring Variable restriction screen and taking into consideration everything. The same query works fine in Prod., which is still in 3.1.
    Did anyone come across this situation kind of situation? It did not pop-up any type of error and we are in SPS10
    Thanks in Advance,
    Message was edited by:
            bw expert online
    Message was edited by:
            bw expert online

    We fixed the "Variable Screen not appearing" problem by adding following objects to our users.
    1) Business Explorer - BEx Web Templates (NW 7.0+) S_RS_BTMP
    2) Business Explorer - Individual Tools S_RS_TOOLS
    3) Business Explorer - Data Access Services S_RS_DAS
    Mark the message answered if this helps.

  • CFSTKE* Queues with few entries executing for long durations  (10 hrs)

    In APO 7.0 the CFSTKE* Queues with few entries executing for long durations  (10 hrs)
    Below are the FM from the queue 
    /SAPAPO/CIF_IRQ_REDUCT_INBOUND
    /SAPAPO/CIF_STOCK_INBOUND
    /SAPAPO/CIF_SL_DOC_INBOUND
    /SAPAPO/CIF_SL_DOC_INBOUND
    Do any one have the same problem and any fixes ?
    Thank You

    Hi Aravind,
    What is the status of your queue:
    Is it in status running, ready or sysfail?
    If it is in "Running" status since last 10 hours then check the following things:
    Check SM51 and see if you find a long running process, see if it is trying to do a sequential read on some table.
    If yes then ask your Basis team to run ST04 and see what index it is using,
    If that is also fine then ask them to check stat on that table.
    Builiding stat may help if a read on table is taking long time and index which is being picked up is correct.
    Your basis team should be able to help you.
    I hope it helps.
    Thanks,
    Anupam
    Edited by: Anupam Sengar on Aug 11, 2011 12:06 AM

  • GRC 10 Access request with 'System entry only' goes to escape route

    Hello All Experts,
    I am facing same issue but scenario is different which I found not possible with above solution. If I am submitting request with ONLY system, then request will go to AUTO approve and end.
    1) In change authorizations option, end user submits request with only filling SYSTEM option.
    2) Request goes to 1st Stage people, who will add roles into system
    Existing MSMP no roleowner is used as routing condition here, if role approver not FOUND, request takes  ESCAPE ROUTE and goes to Escape Stage with system option and role(if not defined role owner for it)
    3) If role has owner, it goes to Role Owner.
    Can we remove SYSTEM option from request and send it to NO PATH stage instead of ESCAPE route
    OR
    Is there any better way to handle this?  client do not wants to APPROVE requests with SYSTEM entries but ready to handle requests with no role owner request.
    Please help..  **Urgent**

    1. Look at the following link and ensure you have a similar Initiator created and applied in MSMP.
    GRC Request with both System and Role Line Items
    2. Ensure in MSMP you have "no stages" in the path for "system only" requests. Paths with no stages will work on roughly SP10 onwards (from experience).

  • Preview breaks pdf with data entry cells?

    Hi,
    Here's the gist of the trouble:
    I created a simple invoice in acrobat with data entry cells for the user to enter hours worked, description of work, etc. It works fine in acrobat.
    If I open it in Preview two things seem to happen:
    1. closing the document saves it without me being prompted
    2. the data entry cells are mucked up - data is in the cells but can't be seen unless I click on the cell. If I click away from that cell the data dissappears behind a blue highlight of the cell (the same blue highlight I see in Preview). I am able to 'bring the data back' by selecting the data, cmd-x, click to another cell, click back to original cell, cmd-v. It don't make no darned sense I tell ya!
    So, why is Preview saving my data without asking me? What's going on there?
    Why is Preview breaking the data entry cells?
    Any ideas?
    Cheers, Mike
    Lion.2

    This is the work around that I got from the Apple iWork Team; they are working on solving the problem:
    "Unfortunately, Numbers can enter a bad state. We are investigating a fix. In the meantime:
    To avoid this bad state, please do not exit Numbers with a file open. Always:
    1. Tap the "My Spreadsheets" button to close the file.
    2. Then exit Numbers."
    So far, following this procedure, I have encountered no problems. If Numbers is in this "bad state," you can return it to a normal condition by either double tapping the spreadsheet name which will put you into edit mode, then tap the spreadsheet to exit. Also, you can tap the arrow in the upper right corner to enter read mode, then tap the spreadsheet to exit. Hope this helps.

  • Having trouble with double entries in ical after installing Lion.  After entering an event, another one pops up right next to it.

    Having trouble with double entries in ical after installing Lion.  After entering an event, another one pops up right next to it.

    Check iCal preferences, the Accounts Tab. You might have duplicate accounts.

  • My iphone has a cracked screen but the problem is with the entry of aurriculares that move to the music I want to know if I would change?

    my iphone has a cracked screen but the problem is with the entry of aurriculares that move to the music I want to know if I would change?

    Apple will exchange your iPod for a refurbished one for $199 for 64 GB 4G and $99 for the other 4Gs. They do not fix yours.
    Apple - iPod Repair price
    You can do it at an Apple store by making an appointment:
    Apple Retail Store - Genius Bar
    or send it in to Apple. See:     
    Service Answer Center - iPod
    A third-party place like the following maybe less. Google for more.
    iPhone Repair, Service & Parts: iPod Touch, iPad, MacBook Pro Screens         
    Replace the screen yourself if you are up to it
    iPod Touch Repair – iFixit                  

Maybe you are looking for

  • Phone keeps freezing.

    I LOVE my Droid X.  However, my phone started freezing occasionally.  I had to remove the battery and reboot almost every time.  Verizon tech said it wasn't a known issue.  They sent me a temporary "replacement" (that means used) phone while I wait f

  • Graphic card/display driver on X100e is inadequate for Dell U2311 1900 x 1080 monitor

    I have an x100e laptop that I bought in late 2010 that came with ATI Radeon HD 3200 Graphics. It is able to support ThinkPad display 1366 x 768. I just hooked it up to a Dell U2311 23" monitor - which offers a 1920 x 1080. I looking to get this level

  • HR ABAP-Need help in creating the Infotype

    Hi All of you, I have to craete an infotype with 16 fields. But as per my requirement i have to design the screen such as it has to be four tabs , Under each tab i have to dispaly four fields. Urgent please..... Thanks in Advance, Mani.

  • Between operator

    Hi We used between operator for varchar2 column.it is caused any performance problem n query execution. My sql statement is AND gcc_c.segment3 BETWEEN '&&3' AND '&&4' AND gcc_c.segment4 BETWEEN '&&5' AND '&&6' where segment3 and segment4 as varchar2

  • LType your questionhello

    I have Lightroom 4 and am considering buying Lightroom 6. I have two questions: 1 Is there an "upgrade path" from Lightroom 4? 2 I understand that Lightroom 6 uses the computer to speed things up a bit. I don`t understand the technicalities. However,