How to delimit records using FM HR_INFOTYPE_OPERATION  ( in background )

Hi all,
Has anyone used HR_INFOTYPE_OPERATION with OPERATION = 'LIS9' to delimit a record? I keep on getting 'A complex application error has occurred' error message. When I go into dialog mode = '2', the FM will go into the Overview Screen and I realized that the Delimit Date on the top right of the screen is not what I specify as the new record's ENDDA but the original record's ENDDA. Also I have to manually click on Delimit icon on the top left of the screen before it gets delimited.
Question:
How do I pass in the delimited date to HR_INFOTYPE_OPERATION? I put it in the RECORD-ENDDA field but it doesn't seem to work?
Thanks

rohan,
why dont you use change mode (mod) and just change the default end date to the date you want the record delimited? that is also delimiting.
is this requirement for batch job?

Similar Messages

  • How do you record using a phantom mic.

    How can I record vocals in the GarageBand using the MacBook Pro?
    Thanks.

    Hi there etson!
    I have just the video for you:
    GarageBand '11 - Record your voice
    http://support.apple.com/kb/VI200
    There are other videos in the Related Videos section that may help you enhance your GarageBand experience. We also have an article online that may help you link up your third-party microphone and record from that into GarageBand:
    GarageBand '11: Record sound from a microphone
    http://support.apple.com/kb/PH1893
    Thanks for coming to the Apple Support Communities!
    Regards,
    Braden

  • How to search records using netbeans

    i'm using netbeans.....how to search records from database
    pls help me

    Not at all....i'm familar with java,i stucking in button coding,that is
    how to match with database.
    public String buttonGo_action() throws SQLException {
    // TODO: Process the action. Return value is a navigation
    // case name where null will return to the same page.
    System.out.println("Action******");
    String sname=(String) textsearch.getText();
    sname = "%"+ sname+"%";
    grc_risks_customer_info_tableDataProvider.setCursorRow(grc_risks_customer_info_tableDataProvider.findFirst("NAME",sname));
    //.findFirst("GRC_RISKS_CUSTOMER_INFO_TABLE",sname));
    getSessionBean1().getGrc_risks_customer_info_tableRowSet().setString(1,sname);
    grc_risks_customer_info_tableDataProvider.refresh();
    this coding is not working...that's y...

  • How to collect records using BPM

    Hi All,
    i have a req that i need to collect records in chunks and want collect using BPM want make their single file.
    i have 10 fields in one table for that i have made one datatype ,i want to collect 1lac recods 5 times in BPM and want make a single file and send it to one file.
    please suggest what are the steps are req in BPM to do this.

    Hi Gangadhar,
    Check this links
    http://help.sap.com/saphelp_nw04/helpdata/en/08/16163ff8519a06e10000000a114084/content.htm (for one interface)
    http://help.sap.com/saphelp_nw2004s/helpdata/en/0e/56373f7853494fe10000000a114084/content.htm (for multiple interfaces)
    http://help.sap.com/saphelp_nw2004s/helpdata/en/0e/56373f7853494fe10000000a114084/content.htm
    Regards
    Ramesh

  • How to combine records using function

    Hi, all
    I have an oracle 10g running on a RH linux e3 server.
    I have two tables like this:
    CREATE TABLE "IMMUNODATA"."DEMOGRAPHICS" (
    "SUBJECTID" INTEGER NOT NULL,
    "WORKID" INTEGER,
    "OMRFHISTORYNUMBER" INTEGER,
    "OTHERID" INTEGER,
    "BARCODE" INTEGER,
    "GENDER" VARCHAR2(1),
    "DOB" DATE,
    "RACEAI" INTEGER,
    "RACECAUCASIAN" INTEGER,
    "RACEAA" INTEGER,
    "RACEASIAN" INTEGER,
    "RACEPAC" INTEGER,
    "RACEHIS" INTEGER,
    "RACEOTHER" VARCHAR2(50),
    "SSN" VARCHAR2(11),
    PRIMARY KEY("SUBJECTID") VALIDATE
    CREATE TABLE "IMMUNODATA"."BIOPSY" (
    "ID" INTEGER NOT NULL,
    "THEDATE" DATE ,
    "SUBJECTID" INTEGER NOT NULL,
    "TISSUE" VARCHAR2(50),
    "DATEOFBIOPSY" DATE ,
    "FACILITYWHEREDONE" VARCHAR2(200),
    "RESULT" VARCHAR2(500),
    "BARCODE" INTEGER,
    PRIMARY KEY("ID") VALIDATE,
    FOREIGN KEY("SUBJECTID") REFERENCES "IMMUNODATA"."DEMOGRAPHICS" ("SUBJECTID") VALIDATE
    the result of one selection is like this:
    select subjectid, barcode, tissue, dateofbiopsy from demographics left join biopsy;
    subjectid barcode tissue, dateofbiopsy
    1 500001 lung 2003/1/1
    1 500001 kidney 2005/3/4
    I want to have a view of this
    subjectid barcode biopsy dateofbiopsy
    1 500001 lung,kidney 2003/1/1,2005/3/4
    I created a function like this:
    CREATE OR REPLACE FUNCTION TEST(p_subjectid IN immunodata.biopsy.subjectid%TYPE ) RETURN VARCHAR2 IS
    v_tissue VARCHAR2(100),v_dateofbiopsy DATE;
    BEGIN
    FOR c IN (SELECT tissue, dateofbiopsy FROM immunodata.biopsy WHERE subjectid = p_subjectid)
    LOOP
    IF v_tissue IS NULL and v_dateofbiopsy IS NULL THEN
    v_tissue := c.tissue;
    v_dateofbiopsy :=c.dateofbiopsy;
    ELSE
    v_tissue := v_tissue||','||c.tissue;
    v_dateofbiopsy :=v_dateodbiopsy||','||c.dateofbiopsy;
    END IF;
    END LOOP;
    RETURN v_tissue,v_dateofbiopsy;
    END;
    The error says:
    Warning: Function created with compilation errors.
    SQL> show errors
    Errors for FUNCTION TEST:
    LINE/COL ERROR
    2/23 PLS-00103: Encountered the symbol "," when expecting one of the
    following:
    := ; not null default character
    The symbol "; was inserted before "," to continue.
    14/16 PLS-00103: Encountered the symbol "," when expecting one of the
    following:
    . ( * @ % & = - + ; < / > at in is mod remainder not rem
    <an exponent (**)> <> or != or ~= >= <= <> and or like
    between || multiset member SUBMULTISET_
    The symbol ". was inserted before "," to continue.
    So could I combine multiple fields in one function?
    Thanks!
    Qian

    Also, in addition to Warren's response, the "RETURN" keyword should be followed by a single VARCHAR2 value (or a NULL):
    test@ORA10G>
    test@ORA10G> create or replace function my_function (s varchar2) return varchar2 is
      2    v_str1 varchar2(100);
      3    v_str2 varchar2(100);
      4  begin
      5    v_str1 := '*'||s||'*';
      6    v_str2 := '~'||s||'~';
      7    return v_str1,v_str2;
      8  end;
      9  /
    Warning: Function created with compilation errors.
    test@ORA10G>
    test@ORA10G> show err
    Errors for FUNCTION MY_FUNCTION:
    LINE/COL ERROR
    7/16     PLS-00103: Encountered the symbol "," when expecting one of the
             following:
             . ( * @ % & = - + ; < / > at in is mod remainder not rem
             <an exponent (**)> <> or != or ~= >= <= <> and or like LIKE2_
             LIKE4_ LIKEC_ between || multiset member SUBMULTISET_
             The symbol ". was inserted before "," to continue.
    test@ORA10G>
    test@ORA10G> -- the following, for example, works
    test@ORA10G> create or replace function my_function (s varchar2) return varchar2 is
      2    v_str1 varchar2(100);
      3    v_str2 varchar2(100);
      4  begin
      5    v_str1 := '*'||s||'*';
      6    v_str2 := '~'||s||'~';
      7    return v_str1||v_str2;
      8  end;
      9  /
    Function created.
    test@ORA10G>
    test@ORA10G> select my_function('xxx') from dual;
    MY_FUNCTION('XXX')
    *xxx*~xxx~
    test@ORA10G>Search this site for "pivot/pivoting/string aggregation" and you'll get a lot of examples of what you intend to do using direct sql.
    pratz
    Rephrased a bit to make the response politically correct... ;)
    Message was edited by:
    pratz

  • How to combine records using SQL?

    If I have the following data:
    Table A
    order_no company_code
    O001 C001
    Table B
    order_no po_no
    O001 P001
    O001 P002
    O001 P003
    Now, I want to combine the data as:
    View A
    order_no company_code po_no
    O001 C001 P001, P002, P003
    If can it be realized using SQL?
    Thanks and Best Regards,
    Su Qian

    Hi Su Qian,
    To get the result like this you should write a function and call that in the select query.
    The function could be like this:
    CREATE OR REPLACE FUNCTION TEST(p_order_no IN B.order_no%TYPE ) RETURN VARCHAR2 IS
    v_po_no VARCHAR2(100);
    BEGIN
    FOR c IN (SELECT po_no FROM B WHERE order_no = p_order_no)
    LOOP
    IF v_po_no IS NULL THEN
    v_po_no := c.po_no;
    ELSE
    v_po_no := v_po_no||','||c.po_no;
    END IF;
    END LOOP;
    RETURN v_po_no;
    END;
    Now you issue the query like this:
    select order_no, company_code, test(order_no) po_no from a;
    This will return you what you want.
    Hope this will help you.
    Best Regards,
    Ramesh Rathi.
    OCP - DBA.
    Zensar Tech Ltd.
    [email protected]
    If I have the following data:
    Table A
    order_no company_code
    O001 C001
    Table B
    order_no po_no
    O001 P001
    O001 P002
    O001 P003
    Now, I want to combine the data as:
    View A
    order_no company_code po_no
    O001 C001 P001, P002, P003
    If can it be realized using SQL?
    Thanks and Best Regards,
    Su Qian

  • How can i record using my windows soundcard

    everything is fine harware wise i just cant simply record? the yellow indicator does not come up no matter what

    Not quite sure we know what you mean by the "yellow indicator"? Is this something in Audition or in Windows?
    Also see the Audition Help file:
    Adobe Audition Help | Connecting to audio hardware

  • PA40 recording using ECATT TCD

    Hi,
    i'm new to ecatt.recently we are using ecatt in my project.My requirement is upload the logon details in sap using ecatt.They want logon details like username and password.How we record logon screen.
             one more requirement is upload the employee info using PA40 t.code.They want employee extension ,conversion,hiring,separation.
    pls any one help on this.How i will record using PA40.Any one help on this with screen shots.
    Advanced thanks
    Ravi
    Edited by: Matt on Feb 17, 2009 11:58 AM - subject modified

    Hello,
    Logon to eCATT system , enter transaction SECATT in command field and press enter key, in the test script text box enter the script name with which you want to create the script and once your enter inside the script you have to decide which driver to use to record the transaction.
    Say TCD , then in Pattern function select TCD REC and in popup enter transaction code and maintain target system where you want to record the transaction .
    Once the connection is established to target system then carry out the process with ur required transaction just as how you used to do manually.
    Once recording is complete then save and parameterize all input values and execute the script again with new set of values.
    Thanks and Best regards
    Ajay

  • I was trying to make a new screen recording using quicktimeplay, but when I watched the video after recording it all I could hear was me talking while the video was showing on the screen. How do I turn off that recording and turn the right one on? thanks

    I was trying to make a new screen recording using quicktimeplay, but when I watched the video after recording it all I could hear was me talking while the video was showing on the screen. How do I turn off that recording and turn the right one on? thanks

    Hi j2399123,
    It sounds like your screen recording is doing what it was designed to do, capture what is happening on your screen, with optional voice over with the microphone.
    Screen recording is for recording what you see on the screen, it is not a "video capture" option, like for capturing a movie with sound that is playing on your screen.
    For the QuickTime recording options, check out "Recording with QuickTime Player" in
    Mac Basics: QuickTime Player creates, plays, edits, and shares video and audio files
    http://support.apple.com/kb/ht4024
    And for screen recording specifically, there's
    QuickTime Player 10.x: Record your computer’s screen
    http://support.apple.com/kb/PH5882
    Thank you for thinking of Apple Support Communities for your support needs.
    Nubz

  • How to get multiple records using fn-bea:execute-sql()

    Hi,
    I created Proxy service(ALSB3.0) to get records from DB table. I have used Xquery function(fn-bea:execute-sql()). Using simple SQL query I got single record, but my table having multiple records. Please suggest how to get multiple records using fn-bea:execute-sql() and how to assign them in ALSB variable.
    Regards,
    Nagaraju
    Edited by: user10373980 on Sep 29, 2008 6:11 AM

    Hi,
    Am facing the same issue stated above that I couldnt get all the records in the table that am querying in the Proxyservice.
    For example:
    fn-bea:execute-sql('EsbDataSource', 'student', 'select Name from StudentList' ) is the query that am using to fetch the records from the table called StudentList which contains more than one records like
    Id Name
    01 XXX
    02 YYY
    03 ZZZ
    I tried to assign the result of the above query in a variable and while trying to log the variable, I can see the below
    <student>
    <Name>XXX</Name>
    </student>
    I want to have all the records from my table in xml format but it's not coming up. I get the value only from the first row of my table.
    Please suggest.
    regards,
    Venkat

  • How to Delete Multiple Records using selectbox in jsf

    Hi!
    My Senario is I want to delete multiple records using checkbox. After selecting multiple records when i click the delete button the selected
    rows shuld be deleted.if am doing like this but the edit ,delete for each row functionality is not working.
    <h:selectBooleanCheckbox id ="bcb" value="#{item.empno}">
    </h:selectBooleanCheckbox>
    But other functionality is not wokring.
    Can any one plz tell how to select the multiple records and how to send the id to the serverside.
    I want code code for jsp and as well as backingBean how to accaess .
    Any Reply shuld be apreciated

    You may find this article useful as well: http://balusc.blogspot.com/2006/06/using-datatables.html
    Check the chapter "Select multiple rows" for two generic ways to select multiple rows in a datatable.

  • How to detect if a user has changed a record using a custom method?

    I am in the process of developing a test case application using ADF JSF and a collection of Java objects that are not populated by a database.
    Details of what I have developed so far can be found on this post:
    how to create a new record using a custom method?
    Is it possible to detect if a user has changed the value(s) of a record?
    I have set the edit page up (as described in the other post) and this works fine, but how could I tell if the user has changed something on that record. This is what I would like to do, but am not sure how to achieve it or whether it is possible....
    when the user puts a record in edit mode, take a copy of that record
    then when the user presses save or exit to navigate away from the edit page do a comparison between the original values and the potentially changed ones
    then depending on the outcome of the comparison call an appropriate action
    Thanks in advance for your help
    David

    If you just want to know if the value has changed you can put it in a while loop and use shift registers to see if the value has changed.
    Brian
    Attachments:
    Changed.vi ‏22 KB

  • How to create a partner and header record using CRM_ORDER_MAINTAIN?

    Hi any one knows how to create a partner and header record using the function module CRM_ORDER_MAINTAIN??
    I tried to  create a record, but i only managed to create a header record and the partner record is not reflected in the transaction.  Why is that so? is there any indicator that i need to include?
    Thanks..
    Jen

    Hi Jen!
    I use this FM and it works perfectly.
    Use this to create a partner:
      gs_partner-ref_handle    = '0000000001'.
      gs_partner-ref_kind      = 'A'.
      gs_partner-ref_partner_handle = '0001'.
      gs_partner-partner_fct   = '00000001'.
      gs_partner-partner_no    = NO_PARTNER. "number of the partner, bu_partner
      gs_partner-display_type  = 'BP'.
      gs_partner-no_type       = 'BP'.
      gs_partner-kind_of_entry = 'C'.
    *  ls_partner_l-ref_handle    = '1'.
      gs_partner-ref_guid      = '00000000000000000000000000000000'.
      APPEND gs_partner  TO gT_partner .
      ls_input_field-ref_kind  = 'A'.
      ls_input_field-logical_key   = '0001'.
      ls_input_field-objectname  = 'PARTNER'.
      ls_input_field-ref_handle  = '0000000001'.
      ls_input_field_names-fieldname = 'DISPLAY_TYPE'.
      INSERT ls_input_field_names INTO TABLE ls_input_field-field_names.
      ls_input_field_names-fieldname = 'KIND_OF_ENTRY'.
      INSERT ls_input_field_names INTO TABLE ls_input_field-field_names.
      ls_input_field_names-fieldname = 'NO_TYPE'.
      INSERT ls_input_field_names INTO TABLE ls_input_field-field_names.
      ls_input_field_names-fieldname = 'PARTNER_FCT'.
      INSERT ls_input_field_names INTO TABLE ls_input_field-field_names.
      ls_input_field_names-fieldname = 'PARTNER_NO'.
      INSERT ls_input_field_names INTO TABLE ls_input_field-field_names.
      INSERT ls_input_field  INTO TABLE  gt_input_fields.
      clear ls_input_field-field_names[].
      CALL FUNCTION 'CRM_ORDER_MAINTAIN'
      EXPORTING
    *    it_schedlin_i   = gt_schedlin_i_com
        it_partner      = gt_partner
    *    it_sales        = gt_sales
    *      it_orgman       = gt_orgman
    *      it_appointment  = gt_appointment
    *      it_ordprp_i     = gt_ordprp_i
    *   it_product_i    = gt_product_i
    *      it_activity_i   = gt_activity_i
    *      it_pridoc       = gt_pridoc_com
      CHANGING
        ct_orderadm_h   = gt_orderadm_h
    *   ct_orderadm_i   = gt_orderadm_i
        ct_input_fields = gt_input_fields.
    *      ct_doc_flow     = gt_doc_flow
    *      cv_log_handle   = gv_log_handle.
    Hope it helps u,
    Regards,
    Mon.

  • How to select records in ALV using FM

    Hi guys,
    How to select records in ALV using FM. Not the OO method. Thx in advance!
    Kun

    hI
    by using REUSE_ALV_FIELDCATALOUG_MERGE. Iys fill field catalouge table as per internal table description. Then use REUSE_ALV_GRID_DISPLAY for display ALV REPORT.
    **Please reward suitable points***
    With Regards
    Navin Khedikar

  • How to get all records using Invoke-webrequest?/Why Invoke-webrequest returns only first 2000 Records?

    invoke-webrequest content returning only 2000 records though it has around 4000 records in web api.
    The same url if I give in excel oData Data feed I am getting all the records.
    See the below script
    Script:
    $QueryResult= (Invoke-WebRequest -Uri $ODataURI -UseDefaultCredentials)
    [xml]$xmlResult=$QueryResult.content
    foreach($obj in $xmlResult.feed.entry.content.properties)
    $Name=$obj.Name;
    $IsAvail=$obj.isAvail.'#text';
    $PGroup=$obj.PGroup
    I am exporting the above result as a CSV file and my CSV file contains only 2000 records. 
    But,  $xmlResult.feed.Count --> it Shows 4000 Records.
    The same Odata url if I give in excel oData Data feed I am getting all the 4000 records.
    So Please help me how can I get all the records using power shell.
    Thanks
    A Pathfinder..
    JoSwa
    If a post answers your question, please click &quot;Mark As Answer&quot; on that post and &quot;Mark as Helpful&quot;
    Best Online Journal

    Hi Jo Swa(K.P.Elayaraja)-MCP,
    Would you please also post code which is used to export the records?
    In addition, to use the cmdlet invoke-RestMethod to work on ODate feeds, please refer to this article:
    Interacting with TechEd NA 2012 Schedule using PowerShell v3
    I hope this helps.

Maybe you are looking for

  • Store data in R/3 without page refresh

    Dear BSP-Masterminds, we need to store data in R/3 without a recurrent page refresh. The problem is that our engineers are using PDA's and the page refresh is taking too much time. The engineers are changing equipment data on the PDA's. Every time th

  • Can't Download PDF and ZIP Oracle Documentation

    Hi! I love you all at OTN. You are doing a great job, enlightening us about Oracle technologies. Well done. I experienced a problem while trying to download the Oracle documentation files in pdf format. All the download management software I tried to

  • Has anyone had any problems with the latest upgrade for iPad?

    I have an iPad 1 and am being prompted to upgrade to the latest version software. Has anyone had any problems when doing this? Our PC runs on Wndows 7. Having just resolved iTunes not connecting to the store after the recent upgrade, I'm reluctant to

  • Warning while creating settlement rule

    Hi, I have a scenario where user is creating distribution rule using CJIC ( Final settlement rule). Here user is getting a warning message Enter %, equivalence No, or amount. Please note that here even after the % = 100 to FXA, the user is getting th

  • Why is my payment method declined in AppStore?

    Every time I try to purchase from App Store it says my payment method is declined but I have looked and it's fine...