Job Publication doesnt get changed data in Job Posting through workflow.

Job Publication is not picking up the changed data in the Job Posting/Requisition through workflow.
When I am changing the data in Job Posting and release it manually the changed data gets reflected in Job Publication but if I am releasing the Job Posting trough WF(automatically) then the Publication doesnt pick up the data.The workflows are working fine in the system still the problem exists.
Thanks in advance for the reply.

1-Log in portal with user id and pwd.
2-Create a requisition initially.
3-Create and release the Job posting(manually)
4-Create and release the Job Publication(manually).
5.Try editing the previous Job Posting and save it bu dont release the Job Posting manually.Now come to the personal page,when we again enter the same Job Posting ,the status of the Job Posting is set to "released" automatically by a Workflow.
6.Now if we proceed for the Job Publication and try Displaying it,the edited changes in the Job POsting is not displayed.
But if we have "released" the job posting manually then the changes are reflected in the Publication.
The user wants to use the Workflow scenario and also wants the edited changes to be taken up by the Publication.
Hope the following description helps out !
thanks in advance.

Similar Messages

  • How to get changed data in ALV in Web Dynpro for ABAP

    METHOD on_data_check .
    DATA:
        node_spfli                          TYPE REF TO if_wd_context_node,
        node_sflight                        TYPE REF TO if_wd_context_node,
        itab_sflight2                        TYPE if_display_view=>elements_sflight.
      node_spfli = wd_context->get_child_node( name = if_display_view=>wdctx_spfli ).
      node_sflight = node_spfli->get_child_node( name = if_display_view=>wdctx_sflight ).
      CALL METHOD node_sflight->get_static_attributes_table
        IMPORTING
          table = itab_sflight2.
    this code is ..get all data(changed and not changed)
    but i want get changed data only, not all data.
    how to get changed data?
    Edited by: Ki-Joon Seo on Dec 27, 2007 6:04 AM

    Hi,
    To get only the changed data in the ALV grid of a WD, you need to capture the "ON_DATA_CHECK" of the ALV grid.
    To this please do the following in the ALV initialization of the ALV table settings :
        lr_table_settings->set_data_check(
                IF_SALV_WD_C_TABLE_SETTINGS=>DATA_CHECK_ON_CELL_EVENT ).
    You may also do this:
        lr_table_settings->set_data_check(            IF_SALV_WD_C_TABLE_SETTINGS=>DATA_CHECK_ON_CHECK_EVENT)
    The above two ways would depend on when do you need to check for the changed data. If you want to check the data as soon as it is entered, then use the first method. Else, use the second method.
    You need to register an EVENT HANDLER for this event.(You may do this in your VIEW or Component Controller).
    In this Event handler, you would find an importing parameter R_PARAM which is a ref type of      IF_SALV_WD_TABLE_DATA_CHECK.
    The attribute T_MODIFIED_CELLS of this interface IF_SALV_WD_TABLE_DATA_CHECK will contain the modified cells of the ALV with the old & new values.

  • How to get change date in Production Order ?

    Dear Friends,
    I want to know it, how to get change date in Production Order "Administration-TAB".
    F1-Help, It is displayed with "Change date for Order Master". and Structure table "CAUFVD".
    But, CAUFVD is not Transp. Table.
    Which table should I read ?
    Thanks in advance
    Yamazaki-H

    Dear Friend
    Thank you for an answer.
    It was settled.
    Best regards.

  • How to get changed data in SAP HR !

    Hi Gurus,
       I got a new project of HR and now I am  stuck at one place. Please help me where I can find out the change history of HR master records.I have done all my research and I found CDHDR / CDPOS which didn't maintained these data.I got PCL4 table which is HR cluster table but it also didn't show me the changed data. Is there any specific table / report where I can get old and new records or so.
    Each reply is appreciated.
    Thanks,
    Digamber

    Check program RPUAUD00 .
    Change pointers log data only on selected infotypes in order not to overload system. PCL4 is also selective in this respect but I am not sure about that, so you need to look for futher info in this regard.
    Regards
    Marcin

  • Getting changed data back from editable ALV...

    Hello Gurus,
    I am working on ALV using standard ALV function module REUSE_ALV_GRID_DISPLAY. Now, To make the fields editale, I am using flag EDIT = 'X' in field catalog. This working fine.
    Now, when the data is changed in ALV grid and user clicks on SAVE button that I have programmed in i_callback_usercommand, how can I get the changed data back from editable ALV so that I can change data in custom table ?
    Please help.
    Regards,
    Rajesh.

    I see that the method CHECK_CHANGED_DATA is used. I am also doing it as follows. But how do I get the changed data back in table. There are no table parameters in
    CALL METHOD REF_GRID->CHECK_CHANGED_DATA .
    DATA: REF_GRID TYPE REF TO CL_GUI_ALV_GRID.
    IF REF_GRID IS INITIAL.
    CALL FUNCTION 'GET_GLOBALS_FROM_SLVC_FULLSCR'
    IMPORTING
    E_GRID = REF_GRID.
    ENDIF.
    IF NOT REF_GRID IS INITIAL.
    CALL METHOD REF_GRID->CHECK_CHANGED_DATA .
    ENDIF.
    Please guide

  • Get change date of purchnage requesition item

    Dear All,
    I am using CDPOS and CDHDR tables to track the approval change date.
    CDPOS returns the  same change no for any chnages in same fields at diffrent dates.
    When i pass same change to CDHDR , Iam getting same date for all purch Req.
    Please help me to get Purch Req appproval date.

    hi!
      Have u created the change document properly and is the changes getting logged in the table or not.........
    in transaction SCDO you need to create a change object and according to that...
    check the change document in table from where the date if coming in its further characteristics of that table where the date is there.so that changes are logged for that date.
    and then where you are changing u need to call the function module name generated in scdo transaction in your program after the changed make to logg the changes and then chek in cpos and cdhdr tables and use them to use changes.
    example is....
    wa-yh1316_name   = 'Fff
    wa-yh1316_age = '16'.
    INSERT into ztest01 values wa.
    IF sy-subrc = 0.
    objectid = 'yh1316_name'.
          CALL FUNCTION 'Z_TABLE_WRITE_DOCUMENT'
            EXPORTING
              objectid                      = OBJECTID
              tcode                         = 'SE38'
              utime                         = SY-UZEIT
              udate                         = SY-DATUM
              username                      = 'SAPDEV02'
    *         PLANNED_CHANGE_NUMBER         = ' '
             OBJECT_CHANGE_INDICATOR       = 'I'
    *         PLANNED_OR_REAL_CHANGES       = ' '
    *         NO_CHANGE_POINTERS            = ' '
             UPD_ICDTXT_Z_TABLE            = 'I'
              n_ztest01                     = WA
              o_ztest01                     = WA
             UPD_ZTEST01                   = 'I'
            tables
              icdtxt_z_table                = ICDTXT_Z_TABLE
    ENDIF.

  • Changing data in 'hidden' fields through BSP

    Hi all,
    We are using custom copy of hap_document BSP and in there i am trying to change values in the appraisal document using application->doc. I am able to change the values for the fields that are displayed in the layout in the application->doc-t_body_cell_notes, but not able to change the values for hidden fields(that have 'H' in application->doc-t_body_cells-cell_note_availability).
    Is it impossible to change data for hidden fields?
    Please let me know if anyone of you had ever done something like this earlier.
    Thanks,
    manasa

    Thanks Raja.
    In the HAP_DOCUMENT there is a cell for employee comments. Now i am hiding the cell in the BSP and when user clicks on a dropdown i am changing the value in the cell say from ABC to XYZ programatically. The document is being updated with the XYZ value when the cell is either in change/display mode but not in hidden mode. in hidden mode, When i change the value to XYZ and save the cell gets empty and doesnt have the previous value ABC also.
    I am changing the value in the cell using below code:
       READ TABLE application->doc-t_body_cell_notes INTO s_cell_notes
         WITH KEY column_iid = '0001' row_iid = '0002'.
       IF sy-subrc = 0.
         s_cell_notes-tdline = 'XYZ'.
       ENDIF.
       MODIFY application->doc-t_body_cell_notes
          INDEX sy-tabix  FROM s_cell_notes
          TRANSPORTING tdline.
       ENDIF.
    ENDIF.
    if you have any questions please let me know. I am assmuing that you have worked on the BSP HAP_DOCUMENT.
    Thanks again,
    manasa

  • Job Container - Copy template - Execution date in Job container

    Hi Friends,
    For the SEPA Payment method B, inorder to plan the Job, I have created a job container in FKJOXTR.
    Executed on Date and Due date in FPY1 should be DateId.
    In my container, for the Copy template I have used 25.02.2014/B0001 -- In FPY1, I have set the parameters in such away, DateId as 25.02.2014, Executed Date as 25.02.2014 and Duedate as 25.02.2014.
    The Job executed on 26.02.2014 from the Job container. But in the Paymnet Run the parameters were in such a way, DateId as 26.02.2014, Executed Date as 25.02.2014 and Duedate as 26.02.2014.
    The Problem is executed date was copied from the template instead of taking DateID whihc is wrong. Please help me.
    Regards,
    Lakshmi.

    Customized using event 1741

  • Tableview - get changed data event???

    Hello all,
    I have defined a popup with a tableview inside. Table is getting populated and has the folowing structure:
    FLAG - checkbox - editable
    DESCRIPTION - char50 - noneditable
    DATE - date - noneditable
    Is there a way of defining an event that would get triggered when the user has changed 1 row (clicked on the checkbox)? I need to update the field DATE when that happends.
    I'm not using row selection at all.
    Please let me know of any ideas,
    Thanks
    Alin Moigradeanu.

    Hi Alin,
    When a check box is checked Get_V_XXXX method is triggered. Put below code in Get_V_XXXX so that server round trip would be triggered. And then you can write your code in appropriate method (may be DO_PREPARE_OUTPUT) to set date or else create an event handler method EN_ONROW_SELECTED and set date there.
      CASE iv_property.
      Set the field type
        WHEN if_bsp_wd_model_setter_getter=>fp_fieldtype.
          rv_value = cl_bsp_dlc_view_descriptor=>field_type_checkbox.
        when if_bsp_wd_model_setter_getter=>fp_server_event.
          rv_value = 'ROW_SELECTED'.
      ENDCASE.
    Please let me know if this helps.
    Regards,
    Bhushan

  • ALV - Maybe a NEW problem to get changed data, after input from ALV

    Hi all,
    I have tried to search an existing post to solve this ALV problem, with key words 'ALV' and 'refresh', but I don't find the good one... so sorry if the problem have already been solved.
    <u>An example of the problem and process should be more clear than words :</u>
    1) CALL ALV
    CALL METHOD grid1->set_table_for_first_display
         EXPORTING
                   is_layout        = gs_layout
                   is_variant       = gs_variant "&see below
                   i_save           = x_save     "&see below
                   I_BYPASSING_BUFFER = 'X'
         CHANGING
                   it_outtab        = t_zppegam[]
                   it_fieldcatalog  = GT_field_cat_entete[].
    2) User edit values from cells from ALV.
    For example, insert a new line with '+' button, and <u>fills each cells</u>.
    3) The problem is that at the beginning of the PAI
    there is a blank line into internal table t_zppegam,
    instead of the line with the data filled into cells ALV by user
    3') Internal table t_zppegam have the good data only if user clik on the button refresh of ALV, before go throw PAI.
    Have any suggestions? Thank you for your help.
    Best Regards,
    Tony.

    Hi all,
    I have just solved my problem...
    I have found this one into SE38 / BCALV_GRID_EDIT fifth program.
    data: l_valid(1) type c.
    call method grid1->check_changed_data importing e_valid = l_valid.
    Tony

  • What is the best way to get/change data in R/3 from external interface?

    Hi SAP gurus,
    I have a problem to know what is the best technology to access and maintenance all SAP functionality and data too in R/3 systems.
    Anyone know if connectors (.NET or JCO) are the only solution to manipulate all SAP system data or exist other way?
    One thing more, what is the best connector, with more functionality?
    E.g. The screen painter was made in C++ and is executed by user event in R/3 system, so would like to know if it's exist any way to do the same but replace the screen painter to another custom application?
    Regards

    Hello Vitor
    Not all functions and data are externally accessible. Only those business objects (e.g. like sales order, customer, material) for which BAPIs are available (transaction BAPI ) can be accessed via RFC.
    Regards,
        Uwe

  • How to get Report Data of bigger Memory through BI PublicReportService

    Hi all,
    I am trying to get a BI Report which contains large chunks of data , more than 15 MB of data through a Composite .
    I have created a Composite and using /xmlpserver/services/PublicReportService?wsdl">https://<hostname>/xmlpserver/services/PublicReportService?wsdl (https://) 's runReport operation to invoke the data.
    I have set the value of sizeOfDataChunkDownload as -1 in the input XML.
    When I try to invoke the PublicReport Web Service, I am getting errors like timeout exception , outof Memory Error.
    Kindly suggest me if its possible to get such huge report and whether this is the right operation and right way to get the report.
    And also if there is any alternative method to get large chunks of report.
    Thanks

    Go to Report properties -> Formatting -> FO Processing -> Enable scalable feature of XSLT processor -> YES
    If your server has multiple processors then use "Enable multithreading" to YES
    Restart BI application and test
    regards
    Jorge
    ps. If this answers your question then please mark this answer as "Correct" or else "Helpful"

  • Changing data captured via ME52N through BADI - ME_REQ_POSTED not working!

    Hi All,
    I am trying to change the 'Release Date' value everytime some data is changed on a purchase requisition via transaction ME52N.  I am using BADI 'ME_REQ_POSTED' via my own implementation of interface method 'IF_EX_ME_REQ_POSTED~POSTED'.
    Everything works and I can access all the data that I need except the fact that the standard variables with item data (i.e. 'IM_EBAN') cannot be changed and so I am forced to rather change table EBAN directly by using a 'MODIFY' statement after processing the data within the BAdi method.
    However when I check table EBAN via se16 I find that the field that I want to change (i.e. EBAN-FRGDT) does not change at all even though the transaction states that the document has been saved successfully and my BADI implementation has been executed in full.
    Therefore how can I ensure that the field is updated via this BADI or via a direct update within the BAdi implementation?
    Thanks.

    Hi,
    I have solved this one.
    Thanks.

  • Bapi or bdc to upload data in infotype 0267 through workflow

    Hi All,
    I have designed a workflow for infotype 0267 in which after
    the final approval of the offcycle amount the record gets unlocked.
    For this purpose in I had used a bdc to unlock the record.
    The bdc is working fine if I test the object in SW01, but in the workflow it dosen't work the workflow remains in process.
    I would like to know if at all bdc can be used in workflows, or there is an alternative to it like using BAPI.
    Thanks and regards
    Shraddha

    Mike Pokraka wrote:>
    > Hi Shradda,
    >
    > Unfortunately I don't know this offhand, have you tried to find it?
    You can also ask in [the forum dedicated to questions about HCM (HR)|SAP ERP Human Capital Management (SAP ERP HCM); - where I am sure you'll find more expertise in this area - because you are not really struggling with a workflow problem, it's plain ABAP.

  • Incoming invoice not get posted through workflow

    Hi Experts,
    I am working on workflows for incoming invoice used by bus2081. i am facing the problem when the user clicks on post button after verifying the invoice the workitem not posted .and is it showing debit and credit miss match . while posting it with out workflow the document was posted with out error even debit credit miss match
    please give me the solution to overcome from this problem .
    Thanks
    Sreenath

    Hi,
    It seems to be authorisation issue.
    Compare the invoice values which user is able to approve and not.
    Maybe he doesn't have enough authorisation limit to post those invoices.
    Ask him to do it from SBWP backend inbox.
    If it is not going from his inbox means, check the SU53 t code after he clicks on post button.
    Then see in SU53 whether any authorisation is missing.
    It's not a workflow issue. If there is an issue in workflow means, he should not be able to post any invoices.
    Cheers,
    Raja.D

Maybe you are looking for