Way to modify the employee's information (enhanced InfoType) in MSS?

In MSS General Information/ Related Activity area, the manager can modify the employee's information (Addr. Family Member, etc.), as it is a standard module.
Now we have an enhanced InfoType in ECC backend, and want to make it can be modified by the manager through MSS like the other information(Addr. Family Member, etc.).
Is there a way to realize this?
Thanks very much.
ps. We don't have the NWDI environment. EP 7.0  SP10.
Weiming

General notes
1. You really should have error checking after most lines
2. You don't need to get the field ids every time.
Something is wrong in your implementation or description. Or both.
You are attempting to get an object from the array. Then you modify the data in it. Then you set it back into the array.
You don't create a new object anywhere.
So which is it? Is the array empty or is it populated with objects and you are just setting the data in each? The code suggests both (obviously illogical.)

Similar Messages

  • Is there a way to modify the name displayed in the Title Bar at the top of the Audition Window?

    It's not uncommon for me to have a copy of Audition versions 1.5, 2.0 and 3.0 all open at the same time if I'm doing some editing for a complex project. 
    It would be handy for me to quickly see which window I have open without having to recognise the icons of the different versions.  At the moment, each Title Bar just displays the Audition icon and the words "Adobe Audition".  I'd like to add the version number to the name, if it's possible.  I'm happy to edit the Windows Registry, if that is what is needed.
    Does anybody know where the Title Bar information is stored?

    I have an answer you might like Howard.
    You could simply export one title to a PRTL file, then duplicate it using an Excel VB macro to change the name of the file based on a list in an excel file. You could type in a couple of dates, then just drag down to the 365th row and all of the dates would be there waiting for the macro to rename the file. Then, if you are really talented, you could find the appropriate text in the XML file and change it to match the name of the title, but without the PRTL extension.
    That way the font and position and style would all be right and the effort would be in a file you could share with the world.
    Hmmm. I might have to try that myself one of these days. Could come in handy. If you are more comfortable with Word than Excel, create the dates in Excel and paste them into a table in Word. Just be careful not to mess up the
    Edit: Oh, and of course, you import the titles back into Premiere Pro.

  • [bug tracker issue] Any way to modify the bug detail of mine?

    Greetings,
    I just found i can't modify the bug report  after i reported a new bug in the bug tracker of archlinux.
    it is quite inconvent and weird, since it's quite common that you want to update the bug detail or change something wrong. 
    at least , in my opinion. -_-
    so Is any reason for such restirction?
    and is any way to make me modify my bug report?
    -Roadt
    Last edited by roadt (2009-12-28 06:55:52)

    Just add  your update as a comment.

  • What is the best way to modify the closed captioning button to read "FR" instead of "CC"

    I'm considering using Flash to modify the button text for the CC button in one of the playbars.
    Just wanted to know if there is a better way than hacking the playbar fla file.
    And if this is the only way, if there are publishing settings to watch out for with the swf file output.

    Other than hacking it from Flash, you can insert a button (Labelled FR) to appear for your project and user can click on it to toggle the Closed Caption on/off, you can use the cpCmndCC variable, 0/1, Enable/disable closed captioning (CC). You can keep the Closed Caption button unchecked from Skin.
    This should be easier, I guess.
    Alternately, you can learn in depth about customzing Playbars here --
    http://blogs.adobe.com/captivate/2010/11/playbars-demystified.html
    Good luck.
    Thanks,
    Anjaneai

  • Is there a way to modify the style sheet so that it transforms an XML document with empty tags as tag / ?

    I have extracted some code from codeproject to
    reindent an XML document. Does anyone know how I can modify the stylesheet to make it so that the transform of an XML file will result in empty tags showing up as <tag /> instead of <tag></tag>?
    // http://www.codeproject.com/Articles/43309/How-to-create-a-simple-XML-file-using-MSXML-in-C
    MSXML2::IXMLDOMDocumentPtr FormatDOMDocument(MSXML2::IXMLDOMDocumentPtr pDoc)
    LPCSTR const static szStyleSheet =
    R"!(<?xml version="1.0" encoding="utf-8"?>)!"
    R"!(<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">)!"
    R"!( <xsl:output method="xml" indent="yes"/>)!"
    R"!( <xsl:template match="@* | node()">)!"
    R"!( <xsl:copy>)!"
    R"!( <xsl:apply-templates select="@* | node()"/>)!"
    R"!( </xsl:copy>)!"
    R"!( </xsl:template>)!"
    R"!(</xsl:stylesheet>)!";
    MSXML2::IXMLDOMDocumentPtr pXmlStyleSheet;
    pXmlStyleSheet.CreateInstance(__uuidof(MSXML2::DOMDocument60));
    pXmlStyleSheet->loadXML(szStyleSheet);
    MSXML2::IXMLDOMDocumentPtr pXmlFormattedDoc;
    pXmlFormattedDoc.CreateInstance(__uuidof(MSXML2::DOMDocument60));
    CComPtr<IDispatch> pDispatch;
    HRESULT hr = pXmlFormattedDoc->QueryInterface(IID_IDispatch, (void**)&pDispatch);
    if (SUCCEEDED(hr))
    _variant_t vtOutObject;
    vtOutObject.vt = VT_DISPATCH;
    vtOutObject.pdispVal = pDispatch;
    vtOutObject.pdispVal->AddRef();
    hr = pDoc->transformNodeToObject(pXmlStyleSheet, vtOutObject);
    //By default it is writing the encoding = UTF-16. Let us change the encoding to UTF-8
    // <?xml version="1.0" encoding="UTF-8"?>
    MSXML2::IXMLDOMNodePtr pXMLFirstChild = pXmlFormattedDoc->GetfirstChild();
    // A map of the a attributes (vesrsion, encoding) values (1.0, UTF-8) pair
    MSXML2::IXMLDOMNamedNodeMapPtr pXMLAttributeMap = pXMLFirstChild->Getattributes();
    MSXML2::IXMLDOMNodePtr pXMLEncodNode = pXMLAttributeMap->getNamedItem(_T("encoding"));
    pXMLEncodNode->PutnodeValue(_T("UTF-8")); //encoding = UTF-8
    return pXmlFormattedDoc;
    Or, if there is some other method for reindenting a MSXML2::IXMLDOMDocumentPtr object where I can specify how I want empty tags to be stored, that would be great too.  However, I don't want it to lose its status of an MSXML2::IXMLDOMDocumentPtr object.
     I.e. I would like to still perform operations on the result as if it was still an MSXML2::IXMLDOMDocumentPtr object.
    Thanks,
    A
    Adrian

    If anyone is interested, I got an answer on StackOverflow
    here.
    Adrian

  • [CS2 on Windows XP]: Is there a way to modify the JPG compression in an SVG?

    Hello,
    I have got an EPS file.It contains some text, some paths, and a rastered image.
    Saved as a JPG with moderate compression it is 125KB in size. For an EPUB I want to insert is as an SVG. But when I save it as an SVG (text being converted to paths) it is over 600 KB and thus exeeding the 300k limit that exists for files within an EPUB container.
    Is there a way to have the JPG stream in the SVG more compressed? The W3C spec of the SVG format doesn't say anything about a fixed compression level, so I guess the compression can be varied. But Illustrator CS2 doesn't seem to have any appropriate setting.
    Best regards,
    Christian Kirchhoff

    If anyone is interested, I got an answer on StackOverflow
    here.
    Adrian

  • A way to modify the ResultProcessing.cfg file outside of TestStand?

    All,
    I'm looking for a way to change the style sheet path one time (not hard code it in NI_ReportGenerator.seq), would anyone know of a way how to do it with a vi or something to that affect?  The goal is to initially setup a tester (remotely, I will not be on site to set this), but not hard code them to this one stylesheet.
    I'm using TestStand 2012
    Thanks,
    Bill
    John 3:16

    The file is an xml text file. If your style sheet values are sufficiently distinct, it shouldn't be too hard to just find and replace the text.
    The file is also a TestStand ProperyObjectFile. ResultProcessing.c has code that modifies it using the TestStand API. However, that requires TestStand to be installed and is not nearly as simple as finding and replacing a text string.

  • Is there any way to modify the photo book size after I have created the book?

    I created a photo book then realized it was not the correct size. Is there a way to correct the size or do I have to start from scratch?
    I Found the answer after I posted this- CTRL D to duplicate, then choose new theme - Worked like a charm.

    Yes.  First click on the book in the Projects section and type Command +D (duplicate).  Open the book, click on Change Themes and in the next window select the size and type you want.
    The duplicate is to have in case you find any text that was removed in the resizing.  You can cut and past from the duplicate copy to the original.  Also verify that the resized book has all of its text, not text warning indicators and that all photos are there and in the correct order.
    Always create a PDF version of the book according to this Apple doucment, iPhoto, Aperture: Previewing an order in iPhoto or Aperture, to check for any errors, i.e. typos, missing text, etc., before ordering the book.  Keep the pdf file to compare with the printed version when it arrives.
    Opps!  Answered your question from the title without reading the full body of your post. However, the last 2 paragraphs are worth reviewing.
    OT
    Message was edited by: Old Toad

  • HT2490 Is there a way to change the USPS Trcking information (Track Shipment) to track with Canada Post?

    When I order something online, they send a tracking number in an email. When I hover over the number, it offers to track the package for me and opens up in USPS. I am Canadian, and would like to use this option, but with Canada Post.
    When I click it now, of course USPS can not find the tracking information so I must copy and paste the number in to Canada Post's website. Not a huge deal, but it would be really great to have the shortcut option that American's have.
    Thanks for any help!

    Odds are the installer is a 16-bit program from the DOS or Windows-95 era; they won't run on 64-bit Windows. I've been trying to get Carmageddon running on my laptop and while the program itself seems to be 32-bit I can't install it because the installer appears to be 16-bit.
    If it's not CPU-intensive and you have an old Windows 95/98 serial and CD available then you could try installing the version of Windows in a program like VirtualBox; I was able to run Carmageddon that way, but it was too slow to be playable.

  • Is there a way to modify the delivery Quantity before Packing takes Place?

    Here is the story.
    ATP is currently allocating partial delivery unit qty's is the Sales order schedule lines. This is causing numerous problems from a business and logistical standpoint and I have yet after weeks of searching found a solution.
    The standard ABAP User exits all make the modifications before the qty is known, or after packing therefore making them not useful. I have debugged the enhancement points and those also seem to not allow for the modification of the delivery qty.
    Has anyone every successfully been able to do this.  Help is dearly needed at this point.
    Thanks in advance for any suggestions.
    Regards,
    Christopher

    Thanks for pointing me at those. Worked like a charm. My stylesheet ended up looking like this (in case anyone is curious later on):
    <?xml version="1.0" encoding="UTF-8"?>
        <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
            <xsl:template match="/">
                <xsl:text disable-output-escaping="yes">
    &lt;!DOCTYPE name SYSTEM "http://location/DTD/name.dtd"[]&gt;
                </xsl:text>
                <xsl:copy-of select="root node"/>
            </xsl:template>
        </xsl:stylesheet>

  • Is there a way to modify the schema-mapped XML that is generated by the submit action prior to submission?

    I have a form created in LiveCycle ES2. I have mapped some fields to a schema that causes LC to generate XML that adheres to the import format of one of my company's internal databases.
    There is one problem: the system's import function looks for a DTD DOCTYPE declaration between the XML declaration and root element. I've tried including the declaration in the schema, but LC does not include it in the mapped values or the export. I've spoken with the vendor about declaring the DTD as part of the import function and they have given a firm "No."
    Is there a way to insert one line of markup into the XML that LC generates in the submit action before the XML is attached to the e-mail?

    Thanks for pointing me at those. Worked like a charm. My stylesheet ended up looking like this (in case anyone is curious later on):
    <?xml version="1.0" encoding="UTF-8"?>
        <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
            <xsl:template match="/">
                <xsl:text disable-output-escaping="yes">
    &lt;!DOCTYPE name SYSTEM "http://location/DTD/name.dtd"[]&gt;
                </xsl:text>
                <xsl:copy-of select="root node"/>
            </xsl:template>
        </xsl:stylesheet>

  • How to modify the jar files information for Script Assets??

    Hi,
    I am using Open Script 9.2. We can add the external JAR files using Script->Script Properties--> Script Assets. I need to change the jar files when ever i am going to execute no of scripts. How can I modify them using JAVA Coding without manual handling. Is there any specific methods existed in OpenScript to serve the above scenario.
    Thanks in Advance.
    Thanks & Regards,
    Siva Thota

    Hi,
    When you say alter the jar file, do you mean alter the contents of the java code within the jar. If this is yes then the simple answer is no. As you are probably aware, a jar file contains pre-compiled java code, which you will not be able to alter. What is it you are trying to achieve?
    A simple answer maybe to use a child script which you can include into your main script. You can then change the code in the child script, and when you play back, this 'new' code will be compiled, and included within the replay.
    Regards
    Wayne.

  • Is there any way to gain the log in information for a deceased family members account?

    My common law spouse passed away a few weeks ago, his apple products are all gone but I was curious if there was absolutely any way I could gain access to his icloud account

    Table SGOSHIST contains the records viewed by any user.
    SAP menu path System>Object history
    To enable or disable object history tracking for a user, R/3 uses the user parameter SOBJHIST. When a user selects the “switch on/off object history” option, SAP inserts the SOBJHIST user parameter in that user’s own user profile. A parameter value of X is inserted to disable object tracking, while a blank entry in the parameter indicates tracking is active. Users can also change this user parameter if they have access to change their own user profile via transaction SU3.
    Regards
    Ravikumar

  • Is there a way to modify the file name when clicking the pdf button to be different

    I wish to have the default name to something like document type_document #.

    Hi,
    Only possible when you export through File--->Export--->PDF. If you directly click PDF icon, system will store with default format.
    Thanks & Regards,
    Nagarajan

  • Is there a way to modify the bass levels that are output from the built in iMac speakers?

    For example, in the settings of the iPhone, you can change the EQ to Bass Boost. Is there such an option on the iMac?

    It's here in iTunes 11:

Maybe you are looking for

  • Any one can give the solution in terms of SQL

    I have a table like below Table Structure is 1). Employee No - NUMBER(5) 2). ATT_DATE_TIME - DATE 3). INOUT - CHAR(1) the data are as below Employee DATE TIME IN/OUT ( I-IN, O-OUT) number 2835     01/01/06     15.20     I 2835     01/01/06     15.21 

  • Apple VPP and Configurator

    I currently am managing 30 iPads at my school. I have paid for 30 copies of an app. When I open up configurator, if I want to install this app on all 30 iPads, where do I download the app from. At this point, I have put in one of my 30 redemtion code

  • Broadcasting queries with no data

    Good morning everyone, I'm trying to update my company's broadcast system, and I'd like to know if it's possible not to send broadcasts when queries return no data, using the new authorization concept (or not). Thanks in advance. BR, Rogério

  • Error while installing BAM

    Hi, The BAM installation successfully concluded but on opening the start page i get the following error - Server Application Unavailable The web application you are attempting to access on this web server is currently unavailable. Please hit the "Ref

  • My ipod is disabled for 21,707,332 minutes! what to do...

    my ipod touch is disabled for 21,707,330 minutes! no tech support now....how can i restore it?!