Update action type(massn) of employee in PA0000

hi abapers
i want to change action type(massn) of employee(pernr)
i have two parameter in my selection screen. one is employee number (pernr) and second is action type(massn). i want that once i enter employee number and action type. it will get updated in PA0000 infotype.
i am using FM 'HR_MAINTAIN_MASTERDATA'.
thanks
Sachin

Doing an SU53 on the screen will show you what Authorization is missing on your Profile.
However, I might add that an Action doesn't end in Infotype 0000. More often than not it is followed by changes to other infotypes via Dynamic Actions/Infogroup etc. I would rather delete the action & create a new action, instead of changing it.
~Suresh

Similar Messages

  • Updating action type field in infotype 0000.

    Hi experts,
    I have to update the action type(MASSN)field and reason for action(MASSG)field in infotype 0000 for the existing record. I am trying to use function module HR_INFOTYPE_OPERATION to update it,but i am not able to update the action type field.Below is the code.Can anybody please give me a solution for this.
    DATA:ls_p0000 type p0000.
    DATA : RETURN like BAPIRETURN1.
    DATA : KEY like BAPIPAKEY.
    DATA : RETURNE like BAPIRETURN1 .
    DATA :NOCOMMIT like BAPI_STAND-NO_COMMIT.
    PARAMETERS:is_pernr type pernr.
    ls_P0000-SUBTY = 'IG'.
    ls_P0000-PERNR = IS_pernr.
    ls_P0000-BEGDA = '20100101'.
    ls_P0000-ENDDA = '99991231'.
    ls_P0000-MASSN = 'IG'.        "action type
    ls_P0000-MASSG = '01'  .      "reason for action
    CALL FUNCTION 'BAPI_EMPLOYEE_ENQUEUE'
    EXPORTING
    NUMBER = IS_PERNR
    IMPORTING
    RETURN = RETURNE.
    CALL FUNCTION 'HR_INFOTYPE_OPERATION'
    EXPORTING
    INFTY = '0000'
    NUMBER = ls_P0000-PERNR
    SUBTYPE =   ls_P0000-SUBTY
    OBJECTID = ls_P0000-OBJPS
    LOCKINDICATOR = ls_P0000-SPRPS
    VALIDITYEND = ls_P0000-ENDDA
    VALIDITYBEGIN = ls_P0000-BEGDA
    RECORDNUMBER = ls_P0000-SEQNR
    RECORD = ls_P0000
    OPERATION = 'INS'
    TCLAS = 'A'
    DIALOG_MODE = '0'
    NOCOMMIT = NOCOMMIT
    IMPORTING
    RETURN = RETURN
    KEY = KEY.
    CALL FUNCTION 'BAPI_EMPLOYEE_DEQUEUE'
    EXPORTING
    NUMBER = IS_PERNR
    Thanks in advance.

    operation "INS" is for insertion,check the FM documentation for value to be passed to operation parameter for change.
    I think its "MOD"
    Edited by: abapuser on Sep 15, 2010 2:02 PM

  • Update Date types based on actions

    Hi Gurus,
    I have a requirement to update date types within a date profile based on a certain action condition.
    I have 3 date types:
    Downtime Start
    Downtime End
    Total Downtime Duration
    The priorities in my transaction have, x, y, z for example and x is default.
    Upon selecting y, the system should take into consideration the timestamp of this change and update the Downtime Start... The moment the priority is changed to anything other than "y", it should take this timestamp and update "downtime end".
    The difference between these two times would be the third date type.
    Any ideas how to proceed?
    Regards,
    Ash

    Hi
    Please post DDL+DML next time :-)
    -- This is the DDL! create the database structure
    create table DateRange(
    StartDate DATE,
    FinishDate DATE,
    Condition BIT
    GO
    create table Calendar(
    CalendarDate DATE,
    IsParental BIT
    GO
    -- This is the DML (insert some sample data)
    insert DateRange
    values
    ('2014-01-02', '2014-01-03', 1),
    ('2014-01-03', '2014-01-13', 0),
    ('2014-01-13', '2014-01-14', 1)
    GO
    insert Calendar(CalendarDate)
    values
    ('2014-01-01'),
    ('2014-01-02'),
    ('2014-01-03'),
    ('2014-01-04'),
    ('2014-01-05'),
    ('2014-01-06'),
    ('2014-01-07'),
    ('2014-01-08'),
    ('2014-01-09'),
    ('2014-01-10')
    select * from DateRange
    select * from Calendar
    GO
    -- This is the solution
    select CalendarDate
    from Calendar C
    where EXISTS (
    select C.CalendarDate
    FROM DateRange D
    where C.CalendarDate between D.StartDate and D.FinishDate and D.Condition = 1
    UPDATE Calendar
    SET IsParental = 1
    from Calendar C
    where EXISTS (
    select C.CalendarDate
    FROM DateRange D
    where C.CalendarDate between D.StartDate and D.FinishDate and D.Condition = 1
    [Personal Site] [Blog] [Facebook]

  • Default Action type when hire internal employee

    Dear all,
    How to set Default Action type when hire internal employee?
    Thanks,

    Hi,
    May be that. When i transfer applicant that is hired internal, the action type is default Reentry into company. So how to change this?
    Edited by: Quang Le Vinh on Nov 7, 2009 2:54 AM

  • Dynamic action for 5 years employees

    Hi all,
    I have configured  infotype 0019 under subtype for Date monitoring.I am getting Starting date in this Sub type dynamically.But client is expecting  the date is , after adding 5 years to the joining date of the employee.So how can i give condition for this 19 infotype.is it possible for infotype 19 other wise 40 let me know.

    Hi,
    You could use this sample code:
    0000     06     800           ** START - CREATE 0019 +5 years **
    0000     06     805     P     PSPAR-MASSN='INSERT Hiring action type'
    0000     06     810     I     INS,0019,XX (XX 0019 SUBTYPE)
    0000     06     815     W     P0019-TERMN=P0000-BEGDA
    0000     06     820     W     P0019-VTRAN='5'
    0000     06     825     W     P0019-VTRZH='013'
    0000     06     830     W     P0019-VTROP='+',
    0000     06     835          ** END - CREATE 0019 +5 years **
    This should allow you to do it without writing a program.
    Regards,
    Ash

  • How to retrieve the action type of a PA40 action?

    Hi there,
    I am trying to find out the way to identify what was the action type for the personnel action that is just being executed. I will try to explain myself with a concrete example.
    Let's take the hiring action.
    A user goes to PA40 and initiates the action to hire a new employee. The program will then start guiding the user through the different infotypes defined within the infogroup.
    Let's say that the order is IT0001, IT0002, IT0006, ...
    I have setup table T779X to call a Function Module of my own after inserting IT0006. At that point in time I can know that the IT has been modified through transaction PA40 (sy-tcode) but, how can I know what action is being executed?
    Thanks

    Jim,
    Actions can always be found afterwards in IT000 indeed
    My problem is that I need to know what action type was initiated in REAL TIME. When I am debugging the batch for IT0006, after the user initiated an action through PA40
    Thanks for the answer anyway

  • Insert or change the employee status (pa0000-stat1) using HR_MAINTAIN_MAST

    hi abapers
    i am using HR_MAINTAIN_MASTERDATA to insert or modify employee status (pa0000-stat1).
    IN HR_MAINTAIN_MASTERDATA there is return statement in import. and i am giving BAPIRETURN1 and BAPIRETURN2 and pass data(employee status to be changed) to proposed_values table
    when i check return IS iNITIAL or not. return is coming initial. what does it mean??
    actually i am new in HR module. plz help
    thanks
    Sachin

    hi Napsterr
    yes i am getting '000'.
    when i am giving incorrect data , some error is coming.
    what does it mean?
    employee status is not yet inserted or modified.
    here is my code. please tell me where i am missing.
    REPORT  ZTEST_STATUSUPDATE2.
    Parameter p_pernr like pa0000-pernr.
    Parameter p_stat1 like pa0000-stat1.
    DATA: OPERATION     LIKE PSPAR-ACTIO,
            RETURN1        LIKE BAPIRETURN1,
            RETURN        LIKE BAPIRETURN,
            VALIDITYBEGIN LIKE P0001-BEGDA,
            ILINES        LIKE SY-TABIX.
      DATA: VALUES        LIKE PPROP OCCURS 10 WITH HEADER LINE,
            IP0000        LIKE P0000 OCCURS  1 WITH HEADER LINE.
        CALL FUNCTION 'HR_READ_INFOTYPE'
          EXPORTING
            PERNR     = p_pernr
            INFTY     = '0000'
            BEGDA     = SY-DATUM
            ENDDA     = SY-DATUM
          TABLES
            INFTY_TAB = IP0000.
          DESCRIBE TABLE IP0000 LINES ILINES.
          IF ILINES EQ 0.
            OPERATION     = 'INS'.
            VALIDITYBEGIN = SY-DATUM.
          ELSE.
            READ TABLE IP0000 INDEX 1.
            VALIDITYBEGIN = IP0000-BEGDA.
            OPERATION     = 'MOD'.
          ENDIF.
          VALUES-INFTY = '0000'.
          VALUES-FNAME = 'P0000-stat1'.
          VALUES-FVAL  = p_stat1.
          APPEND VALUES.
          CALL FUNCTION 'HR_MAINTAIN_MASTERDATA'
            EXPORTING
              PERNR           = p_pernr
              ACTIO           = OPERATION
              BEGDA           = VALIDITYBEGIN
              ENDDA           = '99991231'
              SUBTY           = SPACE
              NO_ENQUEUE      = SPACE
              NO_EXISTENCE_CHECK       = 'X'
            IMPORTING
               RETURN        = RETURN
              RETURN1         = RETURN1
            TABLES
              PROPOSED_VALUES = VALUES
            MODIFIED_KEYS   =
            EXCEPTIONS
              OTHERS          = 1.
          IF ( return-type EQ 'E' OR return1-type EQ 'E').
          MESSAGE 'error' type 'E'.
           ELSEIF  RETURN is INITIAL.
            MESSAGE 'initial value' type 'I'.
          ELSE.
            MESSAGE ID     RETURN1-ID
                    TYPE   'S'
                    NUMBER RETURN1-NUMBER
                    WITH   RETURN1-MESSAGE_V1 RETURN-MESSAGE_V2
                           RETURN1-MESSAGE_V3 RETURN-MESSAGE_V4.
    endif.
    thanks
    Sachin

  • How to set Lov item property (Action type,event,parameter etc) in PR when page load

    Hi gurus
    I am new to OAF, First I need to explain my scenerio.
    I need to make some field mandatory or non mandatory based on one LOV item (Pick list or message choice list).
    for this i extended the controler and apply the changes, but in this case what heppen, It will effect only when i open the list (pop list) and click on more (Available in poplist) and it will open a new form and i select value from that form. But when I open the poplist and select the value from the same list rather going to more option (it does not open new form), then there are no effect. I though the issue with refreshing when selecting value from the same list.
    To resolving this issue what i did
    1. go to page == > the same LOV
    2. Change the Client Action properties (
         Action type  = fireAction
         event          = xxevent
        submit = true.
    After doing this when i run the page from my OAF enviroement , every thing is OK. Then I transfer the Controler to Server machine and change the controller and run the same page from the server, it has the same refreshing issue, Then I thought because I did not transfer LOV such properties so this is hepening,
    Now I want to initilize such properties in Page load or what I need to do, Please advise me.
    Regards,
    Haq

    Edward,
    Thank you for the suggestion! It directly lead to my solution wherein I used CASE statements for the column in my Region SELECT such as the following:
    WHEN (:P2_GRADING_METHOD = 'CR/NC' OR scs.scs_pass_audit = 'P') AND GET_GRADE_B93 (sac.stc_final_grade, sac.stc_verified_grade) IS NULL THEN htmldb_item.select_list_from_lov (5, 'Enter Grade', 'GRADE_LOV_CRNC','onBlur="return validate_grade(this,''FW_DATE_'||ROWNUM||''')"','NO',NULL,NULL,'GRADE_'||ROWNUM)
    When the column is NULL, the Select List (LOV) contains the entry 'Enter Grade' and that is the value displayed on page load. I bypass the value 'Enter Grade' during Submit Processing where database updating occurs.
    I did not find the need to enter values for p_null_value and p_null_text since I don't believe that it would cause the 'Enter Grade' value to display on page load for null value columns but rather would enable the user to select 'Enter Grade' from the list and have a specified return value stored in htmldb_item array.
    Again, thank you for the help!

  • UPDATE BLOB type with J2SE (JDBC ORACLE outbound adapter)

    Hi all,
    I'm trying update row into Oracle table with column type BLOB via XI 3.0, but it doesn't work.
    Does anyone send me some sample of correct XML file, with update column type BLOB ?
    Thanks
    My test XML document :
    ?xml version="1.0" encoding="UTF-8"?>
    <root>
    <StatementName1>
    <SAPXI_OUTPUT action="UPDATE">
    <access>
                <DGPODPIS >sdcfo2JTiXE=</DGPODPIS>
    </access>
    <key1>
                <SAPO_ID>1001</SAPO_ID>
    </key1>
    </SAPXI_OUTPUT>
    </StatementName1>
    </root>

    Hi !
    I have make some test's today. I copy the adapter from our productive system P15 SP3 to the developers D15 SP6. Then we take the same message and send this from sap p42 to sap xi d15 sp5 to the adapter d15 (copy from p15 sp3) to the same Oracle database and it's working.
    SAP P42 - Orders - XI D15 SP6 - Orders - Adapter D15 (copy from P15SP3) = it's working Record > ca. 800
    I think we have a problem in the patch sp5.
    We found also some different size in the adapter files.
    This are the jar- files with different size:
    SAPAdapterService.exe
    adapter.properties
    aii_msg_adapter.jar
    aii_msg_runtime.jar
    aii_rfcadapter.jar
    aii_util_grmg.jar
    aii_util_misc.jar
    aii_util_rb.jar
    inqmyxml.jar
    lcrclient.jar
    logging.jar
    I make tomorow, a test with a adapter sp4.
    Regards Thomas Neuhaus

  • Action type problem

    Hi All,
    I Have written a program to delimit the most recent record of PA0000 and creating a new record by giving the Personnel.no , action type and date in selection screen.
    It is delimiting and creating a new record in PA0000 perfectly.
    But if i see in PA30 by selecting 0000 ActionsType in display mode i can able to see the newly created record,but i am not able see the new record in overview tab.
    hope my question is understood, otherwise please feel free if u have any doubts about my question.
    as this is urgent to me, please give me a reply .
    Thanks,
    JKR.

    Hi,
    Please activate additional actions.
    GO to :IMG>Personnal Mngt>Personnel Admin>Customise procedures>Actions-->Set up Personnal actions -->Activation 'Additional Actions'
    Remove Test and click on execute.
    then check with the overview in pa30 for actions infotype 0000
    Regards,
    Pranitha

  • How to stop Add or Update  action  using  StatusBar  message ?

    Hi all ,
        I want to add validation using StatusbarMessage  and validation will be stop Add/Update Action .I have use
           1) B1Connections.theAppl.SetStatusBarMessage("Please select Product Type ! ", BoMessageTime.bmt_Medium, true);
           2) B1Connections.theAppl.StatusBar.SetText("Please select Product Type ! ", BoMessageTime.bmt_Medium, BoStatusBarMessageType.smt_Error);
           3) B1Connections.theAppl.StatusBar.CreateProgressBar("Please specify the SKU ! ", 0, true);
           all  process are show error message but Add/Update Action successfully . i want to stop add or update  action  .please help any one  how it is possible  using statusbar message?
    thanks & regards
       Surajit

    Hi,
    You Can set BubbleEvent=false
    Try This.....
    If pVal.FormType = "65211" And pVal.ItemUID = "1" And pVal.EventType = SAPbouiCOM.BoEventTypes.et_ITEM_PRESSED And pVal.BeforeAction = True Then
                Try
                    Dim oedit As SAPbouiCOM.EditText
                    oform = sbo_application.Forms.GetFormByTypeAndCount(pVal.FormType, pVal.FormTypeCount)
                    oedit = oform.Items.Item("12").Specific
                    If oedit.Value = "" Then
                        sbo_application.MessageBox("Field Should Not Be Blank")
                        BubbleEvent = False
                        Exit Try
                    End If
                Catch ex As Exception
                    sbo_application.MessageBox(ex.Message)
                End Try
            End If
    Thanks
    Shafi

  • [svn:fx-trunk] 5099: Update action script files with asdoc version tags.

    Revision: 5099
    Author: [email protected]
    Date: 2009-02-26 19:43:02 -0800 (Thu, 26 Feb 2009)
    Log Message:
    Update action script files with asdoc version tags.
    QE Notes: None.
    Doc Notes: Please review and update as necessary.
    tests: checkintests
    Modified Paths:
    flex/sdk/trunk/frameworks/projects/framework_textLayout/src/mx/core/UITLFTextField.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/messaging/AbstractConsumer.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/messaging/AbstractMessageStore.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/messaging/AbstractProducer.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/messaging/Channel.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/messaging/ChannelSet.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/messaging/Consumer.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/messaging/ConsumerMessageDispatcher.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/messaging/FlexClient.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/messaging/MessageAgent.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/messaging/MessageResponder.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/messaging/MultiTopicConsumer.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/messaging/MultiTopicProducer.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/messaging/Producer.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/messaging/SubscriptionInfo.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/messaging/channels/AMFChannel.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/messaging/channels/DirectHTTPChannel.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/messaging/channels/HTTPChannel.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/messaging/channels/NetConnectionChannel.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/messaging/channels/PollingChannel.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/messaging/channels/SecureAMFChannel.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/messaging/channels/SecureHTTPChannel.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/messaging/channels/SecureStreamingAMFChanne l.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/messaging/channels/SecureStreamingHTTPChann el.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/messaging/channels/StreamingAMFChannel.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/messaging/channels/StreamingConnectionHandl er.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/messaging/channels/StreamingHTTPChannel.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/messaging/channels/amfx/AMFXContext.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/messaging/config/ConfigMap.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/messaging/config/ServerConfig.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/messaging/errors/ChannelError.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/messaging/errors/InvalidChannelError.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/messaging/errors/InvalidDestinationError.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/messaging/errors/MessageSerializationError. as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/messaging/errors/MessagingError.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/messaging/errors/NoChannelAvailableError.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/messaging/events/ChannelEvent.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/messaging/events/ChannelFaultEvent.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/messaging/events/MessageAckEvent.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/messaging/events/MessageEvent.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/messaging/events/MessageFaultEvent.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/messaging/events/MessagePersisterEvent.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/messaging/management/Attribute.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/messaging/management/MBeanAttributeInfo.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/messaging/management/MBeanConstructorInfo.a s
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/messaging/management/MBeanFeatureInfo.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/messaging/management/MBeanInfo.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/messaging/management/MBeanOperationInfo.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/messaging/management/MBeanParameterInfo.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/messaging/management/ObjectInstance.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/messaging/management/ObjectName.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/messaging/messages/AbstractMessage.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/messaging/messages/AcknowledgeMessage.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/messaging/messages/AcknowledgeMessageExt.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/messaging/messages/AsyncMessage.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/messaging/messages/AsyncMessageExt.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/messaging/messages/CommandMessage.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/messaging/messages/CommandMessageExt.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/messaging/messages/ErrorMessage.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/messaging/messages/HTTPRequestMessage.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/messaging/messages/IMessage.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/messaging/messages/ISmallMessage.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/messaging/messages/MessagePerformanceInfo.a s
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/messaging/messages/MessagePerformanceUtils. as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/messaging/messages/RemotingMessage.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/messaging/messages/SOAPMessage.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/netmon/NetworkMonitor.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/rpc/AbstractInvoker.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/rpc/AbstractOperation.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/rpc/AbstractService.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/rpc/AsyncRequest.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/rpc/AsyncResponder.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/rpc/AsyncToken.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/rpc/CallResponder.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/rpc/Fault.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/rpc/IResponder.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/rpc/Responder.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/rpc/events/AbstractEvent.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/rpc/events/FaultEvent.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/rpc/events/HeaderEvent.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/rpc/events/InvokeEvent.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/rpc/events/ResultEvent.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/rpc/events/SchemaLoadEvent.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/rpc/events/WSDLLoadEvent.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/rpc/events/XMLLoadEvent.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/rpc/http/AbstractOperation.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/rpc/http/HTTPMultiService.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/rpc/http/HTTPService.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/rpc/http/Operation.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/rpc/http/SerializationFilter.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/rpc/http/mxml/HTTPMultiService.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/rpc/http/mxml/HTTPService.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/rpc/mxml/Concurrency.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/rpc/mxml/IMXMLSupport.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/rpc/remoting/Operation.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/rpc/remoting/RemoteObject.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/rpc/remoting/mxml/Operation.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/rpc/remoting/mxml/RemoteObject.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/rpc/soap/AbstractWebService.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/rpc/soap/ISOAPDecoder.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/rpc/soap/ISOAPEncoder.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/rpc/soap/LoadEvent.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/rpc/soap/Operation.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/rpc/soap/SOAPConstants.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/rpc/soap/SOAPDecoder.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/rpc/soap/SOAPEncoder.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/rpc/soap/SOAPFault.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/rpc/soap/SOAPHeader.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/rpc/soap/WebService.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/rpc/soap/mxml/Operation.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/rpc/soap/mxml/WebService.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/rpc/soap/types/DataSetType.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/rpc/soap/types/SOAPArrayType.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/rpc/wsdl/WSDL.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/rpc/wsdl/WSDLBinding.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/rpc/wsdl/WSDLConstants.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/rpc/wsdl/WSDLEncoding.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/rpc/wsdl/WSDLLoader.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/rpc/wsdl/WSDLMessage.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/rpc/wsdl/WSDLMessagePart.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/rpc/wsdl/WSDLOperation.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/rpc/wsdl/WSDLPort.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/rpc/wsdl/WSDLPortType.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/rpc/wsdl/WSDLService.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/rpc/xml/ContentProxy.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/rpc/xml/IXMLDecoder.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/rpc/xml/IXMLEncoder.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/rpc/xml/IXMLSchemaInstance.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/rpc/xml/QualifiedResourceManager.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/rpc/xml/Schema.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/rpc/xml/SchemaConstants.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/rpc/xml/SchemaLoader.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/rpc/xml/SchemaManager.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/rpc/xml/SchemaMarshaller.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/rpc/xml/SchemaProcessor.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/rpc/xml/SchemaTypeRegistry.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/rpc/xml/SimpleXMLDecoder.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/rpc/xml/SimpleXMLEncoder.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/rpc/xml/XMLDecoder.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/rpc/xml/XMLEncoder.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/rpc/xml/XMLLoader.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/utils/HexEncoder.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/utils/RPCObjectUtil.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/utils/RPCStringUtil.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/utils/RPCUIDUtil.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/utils/Translator.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/utils/URLUtil.as

    Remember that Arch Arm is a different distribution, but we try to bend the rules and provide limited support for them.  This may or may not be unique to Arch Arm, so you might try asking on their forums as well.

  • WebDynpro Action Types : Validating vs Non Validating Action Types

    Hi
    Can someone tell me the difference between Validating and Non Validating Action Types in webdynpro. I read it through, but its not very clear.
    regards
    Saurabh

    HI Maksim,
    Thanx it helped !!
    I need some more help. I have a PAR file which displays an employees CV in an IView. I want to print only the content in the iView (i.e the CV) not the complete page with Roles and worksets, is there some code that can do this.
    I need to place a button on the CV (in the iView) and on the click of the button the CV (iView) gets printed.
    A workaround for this is that I open the CV (from the iView Personalization ) in a new window and then from the File menu of the new window fire the Print option. But I dont want to do it this way.
    I want to Print the CV from the parent window only.
    Plz suggest !!
    Regards
    Saurabh

  • How to update info type 0585 & 0586

    Dear Mates,
    How to update info type 0585 & 0586 ?? because I've tried with LSMW but unable to update more than 7 records.
    Ur's
    Mohan

    Dear KV LMR,
    For IT0584, IT0585, IT0586 mass upload you have to go for BDC . LSMW will not fulfill the purpose as different employees has different number of data set available in these infotypes and data is not uniform like your IT581 or PAN number or Emailid upload.
    First you have to prepare template for IT0585/IT0586 and speak with your ABAPer to prepare the required BDC program.
    If you are comfortable with BDC, you can do it by yourself. If required drop a mail at [email protected] . I can provide you the BDC template /code snippet.
    Regards,
    Nayak

  • Short Dump while executing New Hire (action type) in PA40

    Hi All,
    i am getting short dump while executing PA40 for new hire action type can anyone look into this and guide as i am new to HCM.
    Category               ABAP Programming Error                                                      
    Runtime Errors         SYNTAX_ERROR                                                                
    ABAP Program           /1PAPAXX/HDR_21000A                                                         
    Application Component  Not Assigned                                                                
    Date and Time          21.08.2014 14:07:03                                                         
    Short text                                                                                       
        Syntax error in program "/1PAPAXX/HDR_21000A ".                                              
    What happened?                                                                                   
        Error in the ABAP Application Program                                                        
        The current ABAP program "SAPFP50M" had to be terminated because it has                      
        come across a statement that unfortunately cannot be executed.                               
        The following syntax error occurred in program "/1PAPAXX/HDR_21000A " in                     
        include "/1PAPAXX/HDR_21000AO01 " in                                                        
        line 52:                                                                                     
        ""LV_LENGTH" has already been declared"                                                      
        The include has been created and last changed by:                                            
        Created by: "HCM04 "                                                                         
        Last changed by: "HCM03 "                                                                    
        Error in the ABAP Application Program                                                        
        The current ABAP program "SAPFP50M" had to be terminated because it has                      
        come across a statement that unfortunately cannot be executed.                               
    What can you do?                                                                                 
        Please eliminate the error by performing a syntax check                                      
        (or an extended program check) on the program "/1PAPAXX/HDR_21000A ".                        
        You can also perform the syntax check from the ABAP Editor.                                  
        If the problem persists, proceed as follows:                                                 
        Note down which actions and inputs caused the error.                                         
        To process the problem further, contact you SAP system                                       
        administrator.                                                                               
        Using Transaction ST22 for ABAP Dump Analysis, you can look                                  
        at and manage termination messages, and you can also                                         
        keep them for a long time.                                                                   
    Error analysis                                                                                   
        The following syntax error was found in the program /1PAPAXX/HDR_21000A :                    
        ""LV_LENGTH" has already been declared"                                                      
    How to correct the error                                                                         
        Probably the only way to eliminate the error is to correct the program.                      
        If you cannot solve the problem yourself and want to send an error                           
        notification to SAP, include the following information:                                      
        1. The description of the current problem (short dump)                                       
           To save the description, choose "System->List->Save->Local File                           
        (Unconverted)".                                                                              
        2. Corresponding system log                                                                  
           Display the system log by calling transaction SM21.                                       
           Restrict the time interval to 10 minutes before and five minutes                          
        after the short dump. Then choose "System->List->Save->Local File                            
        (Unconverted)".                                                                              
        3. If the problem occurs in a problem of your own or a modified SAP                          
        program: The source code of the program                                                      
           In the editor, choose "Utilities->More                                                    
        Utilities->Upload/Download->Download".                                                       
        4. Details about the conditions under which the error occurred or which                      
        actions and input led to the error.                                                          
    System environment                                                                               
        SAP Release..... 731                                                                         
        SAP Basis Level. 0007                                                                        
        Application server... "dc-ds-erp"                                                            
        Network address...... "172.16.23.111"                                                        
        Operating system..... "Linux"                                                                
        Release.............. "3.0.13-0.27-default"                                                  
        Hardware type........ "x86_64"                                                               
        Character length.... 16 Bits                                                                 
        Pointer length....... 64 Bits                                                                
        Work process number.. 1                                                                      
        Shortdump setting.... "full"                                                                 
        Database server... "dc-ds-erp"                                                               
        Database type..... "ORACLE"                                                                  
        Database name..... "ECD"                                                                     
        Database user ID.. "SAPSR3"                                                                  
        Terminal.......... "NLC-HP"                                                                  
        Char.set.... "C"                                                                             
        SAP kernel....... 720                                                                        
        created (date)... "Sep 14 2013 06:16:24"                                                     
        create on........ "Linux GNU SLES-11 x86_64 cc4.3.4 use-pr130820"                            
        Database version. "OCI_112, 11.2.0.3.0, V1, default"                                         
        Patch level. 500                                                                             
        Patch text.. " "                                                                             
        Database............. "ORACLE 10.1.0.*.*, ORACLE 10.2.0.*.*, ORACLE 11.2.*.*.*"              
        SAP database version. 720                                                                    
        Operating system..... "Linux 2.6, Linux 3"                                                   
        Memory consumption                                                                           
        Roll.... 0                                                                                   
        EM...... 37708200                                                                            
        Heap.... 0                                                                                   
        Page.... 106496                                                                              
        MM Used. 4666776                                                                             
        MM Free. 3709976                                                                             
    User and Transaction                                                                             
        Client.............. 210                                                                     
        User................ "HCM03"                                                                 
        Language key........ "E"                                                                     
        Transaction......... "PA40 "                                                                 
        Transaction ID...... "53EF470299AB5D67E1000000AC10176F"                                      
        EPP Whole Context ID.... "005056A301D11EE48A9D08B337F884E3"                                  
        EPP Connection ID....... 00000000000000000000000000000000                                    
        EPP Caller Counter...... 0                                                                   
        Program............. "SAPFP50M"                                                              
        Screen.............. "MP000000 1000"                                                         
        Screen Line......... 3                                                                       
        Debugger Active..... "none"                                                                  
    Information on where terminated                                                                  
        Termination occurred in the ABAP program "SAPFP50M" - in                                     
        "GET_HEADER_WITH_TCLAS".                                                                    
        The main program was "MP000000 ".                                                            
        In the source code you have the termination point in line 146                                
        of the (Include) program "FP50MDHD".                                                         
    Source Code Extract                                                                              
    Line
    SourceCde                                                                                  
      116
      CALL FUNCTION 'HR_HEADER_GET'                                                            
      117
          EXPORTING                                                                            
      118
               DHDID                    = FHD_HID                                              
      119
               BEGDA                    = BEGDA                                                
      120
               TCLAS                    = TCLAS                                                
      121
    * Es wird nur einer der folgenden 3 Parameter benutzt.                                     
      122
    * Ausgewertet wird zunaechst MOLGA, dann P0001 dann PERNR.                                 
      123
    * Der erste der nicht initial ist wird ausgewertet.                                        
      124
    *           MOLGA                   =                                                      
      125
               P0001                    = P0001                                                
      126
               PERNR                    = PSPAR-PERNR                                          
      127
          IMPORTING                                                                            
      128
               PROG                     = HEADER_PROG                                          
      129
               DNUM                     = HEADER_DYNNR                                         
      130
           EXCEPTIONS                                                                          
      131
                HEADER_DEACTIVATED          = 1                                                
      132
                HEADER_UNKNOWN              = 2                                                
      133
                HEADER_GENERATE_DEACTIVATED = 3                                                
      134
                HEADER_GENERATE_FAILED      = 4                                                
      135
                INTERNAL_ERROR              = 5                                                
      136
                OTHERS                      = 6.                                               
      137
      138
      IF NOT SY-SUBRC IS INITIAL.                                                              
      139
    * Bei Problemen gibt's eben ein leeres Dynpro.                                             
      140
        HEADER_PROG = 'SAPMP50A'.                                                              
      141
        HEADER_DYNNR = '0090'.                                                                 
      142
      ELSE.  " NOT sy-subrc IS INITIAL.                                   "                    
      143
    * Dann setzen wir jetzt auch noch das Datum fest.                                          
      144
        PERFORM HEADER_BEGDA_SET IN PROGRAM (HEADER_PROG) USING BEGDA.                         
      145
    * Und schalten auf Uebergabe der PERNR mit globalen Variablen.                             
    >>>>>
        PERFORM HEADER_LAZY_ON IN PROGRAM (HEADER_PROG).                                       
      147
      ENDIF.  " (ELSE) NOT sy-subrc IS INITIAL.                           "                    
      148
    * Merken wie der Header heisst. Damit MPPERS00 sich erinnern kann.                         

    Hi,
    Error Log: Syntax error
    ""LV_LENGTH" has already been declared"
    please check LV_LENGTH variable declaration.
    It may be declared more once!

Maybe you are looking for

  • Wifi-Direct in Adobe Air??

    Hi , I have recently emarked on building a multiplayer game for my third year degree project. I have built some little air apps already but thought it would be cool to try out some mutliplayer aspect. I was wondering if: a) Air supports multiplayer [

  • 14" iBook G4 will not power up.

    I left it on last night and when I got home this morning it looked like it was asleep so I moved the mouse, hit the space bar and nothing happened, the glowing sleep light was still on. I waited a few minutes and tried again. Being impatient I took t

  • What is the point of an abstract class?

    ok lets say there was a subclass that inhereited another subclass...like a class Person, a class Student, and a class GraduateStudent; why would i want to make the class person abstract and have a abstract void display(); in it if i want to override

  • ODI error for Essbase

    Hi John, Was running an interface and came across the following error. AttributeError: class 'com.hyperion.odi.common.ODIConstants' has no attribute 'PRE_LOAD_MAXL_SCRIPT I have not used any MAXl scripts in this.

  • VOIP Failover

    I am building a small virtualization system utilizing vSphere 6.0.  The system will only be running about 10 VMs.  I plan to use two ESXi hosts with Essentials Plus. Unfortunately High Availability is a requirement.  Due to the system being small, I'