Urgent : Mass Upload of Element Links

Hello,
Can somebody pls suggest how to load Element links when it comes to mass upload?
If the option is API then we would like to know how to pass people group segements as our link criteria is based on that.
Regards,
Gayatri

This might help you
People group is a KFF use this cursor to get the people group Id for you desired value. here we have are using just 2 segments
SELECT people_group_id
INTO v_people_group_id
FROM pay_people_groups
WHERE segment1 = TRIM (x_people_group_segment1)
AND segment2 = TRIM (x_people_group_segment2)
AND segment3 IS NULL;
Pass this people group in the api hr_assignment_api.update_emp_asg_criteria
Hope this helps
Thanks,
Nitin Singh
Edited by: HRMS Consultant on Oct 26, 2009 12:56 PM

Similar Messages

  • BDC for mass-upload on production order confirmation

    Hi ALL
    Is there any standard Program for the mass-upload on production order confirmation for labor and machine hours.
    the T-code to do this is Co12.
    thanks in advance !

    hi,
    You can use standard SAP program RCCLBI03 to do mass upload
    see these link
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/8046aa90-0201-0010-5e99-962948c83331
    thanks
    karthik

  • Mass upload of photo in Archive link

    Hi.
    We have to do a mass-upload of photos in the Archivelink (OAAD).
    Any standard program to do this, or any other clues anyone please?
    Thanks in adv.

    Hi,
    just write a report and combine the function modules:
    SCMS_UPLOAD for uploading from a shared backend path
    SCMS_DOC_CREATE for storage of a binary table in a content repository (the ID of the content repository must be ArchiveLink compliant meaning a two letters ID).
    ARCHIV_CONNECTION_INSERT to write the connection in the ArchiveLink table. Here, you must know your relevant business object (SAP_OBJECT) your doctype (AR_OBJECT) and your OBJECT_ID.
    I assume that you need this for HR so here your SAP_OBJECT is PREL and your AR_OBJECT should be HRICOLFOTO
    Now, you report must loop over the files and execute the upper function modules.
    I hope that helps a bit
    Best regards
    Torsten

  • Mass upload in Jump targets(urgent )

    Hi Experts,
    In creating Jump targets in RSBBS..let me know the option to have a mass upload multiple selection in jumping from one query to another.
    I mean that when we go to another query(receiver) from the result area of the first(sender) how would be the selections in these? also is there any option to have a mass upload to the selections of the receiver query from the first.
    I know that it takes single values when we click on a single row and when we click on the column it takes the entire valus for selections.
    Also how can i view the selection screen of the receiver query.
    Can anyone help me in this regard.
    Regards,
    Rambo.
    Message was edited by: Rambo sawh
    Message was edited by: Rambo sawh

    Hi,
       try the following:
    1. make the variables of receiver as mandatory / ready for input
       based on your query, BW should display the variables of receiver...there you can add if you need more input...
    hope this helps

  • Mass upload of employee photos in OAOH

    Dear all,
    In OAOH transaction, if you type in the business object PREL, and doc type HRICOLFOTO, a small dialog box appear and you type in the employee no.  Afterwards, another window dialog box appear prompting the file name/path....
    I would like to know if there is any method to mass upload thousands of employee photos, since batch input does not work in the file/path selection screen (window's dialog box)
    Thanks a lot for your help !
    patrick

    Hi Patrick,
    Generally it is not suggested to Upload Photograph using Mass Upload.... normally it is one to one ... one perer at a time.
    But if its too urgent and critical then fallow this steps.
    1) Store the Photograph of the Employee as the PERNR.JPG (PERNR = EMPLPYEES PERSONNEL NUMBER) at a predifined location.
    2) Have a text file with all the pernr for whom you want to upload the photo and the JPGs you have in the folder.
    3) Use this Function module with the loop for all the PERNR
    * Function module to update Tran OAAD
    * Create file path (Directory)-(Employee No.).JPG
        CONCATENATE 'dir where the file is stored' wa_pernr-pernr '.' 'jpg' INTO lw_path.
    * Assign Values
        lw_ar_object  = text-002.         "HRICOLFOTO
        lw_object_id  = wa_pernr-pernr.
        lw_sap_object = text-003.         "PREL
        lw_doc_type   = text-004.         "JPG
        CALL FUNCTION 'ARCHIV_CREATE_FILE'
          EXPORTING
            ar_object                     = lw_ar_object
    *   DEL_DATE                      =
            object_id                     = lw_object_id
            sap_object                    = lw_sap_object
            doc_type                      = lw_doc_type
            path                          = lw_path
         EXCEPTIONS
           error_conectiontable          = 1
           error_parameter               = 2
           error_archiv                  = 3
           error_upload                  = 4
           error_kernel                  = 5
           no_entry_possible             = 6
           error_comunicationtable       = 7
           OTHERS                        = 8
        IF sy-subrc <> 0.
          MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                  WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
        ENDIF.
    This will help you to create the Archive link.
    Hope this helps you.
    ~Bhawanidutt

  • Mass Upload of Photos in Portal

    Hi,
    I am trying to do mass upload of JPEG Photos.
    I have tried using User Self Service and that works fine.
    Reqmnt is that administrator needs to upload 100 photos as a bulk for each user.
    I have read the document on help.sap.com and it certainly gave me few insights but if anyone has done this before, i would like to steps on how to go about doing this.
    Regards,
    Dev

    Hi;
    Assign yourself to the role
    pcd:portal_content/com.sap.pct/Collaboration/DemoRole
    After that you will have the Link
    "Collaboration Demo\People Centric"
    This gives you the possibility to make a manual or
    mass upload of user photos.

  • Mass upload through Web Dynpro application possible?

    We want to develop a custom aplication with Web Dynpro ABAP for master data maintenance. About 90 % will be done manually but we also want to have the possibility to do mass uploads (comparable with LSMW's in SAP R3 for win gui transactions: users send us a spreadsheet and we load it for them using a LSMW). I found one option by building Adobe Interactive form offline scenario using xml messages but I don't want to be forced to use Adobe only to enable mass uploads that will only happen in 10 % of the cases.
    I am loking forward to your suggestions!
    kind regards
    Angelique Heutinck

    I got a very useful answer from Thomas Jung (SAP) via a site he did setup with a couple of other SAP experts, also see http://enterprisegeeks.com/blog/2009/03/31/abap-freak-show-april-1st-acf-updownload-in-web-dynpro-abap/comment-page-1/
    My question:
    I think this new UI element ACFUpDownload cannot be used to do mass uploads/updates of data that need to be stored in SAP tables?
    Answer Thomas:
    This UI element is just about the transfer of data from the client machine to the server. It has nothing to do with how the data is used or processed after upload. Think of it as the equal to the CL_GUI_FRONTEND_SERVICES class and methods GUI_UPLOAD and GUI_DOWNLOAD.
    My question:
    Is there a tool like LSMW, CATT, eCATT that we can use for recording webenabled transactions (applications developed in Web Dynpro ABAP)?
    Answer Thomas:
    You shouldnu2019t need a tool like LSMW, CATT, eCATT that is tied to the user interface. With WDA you should be using MVC to design your application. This is part of the reason for MVC so that you have a clear separation of the model - business logic. You should always have a reusable class that can be called to input and create data with the same validations without going through the user interface. This is the process that SAP is following as we create new WDA screens. We use the enterprise services and their implementation classes as the Model for the WD Components. This ensures that you always have a clear API to use to mass import data.
    Although we wouldnu2019t recommend doing any kind of mass data load via the user interface any longer - eCATT will be supported for automated testing of Web Dynpro ABAP applications as of NetWeaver 7.0 Enhancement Package 2.

  • Mass upload & Download of PDFs in Web Dynpro ABAP

    Hi All,
    Is it possible to download multiple PDF's at one go ? for example if you have a Table UI control where each row has one clickable link that generates a PDF using WebDynpro ABAP Application, we want to enable multiselect property of Table UI and provide Mass Download Button control on click of which all selected rows should generate PDF and then get dowloaded to a specific location on machine (c:/). or if there is any other alternative possible ?similarly for Mass Upload we wish to multi select PDFs and upload them to R/3 at one go ?
    please let me know if such thing is possible ? if yes is it a good option to have ? as we have users who have to upload these PDF one by one and they wish if they could simply select all PDFs at one go and click Mass upload..Note that there are some validation that we perform once we upload PDF before posting PDF data to backend.
    your help & comments would be Highly Appreciated !!
    Thanks
    Asif

    >
    Maged Ishak wrote:
    > Hi Thomas,
    >
    > could you give me an example how can i download multiple objects without multiple prompts with the class CL_ABAP_ZIP. I use a Web Dynpro for ABAP and I have for Example many word file and i want to download all file in one ZIP-File.
    > thanks in advance
    > mishak
    You simply use the CL_ABAP_ZIP class to combine the multiple binary strings of the word files together.
      data izip type ref to cl_abap_zip.
      data zip_xstring type xstring.
      create object izip.
      loop at ifiles assigning <Wa_file>.
      izip->add( name = <wa_file>-filename
                  content = <wa_file>-filecontent ).
      endloop.
      zip_xstring = izip->save( ).

  • Mass upload of picture in MM01

    Hi,
    I have nearly 2000 pictures to be uploaded for 2000 material numbers.
    Is there any tool for mass upload of images in MM01 "Services for Objects" as attachments.
    I know we can do it DMS, but i specifically need it in MM01.
    Pls advice.
    Thanks,
    Jagan

    Hi,
    please check the note 530792.
    Only documents linked to MARA can be displayed in the material master.     
    Please go also through the SAP Customizing Implementation Guide       
    -> Cross-Application Components            
    -> Document Management                    
      -> Control Data                          
       -> Maintain Screen for Object Link      
    Regards,
    Edit

  • Mass upload of contents in KM using WEBDAV

    hi all,
    plz do help me out with mass upload of contents in KM using WEBDAV .
    its urgent

    hi shailesh,
    1.If you want to transfer documents to KM,go to the folder "/documents",open its Detail dialog box.
    2.Go to Settings->Properties.Click on 'Access Links' tab.
    3.Copy the WebDAV url and paste it in your browser.Open your KM Folder as a Web Folder after authentication for your credentials is done.
    4.Copy the folders from your file system to the server just as you would copy folders in Windows File System.
    Also transfering of contents using WebDav only transfers the content,metadata is lost in the process
    Hope it helps,
    Srinath

  • Mass upload of data into Custom table

    Hello all,
                I made search in SDN and could not find the best solution to my problem and hence posting .
               What is the best way for Mass upload of data into Custom database table ?
               I think LSMW would not be a viable option as it would take longer time .
               Locking of the table also needs to be taken care.
               PLease let me know if you have a alternative to this and the best way to do this .
    Comradely,
    K.Sibi

    Hi Sibi,
    See Lock objects are required when we enter the data through screen level, or multiple users should not enter the data at same time.
    Create one Lock object in SE11, It automatically creates FM.
    DEQUEUE_EYTEST2                Release lock on object EYTEST2
    ENQUEUE_EYTEST2                Request lock for object EYTEST2
    Call these FM in your program.
    EX: Refer this links
    1 http://help.sap.com/saphelp_nw70/helpdata/en/41/7af4c8a79e11d1950f0000e82de14a/content.htm
    2 http://wiki.sdn.sap.com/wiki/display/Snippets/lockingandunlockingofthe+tables
    Rgds
    Aeda

  • Mass upload  of APEX end users

    Hi All,
    I wonder if I can do a mass upload of APEX end users? If so, can you please describe the process?
    Thanks

    These links might get you started in the right direction:
    Re: Create Multiple Developer logins with htmldb_util.create_user
    HTMLDB_UTIL.create_user_from_file did not create users
    Scott

  • Mass upload for employee photos (IT0002)

    Hi I would like to do a mass upload of employee pics to R/3 . I have tried the FM, ARCHIV_CREATE_FILE and it was uploaded successfully but I'm unable to specify the infotype. which for my case I would need it to be in IT0002.
    I've tried the BDC program
    https://www.sdn.sap.com/irj/sdn/wiki?path=/display/erphcm/add%2bemployee%2bphoto%2bon%2binfotype%2b0002
    But the pics are still not appearing.
    Anyone has this issue befofe?

    yes. I have tried to upload it manually and it is working. But when I run the program it doesn't work. Could it be the path that I need to specify? Because the client uses IXOS software(links with the 4.6c) to upload the pics and doc. I'm not sure is this the reason it is not working.

  • Mass Upload Photo Employee

    Hi experts!
    We have an excel with this information:
    -Photo file path
    -PERNR
    Example:
    PATH                   PERN
    C:\TEMP\1.JPG    00101800
    C:\TEMP\2.JPG    00101801
    We need mass upload to ArchiveLink every employee photo.
    I've found the report OA_UPLOAD_AND_LINK but I do not know how associated the file path image to the employee PERNR.
    How we should do that?
    Any Idea?
    Kind Regards,
    Julian.

    Hi Julian,
    Please follow:
    Table (TOAOM) SAP Archive Link - Meta table for links u2013 indicates the content repository that will be utilized for particular object and document type.
    Table CREP u2013 List of content repositories 
    Prerequisites:
    1.     PERNR and infotype must have valid entries. Say custom info type is IT9007
    2.     Image file name should be represented as concatenation of PERNR and infotype number.jpg [example 900000019007.jpg where  90000001 u2013 pernr  9007 u2013 infotype]
      STEP 1
    Firstly go to transaction code   CG3Z.
    Transferring images from presentation server to Application server. The same can be done by asking the BASIS team to transfer all the required image file names to application server.
      STEP 2
    Browse the location for the source file which is to be uploaded.
    Browse the location (directory) for the target File where the image has to be stored in sap.
    Click on Upload button to upload the image.
      STEP 3:
    To check whether the file has been uploaded or not uploaded, navigate to transaction code Al11 (tcode).
    Select your directory and check whether the file is successfully uploaded in required directory.
      STEP 4:
    Now navigate to transaction code SE38 (tcode) and execute the standard program OA_UPLOAD_AND_LINK.
    Values are entered in the screen: with PREL as business object and HRICOLFOTO as document type for color documents.
    Mention the file path where you are storing all the images to be uploaded for mass migration.
    OUTPUT:
    The output will provide the list of files accepted for uploading
      STEP 5:
    Now navigate to transaction OAAD (tcode) to link/assign the documents to PERNR
      STEP 6:
    Click Technical search and then click execute button.
      STEP 7:
    Enter Personnel number and info type. Click on Enter button.
    Select your record and click on display button.
    The screen is displayed.
      STEP 8:
    Click on Reassign document button. Click on Enter.
    OUTPUT: Storage parameters are updated after reassigning the document
    Use recording for Steps 6 to 8 u2013 for mass upload of images providing the input PERNR and Info type number to input parameter SAPOBJECTID on selection screen.  
      Verification:
    Navigate to transaction code PA30 (tcode). To check the image id uploaded or not for particular personnel number. Click on Display button.
    OUTPUT: Image on right top has been uploaded.
    I hope to have helped you.
    Thanks,
    Padmaja.

  • Mass Upload of Routes

    Hi
    I have a need to upload about 13000 routes (Route Determination) in the Shipping Menu.
    This is a two level activity to enter the source and destination country and then on a second level enter the route to be used.
    There is no transaction code for this it seems, only menu path via spro.
    Does anyone have a solution to do a mass upload?
    Thanks
    Lee

    hi,
    U can use LSMW for the uploading---->use batch input RECORDING method for uploading
    follow this link which gives the procedure for LSWM with snap shots. This ppt will give u both menthod
    1.BAtch input recording
    2.batch/INPUT METHOD
    <a href="http://www.slideshare.net/arun_bala1/sap-sd-lsmw-legacy-system-migration-workbench">LSMW</a>
    regards,
    Arun prasad
    Message was edited by:
            arun prasad
    Message was edited by:
            arun prasad

Maybe you are looking for

  • Deciding Column name in UPDATE statement at runtime?

    Hi, Assuming there are 5 columns COLUMN1 through COLUMN5 in TABLE1 In any Update Statement, say: UPDATE TABLE1 SET COLUMN1='Hi' WHERE COLUMN2='Hello'; Can we decide the COLUMN to bet set at runtime depending on some literal value? Here in this case,

  • Dropped Ipad, red discoloration, won't fix by slapping

    I dropped my iPad 1 and now there is a red discoloration on the screen. I had previously seen in an article on Apple Support that you can fix it by slapping the back of the iPad. I have tried that for over a day and it won't go back to normal.

  • Insert to User Defined Table

    Guys.. How can i insert my data to my user defined table (Master Document), i have write code: Set oUserTable = oCompany.UserTables.Item("TR_MD_FAKPAJAK") oUserTable.Code = "1" oUserTable.Name = "TORO" oUserTable.UserFields("U_field1").Value = "toro"

  • Store and retreive image/bitmapdata to/from local storage in iOS-app

    I'm trying to store and retreive cam-captured bitmapdata to the local app-space, but after a whole day of searching and trying I can't find any working example. It's no problem capturing cam-bitmapdata, but how to store (and retreive). Thanks!

  • NS Internal Inconsistency Exception Error when downloading from OS 10.6.8 to OX Yosimite

    I am getting this when I am upgrading from 10.6.8 to OS X Yosemite I am receiving the NS Internal Inconsistency Exception Error. Screen shot below.. What do I have to do.. I have checked all the requirements before upgrading..  How can this be fixed?