How to create a list of permissions in the wizard for registration of components?

Dear friends,

Hello. I have just finished developing my first PeopleSoft application in the Application Designer and try to save the component using the registration wizard. I have 2 questions:

When to use select button to select an allow list, first of all, there is no list of permission to select from my computer. So creating a list of permissions in the registration wizard?

Secondly, in content reference window, click the "select" button to select the name of the portal and the name of the folder. Then click on the button "Open Selected", it is supposed to launch a browser that takes the administration page to create a new folder if necessary. But in my computer, the browser is a message: "page cannot display." What is going on?

Friends can help answer these 2 questions? Thank you.



Lucy

Lucy,

You cannot create a list of permissions in the registration wizard, only selection from a list of those that already exist. Note that when you choose the selection... button, there is another selection button in the popup window that acts first as a search button, and assuming that it returns a list of highlight or authorization lists you want to include and use the Select button. You can enter search criteria before using the Select button, or leave it blank to see everything.

In response to your second question, the selected button open for content references will not work unless you set the URI correctly on the browser under Tools-> Options tab in the App Designer.

Kind regards
Bob

Tags: Oracle Applications

Similar Questions

  • BB10: How to create multiple lists (one next to the other)

    Hello world

    I need to create a menu similar to the following image:

    In this menu list:

    1. The user could drag vertically and navigate between ELEMENTS (ITEM1, ITEM2, ITEM3,...). In addition, headers of title (like tete2) would remain on the top, I mean, they hide when sliding down.
    2. The user can drag as horizontally. And a new list of ITEMS will be displayed. And the header titles will be moved as well.

    So, in a nutshell, what I need is something like several vertical inside a horizontal list lists.

    Any ideas?

    Thanks in advance.

    Hi guys,.

    I finally understood how do.

    Here's how I did it:

    1. I created several containers, one for each vertical list. The 1st container is visible to the user. The 2nd is hidden just then (right) at the 1st. the 3rd one is hidden just then (right) on the 2nd. And so on.
    2. I used getures to catch any user to slide. Whenever the user calls, either to the left or to the right, I use animations to hide the visible screen and make it visible, the following. You should also block the selection of list items any time you catch the user, cause you don't want the user to swipe and select both Sam.
    3. The headers have been the biggest problem. I created a container of the stack layout page-fromLeftToRight for the headers. This container has a very large "minWidth", and in it I put a label for each header. In order to locate each header in the Middle, no matter how long the text it contains, I used 'LayoutUpdateHandler' Manager for each label. This handler gives the current width of the label you and from there, you can calculate and set the position of the label he.
    4. I used gestures and animations to move headers. Just as I did with the lists.

    The good things is that it works, and it does so very smoothly.

    I know the tabs would be a much easier solution, but my client wanted something more will you allow. Thank you very much for your good help.

    Hope this helps someone.

    Thanks again guys.

  • How to add a list of parameters in the request for a report

    I need to change the code of a trigger when key pressed in order to call a report from a form by passing a parameter, but I have some problems.
    This is the part of the code I'm interested (I put a < < < < < < < < on the lines concerned):

    DECLARE

    v_repid REPORT_OBJECT;
    v_rep VARCHAR2 (100);
    v_rep_status VARCHAR2 (100);
    -v_param VARCHAR2 (200): = NULL;
    -v_valor VARCHAR2 (200);
    v_url VARCHAR2 (2000);
    v_repserver varchar2 (20): = "myserver";
    -v_PARAMETER varchar2 (100): = ";
    v_parameter_list ParamList; -< < < < < < < <

    BEGIN

    : global.p_id_attivita: = 23728; -< < < < < < < <

    Add_Parameter (v_parameter_list, 'P_ID_ATTIVITA', TEXT_PARAMETER,: global.p_id_attivita); - < < < < < < < <

    v_repid: = FIND_REPORT_OBJECT ('MYREPORT'); -report is a report of object navigator item
    SET_REPORT_OBJECT_PROPERTY (v_repid, REPORT_EXECUTION_MODE, LOT);
    SET_REPORT_OBJECT_PROPERTY (v_repid, REPORT_COMM_MODE, SYNCHRONOUS);
    SET_REPORT_OBJECT_PROPERTY (v_repid, REPORT_DESTYPE, cache);
    SET_REPORT_OBJECT_PROPERTY (v_repid, REPORT_DESFORMAT, "SPREADSHEET");
    SET_REPORT_OBJECT_PROPERTY (v_repid, REPORT_SERVER, v_repserver);

    v_rep: = RUN_REPORT_OBJECT (v_repid, v_parameter_list); -< < < < < < < <

    v_rep_status: = REPORT_OBJECT_STATUS (v_rep);
    While v_rep_status IN THE LOOP ("CURRENT", "OPENING_REPORT", "PENDING")
    v_rep_status: = REPORT_OBJECT_STATUS (v_rep);
    END LOOP;
    IF v_rep_status = "FINISHED" THEN
    WEB. SHOW_DOCUMENT(v_url||) e/Reports/rwservlet/getjobid ' | SUBSTR (v_rep, INSTR (v_rep, '_',-1) + 1) |'? ' |' server =' | v_repserver, "_blank");
    END IF;

    END;

    When I try to call the report by pushing the button that the trigger is connected, I get the following message:

    FRM-47009: failed to add the P_ID_ATTIVITA parameter to the parameter list: Invalid list ID.

    I remind you that without settings, this code works.

    Thank you!

    To add a parameter, you must create the parameter list. Like this

    DECLARE
    
    v_repid REPORT_OBJECT;
    v_rep VARCHAR2(100);
    v_rep_status VARCHAR2(100);
    --v_param VARCHAR2(200) := NULL;
    --v_valor VARCHAR2(200);
    v_url VARCHAR2(2000);
    v_repserver varchar2(20) := 'myserver';
    --v_PARAMETER varchar2(100) := '';
    v_parameter_list ParamList; --<<<<<<<<
    
    BEGIN
    
    :global.p_id_attivita := 23728; --<<<<<<<<
    
    v_parameter_list := Create_Parameter_List('tmpdata'); --------i added
    Add_Parameter(v_parameter_list, 'PARAMFORM', TEXT_PARAMETER, 'NO');  --------i added
    Add_Parameter(v_parameter_list, 'P_ID_ATTIVITA', TEXT_PARAMETER, :global.p_id_attivita);--<<<<<<<<
    
    v_repid := FIND_REPORT_OBJECT('MYREPORT'); -- report is an element from object navigator report
    SET_REPORT_OBJECT_PROPERTY(v_repid, REPORT_EXECUTION_MODE, BATCH);
    SET_REPORT_OBJECT_PROPERTY(v_repid, REPORT_COMM_MODE, SYNCHRONOUS);
    SET_REPORT_OBJECT_PROPERTY(v_repid, REPORT_DESTYPE, cache);
    SET_REPORT_OBJECT_PROPERTY(v_repid, REPORT_DESFORMAT, 'SPREADSHEET' );
    SET_REPORT_OBJECT_PROPERTY(v_repid, REPORT_SERVER, v_repserver);
    
    v_rep := RUN_REPORT_OBJECT(v_repid,v_parameter_list); --<<<<<<<<
    
    v_rep_status := REPORT_OBJECT_STATUS(v_rep);
    WHILE v_rep_status IN ('RUNNING','OPENING_REPORT','ENQUEUED') LOOP
    v_rep_status := REPORT_OBJECT_STATUS(v_rep);
    END LOOP;
    IF v_rep_status = 'FINISHED' THEN
    WEB.SHOW_DOCUMENT(v_url||'/reports/rwservlet/getjobid'||SUBSTR(v_rep, INSTR(v_rep,'_', -1)+1)||'?'||'server='||v_repserver, '_blank');
    END IF;
    DESTROY_PARAMETER_LIST(v_parameter_list); --- i added
    END;
    

    Try

    I hope this works.

    Hamid

  • How to create a list of button by using the names of a table

    Hi, I want to create an application that displays detailed information about something. for example, as the profile of the users. my application will read an xml response from the server that contains the list of the names of the users. How to create a list of buttons using the names and then each button that displays the name that can be pressed and displays detailed information about the name? I think that it is similar to the BBM app that displays a contact list of the user. Thank you very much

    Create a ButtonField as:

    ButtonField [] users_buttons = new ButtonField [number of users];

    Initialize the uasing dem:

    for (int i = 0; i)<>

    users_buttons [i] = new ButtonField ("user", Field.FIELD_HCENTER |) ButtonField.CONSUME_CLICK);

    Make dem clickable setchangeListener method of buttonField and Ooveride Navigation click to make a few operatoin by clicking on the specific button!

  • How to create a list of chips which is aligned which can occur over time (such as powerpoint)

    Hi all. I'm trying to figure out how to create a list of chips for a training video that will appear gradually as the voice on reveals each point, without the need to have a separate title for each point. Even if I create bullets, especially how to align and having the good spacing between each sentence. Basically I want it to be like an animated Powerpoint slide! Please can someone give me advice on how to do this than all my text/bullet alignment points and are spaced evenly. Thank you!

    Each line is revealed over time:

    Title

    • Point 1
    • Point 2
    • Point 3

    Do in the Titler, and start with the complete list of ball.

    Then create "new title based on the current title" and remove the bottom line

    Do so until that there is only a line on the left.

  • Create a list (of participants) from the drop-down list

    Hello

    I would like to create a list of participants of the selection in the drop-down list.

    After selecting one choice in the list drop-down I LCD to complete the list of people who belong to this choice and to choose those that is present at that meeting (using the check box).

    How can I do that, please?

    Thanks for all tips.

    Best,

    Marian

    Hi Marian,

    It is possible, but requires a fair bit of screenwriting. Also the page will probably need to be poured so that the table grows, objects under move down as well.

    Here is an example: https://acrobat.com/#d=X1msu65emlM10IWKxkiUyw

    Hope that helps,

    Niall

  • How to create a toolbar of shortcuts on the desktop

    Hello...
    How to create a toolbar of shortcuts on the desktop

    Unfortunately, this feature is no longer available with Windows 7. I was surprised myself so since Vista was fine with it, but in Windows 7, we all need to just get used to using the feature of the taskbar QuickLaunch. You can pin any icon you want in the taskbar and use it to your quick launch of this program.

  • How to create a file name variable with the County and the date?

    Objective: Create a file name variable with the County and the date

    Error: get a lot of error. Do you know how to change my code?

    Question: how to create a file name variable with the County and the date?

    Mini code:

    std::string * rawfilepath;
    std::string * rawfilename;

    rawfilepath = "./shared/documents/";
    RawFileName = rawfilepath + 'rawlog -' + 0 + '-.txt ';
    QFile file (rawfilename);
    If (file.exists ()) {}
    rawfilenamecount ++;
    RawFileName = "./shared/documents/rawlog-" + rawfilenamecount + "-.txt ';
    }

    Thank you for your attention,

    Thank tzander reminding me the idea. Method of cascades is not good for me because all of the kernel code is written by Native. If I change the channel to QString, I need to change a lot of codes.

    Solution is below.

    While (access (rawfilename, F_OK)! = - 1) {}
    rawfilenamecount ++;
    sprintf (format, RawFileName, rawfilenamecount);
    fprintf (stderr, "file exists");
    }

    Rawlog = fopen (rawfilename, "w"); Save the file in a specific path.
    fprintf (rawlog, "System Time (ms)" "");

  • How to create a user local administrator with the user root on the CV

    As says the tile, how to create a user local administrator with the user root on VCS-Express. I lost the password and cannot log in as an admin user, but I can't seem to log as long as user root.

    Once connect you with the root account, type in "tsh", from there, you can create the accounts of local administrators with 'xCommand AdminAccountAdd.  See the reference section of command of the VCS Administrator's Guide, starting on pg 517.

    If your VCS is a virtual machine, you can change the password of admin with vSphere, or if it is a hardware appliance, you can use the serial port, see pg 312 of the Administrator's guide.

  • How to create a my Signature (signature with the tablet of manufacturing) Action?

    How to create a my Signature (signature with the tablet of manufacturing) Action?

    I use PSCS6?

    I have no problem making an action of signature if I pick a font and then type in my name,

    but to make a real action of my signature seems impossible.

    Hello

    There is a very cool technique to do by your signature in a Photoshop brush.  Once this is a brush, you can change the size and place the signature everywhere where you want.

    Google "Photoshop brush signature" or something similar and you will see a lot of tutorials.  Try this one:

    Photoshop reference guide | Creating a custom brush Signature | Peachpit

    Basically, you sign your signature on a blank piece of paper, then you scan in a JPG or TIFF file, then you open that file in PS to create a brush.

    I hope this helps.

    John

  • How to create grainy texturing and faces in the movie posters

    I love watching the lighting and contrast in the movie posters,

    I would like to know how to create textures and texture effects I see often on movie posters, which seem more hyper made realistic than nature, still convey the character very well skin, I have also attached a cover of wii games to show the hand texturing,

    My guess is that it's done with the right give modes and texture brushes, do not know how to create this subtle grainsand looking into the skin, or what is a very good camera that captures the skin in detail then applied to the skin texture, contrast? benjamin button seems to have a grain for its halftone,

    benjamin and prince of Persia poster button seem to capture better what I mean, hand on the cover of NFL wii game is also interesting.

    a few examples below,

    benjamin button.jpg

    inception_leonardo_dicaprio.jpg

    prince of persia.jpg

    skin textures.jpg

    Make a new layer filled with 50% gray, use the filter-> noise-> add noise or other texturing method you prefer and then change the blending mode of this layer to overlay or soft light.

  • How to create users that can connect to the application?

    Hello


    As an example of Application provided by APEX, in this application, the administrator can create users and reset passwords, and the user can connect to this application. How is this happening?

    Now I know how to create users and reset passwords through the corresponding working table.

    But I don't know how to use the user to to connect to the application? I tried several times to use the user create by ADMIN to connect to the application, but I failed.

    I can't find any setting in the sample Application, but it do.

    If any good plans?

    I thank in advance.

    There are two ways you can handle this... Build users of the APEX and continued them through the api of the APEX (not recommended by what I saw several comments here, outside the development environment) OR in your application, you could build a custom authentication system...

    Here is a link to explain how make one:
    http://djmein.blogspot.com/2007/07/custom-authentication-authorisation.html

    Thank you

    Tony Miller
    Webster, TX

  • How can I move my existing sites to the catalyst for business for subscribers of creative cloud?

    Hello!

    I have three sites that I always welcomed with heart Internet (www.heartinternet.uk). I understand that I can host 5 free sites with catalyst for business with my creative cloud membership. How can I go on this passage?

    Thank you very much

    has answered your thread How can I move my existing sites to the catalyst for business for subscribers of creative cloud?

  • I installed the download Assistant and she show Acrobat is downloaded, but the program does not run or listed as a program.  The only thing listed under programs is the wizard.  When I click on it, it gives me just the possibility to download Acrobat ag

    I installed the download Assistant and she show Acrobat is downloaded, but the program does not run or listed as a program.  The only thing listed under programs is the wizard.  When I click on it, it gives me just the possibility to download Acrobat again.

    Charlesgreen123 after the installation files are downloaded, you can run the Setup program to install Acrobat.  By default, the installation files are saved in your download folder.

  • After affects that can create a visualizer that goes with the music for Winamp, Virtualdj, Dj Sofware ETC.

    Can you help me after affects may create a visualizer that goes with the music for Winamp, Virtualdj, Dj Sofware ETC.


    or y at - it a plugin to convert?

    N °

    Mylenium

Maybe you are looking for