IREC : Update seeded site name in format job posting

Hi,
Can we rename the Site name displayed in format job posting when creating or updating vacancy.
Seeded site name -
iRecruitment External Site
iRecruitment Internal Site
These site name to be renamed with customer portal name, is it possible without updating the table "IRC_ALL_RECRUITING_SITES_TL"
thanks
Siva

Hi Siva,
Unfortunately, there is no supported way to do it unfortunately.
Regards,
Vinayaka

Similar Messages

  • UPDATE STANDBY SITE NAME with DATAGUARD BROKE "DGMGRL"

    I've a llitlle PB with my Dataguard
    After shutdown both sites to increase SGA size in Primary site and update in secondary site too
    I start the Primary site without Pb.
    But the Secondary site don't want to start.
    When I do a startup it fails.i check in Dataguard and i found
    The Pb is the secondary site name is not ('DMWEBDG_srvsdmwebp02')
    bu only "DMWEBDG"
    And I can't find any way to update the site name in Dataguarg.
    the Alter command doesn't explain very well.
    Soes anyone knows how to do it?
    Thxs
    DGMGRL> show site verbose 'DMWEBDG_srvsdmwebp02'
    Site
    Name: 'DMWEBDG_srvsdmwebp02'
    Hostname: 'srvsdmwebp02'
    Instance name: 'DMWEBDG'
    Service Name: '(DESCRIPTION=(ADDRESS_LIST = (ADDRESS=(PROTOCOL=tcp)(HOST=srvsdmwebp02.int.imd.ch)(PORT=1525)))(CONNECT_DATA=(SID=DMWEBDG)(SERVER=DEDICATED)))'
    Standby Type: 'physical'
    Number Built-in Processes: '2'
    Number Generic Processes: '0'
    Enabled: 'yes'
    Required: 'yes'
    Default state: 'STANDBY'
    Intended state: 'STANDBY'
    PFILE: ''
    Number of resources: 1
    Resources:
    Name: DMWEBDG_srvsdmwebp02 (default) (verbose name='DMWEBDG_srvsdmwebp02')
    Current status for "DMWEBDG_srvsdmwebp02":
    Warning: ORA-01034: ORACLE not available

    Thxs
    The PB was Solved.

  • Name of Background job which updated daily Exchange Rates from R/3 to BW

    Hi All,
    Can anybody tell what is the name of Background job getting executed daily from R/3 to BW for updation of Exchange rates.
    Regards,
    C.V.

    Hi Serigo,
    How do I know status whether it has been schduled from R/3 to BW. Can we see job in sm37?
    Rgds,
    CV
    Message was edited by:
            C.V. P

  • How to make Address Book obey Preferences? I run MacBook Pro 4.1 laptop,  Mac OS X 10.6.8  Address Book 5.0.3 (883) Preferences set at ... General First name following Last name   Sort for Last name Address Format Canada Font size Large Phone format set a

    How to make Address Book obey Preferences?
    I run MacBook Pro 4.1 laptop,  Mac OS X 10.6.8
    Address Book 5.0.3 (883) 
    Preferences set at ...
    General
    First name following Last name 
    Sort for Last name
    Address Format Canada
    Font size Large
    Phone format set at
    +1.123.456.7890
    When application quits - it's all forgotten and it self-resets to
    unwanted configuration.

    Whenever you remove system modifications, they must be removed completely, and the only way to do that is to use the uninstallation tool, if any, provided by the third-party developers, or to follow their instructions. If the software has been incompletely removed, you may have to re-download or even reinstall it in order to finish the job.
    Here are some general guidelines. Suppose you want to remove something called “BrickYourMac.” First, consult the product's Help menu, if there is one, for instructions. Finding none there, look on the developer's website, say www.brickyourmac.com. (That may not be the actual name of the site; if necessary, search the Web for the product name.) If you don’t find anything on the website or in your search, email the developer. While you're waiting for a response, download BrickYourMac.dmg and open it. There may be an application in there such as “Uninstall BrickYourMac.” If not, open “BrickYourMac.pkg” and look for an Uninstall button.
    If you can’t remove software in any other way, you’ll have to erase your boot volume and perform a clean reinstallation of OS X. Never install any third-party software unless you're sure you know how to uninstall it; otherwise you may create problems that are very hard to solve.
    Trying to remove complex system modifications by hunting for files by name often will not work and may make the problem worse. The same goes for "utilities" that purport to remove software.

  • JOB_OPEN - SUBMIT - JOB_CLOSE - User Name for the Job

    Hi,
    I have a code like that:
    CALL FUNCTION 'JOB_OPEN'
        EXPORTING
          jobname          = lv_jobname
        IMPORTING
          jobcount         = lv_jobcount
        EXCEPTIONS
          cant_create_job  = 1
          invalid_job_data = 2
          jobname_missing  = 3
          OTHERS           = 4.
    * Call Update PO from Sales Order
      SUBMIT zpcc_mm_upo3
        WITH p_vbeln = puv_vbeln
        USER lc_uname
        VIA JOB lv_jobname NUMBER lv_jobcount
        AND RETURN.
      CALL FUNCTION 'JOB_CLOSE'
        EXPORTING
          jobcount             = lv_jobcount
          jobname              = lv_jobname
          strtimmed            = lc_true
        EXCEPTIONS
          cant_start_immediate = 1
          invalid_startdate    = 2
          jobname_missing      = 3
          job_close_failed     = 4
          job_nosteps          = 5
          job_notex            = 6
          lock_failed          = 7
          OTHERS               = 8.
    In this code as you see I can run the SUBMIT program with a specified user. But the creator of the job always becomes SY-UNAME. So is there a way to specify the user name for a job creator? I don't want to use SY-UNAME.
    Thanks,

    Hio try this way...
    CALL FUNCTION 'JOB_OPEN'
         EXPORTING
           jobname          = lv_jobname
         IMPORTING
           jobcount         = lv_jobcount
         EXCEPTIONS
           cant_create_job  = 1
           invalid_job_data = 2
           jobname_missing  = 3
           OTHERS           = 4.
    "Comment this
    * Call Update PO from Sales Order
       SUBMIT zpcc_mm_upo3
         WITH p_vbeln = puv_vbeln
         USER lc_uname
         VIA JOB lv_jobname NUMBER lv_jobcount
         AND RETURN.
    "Comment end
    * Call function to submit the job
      CALL FUNCTION 'JOB_SUBMIT'
           EXPORTING
                authcknam                   = wa_authchknam        "Pass the Other User name you want
                jobcount                    =  lv_jobcount
                jobname                     = lv_jobname
                REPORT                      = 'zpcc_mm_upo3'
                VARIANT                     = jobs-variant  "Create Varaqint
                PRIPARAMS                   = wa_PRI_PARAMS
          EXCEPTIONS
               BAD_PRIPARAMS               = 1
               BAD_XPGFLAGS                = 2
               INVALID_JOBDATA             = 3
               JOBNAME_MISSING             = 4
               JOB_NOTEX                   = 5
               JOB_SUBMIT_FAILED           = 6
               LOCK_FAILED                 = 7
               PROGRAM_MISSING             = 8
               PROG_ABAP_AND_EXTPG_SET     = 9
               OTHERS                      = 10
       CALL FUNCTION 'JOB_CLOSE'
         EXPORTING
           jobcount             = lv_jobcount
           jobname              = lv_jobname
           strtimmed            = lc_true
         EXCEPTIONS
           cant_start_immediate = 1
           invalid_startdate    = 2
           jobname_missing      = 3
           job_close_failed     = 4
           job_nosteps          = 5
           job_notex            = 6
           lock_failed          = 7
           OTHERS               = 8.
    Prabhudas

  • Certificate does not contain the correct site name

    Hello,
    I have to make a midlet that connect to a tomcat 5.5.9 server with ssl.
    I import the certificate whit tomcat alias in the wireless toolkit but when i run the midlet this error appear: Certificate does not contain the correct site name
    import java.io.*;
    import javax.microedition.midlet.*;
    import javax.microedition.io.*;
    import javax.microedition.lcdui.*;
    public class HelloNet extends MIDlet implements CommandListener , Runnable{
    // User interface command to exit the current
    // application.
    private Command exitCommand = new Command("Exit",
    Command.EXIT, 2);
    // User interface command to issue an HTTP GET
    // request.
    private Command getCommand = new Command("Get",
    Command.SCREEN, 1);
    /// The current display object.
    private Display display;
    // The url to GET from the 'net.
    private String url;
    * Initialize the MIDlet with a handle to the
    * current display.
    public HelloNet() {
    url = "https://127.0.0.1:8443/Hello.txt";
         display = Display.getDisplay(this);
    * This lifecycle method should return immediately
    * to keep the dispatcher
    * from hanging.
    public void startApp() {
         showPrompt();
    * Display the main screen.
    void showPrompt() {
    String s = "Press Get to fetch " + url;
    TextBox t = new TextBox("Http Result", s,
    s.length(), 0);
    t.addCommand(exitCommand);
    t.addCommand(getCommand);
    t.setCommandListener(this);
         display.setCurrent(t);
    * pauseApp signals the thread to stop by clearing
    * the thread field.
    * If stopped incorrectly, it will be restarted from
    * scratch later.
    public void pauseApp() {
    * destroyApp must cleanup everything. The thread
    * is signaled
    * to stop and no result is produced.
    * @param unconditional is a flag to indicate that
    * forced shutdown
    * is requested
    public void destroyApp(boolean unconditional) {
    * commandAction responds to commands
    * @param c command to perform
    * @param s Screen displayable object
    public void commandAction(Command c, Displayable s) {
         if (c == exitCommand) {
         destroyApp(false);
         notifyDestroyed();
         } else if (c == getCommand) {
              Thread th= new Thread (this);
              th.start();
    * Read the content of the page.
    public void run() {
    TextBox t = null;
    StringBuffer b = new StringBuffer();
    HttpsConnection c = null;
    InputStream is = null;
         try {
         int len = 0;
         int ch = 0;
         System.out.println("Cerco di leggere");
    c = (HttpsConnection)Connector.open(url);
    c.setRequestMethod(HttpsConnection.GET);
         is = c.openInputStream();
    // length of content to be read.
    len = (int) c.getLength();
    if (len != -1) {
    // Read exactly Content-Length bytes
    for(int i=0; i<len; i++) {
    if((ch = is.read()) != -1) {
    b.append((char) ch);
    } else {
    // Read until connection is closed.
    while((ch = is.read()) != -1) {
    len = is.available();
    b.append((char) ch);
    t = new TextBox("Https Result", b.toString(),
    b.length(), 0);
         } catch (Exception e) {
    e.printStackTrace();
    String s = e.toString();
    if(s != null) {
    t = new TextBox("Https Error", s, s.length(),
    0);
    } finally {
    if (is != null) {
         try {
              is.close();
         } catch (Exception ce) { }
    if (c != null) {
         try {
              c.close();
         } catch (Exception ce) { }
    display.setCurrent(t);
    }

    re: code tags, please see http://forum.java.sun.com/help.jspa?sec=formatting.
    As for the rest:
    See, we now know that you used keytool to generate you certificate. You need a new certificate. This time, when keytool asks you for a first and last name, type 127.0.0.1.

  • IWeb not updating web site.

    iWeb started out working okay. I kept a blog and updated it. Then I went on a trip. Even though I had wireless internet the whole time, updating kept failing. No error message, but the update clock would stop after being about one-quarter filled. When I came home, there was no difference.
    Although this started months ago (before the whole .Mac to MobileMe changeover), I do believe my recent inability to update my web site is related to it. The reason is that although I can access the last updated version of my web site at "web.me.com/myaccountname", when I go to my current iDisk and open the "sites" folder, it's empty!
    Is it possible that my account has not yet been changed over to MobileMe yet? I have already installed all OS updates, including the MobileMe update. My account logs in fine.
    Any ideas?????

    Hey maybe you need to replace only the page that was updated, do not change all the published site, try I just did it and it work I have change a page and a file to be downloaded from the web site, now I can see the changes live on the web. this is what I wrote to others.
    Hey I have found not a solution but a way to publish without iWeb, Just did it and I have seen the changes on the web site. If you guys want to try:
    I have published my updated web site to a folder on my desktop. then open iDisk from the web (where my web sites files are stored for everyone else to see) then open both windows side by side and only replace the files of the updated pages from the desktop folder to the iDisk folder, there is always a file and a folder with the same name. I just replace them, I then checked on the web and Woalah! changes were made. Well... it did work for now without iWeb, not sure if is the right thing to do but if you are brave enough to follow this go ahead and go to bed as I will until the bug is fixed (hopefully tomorrow) then we can go back to normal. Hope is clear and it help! Rog

  • How to find Site Name from SCCM Console or Client

    I'm New to SCCM,
    01. How to get the Site Name information from either SCCM CLients or SCCM COnsole?
    Note: I got the Site Code from COnsole
    02. Any Basic/Fundamental Link or Documents about Software Update in SCCM (what are the diff type of Patches, what are all the ways to push the content to clients etc..)
    03. Any Basic/Fundamental Link or Documents about End Point Protection in SCCM (Is that More than a Antivirus tool, what are all the ways to push the defintions to clients etc..)
    04. How to create Boundary and Boundary Group when we have following VLAN segments (Eg: 10.0.1.1 to 10.0.1.254,10.0.2.1 to 10.0.2.254,10.0.10.1 to 10.0.10.254 and 10.0.39.1 to 10.0.39.254)

    Power shell: get-cmsite
    console:
    http://technet.microsoft.com/en-us/library/gg712312.aspx
    http://www.windows-noob.com/forums/index.php?/topic/6799-using-system-center-2012-configuration-manager-part-9-deploying-monthly-updates/
    http://technet.microsoft.com/en-us/library/hh508781.aspx
    http://www.windows-noob.com/forums/index.php?/topic/6106-using-system-center-2012-configuration-manager-part-6-adding-the-endpoint-protection-role-configure-alerts-and-custom-antimalware-policies/
    http://technet.microsoft.com/en-us/library/gg712679.aspx
    "When designing your boundary strategy, we recommend you use boundaries that are based on Active Directory sites before using other boundary types"
    Please take a moment to Vote as Helpful and/or Mark as Answer where applicable. Thanks.

  • Site name on Google

    When my site comes up in a Google search, it's name is "Home" rather than the site name. Same is true on the Safari "Window" list once the site is up. How do I correct?

    Hi there,
    names/titles of pages are changed in iWeb itself, go to the page and see where "Home" is written in the content of the page (in which textfield). Then type the new name you'd like the page to have. Publish. Visit your site on the net or in folder to see if it changed.
    Google will not take up the new name instantly... It really takes quite a long time sometimes until google updates it's entries.
    Regards,
    Cédric

  • Updating properties by name

    I have a need to update the property of a class given its
    name.
    I have found that if I used the notation :
    obj["name"] = "hello world!"
    that this does not update the property 'name' of sealed class
    instance 'obj'.
    To be more explicit, suppose I have the following class
    definition:
    public class Foo
    private var _name : String = "";
    public function get name() : String
    return _name;
    public function set name(name : String) : void
    if (name == null) // protect from setting it as null, for
    some reason...
    name = "";
    _name = name;
    and then I have some code that knows that an object it has a
    reference to has a property called 'name', but that this is generic
    code and the object reference it has is not explicit. So, I was
    hoping to be able to do this:
    public function setProperty(instance : Object, propertyName :
    String, propertyValue : Object) : void
    instance[propertyName] = propertyValue;
    However, this doesn't work, as it tries to create a new
    dynamic property and can't.
    Is there another way to set the property value, similar to
    the way you can set a property on a JavaBean?
    Thanks!
    Rhys
    PS Apologies for the code not being formatted properly. I
    can't find the 'attach code' feature that I keep reading
    about.

    This was idiocy on my part.
    The example does work!

  • IWeb updates my site to Mobileme, but my library files on the left stay red

    Hi
    Ive just upgraded to ilife 09, and am having trouble with uploading. I didnt ever have this problem before the upgrade.
    The site uploads fine, but once its done it doesnt turn the library files on the lefrt green. Meaning, everytime i do a minor update on the site it repackages and uploads the entire site again making it very hard to update my site
    I have manually deleted my entire site off my idisk and tried uploading again to no avail
    Any help would be supa dupa!
    Thanks
    Az

    By url's, do you mean iWeb url's? They should work if you have named your sites differently. If you have not, then they will override each other. Look at your sites - http://web.me.com/username/sitename.
    If you mean domain names linked to your MobileMe account, then how many do you have and how are they forwarded? You can only have one CNAME per MMe account and all the rest must be forwarded using web forwarding with or without masking.
    A little more info would be helpful.

  • R 12 Supplier Site Names

    We have an issue where we cannot add a new Supplier site name, we are currently on an R12.1.3 environment.
    Navigation Path – Search Supplier > Update > Address Book > Create.
    From the Expense Payment Site Name field we only get the choice of Provisional, Office and Home, we would like to add additional options to this field.
    Is there any way to add additional options?
    Many thanks
    Mike.

    Hi,
    I think personalization will help you out.
    check below metalink note to start with:
    Sample Testcase For Using Form Personalization In Oracle Applications [ID 744069.1]
    Thanks,
    JD

  • What URL for E-recruiting page  to use from external job posting web site

    Hello,
    What is the standard SAP entrance back to E-recruiting from an external job posting site? We have sent our job postings to an external web site vender (Monster) to be posted for candidates to review. On the review page at Monster is the Apply Now button for a particular job. When the candidate clicks the Apply Now button, we would like the job detail to show within E-recruiting for the reference code of the job posted. Otherwise, the candidate has to repeat the job search within E-recruiting to get to the referenced details. Currently, we have a custom enhancement to populate the reference code (parsing it from the URL) to the Job Search page so at least the candidate can click one more time on the search button and the details display. Is there a standard page or better way to get to the job details in E-recruiting without custom enhancements coming from the external job posting web site?
    Using BSP and non-XI platform
    ECC 5.0 E-recruiting version
    Please advise,
    Cindy

    Hello Cindy,
    this is not very difficult and completly possible within the standard application functions. As you show all position data already in the page of the job board (like Monster) you use a link which dirctly referes the applicant to the page where he enters name and mail-address to apply for the job (if he like to see the postion instance again this page do includes a link to the data overview).
    The link you use is the same link used in the "request for application" correspondence with which you can request a candidate youidentified in your talent pool to apply for a position.
    The link should be available directly if you use the XI integration scenario but can be created very easily. Only 2 things to know:
    - do you use the standard posting channel ID 0002 for external postings or have you confiqured a custom posting channel for posting at monster
    - how do you get the job information to the monster guys. As you wrote you do not use the XI integration, so have you created a customer own publisher to dump all information to a share where monster is reading it automatically or do you maintain the publications by hand?
    If you could give me this information i'll post the easiest way to get the link.
    Best Regards
    Roman Weise

  • Help!  How do I undo a Site Name change?

    Stupid me typed in a new Site Name in Site Inspector and then hit update. Now, instead of typing in http://web.mac.com/toreadornottoread to get to mywebsite, people have to type in a ton of stuff that I never wanted. I simply mis-understood what the "Site Name" under Inspector, Site Inspector was for. I want to undo it, but it wont let me. Every time I erase the name I put into the "Site Name" box and try to update I just get an error beep. Please help. How do I undo what I did and take my site back to its original name/web address?
    Drew

    people have to type in a ton of stuff
    When you click on this
    http://web.mac.com/toreadornottoread
    do you not get to your site?
    What was the original name?
    Have you tried simply double clicking on the site name in the organizer over at the left and renaming it there?

  • How can I efficiently update my site?

    I work for a small, regional print magazine that operates a Dreamweaver-managed web site.  The web developer left the company, and I need to update the site with recent articles.  The site format is very simple—there is no syndication, nor any type of linked feed (I think).  I’d like to learn, as quickly as I can, to update the articles myself.
    I’ve copied the site from the server, so I have local files to examine and manipulate.  I envisioned simply dropping the new articles in the appropriate location on the server, but I find that they are referred to by script text such as, http://[site address]/Class.asp?ID=137 .  I think I’ve identified the files containing the text of the articles (in the site root location's \Data folder).  Adding articles seems it should be very basic, but I’m not sure where to start learning.  I don’t mind taking an 80-hour Dreamweaver course, but meanwhile I’d like to quickly start by understanding the structure of the site, and bringing the articles up to date. 
    How can I most efficiently learn what I need to know?  Thanks in advance for any advice.

    I don’t mind taking an 80-hour Dreamweaver course
    You'd do much better to take a course in HTML and CSS, than one in DW.  The more you know about the former, the faster and easier your learning curve for the latter will be.
    Given your link, the site is definitely using server-scripting methods to load the desired information on the page.  Whether that information is saved in a database, or simply read from a flat file is yet to be determined.  If you have found a file containing the text of the articles, then you may have a flat-file arrangement.  The way to know for sure what you need to do is to have someone familiar with ASP/VBScript look at the pages and determine how they get at that information.
    Is there any way for you to contact the ex-employee?
    Failing that, you could post some of your code here for examination.  A link to the site won't help much since that will only allow us to get at the HTML, not the server scripting (which gets stripped from the page after execution by the server and before uploading to your browser).

Maybe you are looking for

  • Nokia c5 03 cant start up

    Hi everyone, i have this phone four months and i very satisfited with him. Bat today on my screen show full memory, after that i try to go in application but phone dont open application. I take out battery, and when i try to start up phone on scrren

  • 30GB IPOD needed to be reset to factory settings...HELP

    my 2 yr old 30 GB ipod needed to be reset to factory settings as it was not being recognized by my computer or itunes. It stated the the ipod was corrupt. Apple support in Burlington suggested to reset to factory settings as othe measures didn't work

  • Cannot see my custom task in SSIS toolbox

    I followed the guide here https://msdn.microsoft.com/en-us/library/ms403361.aspx to build a custom task without a UI. It is a very simple task to compress a set of files. I built the dll without error then add it to gac and copy to C:\Program Files\M

  • CS4 crashes during HDR processing, why?

    Hi, I have an G4 Mac dual 1000 cpu. My memory is generally limited, but on my Mac it is 1.5 Gb. I have my Photoshop preference set to the upper end of Ideal, but sill am wondering if there is something I am doing wrong. When i initiate a HDR in Photo

  • HT1766 Password for restoring from backup

    After updating my iphone to the new ios software it crashed now it is asking me to enter in a password to restore from the backup I did earlier today however I didn't get prompted to enter in a password. therefore how to I find out what my password i