E-Recruiting-  Sign on correspondance

Hi
Signature on Correspondence.  Users don’t want to sign on each document. What is the best method, are you using, a digital signature or note on the doc that 'SAP generated document and no sign is required.

Hi Robin,
I have to admit that i spite of the various projects I did on my own or got in contact with this is a new requirement. So far I found the following attempts to the topic.
1) Some companies no longer communicate by hardcopy letters with the applicant anymore. If someone sends its resume via letter or via email the application is not entered into the system. there is a person (probably an intern) printing a standard word letter and sending the document to the applicant to inform him that he shall apply online. Usually noone in the project cares if the intern likes signing the letter or not - that's life :o).
Only contracts are send as hardcopy and they have to be signed by hand anyways.
2) Very often recruitment comes from a nearly 100% hardcopy process when they switch to e-recruiting. Some companies had online tools before but the process itself / the communication with the applicant was hardcopy. So they change from singning 100% of the correspondence to perhaps 10% as the rest is handled via email. So usually they have 90% less work - so why complain?
Perhaps some HR people get to mind that if the new IT system automates parts of the process they have probably really less to do and if they focus on the topic someone else might really think of it and find out that more productive system leads to less recruiters necessary - so they try to avoid this topic.
3) From my former HR time I know that it usually helps to bundle the work. Instead of running to the printer every 5 minutes and sign a single letter we printed all not urgent letters overnight and in the morning someone was responsible for taking all letters and distributing them to the different recruiters / admins. Then they signed their 50-100 lettern in 5 Minutes and they were put on a pile so the intern could send them away. This makes things much more efficient and accepted by the recruiting team. I know one of our customers printing e-recruiting letters over night too.
In general you could write an "automated letter"- info on the letter. It is surely also possible to add the pictures of signitures to sap and put it in the smartform. As I usually implelemt a recruiter info table for tel. numbers, signature title and stuff, I would add a column there to store the name of the picture. Only restriction might be the restrictions on picture resolution in smartforms. But signing letters by hand is in my opinion a way you express your appriciation to the applicant. Even if you print an image you can always see it.
I have a customer being always among the top companies in employer branding and applicant rankings. The correct and individual way of communication with the applicant is there seen as an important element to build and keep this rank. If the recruiters would complain about signing the letters the project lead might force them to write the whole letters by hand again to show what is really much effort :o). At last e-recruiting is for treating applicants well first and recruiter come in second place.
Best Regards
Roman Weise

Similar Messages

  • Default text source for text tab  in purchase requistion.

    Hi,
         issue is about text which pops up when someone try to create purchase requisition using me51n. some text shows up under Text-item texts-item text at document level.This text should not be populated when someone creates purchase requisition.can some one help in  finding  the source for that text and how to stop it popping up in purchase requisitions gong forward.
    second part of this issue is. one buyer has reported the text shows up only when in change mode.once you save the requisition its gone. i have seen this on screen when creating requisition text is in text editor but once you save it its gone.another buyer who is responsible to create purchase order has reported they can see the text when converts it in to purchase order and by going in requisition text can be found.
    last part of this problem is i can't see this all in quality system every time i create purchase requisition text editor is blank.i am creating service requisition so material master text is out of scope.
    one thing i noticed when some one creates the requisition in text- item texts -there two texts items  " text and material po text " that has a green Ok sign in corresponding Any text field
    Thanks,

    In standard, you can find the all links where the text is coming from.
    Go to OLME-Purchase Requisition-Texts for Purchase Requisitions-Define Copying Rules
    Here, select Item text and click on Text linkages. You will find the linkage from where the text is coming.
    Second Part : Its quite not possible in standard, Check is there any development which is removing the text when you press save button.
    Third Part: Yes. In standard, material PO text will come when you will use material in PR. Other than the field will show in your text line, but it will show blank.
    The green tick mark shows when a text is successfully copied from any source.

  • Problem with filestree strange behavior

    i'm creating a tree which shows w directory with containing subfolders and files, and displays checbox with corresponding filename and size, everything is ok but when i click on checkbox, and then once again select it the sign to corresponding chechbox changes,why:
    package source.view;
    import java.awt.Dimension;
    import java.io.IOException;
    import java.io.StringReader;
    import javax.swing.JButton;
    import javax.swing.JPanel;
    import javax.swing.JScrollPane;
    import javax.swing.JTree;
    import javax.swing.tree.DefaultMutableTreeNode;
    import org.apache.xerces.parsers.SAXParser;
    import org.xml.sax.ContentHandler;
    import org.xml.sax.SAXException;
    import org.xml.sax.XMLReader;
    import org.xml.sax.InputSource;
    public class TreeImplementation extends JPanel {
         private static final long serialVersionUID = 1L;
         private DefaultMutableTreeNode root = new DefaultMutableTreeNode("Root");
         private JTree tree;
         public void generateDataStructure(String structure){
              ContentHandler contentHandler = new XmlParser(root);
              try{
                   XMLReader parser = new SAXParser();
                   parser.setContentHandler(contentHandler);
                   parser.parse(new InputSource(new StringReader(structure)));
              }catch(IOException ioe){
                   ioe.printStackTrace();
              }catch(SAXException saxe){
                   saxe.printStackTrace();
         public TreeImplementation(String structure){
              //this.setDefaultCloseOperation(EXIT_ON_CLOSE);
              this.setSize(1100, 1100);
              JButton downloadButton = new JButton("Download Files");
              generateDataStructure(structure);
              tree = new JTree(root);
              downloadButton.addActionListener(new ButtonListener(root,this));
              CheckBoxNodeRender renderer = new CheckBoxNodeRender();
              tree.setCellRenderer(renderer);
              tree.setCellEditor(new CheckBoxNodeEditor(tree));
              tree.setEditable(true);
              JScrollPane treeScroll = new JScrollPane(tree);
              treeScroll.setPreferredSize(new Dimension(300, 400));
              //treeScroll.add(tree);
              this.add(treeScroll);
              this.add(downloadButton);
              this.setVisible(true);
    package source.view;
    import java.awt.Component;
    import java.awt.event.ItemEvent;
    import java.awt.event.ItemListener;
    import java.awt.event.MouseEvent;
    import java.util.EventObject;
    import javax.swing.AbstractCellEditor;
    import javax.swing.JCheckBox;
    import javax.swing.JTree;
    import javax.swing.event.ChangeEvent;
    import javax.swing.tree.DefaultMutableTreeNode;
    import javax.swing.tree.TreeCellEditor;
    import javax.swing.tree.TreePath;
    public class CheckBoxNodeEditor extends AbstractCellEditor implements TreeCellEditor {
         private static final long serialVersionUID = 1L;
         CheckBoxNodeRender renderer = new CheckBoxNodeRender();
         ChangeEvent event = null;
         JTree tree;
         public CheckBoxNodeEditor(JTree tree){
              this.tree = tree;
         public Object getCellEditorValue(){
              MyCheckbox checbox = renderer.getLeafRender();
              ResourceInfo resource  = new ResourceInfo(checbox.getText(), checbox.isSelected(),checbox.getDataSize());
              return resource;
         public boolean isCellEditable(EventObject event){
              boolean returnValue = false;
              if(event instanceof MouseEvent){
                   MouseEvent mouseEvent = (MouseEvent)event;
                   TreePath path = tree.getPathForLocation(mouseEvent.getX(), mouseEvent.getY());
                   if(path!=null){
                        Object node = path.getLastPathComponent();
                        if((node!=null) && (node instanceof DefaultMutableTreeNode)){
                             DefaultMutableTreeNode treeNode = (DefaultMutableTreeNode) node;
                             Object myObject = treeNode.getUserObject();
                             returnValue = ((treeNode.isLeaf() && (myObject instanceof ResourceInfo)));
              return returnValue;
         public Component getTreeCellEditorComponent(JTree tree,Object value,boolean selected,
                   boolean expanded, boolean leaf,int row){
                   Component component = renderer.getTreeCellRendererComponent(tree, value, selected,
                             expanded, leaf, row, true);
                   ItemListener itemListner = new ItemListener() {
                        @Override
                        public void itemStateChanged(ItemEvent e) {
                             if(stopCellEditing()){
                                  fireEditingStopped();
                   if(component instanceof JCheckBox ){
                        ((JCheckBox) component).addItemListener(itemListner);
                   return component;
    package source.view;
    import java.awt.Color;
    import java.awt.Component;
    import java.awt.Font;
    import javax.swing.JCheckBox;
    import javax.swing.JTree;
    import javax.swing.UIManager;
    import javax.swing.tree.DefaultMutableTreeNode;
    import javax.swing.tree.DefaultTreeCellRenderer;
    import javax.swing.tree.TreeCellRenderer;
    public class CheckBoxNodeRender implements TreeCellRenderer {
         private MyCheckbox leafRender = new MyCheckbox();
         private DefaultTreeCellRenderer nonLeafRender = new DefaultTreeCellRenderer();
         private Color selectionForeground,selectionBackground,textForeground,
                             textBackground;
         protected MyCheckbox getLeafRender(){
              return this.leafRender;
         public CheckBoxNodeRender(){
              Font fontValue = UIManager.getFont("Tree.font");
              if(fontValue !=null){
                   leafRender.setFont(fontValue);
              Boolean booleanValue = (Boolean)UIManager.get("Tree.drawsFocusBorderAroundIcon");
              leafRender.setFocusPainted((booleanValue!=null)&&(booleanValue.booleanValue()));
              selectionForeground = UIManager.getColor("Tree.selectionForeground");
              selectionBackground = UIManager.getColor("Tree.selectionBackground");
              textForeground = UIManager.getColor("Text.textForeground");
              textBackground = UIManager.getColor("Tree.textBackground");
         public Component getTreeCellRendererComponent(JTree tree,Object value,
                   boolean selected,boolean expanded,boolean leaf,int row,boolean hasFocus){
              Component returnValue;
              if(leaf){
                   String stringValue = tree.convertValueToText(value, selected, expanded, leaf, row, false);
                   leafRender.setText(stringValue);
                   leafRender.setSelected(false);
                   if(selected){
                        leafRender.setForeground(selectionForeground);
                        leafRender.setBackground(selectionBackground);
                   }else{
                        leafRender.setForeground(textForeground);
                        leafRender.setBackground(textBackground);
                   if((value !=null) && (value instanceof DefaultMutableTreeNode)){
                        Object myObject = ((DefaultMutableTreeNode) value).getUserObject();
                        if(myObject instanceof ResourceInfo){
                             ResourceInfo node = (ResourceInfo)myObject;
                             leafRender.setText(node.resourceView());
                             leafRender.setDataSize(node.getResourceSize());
                             leafRender.setSelected((node.isSelected()));
                   returnValue = leafRender;
              }else{
                   returnValue = nonLeafRender.getTreeCellRendererComponent(tree, value, selected, expanded, leaf,
                             row, hasFocus);
              return returnValue;
    }

    It doesn't appear that you save the check selection state anywhere, so therefore your renderer (not the cell editor's renderer) doesn't know when a cell should be rendered as checked.
    The following is an example of check list, but note that it doesn't use the cell editor routine. Instead it is dependent on:
    [http://code.google.com/p/aephyr/source/browse/trunk/src/aephyr/swing/RolloverSupport.java]
    In fact, the following code's sole existence was to test that class in some type of scenario that would actually be useful. Note that the check selection model is differentiated from the normal selection model - that is necessary unless you do some rewiring of the InputMap/ActionMap so that it doesn't behave funky. Also note that for JTree, TreeSelectionModel will have to be used... and if you happen to decide to use the RolloverSupport way, RolloverSupprt.Tree in replace of RolloverSupport.List... The only real benefit of using RolloverSupport for this is that it seamlessly gives the component cell rollover feedback as long as the UI of JCheckBox paints differently upon rollover.
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.border.*;
    import java.util.*;
    import aephyr.swing.RolloverSupport;
    public class RolloverSupportCheckList implements Runnable, ItemListener, ActionListener {
            public static void main(String[] args) {
                    EventQueue.invokeLater(new RolloverSupportCheckList());
            public void run() {
                    list = new JList(java.lang.annotation.ElementType.values());
                    checkSelection = new DefaultListSelectionModel();
                    list.registerKeyboardAction(this, "Toggle Check Selection",
                                    KeyStroke.getKeyStroke(KeyEvent.VK_SPACE, 0), JComponent.WHEN_FOCUSED);
                    list.setCellRenderer(new Renderer());
                    Renderer rollover = new Renderer();
                    rollover.addItemListener(this);
                    rolloverSupport = new RolloverSupport.List(list, rollover);
                    JFrame frame = new JFrame();
                    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
                    frame.add(new JScrollPane(list), BorderLayout.CENTER);
                    frame.setSize(200, 500);
                    frame.setVisible(true);
            JList list;
            ListSelectionModel checkSelection;
            RolloverSupport.List rolloverSupport;
            boolean ignoreSelectionChange = false;
            class Renderer extends JCheckBox implements ListCellRenderer {
                    Renderer() {
                            setFocusPainted(false);
                    @Override
                    public Component getListCellRendererComponent(JList list, Object value,
                                    int index, boolean isSelected, boolean cellHasFocus) {
                            setText(value == null ? "" : value.toString());
                            ignoreSelectionChange = true;
                            setSelected(checkSelection.isSelectedIndex(index));
                            ignoreSelectionChange = false;
                            setBackground(isSelected ? list.getSelectionBackground() : list.getBackground());
                            return this;
                    protected void processMouseEvent(MouseEvent e) {
                            if ((e.getModifiers() & (InputEvent.CTRL_MASK | InputEvent.SHIFT_MASK)) != 0) {
                                    list.dispatchEvent(SwingUtilities.convertMouseEvent(e.getComponent(), e, list));
                            } else {
                                    super.processMouseEvent(e);
            @Override
            public void itemStateChanged(ItemEvent e) {
                    if (ignoreSelectionChange)
                            return;
                    int index = rolloverSupport.getRolloverIndex();
                    if (e.getStateChange() == ItemEvent.SELECTED) {
                            checkSelection.addSelectionInterval(index, index);
                    } else {
                            checkSelection.removeSelectionInterval(index, index);
                    list.requestFocusInWindow();
            @Override
            public void actionPerformed(ActionEvent e) {
                    String cmd = e.getActionCommand();
                    if (cmd == "Toggle Check Selection") {
                            ListSelectionModel sel = list.getSelectionModel();
                            int max = sel.getMaxSelectionIndex();
                            if (max < 0)
                                    return;
                            int min = sel.getMinSelectionIndex();
                            for (int i=min; i<=max; i++) {
                                    if (sel.isSelectedIndex(i)) {
                                            if (checkSelection.isSelectedIndex(i)) {
                                                    checkSelection.removeSelectionInterval(i, i);
                                            } else {
                                                    checkSelection.addSelectionInterval(i, i);
                            Rectangle r = list.getCellBounds(min, max);
                            if (r != null)
                                    list.repaint(r);
                            int index = rolloverSupport.getRolloverIndex();
                            if (index >= min && index <= max)
                                    rolloverSupport.validate();
    }

  • Clients and Regional Settings

    Clients an Regional Settings
    Hello,
    I have one problem with my data base cause i have 20 clients
    (W2000/w98/w95) and 13 of thems
    transport the default client regional settings when they start
    the connect to the Oracle (Sun) DB. They do that true the ALTER
    SESSION.... and i don't whant this.
    Thank you vary mutch,
    Miguel

    Hi Grant,
    first very thanks for the kind reply and here my problem goes on :
    I only see the problem with Turkish regional setting.I tried german,french ... and at first install of the jinitiator it always asked for me to GRANT ALWAYS to the Certificate.But when i use turkish it never asks and so the certificate does not being signed also my application does not run which uses corresponding jar files which are not signed.However,as i defined in my previous mail if at first the client has English,German or French regional setting the IE browser asks for the "Grant Always" certificate and then if the client changes her regional setting to Turkish it does not matter that my application runs.Because the IE browser already signed the corresponding jars while my client's regional setting was english at first install.
    Why oracle does not support turkish based regional setting installation of the Jinitiator1.3.1.9
    Is there any way to do it with oracle.Or I have to write a program which will make the regional settings english at the first installation of the jinitiator1.3.1.9
    If you need further explanation do not hesitate to write me.Thanks :)
    Best Regards,
    Mustafa

  • The Sales Process in SAP Business One

    Dear All,
    In Sap Business One the normal Sales Process is Sales Quatation > Sales Order > Delivery > AR Invoice.
    Now Business One allows to do Delivery without the 2 sales process of Quotation or Sales Order. It allows to make direct delivery or AR Invoice but I need a system by which I can define that a specific user cannot make a delivery or AR invoice without Sales Order or the user cannot make sales order without Sales Quotation or AR invoice cannot be made without Sales Quotation > Sales Order > Delivery.
    How can the above possibilities be posible in SAP Business One 2005B.
    Thanks and Regards,
    Kawish

    Hi Satish & Suda
    Thanks for the required information. But I am getting error message when I am using in SQL and executing.
    Please note that I have pasted your code as under :
    set ANSI_NULLS ON
    set QUOTED_IDENTIFIER ON
    go
    ALTER proc [dbo].[SBO_SP_TransactionNotification]
    @object_type nvarchar(25),                     -- SBO Object Type
    @transaction_type nchar(1),               -- [A]dd, <u>pdate, [D]elete, [C]ancel, C[L]ose
    @num_of_cols_in_key int,
    @list_of_key_cols_tab_del nvarchar(255),
    @list_of_cols_val_tab_del nvarchar(255)
    AS
    begin
    -- Return values
    declare @error  int                    -- Result (0 for no error)
    declare @error_message nvarchar (200)           -- Error string to be displayed
    declare @usersign int -- to get usersign of current document
    declare @usercode varchar (30) -- to get usercode for the usersign
    select @error = 0
    select @error_message = N'Ok'
    IF delivery is created without having a sales order as base document then do not allow the delivery
    Object_type 15 is "Delivery Note"
    IF @transaction_type = 'A' AND @object_type = '15'
    BEGIN
    -- get the current user sign and corresponding user code
    set @usersign = (SELECT (ISNULL(T0.UserSign,-1)) FROM ODLN T0 WHERE T0.DocEntry = @list_of_cols_val_tab_del)
    set @usercode = (select user_code from ousr where userid=@usersign)
    -- validate basedocument exists or not
    IF EXISTS (SELECT T0.ItemCode FROM dbo.DLN1 T0 WHERE T0.BaseType = -1 AND T0.DocEntry = @list_of_cols_val_tab_del)
    BEGIN
    -- validate the user (if user is manager then do not restrict)
    IF @usercode 'manager'
    BEGIN
    set @error = 1998
    set @error_message = N'Delivery Document cannot be created without Sales Order. Copy from Sales Order.'
    END
    END
    END
    -- Select the return values
    select @error, @error_message
    end
    But I am getting the following error message while executing :
    Msg 102, Level 15, State 1, Procedure SBO_SP_TransactionNotification, Line 26
    Incorrect syntax near 'created'.
    Msg 102, Level 15, State 1, Procedure SBO_SP_TransactionNotification, Line 39
    Incorrect syntax near 'manager'.
    Please note that in SAP Business One I have made user name test1 who is not a superuser and I want this user test1 to get blocked delivery note if it is not made from sales order.
    Thanks and Regards,
    Kawish

  • Internal error after editing a correspondent letter in E-Recruiting

    Hello,
    Running E-Recruiting 6.0 SP10
    As a recruiter whenever I try to prievew a correspondent letter I modified (note, I have no problems editing the letter) using the correspondent letter editor, I recieve an "Internal Error".  Additionally, the following SLG1 error is created:
    Form or text 472FCB84F86804EDE10000000A321A does not exist
    Prior to editing the letter I am able to preview it using the display link just fine.  E-Recruiting should allow me to edit a letter and preview it prior to sending it to a candidate, yet at present it does not.
    Any idea what this could be?
    Thanks, Ryan
    Edited by: Ryan Hubbell on Mar 17, 2008 11:04 PM
    Edited by: Ryan Hubbell on Mar 17, 2008 11:08 PM

    Hello Ryan,
    with release 600 SAP e-recruiting offers 2 different implementations for changing correspondences / invitations. The classical solution uses a web editor. Therefore the complete smartform is rendered and then put in a web editor. As this solution lead to some problems in the printing channel, sap developed another concept of changing. The new solution uses a text edit to change a text block you can assign to the smartform as changable area and only this can be changed ensuring the formating of the smartform is still fine.
    You have to decide which of these 2 options you want to use. You either use the old or the new solution for all correspondences and invitations.
    The solutions differ in the following configuration points:
    - old: T77S0 RECFA INDCO is blank
    - new: T77S0 RECFA INDCO is X
    - old: document category for simple correspondence 1, for invitation 2
    - new: document category for simple correspondence 3, for invitation 4
    (category for confirmation is always 5, there is no other option no matter which concept you use)
    - old: Assign changable letter sections to forms not available
    - new: Assign changable letter sections to forms not available
    - old: reference for SF interface simpl. corr. HRRCF_CS_APPLICANT, invitation HRRCF_CS_APPL_INVITATION
    - new: reference for SF interface simpl. corr. HRRCF_CS_IT_APPLICANT, invitation HRRCF_CS_IT_APPL_INVITATION
    (basically the smartform interfaces differ in the parameter THEAD which is needed for the new but not for the old correspondence change concept)
    Please check if your configuration is consistend for the concept you chose for your project. If not try adjust configuration and check if the error disappears.
    If the error is still existing please give another reply.
    Best Regards
    Roman Weise

  • Correspondance smartforms in E-recruiting

    Hello,
    In E-recruiting it is possible to assign several smartforms to a correspondance activity (view V77RCF_ACT2FORM).
    I would like to assign 2 different smarforms to an activity depending on the company of the requisition. But it does not work in my system, the two letter templates are displayed, the company is not considered.
    Does anybody have this functionnality working in her system?
    Thanks for your help,
    regards,
    Jerome.

    Jerome,
    I would do it this way. I would take the differences in the two forms, do some logic within one form only to display different sections of  the form for different companies and it works.
    Regards,
    Bharat

  • PA & Recruitment correspondance

    Hi frdiends,
    I have to create letters through word processing but I don't have any idea on this issue If any one knows about this could u please let me know the process.
    Your help must be required since it is very urgent.
    Awaiting your favorble reply.
    Thanks in advance and would be awarded for answers.
    $ Lakshmi
    Message was edited by:
            Lakshmi

    HI,
    I found the following answer from forum so I requst u pls let me know how to do the
    following process.
    Again I request friends pls give ur valuble inputs asap. since it is very urgent requirement.
    If it is one time printing and you dont need the content to be stored in system as duplicate copy then you may out put the values in ALV and then do a Mail Merge from ALV to Word for printing.
    $Lakshmi.

  • E-Recruiting-  Correspondance for Bilingual setup

    Hi
    The client wants to use the system for 2 languages. The Correspondence to be setup in bilingual or system does the translation work? Please share your views.

    Hi,
    You can choose what languages you want to use in view V_T77RCF_SELANGU. Then you have for each language an own maintenance tab for eg. posting maintainence and for the questionnaires ... Correspondence letters are sent to the applicant in his/her preffered correspondence language (which they can set in the personal settings).
    Standard text is translated automatically if you have installed the appropriate language with its language package.
    Regards,
    Nicole

  • When I sign in to my bank account this pops up: na3zz.playnow.dollfield.eu and a bunch of numbers. Also it says update now, though I never click on it. Help.

    As soon as I sign in to the bank but before I put in my secure passwords, I look and there is another Mozilla tab saying update 7 drivers, or update now. Above is one of the lines I saw in my browser. This doesn't seem to be happening on any other website and so far my bank account is fine. But this worries me. I tried my partner's computer and the same thing happened. I just did it again and this came up. (I have already updated to the newest firefox by the way.) This message came with the Mozilla logo too but it wouldn't copy over to this letter.
    http://www.lpmxp2.com/393C7C213B2057557D61273D212C7B545FA8850C068E5598E2EDD7F75F9913F870BFCBF4F7F14D2E3903E1A8BA4DE53F?tgu_src_lp_domain=www.allsoftdll.com&ClickID=12824897611400706742&PubID=274944
    Recommended
    You are currently browsing the web with Firefox and it is recommended that you update your video player to the fastest version available.
    Please update to continue.
    OK
    You are currently browsing the web with Firefox and your Video Player might be outdated
    Please update to the latest version for better performance
    LEGAL INFORMATION
    ATTENTION! PLEASE READ THIS AGREEMENT CAREFULLY BEFORE ACCESSING THE SITE AND DOWNLOADING ANY CONTENT. IF YOU USE THE SITE OR DOWNLOAD CONTENT YOU AGREE TO EACH OF THE FOLLOWING TERMS AND CONDITIONS.
    This is a legally binding contract between you and the installer. By downloading, installing, copying, running, or using any content of allsoftdll.com, you are agreeing to be bound by the terms of this Agreement. You are also agreeing to our Privacy Policy. If you do not agree to our terms, you must navigate away from our Sites, you may not download the Content, and you must destroy any copies of the Content in your possession.
    If you are under 18, you must have your parent or guardian's permission before you use our Sites or download Content. In an effort to comply with the Children's Online Privacy Protection Act, we will not knowingly collect personally identifiable information from children under the age of 13.
    This Agreement may be modified by us from time to time. If you breach any term in this Agreement your right to use the Sites and Content will terminate automatically.
    1. The Download Process.
    Your download and software installation is managed by the Installer. The installer(i) downloads the files necessary to install your software; and (ii) scans your computer for specific files and registry settings to ensure software compatibility with your operating system and other software installed on your computer. Once the installer has been initiated, you will be presented with a welcome screen, it allows you to choose to install the software or cancel out of the process. We may show you one or more partner software offers. You are not required to accept a software offer to receive your download. We may also offer to: (i) change your browser's homepage; (ii) change your default search provider; and (iii) install icons to your computer desktop. Software we own and our partner's software may include advertisements within the application.
    2. Delivery of Advertising.
    By accessing the Sites and downloading the Content, you hereby grant us permission to display promotional information, advertisements, and offers for third party products or services (collectively "Advertising"). The Advertising may include, without limitation, content, offers for products or services, data, links, articles, graphic or video messages, text, software, music, sound, graphics or other materials or services. The timing, frequency, placement and extent of the Advertising changes are determined in our sole discretion. You further grant us permission to collect and use certain aggregate information in accord with our Privacy Policy.
    TREATMENT OF PERSONAL INFORMATION
    In compliance with Act15/1999, 13 December, of Protection of Personal Information and development regulation (hereinafter, the Company), holding company of this Web Site,(hereinafter, the Portal) informs you that the information obtained through the Portal will be handled by the Company, as the party in charge of the File, with the goal of facilitating the requested services, attending to queries, carrying out statistical studies that will allow an improvement in service, carrying out typical administrative tasks, sending information that may result of your interest through bulletins and similar publications, as well as developing sales promotion and publicity activities related to the Portal.
    The user expressly authorizes the use of their electronic mail address and other means of electronic communication (e.g., mobile telephone) so that the Company may use said means of communication and for the development of informed purposes. We inform you that the information obtained through the Portal will be housed on the servers of the company OVH, SAS, located in Roubaix (France).
    Upon providing your information, you declare to be familiar with the contents here in and expressly authorize the use of the data for the informed purposes .The user may revoke this consent at any time, without retroactive effects.
    The Company commits to complying with its obligation as regards secrecy of personal information and its duty to treat the information confidentially ,and to take the necessary technical, organizational and security measures to avoid the altering, loss, and unauthorized handling or access of the information, in accordance with the rules established in the Protection of Personal Information Act and the applicable law.
    The Company only obtains and retains the following information about visit our site: The domain name of the of the provider (ISP) and/or the IP address that gives them access to the network.
    The date and time of access to our website. The internet address from which the link that that leads to our web site originated. The type of browser client. The client's operating system. This information is anonymous, not being able to be associated with a specific , identified user. The Portal uses cookies, small information files generated on the user's computer, with the aim of obtaining the following information: The date and time of the most recent visit to our web page. Security control elements to restricted areas.
    The user has the option of blocking cookies by means of selecting the corresponding option on their web browser. The Company assumes no responsibility through if the deactivation of cookies supposes a loss of quality in service of the Portal.
    If you would like to contact us via e-mail, please send a message here
    Download and Install Now
    Accept and Install
    Terms & Conditions
    Privacy Policy
    Contact Us
    Another one appeared too:
    http://hjpzz.playnow.dollfield.eu/?sov=412093510&hid=hllxrtplhvhh&id=XNSX.1282489761.242716.bcd1066d14.5716.753da997a17f9f6fe278b4412637784f%3A%3Apc
    Thanks for any help.

    What you are experiencing is 100% related to Malware.
    Sometimes a problem with Firefox may be a result of malware installed on your computer, that you may not be aware of.
    You can try these free programs to scan for malware, which work with your existing antivirus software:
    * [http://www.microsoft.com/security/scanner/default.aspx Microsoft Safety Scanner]
    * [http://www.malwarebytes.org/products/malwarebytes_free/ MalwareBytes' Anti-Malware]
    * [http://support.kaspersky.com/faq/?qid=208283363 TDSSKiller - AntiRootkit Utility]
    * [http://www.surfright.nl/en/hitmanpro/ Hitman Pro]
    * [http://www.eset.com/us/online-scanner/ ESET Online Scanner]
    [http://windows.microsoft.com/MSE Microsoft Security Essentials] is a good permanent antivirus for Windows 7/Vista/XP if you don't already have one.
    Further information can be found in the [[Troubleshoot Firefox issues caused by malware]] article.
    Did this fix your problems? Please report back to us!

  • Mail does not allow signed message with .Mac certificate

    Hi all,
    until a few weeks ago, I was able to send signed or encrypted message with my .Mac account and .Mac certificate. Both of them are still valid, and I can still read all messages I sent as encrypted and/or signed, however, Mail does not show the two buttons to crypt and/or sign emails. The certficate seems to work to encrypt iChat dialogs as well.
    I repaired my Keychain, looked at how certficates were configured, everything seems normal to me.
    Any clue ??

    Well, it seems that we've come across something finally.
    In comparing notes, my friend (who is currently able to sign and encrypt messages) and I were comparing notes on our respective certificates. In doing so, he pointed out that he'd noticed a difference in the PURPOSE of my cert versus his cert.
    His cert shows the following purposes:
    1 - Client Authentication
    2 - Email Protection
    3 - Apple .Mac Identity
    4 - Apple iChat Signing
    5 - Apple iChat Encryption
    Whereas mine only shows these purposes:
    1 - Client Authentication
    2 - Apple iChat Signing
    3 - Apple iChat Encryption
    Another thing I noticed while comparing his cert to mine after he pointed this out...his cert is due to expire at the end of October. Mine, on the other hand, was created this past Friday.
    Now, from what I understand, these certs expire one year from date of issue, unless they are revoked earlier. So, I suppose the big question to everyone else out there that is having trouble with using their .Mac issued certificates is "When did yours get renewed?".
    I'm suspecting at this point that somewhere around the end of June the certificates issued by Apple for iChat signing suddenly stopped having the "Purpose" of mail protection. It would also seem that they suddenly stopped having the purpose of .Mac Identity.
    Now I'm curious why Apple would do this, make it actually relatively easy to create a cert that could be used for iChat and Mail encryption, then suddenly take it away. Is this actually what has happened here?
    I'd be really interested in seeing what the renewal dates are and the corresponding "Purposes" are for many of the folks that are reporting trouble with this very issue.
    If you are one of those people who had mail encryption working using your .mac certificate, and it suddenly stopped working...feel free to post your cert information here.
    To get the ball rolling, here's the information from mine...
    Issued By:
    - Apple .Mac Certificate Authority
    Expires:
    - September 14, 2007
    Purposes:
    - Client Authentication
    - Apple iChat Signing
    - Apple iChat Encryption
    G4 800 (Quicksilver) / Powerbook 1.5 GHz   Mac OS X (10.4.7)  

  • Mac won't start, gives me the kernel stop-sign

    Ok, this is my big big problem..
    One day, i was just doing nothing on my dear computer, starting up firefox or something, then suddenly everything stopped. I couldn't do anything. I forced-restarted the computer with the boot-button. When im trying to start it over again, i get to the white startup-screen with the apple-icon in the middle, with the loading-circle underneath it. After a while, the apple-icon changes to a grey stop sign (picture of it further down).
    So, what have i tried?
    Trying to boot with CD, says i can't install Mac OS, but i can go into the Disk utility, Verify Disk / Repair Disk:
    Verifying volume "Macintosh HD"
    Checking Journaled HFS Plus volume.
    Invalid node structure
    Invalid B-tree node size
    Invalid node structure
    Invalid B-tree node size
    Volume check failed
    Error: Filesystem verify or repair failed.
    I have time machine on my external hdd, but when pressing the time machine-button after trying to start with CD, nothing happens.
    When starting the computer holding down SHIFT-button, i get a white screen with black text, and a square saying 'You need to restart your computer. Hold down the Power button until it turns off, then press the Power button again." The black text in the foreground says:
    panic(cpu 0 caller 0x560d25): "Unable to find driver for this platform: \"ACPI\".\n"@/SourceCache/xnu/xnu-1504.9.37/iokit/Kernel/IOPlatformExpert.cpp:1 389
    Debugger called: <panic>
    Backtrace (CPU 0), Frame: Return Address (4 potential args on stack)
    0x508a3da8 : 0x21b510 (0x5d9514 0x508a3ddc 0x223978 0x0)
    0x508a3*** : *and the same thing as the other one but with different numbers
    0x508a3*** : *and the same thing as the other one but with different numbers
    0x508a3*** : *and the same thing as the other one but with different numbers
    0x508a3*** : *and the same thing as the other one but with different numbers
    0x508a3*** : *and the same thing as the other one but with different numbers
    0x508a3*** : *and the same thing as the other one but with different numbers
    BSD process name corresponding to current thread: Unknown
    Mac OS version:
    Not yet set
    Kernel version
    Darwin Kernel Version 10.7.0: Sat Jan 29 15:17:16 PST 2011; root:xnu-1504.9.37~1/RELEASE_I386
    System uptime in nanoseconds: 368530813
    The Apple stop sign:
    http://a248.e.akamai.net/7/248/51/1068051125396238/www.info.apple.com/images/kba se/106464/106464_1.gif
    Ok, so i cant boot the computer with the shift key, just gives me bad error message. Nothing particular is happening while booting with the X-button and i've tried to reset PRAM.
    I really don't know what to do... and my computer is from 2009, has worked pretty good (until now), and i dont have any warranty...
    EDIT:
    I've also tried to boot it with holding down cmd-s, and i just get a repeated message saying alot of stuff...
    "rooting via boot-uuid from /chosen: ******* (alot of numbers and letters)
    waitingon <dict ID="0"><key>IOProviderClass</key><stringID="1">IOResources</string><key>IOResou rceMatch</key><stringID"2>boot-uid-media</string></dict>
    Got bootdevice =IOService:/AppleACPIPlatformExpert/PC10@0(AppleACPIPCI/SATA@B/AppleMCP79AHCI/P RT0@0/IOAHCIDevice@0/AppleAHCIDiskDriver/IOAHCIBlockStorageDevice/IOBlockStorage Drivers/ST9320423ASGMedia/IOGUIDPartitionScheme/Customer02
    BSD root: disk0s2, major 14, minor 2
    hfs_swap_BTNode: record ¤0 invalid offset (0x0031)
    hfs: node=0 fileID=4 volume= device=root_device
    hfs_mountroot failed: 5
    cannot mount root, errno= 19"
    Something like that.....

    There is this Apple Knowledge Base article, which describes your issue:
    http://support.apple.com/kb/TS1892?viewlocale=en_US
    However, it sounds as though you have tried most of what's there. If it won't allow you to reinstall the OS, then there is definitely something amiss with your hard drive.
    Sometimes a third-party disk utility (such as Drive Genius) can repair a drive when Apple's own Disk Utility cannot.
    Good luck with it.

  • Pulling Signature into an XML Publisher report for Recruitment letters

    Hi All,
    I'm trying to create signed recruitment letters for the Talent Acquisition module and am not quite sure how to handle this technically.. I assume some customizations are in order...
    I guess some of the questions I have are:
    1) Is there OOTB functionality to handle Signatures in PS?
    2) Do i store the image in the database or on an accessible network/local drive location?
    3) Can XML Publisher handle this type of request?
    4) Is there any documentation out there to explain this in more detail?
    5) Any advice on how to proceed?
    I also have a company logo they want pulled into the XML Publisher Report.. i assume it would be a simliar effect.
    Anyway, I was hoping someone out there may have some advice on how to proceed.
    Regards,
    Greg

    Below excerpt from Oracle XML Publisher Core Components Guide
    Images
    XML Publisher supports several methods for including images in your published document:
    Direct Insertion*
    Insert the jpg, gif, bmp, or png image directly in your template.
    URL Reference*
    1. Insert a dummy image in your template.
    2. In Microsoft Word's Format Picture dialog box select the Web tab. Enter the
    following syntax in the Alternative text region to reference the image URL:
    url:{'http://image location'}
    For example, enter:
    url:{'http://www.oracle.com/images/ora_log.gif'}
    You can also build a URL based on multiple elements at runtime. Just use the
    concat function to build the URL string. For example:
    url:{concat(SERVER,'/',IMAGE_DIR,'/',IMAGE_FILE)}

  • Multiple users signing the pdf form

    I have date fields in the pdf form in which the signed date is inserted when each user signs the form. Although the Digital Signature property in pdf provides date property on the signature image. But we have a business requirement to show date field separately on pdf form. Suppose User1 signs the application and the date is inserted in its corresponding date field. But when User2 signs the application and the date is inserted the signatures of User1 gets invalidated.
    Is there any way by which pdf field can be made editable even after one user signs the application?

    PDF supports multiple signatures on a single form or document.  When using a form, you can use field collections to associate specific fields to a certain signature and lock those fields after signing, while leaving other fields accessible.  There are many posts throughout this forum that discusss this functionality, here is one...  http://forums.adobe.com/thread/769340
    As for signature status, applying a second signature (or more) after a form or document has been signed will NOT invalidate the original signature, however it will change the status of the original signature to something like "Valid with signed changes".  Each subsequent signature will change the status of the previous signature, but this is not the same as invalidating a signature.
    This behaviour is by design as a signature applied to a PDF signs the entire byte range of the PDF, not just a portion of it.
    Regards
    Steve

  • Is there a way to force Adobe Reader to grab the sign on ID for a digital stamp?

    I work for a state Agency and we want to use digital stamps as our signatures on our internal documents. I have created the form in LiveCycle and I know that in Adobe Reader by default the stamp will use the person's sign on ID for the stamp and then the person adds their name and other information.
    However, if the person right clicks the stamp, and edits the Identity and puts in another sign on ID number, such as their supervisor's and stamps the document, there is no way to tell that both of those stamps, with different sign on IDs and names, were created by the same person.
    If there is a script I can enter in LiveCycle, that when the form is opened in Adobe Reader, that would lock the Identity field of a stamp created in Adobe Reader from allowing a change to the sign on ID, then that would solve our problem and maybe the problem for other state agencies wanting to follow suit.
    The digital signatures are even worse. I made one in my name, my supervisor's name and my dog's name, attached them all to a document, validated all the signatures and they look absolutely authentic. Why would Adobe make digital signatures like that? If we could just find some evidence within the data showing that all the signatures were applied by the same person or on the same computer, then we could use them. But the stamps at least grab that unique sign on number that we use and applies it to the stamp if the user doesn't alter it.
    I'm on a time crunch as we hoped to launch this after the first of the year but our attorneys are saying, "uh, uh" until something can be done to prevent fraud. We have over 3,000 people in our agency so EchoSign would be out of the question.
    I'd appreciate any suggestions.

    You will not get what you need using stamps, especially if you ever want to use dynamic XFA forms.
    The digital signatures that were signed with a self-signed digital ID won't fully validate unless the user chooses to trust the corresponding digital certificate first. You should only trust a digital certificate if you trust its source. The problem is using self-signed IDs will be difficult to use on the scale you're talking about.
    Digital signatures are the best approach for your needs. They can provide both nonrepudiation of document origin as well as document integrity. You just have to figure out how to implement a solution you can afford.
    You agency can become its own certificate authority and issue certificates to its employees. You'd just have to find a way to implement and manage such a system.

Maybe you are looking for

  • Lost mail on Tiger upgrade-how to get it back?

    I recently upgraded to Tiger and I've done something I'm not sure I can get out of! I have an external drive partitioned with a bootable backup on one partition and storage on the otehr that I copy new files to. When I upgraded to Tiger I copied over

  • Archive log not shipped to standby.

    Dear Experts, We have are using oracle 10.2.0.4.0 on AIX. And we have configured physical standby database which was working fine till date. suddenly i found that the MRP process is waiting for gap. i have all the archive logs on the primary system a

  • With Maverick (10.9.1) I got a capricious pointer

    Firts, I got a "zebra"pointer, impossible to get the black arrow, it's cut by diagonal transparent lines. Impossible to get the little cross when I want to take an image of something on the desktop (Cmd+shift+4), either to work on photoshop. Impossib

  • How do I show the first record as selected on the first load of a Master/Detail html page?

    I have been looking for any reference to setting a selectrow onload or defaultrow and it seems all references to answers lead to missing pages or examples. I have created a master detail page using the insert spry function in DW5. I have had no troub

  • Viewing photos on itunes?

    how can i view the photos on my ipod to deleted certain ones?