Resume Attachment to E-Recruitment System.

Hi All ,
We are doing a data Migration project to E-recruitment system . To upload and create the candidates and Application id , we have successfully done it through BAPI_ERC_APPL_CREATE_EXT . This is also being reflected in Portal .
But when i use BAPI_ERC_UPDATE_ATTACHMENT to upload attachment , i neither get any error message nor there is an entry in HRP5134 table .
This is the vales that I am passing to the Bapi .
Import parameters               Value
APPLICATION_ID                  50000150
ATTACHMENT_TYPE                 0001
LANGUAGE                        EN
ATTACHMENT_HEADER               RESUME
FILENAME                        C:\TEMP\DATA_UPLOADTEST1.TXT
Tables                          Value
FILE_SPLIT                         0 Entries
RETURN                             0 Entries.
Should i pass something to File_Split ?
Also , i see a BADI HRRCF_DOC_UPLOAD  for the same kind of requirement .
Could you please let me know how to save the attachment  ? The project is supposed to go live on 20th Feb , So appreciate your quick help .
Thanks
Raghu

Dear Hussain,
Thank you for your response.
Website of the company is hosted by a different software, and we have to link SAP E-Rec with that. Will Web dispatcher suffice this requirement.
Regards,
Siv

Similar Messages

  • PERNR of internal candidates in the e-Recruiting system

    Hi Experts,
    We are implementing e-Recruiting 6.0 and have e-Recruiting system integrated in a separate instance and we do data transfer from the HR system to the e-Recruiting system through ALE.  Does anyone know where the personnel number of internal candidates get stored in the e-Recruiting system?  I can see that the sytem brings up PERNR in the portal for all internal candidates, but unable to find out the table in which it is stored. I have checked in the infotype tables and business partner table (BUT000) with no luck.  Can someone help?
    Thanks,
    Uthra KJ
    Edited by: Uthra Karthikeyan on Sep 19, 2008 3:12 PM

    Explore following tables :
    Table Name                     Short text                                                                               
    EREC_MGR_GRP                   Grouping of Managers for E-Recruiting s
    EREC_MGR_GRP_T                 Text table for manager grouping in E-Re
    T77RCF_AGENCY                  Agencies in E-Recruiting              
    T77RCF_APPLSRC                 Application Source in SAP E-Recruiting
    T77RCF_EREC_UGR                User Groups That Are To Appear in E-Rec
    T77RCF_LOG_APPL                Applications in E-Recruiting          
    T77RCF_LOG_APPLT               Applications in E-Recruiting          
    T77RCF_PROC2SUB                Assignment of Processes to Subarea of E
    T77RCF_ROLE                    Roles in E-Recruiting                 
    T77RCF_ROLE2SUB                Assignment of Roles in E-Recruiting to
    T77RCF_ROLE_T                  Roles in E-Recruiting                 
    T77RCF_WI_FILTER               Workflow Task Filter for E-Recruiting 
    I think , this is how it is getting the pernr based of user name .
    FYI
    Package :PAOC_MSS_E_RECRUITING ~ Interface for MSS e-Recruiting
    class:CL_HRWPC_CA_NAME ( Retrieves Candidate Data from the E-Recruiting System )
    method :GET_CANDIDATE_NAME_LINK
       get pernr that user is attached to
        CALL FUNCTION 'BAPI_USR01DOHR_GETEMPLOYEE'
          EXPORTING
            id             = sy-uname
            begindate      = sy-datum
            enddate        = sy-datum
          IMPORTING
            return         = return
            employeenumber = employeeid.
    IT0105
    Table :Pa0105                                                                      
    Good Luck
    ^Saquib

  • Standard Table entries missing in E-RECRUIT System

    Hi,
    We are in the phase of E-Rec implementation. We have installed standalone E-recruit system (NW 7.4)
    We did client copy with SAP_CUST profile from 000 to 300, but some of the table were not reflected which we copied again.
    We run the report RHTTCP77 for tables t77rcf* and copied client dependent tables from 000 to overcome the issue for the missing tables in 300.
    But, still we have an issue with VV_T77SK_RCF as all entries are not updated, what is the way fwd?
    Shall we proceed with SAP_CUST or SAP_ALL during client copy if we need above entries?
    Can anyone please suggest what way we will follow to overcome the issue of missing tables?
    Regards,
    Khushboo Sahu

    Hi,
    Please use SAP_ALL and for step wise instruction please check the below thread -
    http://scn.sap.com/thread/121904

  • TREX Conig for E-Recruitment System ?

    Do you have any useful info fo TREX Configuration in a E-Recruitment System ?
    Rgds

    Siddesh......T h a n k s ........M a n......for your replies....
    Really what i want to say thru that message number is - i followed the same - but i was not succeed to use TREX in e-Recruitment system.
    The error is - The indexed docuemnts are not poping up / traced up in a general search of e-Rec scenario.
    For the same i am requesting you all experts  - end to end config step by step - in TREX Server and e-Recruitment Server.
    Rgds

  • E-Recruiting system

    hi experts,
    I'm new in ABAP and am working on a report for our e-Recruiting system.
    The following exception occured in the program.
    Runtime Errors UNCAUGHT_EXCEPTION
    Except. CX_HRRCF
    Information on where terminated
    Termination occurred
    in "GET_PERS_DATA".
    In the source code you have the termination point in line 34
    of the (Include) program "CL_HRRCF_CANDIDATE_BUPA_BL====CM00C".
    this is the part of the code.
    tell me if it is of ne help. or tell me if u want some specific information.
    DATA candidate_info TYPE REF TO cl_hrrcf_candidate_bupa_bl.
    DATA cand_hrobject TYPE hrobject,
    pers_data TYPE bapibus1006_central_person.
    TRY.
    CALL METHOD cl_hrrcf_candidate_bupa_bl=>get_instance
    RECEIVING
    return = candidate_info.
    ENDTRY.
    TRY.
    CALL METHOD candidate_info->get_pers_data
    EXPORTING
    ps_cand_hrobject = cand_hrobject
    IMPORTING
    ps_centraldataperson = pers_data.
    CATCH cx_hrrcf .
    ENDTRY.

    you have closed the thread hope u got the answer
    else in ur code add this line.
    DATA candidate_info TYPE REF TO cl_hrrcf_candidate_bupa_bl.
    DATA cand_hrobject TYPE hrobject,
    pers_data TYPE bapibus1006_central_person.
    <b>create object candidate_info .</b>
    TRY.
    CALL METHOD cl_hrrcf_candidate_bupa_bl=>get_instance
    RECEIVING
    return = candidate_info.
    ENDTRY.
    TRY.
    CALL METHOD candidate_info->get_pers_data
    EXPORTING
    ps_cand_hrobject = cand_hrobject
    IMPORTING
    ps_centraldataperson = pers_data.
    CATCH cx_hrrcf .
    ENDTRY.
    reward points if helpful

  • Can i resume a Time Machine backup of an attached external drive (no system, just data) on a different laptop?

    I am trying to find out if I can use a Time Machine (specifically on a 2013 Time Capsule) backup of an external drive (only data, no system) attached to a laptop, and then connect that same external drive to another laptop and resume the backup? Or is the Time Machine backup of an attached external drive a laptop "dependant" backup?
    Additional info: The laptops in question are 15" MacBook Pro and a 17" MacBook Pro from 2011 running OSX 10.9 (Mavericks)

    You are welcome.
    I don't think there is a need to start a new discussion unless you want to.
    You should have more than one backup of each computer. Hard drives do fail. Time Machine can alternate drives or have a Time Machine and a clone.
    The concern arises because i was told that when a wireless Time Machine backup is interrupted the sparsebundle gets sort of "locked" or "damaged", and although the backups can be accessed, no further Time Machine backup is possible. One must that a brand new backup.
    Apple support article. Don't let the title bother you. Look at Additional Information, which explains what happens when a backup gets interrupted. I also am including a link for troubleshooting. C3 explains what you can try if the backup is interrupted.
    Time Machine First Backup Interrupted
    Time Machine Troubleshooting

  • [SOLVED] After resume from suspend to RAM, system is slow / unstable

    Hello,
    I have come across some strangeness when trying to suspend my system.  The
    computer is a lenovo U350.  I have read a lot of threads on these subjects,
    but I never found one that quite matched the experiences I'm having, so I felt
    compelled to make a new post.
    Here's what's going on:  I boot into the terminal, and then run pm-suspend.
    Within a few seconds, the computer goes to sleep, just as I had hoped.  The
    problem is that my computer seems a little groggy when I wake it back up.
    Usually, when running a command like ps aux | less, the screen fills up very
    quickly.  After I resume from sleep, running ps aux | less is noticeably slow.
    It takes a full second (+/- epsilon) to fill the screen.  Other symptoms: if I
    suspend / resume in the terminal, and then start a window manager (KDE), the
    graphics will be slow and choppy, and when I try to exit the window manager, I
    usually end up having to perform the dreaded REISUB after getting stuck on a
    blank screen with a non-blinking cursor in the upper left hand corner.
    Suspend / resume from KDE will result in either the black, non-responsive
    screen as soon as I try to resume, or in the choppy graphics, followed by the
    non-responsive black screen when I log out.
    I looked at the process list before and after, and noticed that when the
    system is first resumed, there are around 50-60 additional kworker processes
    running than when I put it to sleep.  I don't know if this is normal or not.
    Also, hci0 has been killed, and a new hci0 process has taken its place.  The
    same goes for one of the udevd processes.  About 40-50 of the kworker
    processes finish after a few minutes, but this does not change the slowness of
    ps aux | less, nor does it help with my window manager issues.
    I ran a few (not so precise) performance tests before and after doing a
    suspend, and got the same results (the test was just to compile some LaTeX,
    which took about 4-5 seconds either way).
    I examined the pm-suspend.log, and everything looked peachy.  All of the
    hooks returned success for the suspend, as well as the resume.  I'm happy to
    post this if needed.  I did not change any of the default settings for
    pm-suspend.
    Anyhow, I've read a lot of threads, and seen a lot of suggestions, e.g.:
    https://bbs.archlinux.org/viewtopic.php?id=137682
    https://bbs.archlinux.org/viewtopic.php?id=136292 (use vbetool?)
    https://bbs.archlinux.org/viewtopic.php?id=126174 (suspend tons of modules?)
    https://bbs.archlinux.org/viewtopic.php?id=131827 (hpet=disable ?)
    However, I'm not that confident in any of them, since no one had quite the
    same issue.  I was hoping that someone could point me in the right direction
    before I start blindly walking through all the candidate fixes and risk
    unleashing chaos into my system.  Many thanks in advance for your help.
    Oh, and in case this post was not yet long enough, here is some system
    information:
    lspci:
    00:00.0 Host bridge: Intel Corporation Mobile 4 Series Chipset Memory Controller Hub (rev 07)
    00:02.0 VGA compatible controller: Intel Corporation Mobile 4 Series Chipset Integrated Graphics Controller (rev 07)
    00:02.1 Display controller: Intel Corporation Mobile 4 Series Chipset Integrated Graphics Controller (rev 07)
    00:1a.0 USB controller: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #4 (rev 03)
    00:1a.1 USB controller: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #5 (rev 03)
    00:1a.2 USB controller: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #6 (rev 03)
    00:1a.7 USB controller: Intel Corporation 82801I (ICH9 Family) USB2 EHCI Controller #2 (rev 03)
    00:1b.0 Audio device: Intel Corporation 82801I (ICH9 Family) HD Audio Controller (rev 03)
    00:1c.0 PCI bridge: Intel Corporation 82801I (ICH9 Family) PCI Express Port 1 (rev 03)
    00:1c.1 PCI bridge: Intel Corporation 82801I (ICH9 Family) PCI Express Port 2 (rev 03)
    00:1c.2 PCI bridge: Intel Corporation 82801I (ICH9 Family) PCI Express Port 3 (rev 03)
    00:1c.3 PCI bridge: Intel Corporation 82801I (ICH9 Family) PCI Express Port 4 (rev 03)
    00:1c.4 PCI bridge: Intel Corporation 82801I (ICH9 Family) PCI Express Port 5 (rev 03)
    00:1c.5 PCI bridge: Intel Corporation 82801I (ICH9 Family) PCI Express Port 6 (rev 03)
    00:1d.0 USB controller: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #1 (rev 03)
    00:1d.1 USB controller: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #2 (rev 03)
    00:1d.2 USB controller: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #3 (rev 03)
    00:1d.7 USB controller: Intel Corporation 82801I (ICH9 Family) USB2 EHCI Controller #1 (rev 03)
    00:1e.0 PCI bridge: Intel Corporation 82801 Mobile PCI Bridge (rev 93)
    00:1f.0 ISA bridge: Intel Corporation ICH9M-E LPC Interface Controller (rev 03)
    00:1f.2 SATA controller: Intel Corporation 82801IBM/IEM (ICH9M/ICH9M-E) 4 port SATA Controller [AHCI mode] (rev 03)
    00:1f.3 SMBus: Intel Corporation 82801I (ICH9 Family) SMBus Controller (rev 03)
    03:00.0 Network controller: Intel Corporation PRO/Wireless 5100 AGN [Shiloh] Network Connection
    08:00.0 Ethernet controller: Broadcom Corporation NetLink BCM57780 Gigabit Ethernet PCIe (rev 01)
    lsmod:
    Module Size Used by
    aes_x86_64 7508 3
    cryptd 8309 0
    aes_generic 26138 1 aes_x86_64
    coretemp 5590 0
    cpufreq_ondemand 6164 2
    acpi_cpufreq 5877 1
    mperf 1275 1 acpi_cpufreq
    freq_table 2515 2 acpi_cpufreq,cpufreq_ondemand
    arc4 1410 2
    joydev 9895 0
    snd_hda_codec_hdmi 24121 1
    iwlwifi 248196 0
    i915 420018 3
    snd_hda_codec_conexant 47300 1
    uvcvideo 64311 0
    mac80211 228527 1 iwlwifi
    videodev 82101 1 uvcvideo
    snd_hda_intel 23375 0
    snd_hda_codec 89389 3 snd_hda_intel,snd_hda_codec_conexant,snd_hda_codec_hdmi
    broadcom 7270 0
    tg3 134884 0
    ideapad_laptop 8534 0
    snd_hwdep 6389 1 snd_hda_codec
    snd_pcm 74780 3 snd_hda_codec,snd_hda_intel,snd_hda_codec_hdmi
    snd_page_alloc 7153 2 snd_pcm,snd_hda_intel
    snd_timer 19544 1 snd_pcm
    snd 59214 7 snd_timer,snd_pcm,snd_hwdep,snd_hda_codec,snd_hda_intel,snd_hda_codec_conexant,snd_hda_codec_hdmi
    iTCO_wdt 11885 0
    v4l2_compat_ioctl32 8316 1 videodev
    i2c_i801 8187 0
    i2c_algo_bit 5263 1 i915
    drm_kms_helper 26137 1 i915
    intel_agp 10904 1 i915
    btusb 11385 0
    cfg80211 172260 2 mac80211,iwlwifi
    bluetooth 151999 1 btusb
    sparse_keymap 3120 1 ideapad_laptop
    soundcore 6210 1 snd
    drm 188499 4 drm_kms_helper,i915
    rfkill 15498 3 bluetooth,cfg80211,ideapad_laptop
    serio_raw 4429 0
    iTCO_vendor_support 1961 1 iTCO_wdt
    media 10597 2 videodev,uvcvideo
    psmouse 61311 0
    libphy 16985 2 tg3,broadcom
    i2c_core 20492 6 drm,drm_kms_helper,i2c_algo_bit,i2c_i801,videodev,i915
    intel_gtt 14519 3 intel_agp,i915
    pcspkr 1819 0
    evdev 9530 8
    thermal 7799 0
    wmi 8475 0
    battery 6453 0
    ac 2344 0
    video 11164 1 i915
    button 4470 1 i915
    processor 25582 3 acpi_cpufreq
    ext4 420412 3
    crc16 1359 2 ext4,bluetooth
    jbd2 71499 1 ext4
    mbcache 5881 1 ext4
    sd_mod 28307 5
    ahci 20037 4
    libahci 19559 1 ahci
    libata 166654 2 libahci,ahci
    scsi_mod 133676 2 libata,sd_mod
    uhci_hcd 23116 0
    ehci_hcd 40698 0
    usbcore 146113 5 ehci_hcd,uhci_hcd,btusb,uvcvideo
    usb_common 954 1 usbcore
    Last edited by wes (2012-04-06 21:34:43)

    I did try reinstalling, actually.  But I did not think to remove the battery and the ram...  I'm very curious now: what is the rationale / intuition for that?  Or is it just that empirical evidence suggests this may be a good idea?
    Anyhow, the reinstall by itself did not help.  I tried it out with a pretty bare-bones setup and had the same results.  Here are a few other things I noticed:
    - After the suspend, one of the cores is always running at the maximum clock frequency, according to powertop (although, according to ps aux, no one is doing any work).
    - Even if I ssh to a nearby machine, I get the same experience when running `ls`.  The screen fills very slowly.  That narrows things down a little bit, but I was already guessing it would be graphics-related.
    I have also tried a few random kernel boot parameters after reading things online, but none of those worked, and several stopped the machine from booting at all.
    Thanks for your help.

  • Invoice attachment to R/3 system

    Hi ,
    I have created an invoice without reference to a PO  in SRM 7.0.
    I performed the following steps.
    1. from role Invoicing --> Overview --> Invoice processing --> Created documents --> Invoice create an
    invoice.
    2. In the notes and attachment tab add an attachment ( a word doc
    e.g. "test.doc" )
    3. Make sure invoice is in approved state.
    4. in BBP_PD transaction in SRM ABAP system check the attachment.
    5. Go to Tracking tab and get the Back end document number.
    6. Go to FB03 transaction in R/3 system and enter the document and
    Company code to view the document
    7.In document overview , go to attachment list and try to locate the
    attachment.
    8. Attachment was missing.
    how can i transfer this attachment in back end R/3 system?
    Regards,
    Ashish Shah

    This feature is not possible,
    Got the following response from SAP:
    Unfortunately, I can not provide a solution for you. Once the invoices
    are transferred from SRM to Backend via IDOC funcionality it is not
    possible to use this to transfer attached files.
    This is the standard system design.
    Regards,
    Ashish Shah

  • Candidate Data transfer from E-Recruiting System to HR system for New Hiring.

    Hi All,
    Hope everyone doing in good Spirit.
    We are implementing E-Recruiting as Standalone for one of our client.
    Can any please help me in regards with Data transfer from E-Rec System to HR System for hiring once the candidate has been successfully completed recruiting process.
    You inputs are highly appreciable.
    Thank you.
    Sekhar.

    Hello Sekhar,
    there are three different scenarios for transferring the data of an external candidate to the HR core for hiring.
    the easiest and most commonly used is the RFC connection. When creating an activity of category data transfer the data of the candidate is transferred from eRec to HR core. There it is stored in table T752F. Then you can run transaction PA48. There you can select the candidate and run a hiring action. This is the same action like in PA40 only the system will preset the fields with the values from eRec (similar to batch input).
    Instead of using the RFC solution you can transfer the data using PI (this can be activated using a switch in T77S0). To be honest none of my customers is using this. Either they had no PI server at all or they did not use it for eRec
    The third was delivered with a business function HCM_HIRE_INT_CI_1. This is based on HCM processes and forms and targeted towards customers using Talent Management Core (e.g. data for education and work experience is transferred into the TM Core infotypes 740X as contrary to the hr core standard infotypes 0022 and 0023 they are structured like the eRec ones). Of course as you can do a lot of customer enhancements to HCMP&F you can replace the behavior nearly completely. One or two of my clients discussed this solution but as far as I know none is actually using it.
    The simple truth is most customers seem to not use any integration at all. The first solution is easy to activate but only covers around 13 fields. Compared to a real full blow hiring action this is not even 10% of the fields which have to be entered. So the presetting this small number of fields is not a great help especially as you have to check every information anyways. Furthermore PA48 is not very nice and lacks functions to structure the incoming records which makes it difficult to handle in large distributed organizations.
    The other two options require a lot of infrastructure for small functionality. What we discussed with a client was using the new hire integration to preset a full hiring form with eRec data and then send to the candidate as offline form to gather all missing information and use this for hiring. But there were to many issues on data privacy aspects when sending a form with social security data, bank account data, etc. via email. Furthermore they required actual signatures.
    Kind regards
    Roman  

  • Can we Pause and Resume Copy/Paste in Mac Systems ?

    Hello,
    We all know that we can pause and resume copy/pase function in windows system using various tools, so my concern is, can we do the same in Mac systems????

    Ahhh you mean something like tera copy that is available for windows system....??
    Well i dont thing so there is any application that offers pause and resume a copy process on mac, however looking for a solution I found an application that actually provides similar functionality and a few more features for mac copying process.
    The tools name is turbo copy pro and you can find it here: http://www.turbocopypro.com/
    But unfortunately, as for all the mac applications, this one is a paid tool. I had a trial run with this application and it seemed to work fine.

  • Integration of HR Masterdata with the third party Recruitment system

    Hi folks,
    I was doing some analysis regarding the process of integrating the HR Masterdata with the thrid party recuritment system. One of the process is exporting all the new hire data coming from the third party soffware( the entire hiring process will happen in this sytem)  into the HR Masterdata.
    From SPRO documentation I found there are two ways one is Inbound IDOC and the other is through interface. Since we do not have EDI service, we have to with interface, however it should not be an automated process. Because, the person getting hired has to have the intial procedure completed before hiring process occus and his data is entered into HR Masterdata. Hence the data coming from the interface file has to be processed manually
    How to configure this process in HR? The version we are using is 4.6C How can this be done?
    Any thoughts or ideas or leads would be really helpful.
    Thanks in advance,
    SK

    Hello Sk,
    i think the integration between SAP Recruitment and SAP Administration would be a bit more complicated as it is supplied from the SAP Recruitment tables which you probably would have to fill.
    As promised I had a look to t752f. Run the following code to add lines into the table. After the values were inserted you can run PA48 without any other configuration. You will see an new line which you can select and than choose the Hire button. The system will guide you through the hiring screens and set the Name fields as default values.
    REPORT  zrwe_fill.
    CALL FUNCTION 'HR_PREPARE_NEW_EE'
      EXPORTING
        lastname       = 'Test_Lastname'
        firstname      = 'Test_Firstname'.
    The function module us part of the standard HR component and offers many fields to preset in T752F. If you supply an existing EmployeeId the PA48 transaction will suggest you to do an organizational change when you choose the "hire" button. If you do not fill the value the system sets a dummy Id and suggests a hiring.
    The function module is RFC enabled so if you can call an RFC from your external recruitment application you can fill the T752f table. If that works and you need additional fields just copy the module and add whatever you want.
    Rgds.
    Roman

  • Attaching drawings in project system

    H friends,
    I would like to know the steps involved in project system to attach a drawing with activity.
    The drawing size would be around 2 MB and any user who checks that activity against any WBS should be able to open and review the drawing.
    Regards
    Srini

    Hi Srini,
    In PS, you can create assignments to documents in the Document Management System, or you can create new documents. In the Project Builder, you can assign documents either in the document overview or by dragging and dropping from the template area.
    As of Release 4.6C, you can assign documents to your project on the Internet (service CNW4).
    If you use this functionality, the following activities are performed in a single step:
    1.A document master record is created
    2.This master record is linked to the object in question (WBS element, network activity)
    3.The document is checked in to the Knowledge Provider (KPRO)
    Regards
    Tushar

  • OfficeJet 8500 Printer attached to Windows XP system via USB prints partial pages

    I have an OfficeJet 8500 printer stationed at the desk of one of my users and is attached to her Windows XP system with a USB cable.  The printer has started to print partial pages and will not complete a full page of text or images, color or black and white.
    I have attempted to reset the printer by removing power from the printer via the power cord, and holding # and 6 while turning the printer on (after reconnecting the power cord, of course).  The alignment process took place after this procedure, but it has not resolved the issue.
    I have not yet upgraded the firmware from what was installed at the factory.
    What might I do?  What am I missing?  Do I need to upgrade the installed driver on the system?  Is the printer able to be salvaged?  It doesn't appear to be hardware, as the portions which print are perfect; I just don't get the entire page.
    Thanks in advance,
    Rob

    The USB to parrallel cable will work just find if you don't mind plugging in the laptop to the printer when required. If you want to modify Win XP to be able to print to an AppleTalk printer follow the instructions below.
    "To install AppleTalk protocol to Windows XP
    Required files: (Get them from any system running Windows 2000 Professional or Server)
    netatlk.inf, sfmatalk.sys, sfmmon.dll, sfmatmsg.dll, sfmwshat.dll, sfmpsprt.dll
    If they can not be found you need to unhide hidden and system files.
    Copy the files to their respective places:
    C:WINDOWS(WINNT)\INF\netatlk.inf
    C:WINDOWS(WINNT)\SYSTEM32\DRIVERS\sfmatalk.sys
    C:WINDOWS(WINNT)\SYSTEM32\sfmatmsg.dll
    C:WINDOWS(WINNT)\SYSTEM32\sfmmon.dll
    C:WINDOWS(WINNT)\SYSTEM32\sfmwshat.dll
    C:WINDOWS(WINNT)\SYSTEM32\SPOOL\PRTPROCS\W32X86\sfmpsprt.dll
    AppleTalk Protocol should now be available under the list of Protocols you can add in Network Connections - Local Area Connections Properties
    This is only good using AppleTalk printers attached to the network. The AppleTalk printer will show up, if it's turned on, under Add Printer-Local printer attached to this computer - create a new port - AppleTalk Printing devices.
    For more info see: http://www.microsoft.com/resources/documentation/windows/xp/all/proddocs/en-us/s agadd_appletalkport.mspx (you do not need to capture the port for the printer to work)
    If you can not get access to these files, make your email address visable in your user profile and I will send them to you."

  • I need to attach help to my system ???

    dear all,
    we need to attach a help to our system,
    do u have any suggestions or ways or any third party programs to achieve this.
    we have many moudules i want to put a menu item called help and when click on it the specified help for the current module appear.
    any help ???
    thank you all . . .

    How call a contextual html page from Forms
    with Ctrl+Shift+F1 you can display current item help topic
    with Ctrl+Shift+F2 you can display current block help topic
    with Ctrl+Shift+F3 you can display current tab canvas help topic
    with Ctrl+Shift+F4 you can display current form help topic
    the PL/SQL library function:----------------------------
    PROCEDURE Affiche_aide
    PN$Scope in PLS_INTEGER
    IS
    LC$Form Varchar2(80) := Lower( Name_in( 'system.current_form' ) );
    LC$Block Varchar2(60) := Lower( Name_in( 'system.cursor_block' ) );
    LC$Item Varchar2(60) := Lower( Name_in( 'system.cursor_item' ) );
    LC$TabCan Varchar2(60) ;
    LC$Path Varchar2(128) ;
    LC$Cmd Varchar2(128) ;
    BEGIN
    LC$Path := 'file://D:/Forms9i/tools/web90/html/' ;
    LC$TabCan := GET_ITEM_PROPERTY(LC$Item , ITEM_TAB_PAGE ) ;
    LC$Item := Replace( LC$Item, '.', '_' ) ;
    -- Constitution de l'url d'appel --
    LC$Cmd := LC$Path || LC$Form || '.htm' ; -- nom de l'écran
    If PN$Scope = 1 Then
    LC$Cmd := LC$Cmd || '#' || LC$Item ; -- signet item
    End if ;
    If PN$Scope = 2 Then
    LC$Cmd := LC$Cmd || '#' || LC$Block ; -- signet bloc
    End if ;
    If PN$Scope = 3 Then
    LC$Cmd := LC$Cmd || '#' || LC$TabCan ; -- signet onglet
    End if ;
    -- Affichage de la page HTML --
    Web.show_document(LC$Cmd, '_blank') ;
    Clear_message ;
    END;
    wich you call form Forms level triggers:----------------------------------------
    trigger KEY-F1 with pl/sql : Affiche_aide(1);
    trigger KEY-F2 with pl/sql : Affiche_aide(2);
    trigger KEY-F3 with : Affiche_aide(3);
    trigger KEY-F4 With : Affiche_aide(4);
    In your html help pages, just put the <block_name>_<item_name> internal link.
    The html page must have the same name than the Forms module
    exemple:
    to jump to the EMP block help topic put the following link in your html page just before this item description:
    <a name="EMP"></a>
    in the form, when user press Ctrl+Shift+F1 the Affiche_aide function issue the Web.Show_Document() with the following url:
    'file://............./form_module_name.htm#EMP'
    to jump to the EMP.EMPNO item help topic put the following link in your html page just before this item description:
    <a name="EMP_EMPNO"></a>
    in the form, when user press Ctrl+Shift+F1 the Affiche_aide function issue the Web.Show_Document() with the following url:
    'file://............./form_module_name.htm#EMP_EMPNO'
    you can read the paper at the following url : http://sheikyerbouti.developpez.com/forms_aide/
    then donwload the provided material
    Hope this help.
    Francois

  • Copying Attachment(s) to Another system

    I would like to be able to transfer Order attachments from SAP to another system. This can be done via FTP or Email.
    Any help would be appreciated!

    hi
    when an order is created, you can configure an output type to send an email, and the order will be mailed, is that what you are looking for
    cheers

Maybe you are looking for

  • Free Good scenario for a standalone CRM

    Hello Experts We are on CRM 7.0. I'm trying to configure Free goods determination in CRM sales order TSA. We have done all the relevant customizing under CRM -> Basic Functions -> Free Goods. Free Goods Procedure: 0NA001 Condition Type: 0NA0 Access S

  • ABAP query for PI

    Hi all, I created a ABAP query for physical inventory report. I used the table ISEG and i got the relevant output like material, diff value, batch,PI doc number. But i cant able to get the difference quantity posted. How to proceed Regards KK

  • IWork Numbers and Documents to Go

    I have a Blackberry and am trying to use a spreadsheet with it. I used to do it with my Palm and HanDBase, it worked great, but it is not compatible with the BB. When I transfer the Numbers file and try to open I get an "Internal Error Has Occurred (

  • Pls help cannot charge.....

    Everytime I connect my iPod to my comp to charge,it said "Please Wait Battery Low" after few mins then the APPLE icon appear for like 5mins,while the APPLE icon appear,I can hear some clicking sound inside iPod. And then it just repeat the low batter

  • InDesign stalls on Folio Builder logout

    InDesign locks up whenever I attempt to log out of Folio Builder. When I select logout it pauses and then the spinning beachball appears. At first I thought it might be an unresponsive server or Internet connection, but I've let it go for several hou