New Processing types

Hi,
I would like to know where can we create a new processing type.
How do we create different processing types for different attendances/absence types.
Thank you
Shravan

Hi Arya,
Processing of absences are definded via the counting classes in the payroll . You can define Counting Classes for Absence Valuationin the table   V_T554E
Regards,
Kapil

Similar Messages

  • New Process type:Is the previous run in the chain still active?

    Hi,
    Please provide details of the new process type Is the previous run in the chain still active? In SPS 12. Thanks in advance.

    Hi,
    did you see that post. it says it is a mistake and will be removed.
    New Chain Process Type: Is the previous run in the chain still active?
    regards,

  • Creating New Process Types

    Hello,
    Great to hear from anyone who has created a non-ABAP process type and included in the process chain.
    The interface methods and how they get called and/or check status etc. are not documented or at least I cannot find them.
    Thanks
    Mathew

    Hi Bill,
    Thanks for the info. You can also create process types similar to the Load IP process type which react to certain events like right click etc.
    For example, if you wanted a new process type that checked for its status within the last xxx hours and then bypasses itself or run itself based on a set of rules.
    If can be done as an ABAP program with possibly a variant for the IP name, time etc. which can then be attached to a process chain or can be programmed similar to an existing non-ABAP process type, say similar to the Load IP process type.
    What I was looking for is some documentation or feedback from others who know about the methods used ...there all have to conform to some OO based interface but there is little by way of documentation on it.
    Ta Mathew

  • New Process types

    Hi All,
    Does anyone have any document on how to use the new process types in bw 7.0 especially the 'Decision Between Multiple Alternatives' process.
    Thanks,
    Pratik

    Hi
    Below gives yoy head start.
    <a href="http://help.sap.com/saphelp_nw2004s/helpdata/en/42/f7fc493c5b32c3e10000000a1553f6/content.htm">http://help.sap.com/saphelp_nw2004s/helpdata/en/42/f7fc493c5b32c3e10000000a1553f6/content.htm</a>
    Thanks
    Chetan

  • New Chain Process Type: Is the previous run in the chain still active?

    Has anyone seen any documentation on the new process type:  Is the previous run in the chain still active?
    We upgraded from NW SPS 10 to SPS 12 and have not been able to find any documentation on the new process type.
    Thanks
    Keith

    Hi!
    This process type was delivered by mistake. It will be removed with next patch. Please do not use it!
    Thanks for reporting this and best regards, Thomas Rinneberg, Dev. BW

  • Urgent:  ABAP Custom Process Types

    Hi Gurus,
    I have created a Custom Process Type for ABAP program which returns status (Success or Failure).
    I followed the below procedure to create a custom ABAP process type.
    In RSPC, I went to Settings -> Maintain process types
    I selected the ABAP process type and then selected the EDIT -> COPY AS and then in the process chain configuration screen, I gave a new name to the process type, changed the POSSIBLE EVENTS settings to "2 process ends "successful" or "failure" and saved the settings to confirm changes.
    Now I can see the new process type for ABAP program which returns the success or failure for the successors.
    Now, my question is, where do i write the logic for ABAP program ? how does the ABAP program returns the success or failure. Do I have to change the code in the method IF_RSPC_EXECUTE~EXECUTE to return success or failure.  Please make me clear where I can write the code? For example in my ABAP program, I am searching a table to find a specific value. If the value is not found, then the ABAP process type should return failure, if found should return success. How can I do this?
    Thanks in advance,
    Regards,
    aarthi
    [email protected]

    To trigger a process chain from an external program you can use the function:
    RSPC_API_CHAIN_START
    you need only to know the Chain ID and pass it in import parameter.
    Here an example:
    select-options v_time for sy-uzeit.
    parameter: chain type RSPC_CHAIN.
    check sy-uzeit in v_time.
    CALL FUNCTION 'RSPC_API_CHAIN_START'
      EXPORTING
        i_chain             = chain
      I_T_VARIABLES       =
      I_SYNCHRONOUS       =
      I_SIMULATE          =
      I_NOPLAN            =
    IMPORTING
      E_LOGID             =
    EXCEPTIONS
      FAILED              = 1
      OTHERS              = 2
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    Regards,
    Sergio

  • Urgent Help need for ABAP Custom Process Types

    Hi Gurus,
    I have created a Custom Process Type for ABAP program which returns status (Success or Failure).
    I followed the below procedure to create a custom ABAP process type.
    In RSPC, I went to Settings -> Maintain process types
    I selected the ABAP process type and then selected the EDIT -> COPY AS and then in the process chain configuration screen, I gave a new name to the process type, changed the POSSIBLE EVENTS settings to "2 process ends "successful" or "failure" and saved the settings to confirm changes.
    Now I can see the new process type for ABAP program which returns the success or failure for the successors.
    Now, my question is, where do i write the logic for ABAP program ? how does the ABAP program returns the success or failure. Do I have to change the code in the method IF_RSPC_EXECUTE~EXECUTE to return success or failure.  Please make me clear where I can write the code? For example in my ABAP program, I am searching a table to find a specific value. If the value is not found, then the ABAP process type should return failure, if found should return success. How can I do this?
    Thanks in advance,
    Regards,
    aarthi
    [email protected]

    Hi,
       We have a similar problem. We have an ABAP program in a process chain that
    uses a custom process type with on success and on failure.
        If  the program is successful there is no problem. it will run the next process step.
        The problem is when the ABAP Program fails and even though the message class is E in our ABAP program it has a confirm popup message with a status change and asks "Save Status and Trigger Events if Appropriate".
         Once you enter Yes to continue it then continues to the next step in the program and is fine.I traced in debug where this status message is appearing. It is in CL_RSPC_LOG. There is a popup_to_confirm_step where it checks the e_status that is value J ( Framework Error upon completion). Then it submits the rspc_process_finish program to complete and call the on error process step.
         Has anyone else experienced this and is there any other documents out there to help me?
    Apologies if this is not very clear.
    Any assistance would be appreciated.
    Thanks
    Monica Mandia

  • BI custom process type (ABAP OO Class): how to create a variant screen?

    I created a custom process type in Netweaver 2004s (business intelligence) which in essence is nothing but an Abap class that implements certain interfaces. What I am now struggling with is how to write the code for the "new variant" input screen.
    My understanding is that the logic has to be implemented in the method IF_RSPC_MAINTAIN~MAINTAIN, but I am lacking detailed information.
    Can someone give me an example with a variant screen that displays two radio buttons?
    Thank you,
    D.

    It is a custom class that implements the following interfaces:
    IF_RSPC_GET_VARIANT
    IF_RSPC_MAINTAIN
    IF_RSPC_EXECUTE
    The interface I am struggling with is the first one (get variant). Any more insight on how this should be used would be highly appreciated.
    Thanks!

  • How to capture the process type for a particular application

    In my application CRMD_BUS2000120 there are 3 process types namely incidents, zcomplaints and zrepair order. But all the 3 display the same description as New: Incidents . Since this is attached with the application name. How can i change the description according to the process type i select. If I select incidents the description should be Incident , if i select zcomplaints it should be zcomplaints. Can anyone guide me how to do this.
    Thanks in Advance,
    Anu

    Hi Fred,
    If you open any activities or opportunities, you can see the description if you select new button and click on the process type. It will be display Activities and below that New: Activity. Instead of always displaying the same description I want to override the description according to the process type. For me the application is not activity but Incident. Hope I am clear with the question.
    Thanks,
    Anu

  • Charateristic variable with Processing type "replacement path"

    Hi all
    I am using BI 7.0;
    I have a characteristic ZPL_CNT in one dimensions of a Cube;
    now i want to use the value of  the ZPL_CNT as column in Query.
    So i created a formula and a formula variable with replacement path of processing type:
    setting:
    i created a new formula "Calculated MBZ"
    the formula variables is "ZMBZ" and inserted the variables into "Calculated MBZ"
    Reference characteristic: ZPL_CNT
    Processing type : Replacement path
    Replace variable with: Attribute value
    Attribute: characteristic Reference (constant 1)
    But i find the value in Query incorrect
    Can anyone help me solve this problem?
    Thanks!

    Hi Dragon,
    Can you not drag and drop this characteristic directly in the columns...have I misunderstood something?
    I think when you use replacement path in the formula variable , the fromula variable tries to find the reference characteristic value at each record level in the report and then replaces it with attribute value as defined and may be in your case as the characteristice is not defined in the row , it has problems to identify which value of the characteristic it has to replace.
    Regards,
    Sunmit.

  • Auto patch error usdsop cannot create a new process

    Hi i am applying hrms family pack k in one vision db in testnode but i am getting following error.Any idea
    appsversion 11.5.10 and windows 2003 advanced server
    Generating product JAR files in JAVA_TOP -
    j:\oracle\viscomn\java with command:
    adjava -mx512m -nojit oracle.apps.ad.jri.adjmx @j:\oracle\visappl\admin\VIS\out\genjars.cmd
    Error:
    usdsop cannot create a new process
    Cause: usdsop encountered an error creating a new process. [Reason].
    Action: Check that your system had enough resources to start a new process. Contact your system administrator to obtain more resou (RE
    Failed to generate product JAR files in JAVA_TOP -
    j:\oracle\viscomn\java.
    adogjf() Unable to generate jar files under JAVA_TOP
    AutoPatch error:
    Failed to generate the product JAR files
    rgds
    rajesh

    This is the primary reason I dislike doing Oracle Apps on Windows.
    If something bad happens while patching, and you find yourself without critical ad executables because relink failed, you need to run relinkenv.cmd to (re)create the APPS.SH unix-style environment (forward slashes) for relink.sh.
    Source or double click on envshell.cmd
    sh adrelink.sh force=y "ad adjava.exe"
    Backup Mode is "file"
    Removing Application products' bin directories from PATH ...
    Done removing Application products' bin directories from PATH
    Removing $FND_TOP/$APPLBIN from PATH ...
    sed: number in \[0-9] invalid
    Done removing $FND_TOP/$APPLBIN from PATH
    awk: adrelink.sh 4107: not found
    grep: adrelink.sh 4107: not found
    grep: adrelink.sh 4107: not found
    echo: adrelink.sh 4107: writing: The pipe is being closed.
    awk: adrelink.sh 4107: not found
    ORACLE RDBMS Version 8.0.6.0.0
    Oracle Reports Version 6.0
    Oracle Applications Release
    Unable to determine the release number.
    To resolve:
    type relinkenv.cmd
    This creates APPS.SH.
    Source or double click on envshell.cmd to create a new session.
    Now type sh
    At the command prompt, type . ./APPS.Sh
    now adrelink.sh force=y "ad adjava.exe"
    You are running adrelink, version 115.85
    Start of adrelink session
    Date/time is Fri Jul 20 20:22:35 PDT 2007
    Log file is d:/oracle/visappl/admin/log/adrelink.log
    Command line arguments are
    "force=y" "ad adjava.exe"
    Done with link of ad executable 'adjava.exe' on Fri Jul 20 20:27:07 PDT 2007
    Done relinking module adjava.exe in product ad
    Done with link of product 'ad' on Fri Jul 20 20:27:07 PDT 2007
    adrelink is exiting with status 0
    End of adrelink session

  • Creation of new condition type: MWST

    Hi, Everyone.
    I would like to ask for some help regarding this issue: Creation of new condition type: MWST with the following details:
    1. For the country French Polynesia, Create a new VAT condition of 10%.
    2. Create a new one called : Class : Z u2013 Designation : France : TOM corresponding to 10 % of VAT to be invoiced
    and then associate this new VAT code u201CZu201D to the applicant Nr 221860
    If you could provide me a step by step process on how to resolve this, it would be very much appreciated.  Thank you so much.

    Hello
    What type of condition type you want.
    It is always advisable to create a new conditon type copying a standard condition type.
    For gross price condition types select PB00/PBXX
    For freight charges, Copy FRA1/FRB1
    Regards

  • Inbound delivery creation in WM - mapping to process type 1011 in EWM

    Hi All,
    I am new to EWM and have to configure handling units for picking and putaway in EWM.
    I am creating an inbound delivery w.r.t Purchase order in WM and passing it to EWM.  During the warehouse order creation I am packing the materials in a packing material. however, the warehouse process type is 1010 and I want it to relflect 1011.
    So I wanted to know how to configure the system either on the WM or the EWM side so that when the inbound delivery is received on the EWM side it maps it to process 1011.
    Arup

    Hi,
    To put across my question more clearly here is where I am right now. I pass the delivery to the EWM side. There I pack the materials. There is a HU association with the packing material.
    When I go to the screen with the follow on functions- warehouse task. Then when I choose the handling unit tab and click on the exectute button associated with the Whouse Req then there should be a Line item displaying the handling unit that was created in the previous step.
    However this is not happening and when I click on the execute button the line item does not show up.
    So I was wondering if there is some configuration that needs to be done to get the HU displayed?
    Arup

  • How to activate New Correspondence Type

    Hi,
    I have created a new correspondence type in the following manner:
    1)Define Correspondence Types
    2)Create Report Variants for Correspondence
    3) Assigned programs to correspondence types
    4) Defined Forms for Correspondence Print.
    I have posted a document through FB70.
    When I go to FB03 and display the document so posted and select Environment and Correspondence I am unable to see the New Correspondence that I created.
    Please let me know if I am missing any configuration.
    Regards,
    Raj/

    There is requirement where in I need to generate an invoice through FB70 as we won't be using SD billing.
    In this process I am trying to activate the Correspondence. I have a particular format of the invoice. These are the steps I followed.
    1) IMG-Financial Accounting-****-Correspondence-Define Correspondence Types
    Here I checked the the Doc.necessary option. Should I also select the Acct required?
    Please let me know what other fields do I have to select here.
    2) IMG-Financial Accounting-****-Correspondence-Create Report Variants for Correspondence Types
    Not sure what Config needs to be done here.
    3) IMG-Financial Accounting-****-Correspondence-Assign Programs for Correspondence Types.
    I have assigned the Print Program name here.(Driver program as my Abaper calls it or is it different?)
    4) IMG-Financial Accounting-****-Correspondence-SAPscript-Based Forms
    I have assigned the Print Program name/Drive Program name and the Form to my company code.
    After this I posted FB70 Invoice. Went to FB03 display and selected Correspondence from the Environment. But I cannot see the correspondence that I have created.
    Please let me know what else needs to be done.
    Immediate help is very much appreciated.

  • What we need creation of new movement type ? when will be used?

    Dear guru,
    pls clarity

    Hi Sai,
                  Many a times you want to post value of some transactions to different G/L account for the same material depending on  scenarios..like scrap generated at x process...scrap generated at y process etc..
    So this will be done through creating new movement types
    Regards,
    Rohan

Maybe you are looking for

  • Is it possible to make an item in combobox not be selectable ?

    Hi, In order to get a seperator in combobox , I am using follwing logic, <mx:Application xmlns:mx=" http://www.adobe.com/2006/mxml" layout="absolute"> <mx:Script> <![CDATA[ import mx.controls.Alert; [Bindable] public var arr:Array = [{label:"Test(1)"

  • Agent statistics and SQL server agent

    We have CUCCX 5.02 and CUCM 6.1 When agents try to look their "Agent statistics report" in CAD there is no data. And status of this report is "Inactive". All other reports are active. In CCX "control center" I see that "CRS SQL server Agent - this se

  • HELP WITH UPDATING MY PAYMENT INFO FOR THE APP STORE!!!

    I am trying to update my payment information with my apple ID and everytime I enter the new debit card information it keeps denying it! I don't know what to do but it's driving me crazy! I have tons of apps that need updating and I can't.

  • JavaHelp install

    I'm trying to create a JavaHelp system and my authoring tool tells me I don't have JH installed. I have installed JH 1.1.3 but it seems at least one file, hsviewer.exe, is missing. Ideas?

  • Generic Datasource Delta upload Issue

    Hi all, I have created a Generic Datasource for Solution Manager ODS 0crm_process_srv_h which contains the userstatus, transaction number, transaction desc and GUID of CRM Order Object (ods key field),only these fields.   I have taken transaction num