render: gettemplateurl gives url null for the model

Hello

I have created a new model without type, as shown below.

template.pngtemplate2.png

I need href link on another page to call this model,

So I use code below to get the url of this model however I get the value of outURL as null.

===========================================================

< tNom render: gettemplateurl = "" / CompetencyLevelLandingTemp "c = 'Page'"

CID = outstr "1439455203456" = "outURL" >

===========================================================

No idea, what can I do wrong here.

Kind regards

GP

In addition to the type and tid, you must pass site as well.

Tags: Fusion Middleware

Similar Questions

  • customization error "Sysprep is not installed on the server of virtual center for the model you have selected.

    Hi all

    Need your help with customization of the script here is the steps I've done so far

    1.I have created a virtual machine with Windows XP Professional as the operating system installed VMware Tools / VMware view agent then I added the virtual machine to the domain and created a template called (winXPtemp)

    2. According to article http://www.VMware.com/support/VC/doc/c12prepcustomize.html#1030366 I downloaded the Q257813_w2k_spl_x86_en.exe and the same extract. I force my VC server find the path as mentioned in article

    C:\ [VirtualCenter_installation_directory]\resources\windows\sysprep\1.1 so copied the files extracted to the location C:\Program Files\VMware\Infrastructure\VirtualCenter Server\resources\windows

    3 then I copied and extracted the file \support\tools\deploy.cab on the windows 2003 CD and copied the sysprep files extracted to the following location on the VC Server

    C:\Documents and Settings\All Users\Application Data\VMware\VMware VirtualCenter\sysprep\xp

    4. After you have done that, I've created a script under customization script called "testsript".

    5 Note until now I have not created a pool of resources as requires it the deployment of only 4 VM on an ESX Server with script customization. The data store for the virtual machine is a 100 GB LUN from a 2050 of FAS of NetApp iSCSI

    6. now when I create an automatic pool when I select the script that I created in step 4, and then click then it gives me an error "Sysprep is not installed on the server of virtual center for the model you have selected. Sysprep on the server installation.

    Troubleshooting done by me:

    I have readded the VC Server Manager to view but it force worked

    Thanks in advance for your help

    Kind regards

    v

    If I remember correctly the location for XP should go to: C:\Documents and Settings\All Users\Application Data\VMware\VMware VirtualCenter\sysprep\xp

    For XP SP2 Sysprep files can be downloaded from the Microsoft site and are called

    Windows XP SP2 deployment tools

    The article you linked was VirtualCenter 1.x. Since you have given a version number of VirtualCenter I assumed it was 2.x or later.

    ----

  • Permissions for the model folder

    Hello again :)

    I'll set up the permissions for the user of the ODI, but I can't do this for the model files. I give permission to the user to view some files and all permissions on another folder.
    I did it for the project and it works very well.

    Problem is that I can not drag and drop template designer to Security Manager folder. I tried with and without additional generic permissions on the folder template.

    The user have CONNECT and NG DESIGNER profiles.

    THNX in advance!

    Published by: user13278245 on July 2, 2010 01:11

    This is my absolute favorite. It seems that you are one of the few who have played with the security of the ODI and also have any questions: D.
    To resolve this issue, start the Security Manager. And then click the designer button in the Security Manager. Now, you will be able to drag-and - drop model files :)

    Whewww, that was hard. Wasn't it: D :D

  • How to give administrative rights for the domain users (user is outside organization).

    Hello

    How to give administrative rights for the domain users (user is outside organization).

    If the employee works in the company of xxxx but it supports the client project and is located on the place of the customer, but it does not use the client computer and not on the client domain as well, but the employee is in the company of xxxx must be given administrative rights to the computer. can someone help me on this ASAP.

    Thank you

    MURUGESAN Rudy,

    This issue is beyond the scope of this site and to make sure, you get the best (and fastest) reply, we have to ask either on Technet (for IT Pro) or MSDN (for developers)
  • Can I set null for the 'DiscoGroup.0.stdout '?

    Hi all:
    Can I set null for the 'DiscoGroup.0.stdout '?
    Because this file is too big, 22G, so I want to set to null to this file, I can do this action?
    [appfmrlt@csslxa02 jvm] $ pwd
    / U01/Oracle/fmrlt/ora/IAS/Apache/JServ/logs/JVM
    -rw - r - r - 1 appfmrlt s/n 22G 18 May 09:33 DiscoGroup.0.stdout





    My environment: oracle ebs 11.5.9. Red Hat 3.0 | Oracle 9.2.0.3




    Concerning
    Terry

    Terry,

    Yes, it is safe to do so. You can make a backup of the files or rename it, and you better stop Apache before doing so to raise again.

    Thank you
    Hussein

  • How can I get the nulls for the weeks later

    Hi all

    When I run this code, I get records up to the current week.
    How can I view the output that I get nulls for the weeks later. (with the help of the v_numOfWeeks variable in the code)

    Thank you
    Vikram
    DECLARE
       v_query VARCHAR2(4000); 
       TYPE ref_cursor IS REF CURSOR; 
       v_refcur ref_cursor;
       v_sum NUMBER; 
       v_id NUMBER; 
       v_name VARCHAR2(1000); 
       v_weeknum NUMBER; 
       v_pernum NUMBER; 
       v_numOfWeeks NUMBER := 5; 
    BEGIN 
    v_query := ' SELECT SUM(product_bkg), postn_id, postn_tbl.postn_name, b.week_num, b.period_num
                              FROM ops_cv_extract b, (SELECT row_id, desc_text postn_name
                          FROM s_postn) postn_tbl
                          WHERE lvl_6_id = 5767
                          AND fiscal_year = 2008
                          AND b.week_num < 4
                          AND b.period_num = 3
                          AND b.postn_id = TO_NUMBER(postn_tbl.row_id)
                          GROUP BY postn_id, postn_tbl.postn_name, b.week_num, b.period_num
                          ORDER BY  postn_tbl.postn_name, b.week_num';
                          
    OPEN v_refcur FOR v_query;
    
    LOOP 
       FETCH v_refcur INTO v_sum, v_id, v_name, v_weeknum, v_pernum;
       EXIT WHEN v_refcur%notfound; 
       dbms_output.put_line('P'|| v_pernum||'W'|| v_weeknum||' '||v_name||' '||v_sum); 
    END LOOP; 
    END;
    /
    
    This is the output when I execute this code. 
    
    P3W1 COMM CNTRL ISAM 213 26961.61
    P3W2 COMM CNTRL ISAM 213 12870.4
    P3W3 COMM CNTRL ISAM 213 245.88
    P3W1 COMM CNTRL ISAM 273 72831.2
    P3W2 COMM CNTRL ISAM 273 8739.38
    P3W3 COMM CNTRL ISAM 273 3764.92
    P3W1 COMM CNTRL TAM 213 49844
    P3W2 COMM CNTRL TAM 213 20515.17
    P3W3 COMM CNTRL TAM 213 16167.46
    P3W2 COMM CNTRL TAM 216 12561.4
    P3W3 COMM CNTRL TAM 216 2027.1
    P3W1 COMM CNTRL TAM 273 -3336.71
    P3W2 COMM CNTRL TAM 273 -1376.68
    P3W3 COMM CNTRL TAM 273 19707.42
    P3W1 Damon Walters -609.07
    P3W2 Damon Walters 30030.24
    P3W3 Damon Walters 37475.1
    
    This is the output I'd like to get
    
    P3W1 COMM CNTRL ISAM 213 26961.61
    P3W2 COMM CNTRL ISAM 213 12870.4
    P3W3 COMM CNTRL ISAM 213 245.88
    P3W4 COMM CNTRL ISAM 213 
    P3W5 COMM CNTRL ISAM 213 
    P3W1 COMM CNTRL ISAM 273 72831.2
    P3W2 COMM CNTRL ISAM 273 8739.38
    P3W3 COMM CNTRL ISAM 273 3764.92
    P3W4 COMM CNTRL ISAM 273 
    P3W5 COMM CNTRL ISAM 273 
    P3W1 COMM CNTRL TAM 213 49844
    P3W2 COMM CNTRL TAM 213 20515.17
    P3W3 COMM CNTRL TAM 213 16167.46
    P3W4 COMM CNTRL TAM 213 
    P3W5 COMM CNTRL TAM 213 
    P3W1 COMM CNTRL TAM 273 -3336.71
    P3W2 COMM CNTRL TAM 273 -1376.68
    P3W3 COMM CNTRL TAM 273 19707.42
    P3W4 COMM CNTRL TAM 273 
    P3W5 COMM CNTRL TAM 273 
    P3W1 Damon Walters -609.07
    P3W2 Damon Walters 30030.24
    P3W3 Damon Walters 37475.1
    P3W4 Damon Walters 
    P3W5 Damon Walters 
    Published by: polasa on October 28, 2008 18:42

    Hello

    The subquery dum has 1 to 5 hard coded values:

    (
     44                select 1 week_num from dual
     45                union all
     46                select 2 from dual
     47                union all
     48                select 3 from dual
     49                union all
     50                select 4 from dual
     51                union all
     52                select 5 from dual
     53              ) dum ,
     
    

    Instead, use the following syntax, which produces the values from 1 to n:

    (
        SELECT  LEVEL  AS week_num
        FROM    dual
        CONNECT BY  LEVEL <= n
    )  dum,
    

    n may be any numeric expression, including a scalar subquery.

  • OsCustomizationSpec and OSCustomizationNicMapping they are a good way to set up the new virtual machine for the model

    I build a script to generate auto magicly VM when I have import information from a csv file. I have the latest PowerCli, I am trying to build servers r2 Sever 2012 model.  I tried several OsCustomizationSpec (OCS) of in the hope of getting something to work, but I had no luck so far.  In VCenter, it shows that it applies the OCS, but is not apear to have an impact on the server.  I have disabled UAC since the last time that I tried it so maybe that will make a difference.  I am under ESXi 5.1 update 2, just to try to give all the necessary information.  Ideally, I'd like Sysprep, the value of intellectual property, change the computer name and join the server to the domain.  That's all! lol I have the book "VMware vSphere PowerCLI Reffernece, automating vSphere Administration, I walked through step by step.  The new version of PowerCli seems not have the x 86 limitation as earlier versions of PowerCli.  I tried so many different things, I'm not sure what to put in place as a starting point.

    # Save the object credentials with permission to join the domain.
    $DomainCredentials = get-Credential "domain\testername."
    # Clone our Spec by adding the domain information.
    $Spec = get-OSCustomizationSpec "Windows Server 2012 R2"
    $Spec += get-OSCustomizationNicMapping - Spec $Spec
    #$Spec | Select *.

    # Get our VM
    # Change network settings
    Get - VM BigServername | Get-NetworkAdapter | Together-NetworkAdapter - NetworkName nic - 172.16.25 - VLAN225 - connected: $true '
    -Confirm: $false | out-null
    # Close the comments to make change.
    Stop-VMGuest - VM $VM - confirm: $false | out-null
    # Wait while feedback stops
    While ($vm. ExtensionData.Runtime.PowerState - not "poweredOff")
    {
    Start-Sleep - seconds 1
    $vm. ExtensionData.UpdateViewData ('Runtime.PowerState')
    }
    # Apply Spec customization to apply the new network settings
    Get - VM "BigServername" |
    Set-VM - OSCustomizationSpec "R2 Windows Server 2012" - confirm: $false |
    Start-VM

    I can rebuild the model, or something else, we must do this work.

    OR - is simply not the best way to configure the VM?  If not, what Sysprep?

    Good news, but first, I would really like to know where the log files are on which server to the OsCustomization process.

    I decided to reverse engineer and create a CSOS within vCeneter and once I got to work, I kept creating new CSO via PowerCli until I could get that to work, create a new virtual machine.  Once I got this to work, I have tryied to apply on a cloned vm, with no parameters. I got it works too.  I tried to go back to my original image, but I couldn't get this to work.  Something's wrong with this picture.  He wrath that the problem was related to the permissions on the local client.

    New OSCustomizationSpec - OrgName company OSType - Windows - ChangeSid-Server "vcenter.dom.com" - name PowerCliOnly4 - persistent administrator-Type FullName - AdminPassword! password123 - zone "Eastern (USA and Canada)" AutoLogonCount - 3 - domain dom dadmin - DomainUsername - DomainPassword! password123 NamingScheme - vm-Description "PowerCli Use only" - confirm: $false

    Get-OSCustomizationNicMapping - OSCustomizationSpec PowerCliOnly4 | Game-OSCustomizationNicMapping - Position 1 - IpMode UseStaticIP - IpAddress 10.10.10.98 - 255.255.255.0 - DefaultGateway 10.10.10.1 Dns subnet - mask "10.10.10.10","10.10.10.11" "-confirm: $false

    This seems to be very picky.  Because the area is one of the parameters, you cannot put it in the DomainUsername, no dom\dadmin. The part that I really want to know how to get more, is what happens if your vm has a different local administrator as the administrator account.  It turns out that FullName - is not the account that it to connect locally with tires. When I created the vCenter Medtronic Chondroitin, I put 'me' in the name and information of the Organization and that's what was settled in the FullName property:

    Name: PowerCliOnlyM
    Type: persistent
    ServerId: /VIServer = dom\[email protected]: 443.
    Server: vcenter.dom.com
    LastUpdate: 24/09/2014 13:33:19
    DomainAdminUsername: dadmin NO dom/dadmin here!
    DomainUsername: dadmin
    Description: PowerCli use only, done manually in vCenter.
    AutoLogonCount: 3
    ChangeSid: true
    DeleteAccounts: false
    DnsServer:
    DnsSuffix:
    Domain: vsi
    Full name: me
    GuiRunOnce:
    NamingPrefix:
    NamingScheme: Vm
    OrgName: CompanyTU
    OSType: Windows
    ProductKey:
    Time zone: (USA and Canada)
    Working Group:
    LicenseMode: NotSpecified
    LicenseMaxConnections:
    EncryptionKey: {-126, 3, 48, 108...}
    ExtensionData: VMware.Vim.CustomizationSpecItem
    ID: PowerCliOnlyM
    UID: /VIServer = vsi\[email protected]: 443/OSCustomizationSpec = PowerCliOnlyM /.
    Client: VMware.VimAutomation.ViCore.Impl.V1.VimClient
    AdminPassword: w
    DomainAdminPassword: N
    DomainPassword: N

    DNS: {10.10.10.10, 10.10.10.11}
    Wins                  :
    SpecId: PowerCliOnlyM
    Spec: PowerCliOnlyM
    SpecType: persistent
    NetworkAdapterMac:
    Position: 1
    IPMode: UseStaticIP
    IP address: 10.10.10.98
    Subnet mask: 255.255.255.0
    DefaultGateway: 10.10.10.1
    AlternateGateway:
    VCApplicationArgument:
    ID: /VIServer = dom\[email protected]: 443/OSCustomizationNicMapping = OSCustomizationNicMappingImpl-PowerCliOnlyM-persistent-1.
    UID: /VIServer = dom\[email protected]: 443/OSCustomizationNicMapping = OSCustomizationNicMappingImpl-PowerCliOnlyM-persistent-1.
    ExtensionData: VMware.Vim.CustomizationAdapterMapping
    Client: VMware.VimAutomation.ViCore.Impl.V1.VimClient
    Version: 1

    I think that it is good to know that the virtual machine reboot 4 or 5 times as it goes through this process.  It breaks is you try and do something for the virtual machine that interrupt the process.  I don't know that I'll think more questions in a second.

    In addition, it cost he had some problems with the put between quotation marks, single or double around the password, but I did not check this again, I just know that once I took them, he began to work.  I ran on other issues while testing as I was using a single IP address, so if I do not disable the test VM, the following would not work because of the conflct network, maybe I shouldn't admit that... lol

  • What is a good way to use the queues for the model of consumers/producers?

    Hi all

    I am following the model of consumers/producers to use the queue to synchronize the following process: the producer is a loop to produce a number N, I will put each number generated in a table and after each 5 numbers generated, I put the table in the queue and pass it on to the consumer. I have to wait the use by consumers of the data and it will then remove the item from queue so that producers will have the chance to produce another 5 numbers. As I put the maximum size of the queue one, I expect that the producer and the consumer turns to produce / consume all five numbers and the opportunity to another. Here is my code

    When the checkbox is false, the code will be

    For the first 5 numbers, product will generate every thing right and put it in the table, and it's going to pass the array to the quere so that the consumer will have the chance to loop through the table. I except the procude loop will continue only when the queue is available (i.e. all items are deleted), but it seems that once the consumer starts the loop loop of the product will continue (if the indicator x + 1 and x 2 will be changed to numbers). But this isn't what I want, I know there must be something wrong, but I can't say it is.

    dragondriver wrote:

    As you say in 1, sequency structure to enforce the order of execution, that's why I put it here, in this example, the simple question, I replace the complete code with increase in the number, in the real case, the first markers + 1 and + 2 must be performed in this order.

    Mikeporter says:
    1. get rid of all the structures of the sequence. None of them are nothing but apply a work order which would have been the same without them.

    So even if you delete the sequence structure, there will be a fixed & defined order and it is because LabVIEW follows the MODEL of FLOW OF DATA.

    Data flow model (more precisely in the context of LabVIEW): a block diagram node runs when it receives the required inputs. When a node is running, it produces output data and transmits data to the next node in the path of the data stream. The flow of data on the nodes determines the order of execution of the VIs and functions on the block diagram (click here for reference).

    Now in your code, just remove the sequence structure will not make you order will be going to stay the same, but you need to do some very minor changes (as thread of the error in loop, before that he go to the node "Élément Dequeue").

    Come to the main point: it's a good way to use the queue for the consumer/pmodel that?
    The model you are using (and qualifying as consumer/pmodel) is much too deviated from the original consumer/pmodel which model.

    dragondriver wrote:

    For the second, Yes, it's my fault for delete, though. I'm actually the example of model of producer/consumer design pattern, but I do not pay attention to the while loop in the part of the consumer.

    While loops (two producers & consumers) are the essential part of this architecture and cannot be deleted. You can start your code using standard model.

  • prompt or pop for the model number

    I have TStand 4.1 and LV8.6

    TStand, I would like to add a box pop up with a radio button for the user to select two 2 models

    -model XT

    -NT model

    and save the selection to fill the test end of test report.

    I would like to have this action before the popup message serial number.

    How can I do this?

    where is the location of PreUUT recall?  too many components to confuse me.

    I thank in advance


  • HP 15-r255nu: no driver for the model 15-r255nu

    There is no drivers for it on the official page, no nothing. Every driver I try another model similar to it does not work. So I buyed a laptop I can not use... Guys help me find a job wireless driver lan... so at least I can go to the bands...

    Hello:

    Use the W7 x 64 drivers and software of the G2 of 250 HP.  Do not use any BIOS or the files of the firmware of this model on your.

    http://h20565.www2.HP.com/hpsc/SWD/public/readIndex?sp4ts.Oid=5449369&swLangOid=8&swEnvOid=4059

    I don't know what model of laptop wireless card is, please take the following steps and I figure that out and post the link to the driver for the wireless card you have...

    Since there is no driver installed wireless, we need a labeled device network controller in Device Manager in the category other devices.  The network controller device will be a little! mark next to him.

    Thus, to find the network controller device, click on that and then click on the Details tab.

    Now, you see a drop-down list of property and it is set by default to the Description of the unit.

    On this list and select the second element (Hardware ID).

    After the first string of characters you see in the window.

  • How drivers of recovery system for the model of hp 2000-2d09SE

    Hello

    recently, I brought hp laptops with bones.

    details such as

    n ° SERIAL: [edited by Moderator]
    NR. ARTICLE: F0E23EA

    MODEL: HP 2000-2d09SE

    from: X-CiteMD shopping mall, Al-Kuwait, Kuwait.

    While installing windows 7, I formatted all means while I lost my system drivers (i.e. ethernet controllers, controllers wireles etc...)

    How can I recovery my drivers.

    Hello:

    You can use all the W7 x 64 drivers and software for this model, except the wireless and bluetooth.

    DO NOT USE ALL DOWNLOADS OF BIOS OR FIRMWARE FROM THIS LINK

    http://h10025.www1.HP.com/ewfrf/wc/softwareCategory?OS=4063&LC=en&cc=us&DLC=en&sw_lang=&product=5275370

    Wireless:

    http://h20566.www2.hp.com/portal/site/hpsc/template.PAGE/public/psi/swdDetails/?spf_p.tpst=swdMain&spf_p.prp_swdMain=wsrp-navigationalState%3DswItem%253Dob_123851_1&javax.portlet.begCacheTok=com.vignette.cachetoken&javax.portlet.endCacheTok=com.vignette.cachetoken

    Bluetooth:

    http://h20566.www2.hp.com/portal/site/hpsc/template.PAGE/public/psi/swdDetails/?spf_p.tpst=swdMain&spf_p.prp_swdMain=wsrp-navigationalState%3DswItem%253Dob_125575_1&javax.portlet.begCacheTok=com.vignette.cachetoken&javax.portlet.endCacheTok=com.vignette.cachetoken

  • Westinghouse LCM-22w2 monitor-how good do driver for the model that has no driver

    I have a Westinghouse LCM-22w2 widescreen I am trying to use on my desktop Gateway 4610.  When I plug it in I just get a white screen.  I checked the site Web of Westinghouse, and there is no driver available for this older model.  It has the screen resolution of 1680 x 1050.  Currently, my hardware device for monitor Manager is generic PnP monitor and the graphics card is the Radeon X 1300/X 1550 series.  Anyone know how to get this form to work on my computer

    Hi Lance,.

    Thanks for the updates.

    As I mentioned in the previous post, the problem is related to compatibility, it can affect the audio and other settings with the monitor.

    However; You can also refer to the gateway support and install the latest version of the sound card drivers and check.

    If the problem persists, you will need to get in touch with The Westinghouse support for assistance.

    Let us know if you need help with Windows related issues. We will be happy to help you.

  • deploy a virtual machine for the model stored in EXSI server via the command line

    Hello

    Is it possible to deploy a vm from a template stored in exsi server via the command line?

    The structure is shown in the attached picture. I want to deploy the model under "Templates" folder to a virtual machine "VM" sub-folder by command line of any machine.

    structure.jpg

    Hello

    PowerCLI can help you achieve this goal. Using PowerCLI, you can deploy remote host model.

    Here is an example for the same.

    http://www.harryjohn.org/deploy-multiple-VMs-from-template/

  • PHP necessary for the model "bootstrap" in 2015 DW contact form?

    I am getting my feet wet with the model of starter start to Dreamweaver (CC2015) 'agency '. My question is if I need to download a PHP file on my server hosting to function and to be sent to the correct email address so that the contact form. Also, do I need to install the framework "bootstrap" on my server? I looked at the following link included a comment in the html code for the start page template: https://github.com/jonmbake/bootstrap3-contact-form

    DW-contact-form-grab.jpg

    I'm not too experienced with PHP at this point. All advice is appreciated!

    Tory

    Kellen T wrote:

    Jon,

    Thanks for the quick response. I'm not having any lucky to find resources for similar problems in the communities of Adobe, you tips, sites, or threads, you might suggest?

    Thanks again!

    ALT-Web Design & Publishing: sensitive Contact form with 3.2 Bootstrap and PHP (part 2)

  • Strange problem brush which compensates for the model of the line and double it... Help?

    Hey everybody! Last night, I made a brush of Ribbon for a project at work. It worked as it should and I gave it to a colleague of mine so that it could use is as well. This morning, however, my colleague tells me she is having problems with the brush because it wasn't appearing when she used. I opened the file HAVE on my computer to check it out and everything seems fine, the lines that I did the other night not appear correctly. However, when I tried to draw another line and apply the brush, the ground was shifted to the line, AND it seemed to have doubled.

    Here's a sample of what I mean; the top is a line that I drew last night and the bottom is the same line, just copied and pasted below:

    ribbon_brush_issue.png

    I can move the lines, I did the other night, on the model around and it works correctly, but if I copy the line or by using the same brush to draw, I get double up to offset glitch.

    Thank you for taking the time to read this. All advice is appreciated!

    The brush is constructed with a clipping group. This does not work properly.

    You might drag the brush in the Panel forms. Then ungroup. Then take the part of the brush that isn't a corner and use the pathfinder Crop on it.

    Then create a new brush.

    Works for me.

    You can use this file? https://DL.dropboxusercontent.com/u/15485305/ribbon_brush_issue-mg.AI

Maybe you are looking for