Access attachments in E-recruiting...

Hi,
  Can somebody help me how to access attachments in E-recruiting..  I have uploaded a file for job description..  How can access that one in the program... And i can find that attachment header in attachments infotype 5134....
Thanks in advance...

The erec standard is: The Text in the Job Posting that you enter in the 5 boxes in 'Descriptions' tab gets published.
If you need to make the Text from an attachment in the Requisition (say, 'Job Description.doc' ) appear in the Job Posting "Descriptions' tab, then its a SMARTFORMS Enhancement.
We recently implemented this- to default the text, from a formatted xml doc (which we attach in the 'attachment' tab), to a single box in Job Postings (Description tab). the SMARTFORMS takes over from here & adds it to the publication text
- Dominic

Similar Messages

  • Opening Attachments in E-Recruiting

    Hello,
    When opening up attachments in E-Recruiting a new "blank" web page opens up requiring you manually close it.  If you do not close it a new "blank" web page then appears for each consecutive attachment you attempt to open.  How do you prevent this "blank" web page from opening up?
    We are using the following:
    -E-Recruiting 6.9 SP10
    -BSP
    -Internet Explorer 7
    Thanks!
    Ryan

    The erec standard is: The Text in the Job Posting that you enter in the 5 boxes in 'Descriptions' tab gets published.
    If you need to make the Text from an attachment in the Requisition (say, 'Job Description.doc' ) appear in the Job Posting "Descriptions' tab, then its a SMARTFORMS Enhancement.
    We recently implemented this- to default the text, from a formatted xml doc (which we attach in the 'attachment' tab), to a single box in Job Postings (Description tab). the SMARTFORMS takes over from here & adds it to the publication text
    - Dominic

  • How do you access attachments embedded within survey results?

    How do you access attachments embedded within survey results?

    This is a tutorial explaining attachments:
    http://forums.adobe.com/docs/DOC-2656

  • How to set up a list view with easily-added and accessed attachments

    Hi,
    This may be a case for the Sharepoint designer forums or something similar but I wanted to start with General since I don't exactly know even what I'm asking for yet.
    Here's my goal - A web-based table of rows of columns similar to Excel where every row contains information about a particular task, and I can embed files into the rows and easily access them with a click. I have built a Sharepoint list (using Sharepoint
    online / Office 365) with custom columns, enabled attachments and the attachment column, and set the default to datasheet view. But I am running into the following issues:
    I can't add an attachment to a row in datasheet view. I have to click Edit Item -> Attach File -> Browse -> Hit ok several times. This is not a sustainable option. How can I attach a file from the datasheet view?
    After attaching a file, the attachment column just shows a paperclip icon. I can't click the icon or access the file without clicking View Item and then clicking the link to the attachment. How can I easily view an attachment?
    I've seen mention of an Access database style view, things like document libraries etc. I've never really handled the front end of Sharepoint before, so I don't yet know what I don't know. I'm open to any suggestions that could help me accomplish what I'm
    looking to do. Thanks in advance.

    Hi Matt, create a column of type "enhanced rich text." Then in your datasheet view, double click on the field in that column and use your "insert" tab to upload a file. You'll then see the file in this cell and you can open it straight
    from the datasheet view.
    cameron rautmann

  • Accessing Attachments on the first Action in a 7.2 WF

    A user fills out a form in Form Manager and they have attached some files to the workflow. The first step in the workflow is a script QPAC which needs to manipulate the attachments (need to extract the attachments, reader extend them and put the back...). If the first step were a user task in 7.2, you can copy the attachments to a document list from the previous step but if the first step in the workflow is a script, how do you access the attachments?
    Ideally we would like to have all of the attachemnts available in a document list at the very first step of the workflow or at lest some mechanism to put them into a document list.

    Chris, thanks for your suggestions. The code you supplied does allow the initial user task to be retrieved.
    I'm having some difficulty getting the attachments out of the task object in a usable format.
    task.getAttachments() returns a java.util.Collection according to the documentation. However, this seems to be wrong. It actually returns POFObjectSetWrapper which is undocumented. If you try to set a workflow variable with the return value from getAttachments() you get an error.
    eg.
    Collection list = task.getAttachments();
    patExecContext.setProcessDataListValue("/process_data/attachments", list);
    This gives you an error that it cannot coerce BOITaskAttachment objects to Document objects. "/process_data/attachments" is a Document List variable.
    So I figured I need to iterate through the POFObjectSetWrapper object and create a new collection of document objects.
    eg.
    Collection docs = null;
    for (Iterator it=list.iterator();it.hasNext();){
    BOITaskAttachment att = it.next();
    Document d = new Document(att.getContent());
    docs.add(d);
    This gives an error because altho the documentation indicates that the return from getAttachments() is a collection POFObjectSetWrapper does not seem to implement Collection. Nor does it implement POFObjectSet which would allow us to do the following:
    while (list.next() ) {
    BOITaskAttachment att = (BOITaskAttachment) atts.getBOIObject();
    Document d = new Document(att.getContent());
    docs.add(d);
    I need to get the attachments into Workflow Variables... preferably a List of Documents.
    Can anyone shed any light on how to do this?
    4Point Solutions

  • Accessing attachments stored in Open text (ECC) with Work manager 6.0

    Hello Experts,
    We are using Open text in one of our ECC systems to store documents, files, pdfs and other attachments for the Work Orders and Notifications.
    We want to configure the Work Manager 6.0 application hosted on SMP2.3, in order to fetch all the Work orders in the mobile device.
    Now the question is - Can we access the attachments on the mobile device, from the out of the box Work Manager configuration.
    Or, is there a need to install any plug-ins in the ECC/Agentry side to enable the same.
    Thanks,
    Abhishek

    Hi Abhishek,
    This isn't out of the box functionality for Work Manager so you'll need to enhance the existing functionality.
    To access OpenText Attachments (via ArchiveLink) in WorkManager try looking at the following->
    1. Get Attachments
    BAPI Wrapper - /SMERP/CORE_DOBDSDOCUMENT_GET
    MDO Class - /SMERP/CL_CORE_KWDOCUMENT_DO (Method - GET)
    You'll see the above GET method calls (If you GOS_ACTIVE flag is true) - GOS_DOCUMENT_GET_INFO
    This is responsilbe for getting the attachment metadata returned to the Work Manager Client ->
    ET_COMPONENTS
    ET_SIGNATURE
    ET_CONNECTIONS
    To get the attachment metadata stored in OpenText via ArchiveLink look at the below Function Modules -
    ARCHIV_GET_CONNECTIONS
    ARCHIVOBJECT_STATUS
    You could enchance the GOS_DOCUMENT_GET_INFO method with a Post-Exit method or Implement the BADI /SMERP/MDO_CORE_DOCUMENTS - END_BDS_FETCH
    2. Create Attachments
    BAPI Wrapper -/SMERP/CORE_DOBDSDOCUMENT_CRT
    MDO Class - /SMERP/CL_CORE_KWDOCUMENT_DO (Method - CREATE)
    This calls the method BDS_DOCUMENT_CREATE to create the file and store it against the Work Order / Notification.
    You could look at following Function Modules ->
    ARCHIVOBJECT_CREATE_TABLE (Create the file on the OpenText server)
    ARCHIV_CONNECTION_INSERT (Link the newly created file with the Work Order / Notification)
    The BADI doesn't provide a corresponding Create method so you could enhance the MDO class /SMERP/CL_CORE_KWDOCUMENT_DO with new method that calls the ArchiveLink Logic instead of the BDS_DOCUMENT_CREATE method. The new method can be configured via the Syclo Config Panel to be called instead of the standard CREATE method.
    Also check out the document - Document Upload & Download handling in SAP Work Manager 6.0
    Section 7 & 8 covers the BAPI Wrappers/Class Handlers & Ehancement Spots for Document handling
    Hope that helps.
    Cheers,
    Stephen

  • How to access Attachments directly in Preview Pane view

    Hi,
    i've designed a xsltView on a SharePoint list using the standard preview pane in sharepoint designer. Attachments to list items are displayed in a row named 'Attachments' with a paper-clip icon. Is there any way to access the files in the attachment directly
    in the preview pane? Any xsl or java script solutions would be great.
    I've tried so far to access it with a little java script
    <xsl:for-each select="ViewFields/FieldRef[not(@Explicit='TRUE')]">
    <tr>
    <td nowrap="nowrap" valign="top" width="190px" class="ms-formlabel">
    <nobr>
    <xsl:value-of select="@DisplayName"/>
    </nobr>
    </td>
    <td valign="top" class="ms-formbody" width="400px" id="n{position()}{$WPQ}">
    <xsl:if test="@DisplayName='Attachments'">
    <script type="text/javascript">var url = "%MYSITE/LISTNAME%/Attachments/"+"<xsl:value-of select="@ID"/>";</script>
    <td><a href="javascript:document.location=url">CLICK</a></td>
    </xsl:if>
    </td>
    </tr>
    </xsl:for-each>
    the xsl:for-each block is the part where the table for the preview pane will be created. In the
    xsl:if test="@DisplayName='Attachments'"
    block i try to build the url path to the attachments. Usually the attachments are stored like. ...mysite/listname/Attachments/[ID]/...
    The Problem is, that i don't receive the proper ID Value, i get a string like '2445-5456-35464-234' (for example)
    The next Problem would be to get the prober name of the attached files.
    Does anyone know a solution for that. Maybe there's a simple line of xsl to do this.
    thanks and best regards,
    Matthias

    Hi Matthias,
    Please add below code within a column in the XSLT list view to display attachments of each list item.
    <SharePoint:AttachmentsField ControlMode="Display" ItemId="{$thisNode/@ID}" EnableViewState="true" FieldName="Attachments" runat="server" />
    Let me know if you have any question.
    Thanks & Regards,
    Emir
    Emir Liu
    TechNet Community Support

  • Accessing attachments from 'services for object'

    I have been tasked with extracting data from external attachments from the 'services for object' button. I am working in an sap ecc 6.0  environment. I have not found any tips on how to do this from google searches.
    Here is an example. If you look at most of the major documents (purchase order, invoice, delivery, etc.) there will be a little dropdown icon in the upper left corner of the screen
    That icon is the 'Services for Object' button. Clicking on it will display a small popup window with several options including one for attached documents.
    If an attachment (could be word, excel, pdf, URL, etc.) exists it will show up and can be viewed by double clicking on it. Does anyone know how to access
    that attachment programatically?
    Thank you very much in advance.
    deepak

    Hi,
    Create a subroutine in your program and call the FM: SWU_OBJECT_PUBLISH as below:
    CALL FUNCTION 'SWU_OBJECT_PUBLISH'
        EXPORTING
          objtype           = gc_businessobj
          objkey            = gw_header-vbeln
        EXCEPTIONS
          objtype_not_found = 1
          OTHERS            = 2.
    This will automatically display your Services for Object ICON on your report. Here in the FM, gc_businessobj is a global business object = BUS2031(defined as a constant inside the pgm) and gw_header-vbeln can be any valid document no like a sale order, inquiry, quotation etc.
    Use this code snippet and this will work.
    Regards,
    JLN

  • Accessing Attachments for Email (UTL_SMTP)

    Hello:
    In the example provided by Oracle, the sample code uses utl_http.begin_request to read a file.
    Is there a equivalant to read a file directly from network directory? Instead of using "http" is there a way to access file using UNC path?
    Thanks

    No I am not Using Oracle Forms in this case.
    I like to see if I can send attachments using UTL_SMTP where the file can be attached/accessed using a drive/UNC path so that the DB can send the email with attachments. Nothing to do with client/Forms.
    Thanks

  • Cannot access attachments from Windows users

    Recently I've had a few emails from friends using Windows with attachments (usually daft videos or the like).
    The message shows up in mail.app at being around 3Mb, for example, and in the mail list shows as having 2 attachments.
    When I open the message it only shows 1 attachment (usually their little 10Kb signature graphic or some such), but not the main, large, attachment.
    Anyone else experienced this, or found a solution?
    Steve

    I assume that both machines are on the same home network, and that there are no external gateways/routers/firewalls etc. in the way? No wireless networks?
    Is the Windows machine XP, or something else? What are the firewall settings on the Windows machine? Can you access any other FTP site from the PC?

  • Unable to access Requisition in e-recruitment

    Hi All,
    We are having problem while Creating the Requisition from Portal.
    After logging in as Recruiter and upon clicking on Create Requisition i am getting the below error.
    "You are not authorized to execute this application."
    We have assigned the below roles to Recruiter in SAP R/3
    1) SAP_RCF_RECRUITER
    2) SAP_RCF_REQUISITION_REQUESTER
    3) SAP_RCF_RECRUITER_ERC_CI_2
    "Recruiter"  role has been given in Portal.
    Also we have given SAP_ALL authorization to the User.
    Let me know if we have missed out anything.
    Regards,
    Guru

    Hi,
    from my expirience the "You are not authorized to execute this application." message is also displayed if there are other configuration / setting issues. The most common one is that you did not create a candidate for the recruiter user (e.g. by running report RCF_CREATE_USER).
    In any case check the application log (T-Code SLG1) for more information.
    Kind Regards
    Roman

  • Error while openng Attachments in E-Recruiting

    Hi All,
    We have a requirement in E-Rec to change the form for Internal and External Candidates.
    These forms are re-designed after coping the same from the Standard form HRRCF_PUBLICATION_INT and EXT.
    Now there is an additional requirement of displaying of Attachments in the form.
    For the same we have put in the code using the
    class - CL_HRRCF_REQUI_BL
    and
    method - GET_ATTACHMENTS
    However, when we are executing the smartforms from the Portal. Form is getting displayed properly but the Attachments.
    There is a link to attachments getting generated from the code in the class. Everything is perfect, however, when we click on the Link there is a dump resulting saying the link does not exists. After checking the link I am able to confirm that the link that is displayed in the smartforms for attachment is not the one that is being generated.
    This is because the displayed link does not have any resemblance to the generated link.(Checked in Debugging mode).
    I am really confused about the solution.
    Can anyone please help on the same.
    Cheers,
    Kunjal

    Not answered

  • Attachments in E- Recruiting

    Hi,
    I created a requisition and attached to it a DOC file .
    In the candidate pages- he can see the relevant postiong but without the attachents.
    What have i missed? How come he is not able to see the attachments?
    Thank you
    Sharona

    The erec standard is: The Text in the Job Posting that you enter in the 5 boxes in 'Descriptions' tab gets published.
    If you need to make the Text from an attachment in the Requisition (say, 'Job Description.doc' ) appear in the Job Posting "Descriptions' tab, then its a SMARTFORMS Enhancement.
    We recently implemented this- to default the text, from a formatted xml doc (which we attach in the 'attachment' tab), to a single box in Job Postings (Description tab). the SMARTFORMS takes over from here & adds it to the publication text
    - Dominic

  • E-Recruiting: Exposure to External Candidates

    Hi Experts,
    We're currently in the initial phase of implementing e-Recruiting 6.0 (Integrated scenario) at a telecom client on a global scale. Following is the doubt:
    Can we do away with exposing the client's e-Recruiting system to the external world/internet. Client has decided not to expose the e-Rec. system to the external world/internet. Question is so how will the external candidates search, register & apply for the jobs? A workaround is to have the external candidates' data which is currently being captured on their existing career site (non-SAP legacy) & pull the data to e-Recruiting. On this, I'm not sure how will the mapping be achieved.
    Is this scenario possible through some std. functionality (we're not using PI/XI). If this solution is a Z solution, what are the efforts required for custom development? How will we intergrate SAP KRPO for storing the documents & TREX indexing etc.
    Thanks in advance,
    Sachin.

    Hi Sachin,
    Hope you are doing good.
    Some pointers to exposing your PA-ER System to external candidates, This is standard security process.
    Concept of DMZone:
    External candidates: to register and search for vacancies available in the company, the web applications residing on the E-Recruitment system (ECC System) should be made available via internet.
    Additional security to the Intranet ERP system: ERP system has to be separated from the external users using reverse proxy server configured in the DMZone (neutral zone in between Intranet and External network, which is protected by firewall) of the company, So , externally would not have direct access to the E-Recruitment system.
    Exposing the IP address of E-Recruitment system: we expose the IP address of reverse proxy server for public access. Then the reverse proxy server would be configured in such a way that all the requests for E-Recruitment applications would come to the standard HTTP port XX of the reverse proxy server and the reverse proxy would take care of forwarding the requests and (transparently) sending them back as if it was the content server itself.
    ISA Server 200X: the reverse proxy server has many additional features and, most of the customers prefer to implement their reverse proxy scenarios on ISA Server series.
    Inspired by Roman
    Regards,
    Rohit

  • Need reference/tutorial about iDisk (especially .Mac mail) access by iPhone

    Greetings,
    I have started getting quite interested in using my .Mac subscription, especially the iDisk online storage capabilities while being on the road with my MBP.
    HOWEVER, I am also intrigued with accessing iDisk and .Mac Mail from my iPhone.
    1. That's where I am having problem number one: seems that i cannot use my iPhone to access anything I put into iDisk's folders from my MBP. I put files into iDisk on my desktop, check if same files are on iDisk by reaching .Mac online, but I do not see anything on my iPhone while accessing iDisk from it. I do see the same iDisk folders as i see on my desktop Documents, etc..), but with no data inside.
    My .Mac WebGallery/Albums work well from my iPhone.
    2. Similar problem with Mail. Everything is OK - send receive - as far as .Mac Mail goes, if reached from my laptop. Not so with the iPhone: even though I can send/receive from .Mac Mail from my iPhone, and I do see .Mac Mail's mail boxes, and message insides, I cannot access attachments that i might have sent from Mail on my MBP or from .Mac Mail from my MBP.
    I hope this is not too complicated a request for assistance: I have done well so far with most of the iPhone amzingly well integrated capabilities, but I am stumped here re: iPhone access to .Mac's Mail and iDisk.
    Thanks in advance!
    Roger T

    Thanks, Zerimar. Indeed, somewhat useless. Not a big deal, but the rest of the interface between my MBP and the iPhone, as well as the iPhone design itself, are quite wonderful. I keep trying to detect some inadequacies in that interface. Not too many!
    Seems that Apple designed the iPhone to purposefully limit its online capabilities (security issues, or prevention of unnecessary troubleshooting issues, just like in the case on unlocking phones!)
    - Roger T

Maybe you are looking for