Defaulting the Expenditure Type field in OTL self service screens

Hello,
I am having a requirement in OTL to provide the default value for the Expenditure Type in Self Service Screens.
I have tried to set the attribute “HXC_CUI_EXPTYPE2_LOV” by extending the TimecardCO. But it did not work.
Can somebody guide me on this issue?
Regards,
Munish

[ There original post I made is incorrect.  The classes/shared libraries need only to be available to the server - they do not need to be available to ALDSP Studio, since the database is access via the server. Double check that the required classes/shared libraries for your jdbc driver are available to your server ]
I searched our CR database for the stacktrace/error that you have and found serveral CR. Most of them indicate the problem was jar file(s) for the jdbc driver were not present in the client classpath. So - whatever you added to the server classpath (and PATH - if there were also shared object libraries) - we need to add those to the ALDSP Studio (eclipse) classpath (PATH).
you can put the jar(s) in
aldsp_3.0\eclipse-plugins\dsp\eclipse\plugins\com.bea.dsp.ide.external_3.0.0
and modifying
aldsp_3.0\eclipse-plugins\dsp\eclipse\plugins\com.bea.dsp.ide.external_3.0.0\META-INF/manifest.mf.
There are two places in manifest.mf you will need to add the jar file - once under Bundle-Classpath and once under Export-Package.
Edited by mreiche at 03/07/2008 10:48 AM

Similar Messages

  • How can i restrict the Expenditure Type values at a specific OU ?

    Dear Guys,
    I would like to ask about the Expenditure Types,
    I have implemented two projects for different Operating Units ,
    when navigating to any Projects responsibilty,and navigating the Expenditure Type field
    the values exist are all the values implemented across the OU not the values entered at this OU
    How can i restrict the Expenditure Type values at a specific OU
    Regards
    Amr Hussien

    Hello
    When you set up a project there is an option called Transaction Control.
    This option allow you to list the allowed or restricted elements of costs for the project.
    You may enter the transaction control on a project template and that will be copied to any new project.
    The cost elements may be expenditure types, expenditures categories, suppliers, employees, etc.
    In your case, I suggest to set up specific project templates for each operating units. On each template enter the list of allowed expenditures types for that OU.
    Doing so, the system restricts users from entering any expenditure item, supplier invoice, purchase cost etc, against an expenditure type, which is not allowed.
    Dina

  • How to create the sub type field in hr abap infotype

    hi ,
        how to create the sub type field in hr abap infotype.
    regards,
    venkat.

    Try like this also
    creating of infotype please follow these steps ...
    Step 1: Create Infotypes
    i. Goto Transaction PM01 – To create Infotypes:
    ii. Enter the Infotype Number and say create all.
    iii. The following message would display:
    i. PSnnnn Does not exist. How do you want to proceed?
    iv. Click
    v. A maintain Structure screen appears.
    Fill in the short text description and the PS structure of the Infotype.
    Since the fields Personnel No, Employee Begin Date, End Date, Sequential Number,Date of Last Change, Name of user who changed the object are available in the PAKEY and PSHD1 structure, define the PSnnnn structure with only the fields you required.
    vi. Once the PS Structure is created, save and activate the structure.
    vii. In the initial screen of PM01, now click on .
    Create a new entry for the infotype.
    Fill in the values as mentioned below and save.
    Infotype Characteristics:
    Infotype Name of the infotype_ Short Text: __Short Description________
    *General Attributes :
    Time constraint = 1
    Check Subtype Obligatory
    Display and Selection:
    Select w/ start = 3 “Valid record for entered data
    Select w/ end = 5 “Records with valid dates within the period entered
    Select w/o date = 6 “Read all records
    Screen header = 02 “Header ID
    Create w/o end = 1 “Default value is 31.12.9999
    Technical Data:
    Single screen = 2000
    List screen = 3000; List Entry Checked.
    viii. In the initial screen of PM01, now click on .
    Choose the infotype entry in the list.
    Fill in the values as mentioned below and save.
    Technical Attributes:
    In tab section,
    The following attribute values are given:
    Applicant DB Tab = PAnnnn “Infotype Name
    Subtype field = SUBTY
    Subtype table = T591A
    Subty.text tab. = T591S
    Time cnstr.tab. = T591A
    Prim. /Sec. = I Infotype
    Period/key date = I Interval
    and .
    ix. Infotype Screen Modification:
    Edit Screen 2000 from PM01 for the Infotype.
    ABAP Editor for the Infotype Program MPnnnn00 will be displayed.
    Click . Flow Logic will be displayed. There string coding of your own logic.
    Regards
    Pavan

  • MIGO : When the movement type field is changed in transaction is changed.

    Hi
    If the movement type field value is changed in the MIGO, i was getting a popup. this popup had a check box ( skip in future)
    I selected this and was doing my testing. Now how to restore it back. please help.

    Hi,
    Go to MIGO
    Here in Menu Settings > Default values
    Here click on "Redisplay tips already read"
    And click on "Adopt" button and then check in MIGO, it will start displaying the message pop-up

  • To find the date type fields in the row and validate those date fields

    TYPES : BEGIN OF TY_MARA,
              MATNR TYPE MARA-MATNR,
              ERSDA TYPE MARA-ERSDA,
              ERNAM TYPE MARA-ERNAM,
              LAEDA TYPE MARA-LAEDA,
              MTART TYPE MARA-MTART,
            END OF TY_MARA.
    DATA : it_mara TYPE STANDARD TABLE OF ty_mara,
          it_mara1 TYPE STANDARD TABLE OF ty_mara,
           wa_mara TYPE ty_mara.
    loop at it_mara into wa_mara.
      describe field wa_mara-ersda type c_data.
    if c_data eq 'D'.
      CALL FUNCTION 'DATE_CHECK_PLAUSIBILITY'
        EXPORTING
          date                            = wa_mara-ersda
       EXCEPTIONS
         PLAUSIBILITY_CHECK_FAILED       = 1
         OTHERS                          = 2
      IF sy-subrc eq 0.
    wa_mara-ersda = '00000000'.
        append wa_mara to it_mara1.
        write :wa_mara-matnr,wa_mara-ersda.
        else.
            wa_mara-ersda = '00000000'.
        append wa_mara to it_mara1.
        write :wa_mara-matnr,wa_mara-ersda.
      ENDIF.
      endif.
      endloop.
    This issue regarding how to find the date type fields in the row and validate those date fields.If its not a valid date ,i have to assign initial value to that.
    I've tried that for single field using describe field.Please help me do that for all fields.

    Hi Sam,
     I believe we had discussed the same issue in the below thread. Can you please refer the below one?
    http://social.msdn.microsoft.com/Forums/sharepoint/en-US/d93e16ff-c123-4b36-b60b-60ccd34f6ca7/calculate-time-differences-in-infopath?forum=sharepointcustomizationprevious
    If it's not helping you please let us know
    Sekar - Our life is short, so help others to grow
    Whenever you see a reply and if you think is helpful, click "Vote As Helpful"! And whenever
    you see a reply being an answer to the question of the thread, click "Mark As Answer

  • Please show me some examples for using the carray type fields in FML buffer

    How to use Fget and Fchg to access and modify the carray type fields in FML buffer?
    please show me some examples?
    Thanks!

    How to use Fget and Fchg to access and modify the carray type fields in FML buffer?
    please show me some examples?
    Thanks!

  • Using the URL type field in a Dictionary

    Using the URL type field in a Dictionary
    How and when would I use the URL Field in a Dictionary?  What is the advantage of using this field?
    For example, you may have tasks within a service delivery in which performers must access a spreadsheet and enter their estimated efforts and costs in that spreadsheet. You might use this URL type field to direct the task performers to the site where the spreadsheet is residing.
    To set up the URL field:
    In the Dictionary, for the desired Field, select the "URL" type.
    When the service performer enters information into the field (during the Service Dellivery moment), it will beautomatically concatenated with the RequestCenter system URL, and presented as a hyperlink immediately below the entry field in the service form.
    The performer is directed to the URL, i.e.:
    /RequestCenter/servicemanager/MemorySize
    Advantages to this design approach:
    1.      Allows users who do not have access to RequestCenter to view the estimated efforts and costs.
    2.      Compensates for the fact that the service form itself cannot display the fields in a table format.

    Hey,
    As per my understanding, you want to display link with text instead of whole url string. For that you can provide link text as a description in URL type field so the same will be displayed as a link title in list view while rendering.
    Thanks.

  • How to hide the Media type field if no video is uploaded in paglayout

    Hi,
    I am creating a custom page layout with custom content type through visual studio 2010 for sharepoint 2010.
    i need to create a field which supports to upload a video file.
    so i created a site column and added it to my content type and added to my page layout.
    <Field ID="{7F5AE2F9-C1A2-4BFD-876C-56ECFB7B0210}" Name="Video" DisplayName="Article Video" Type="MediaFieldType"  Group="Article Layout Columns" />
    <FieldRef ID="{7F5AE2F9-C1A2-4BFD-876C-56ECFB7B0210}" Name="Video"/>
    In my page layout i added the field in both edit and display mode as
       <PublishingWebControls:MediaFieldControl ID="MediaFieldControl1" FieldName="Article Video" runat="server"/>
    All is well the video is displayed and i can add video.
    My req is i need to show the video div in display mode only if video is added else it should be hidden in display mode.
    how to do that?
    Aruna

    Hi,
    According to your post, my understanding is that you want to hide the Media type field if no video uploaded.
    After the video uploaded, the HTML of the Media Type Field will be changed. We can use jQuery to detect the change and hide/show it.
    The following script for your reference:
    <script src="http://code.jquery.com/jquery-1.10.2.min.js" type="text/javascript"></script>
    <script type="text/javascript">
    $(function () {
    if($("selector")==""){
    $("divID").hide();
    </script>
    More information:
    http://msdn.microsoft.com/en-us/library/gg699337(v=vs.85).aspx
    https://api.jquery.com/hide/
    Thanks,
    Dennis Guo
    TechNet Community Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Dennis Guo
    TechNet Community Support

  • OTL Self Service Time Card to OTL Timekeeper

    Hi All,
    I'm new to the Oracle HRMS module and have a question. Can you update OTL Timekeeper with time cards from OTL Self Service? I did read a very brief, one or two line sentence in one of the implementation manuals that said you could. However, at this point, I have researched in vein and still cannot find any information as to how or what should be done.
    Any help is greatly appreciated,
    Thanks,
    Paul

    Hi Gaurav,
    Sure.
    We would like to take the employee time cards being entered into the (OTL Self Service Time Entry) and once approved, have them automatically populate the OTL Timekeeper by employee. These employees are already defined in various Timekeeper groups. Once the supervisor opens up that group in Timekeeper they will be able to export those employee time records to an excel spreadsheet for further data manipulation. That's our end goal.
    The question I have is, how does the upload from (OTL Self Service Time Entry to OTL Timekeeper) happen?
    Does it happen once the employee time card has been approved?
    or
    Do you have to launch some type of concurrent job, etc?
    I just can't find that process answer and what if anything that needs to be done.
    Again, thanks in advance for any help you can provide.
    Paul

  • How to default the Document Type in Dynamic selections linked with DDF LDB?

    Hello all,
    A report is associated with Logical database DDF. In the selection screen we have Dynamic selections screen in which Document type is one of the fields. As per the requirement, this field document type(BLART) needs to be filled by default on certain actions done by the user. To be more precise when user clicks on a particluar check box, then document type values from a customized table should appear in that parameter in dynamic selections.
    Query here is I am not able to track the selection screen name for those dynamic fields. Can you please guide me in knowing the selection screen name for document type so that I can append values into it upon certain actions. I tried to check in the LDB 'DDF'  but I could not get any apt information there.
    Thanks in advance.
    Chandra.

    Hi,
    In the report event at selection-screen output, based on the user action you can do that try like below:
    at selection-screen output.
    if p_checkbox = 'X'.  "Checkbox checked
        s_blart-low = 'F'.
       s_blart-option = 'EQ'.
      s_blart-sign = 'I'.
      append s_blart.
    endif.
    Regards,
    Himanshu

  • Can I change the "Card Type" field on checkout page?

    I'm not real familyar with forms so i don't want to mess up the one on the chekout page.
    This is the default:
              <select  style="width:240px;" name="CardType" id="CardType" class="cat_dropdown">
                <option value="1">Visa</option>
                <option value="2">Master Card</option>
                <option value="3">Bank Card</option>
                <option value="4">American Express</option>
                <option value="5">Diners Club</option>
                <option value="6">JCB</option>
              </select>
    I don't really need Bank Card, Diners Club, or JCB so i'm assuming i can just delete them.
    I would like to ad Discover Card to the list.
    Can i simply change out "Bank Card" for "Discover Card" or will this mess up the transaction?

    Hello eric_413,
    The card type is not a mandatory option for the checkout form to work. You can remove it and place an image of cards excepted, if your merchant provider excepts Discover that is all you need.
    Here is one of our template sites that gives an example, http://hpwtemplate002.hotpressplatform.com/
    For your second question, yes. Just place the whole form in the order_registration page, not a module.
    Hope this helps,
    Chad Smith | http://bcgurus.com/Business-Catalyst-Templates for only $7

  • How to access the table type field in the structure

    Hi All,
    I have a BADI CRM_MKT_ADR_SEARCH and a method CHANGE_SEARCH_RESULTS in this method I have a parameter CT_BP_CP_CHANNEL .This parameter has type CRMT_BP_CP_CHANNEL_TAB(this is table type) this has the line type CRMT_BP_CP_CHANNEL(this is structure) in this line type we have one field addrnumber.How to access this field in my method?Please help me in this regard.

    data lw_tab type CRMT_BP_CP_CHANNEL.
    loop at CRMT_BP_CP_CHANNEL_TAB into lw_tab.
       lv_field = lw_tab-addrnumber.
       <further processing>
    endloop.

  • OTL Self Service Error Message

    We use OTL Timekeeper functionality for entering time, but want to switch to some Self Serve OTL time entry also. The error messages we are currently using work fine in OTL. The overtime rule goes out, validates the time entered, and returns an error apparopriately. When I try this in Self Service, I get the following errors:
    The Oracle error is: ORA-20000: ORA-20001:ORA-20001: Formula KCI_JEAN_TEST_TOKEN: ORA-01403: no data found ORA-01403: no data found Cause: During the PL/SQL execution part, an Oracle error was detected. Action: Please refer to your system administrator..
    I am unsure why. If I enter time in Timekeeper, it tells me I don't have enough regular time to charge overtime. However in self serve, I just get this weird message.
    Ideas? I can post my entire fast formula (it calls a pl/sql function to do the actual verification that return any errors found to the fast formula) if you are interested.
    Jean Farmer
    KCI Technologies

    I wrote this code to test the passing of Tokens and it works perfectly. The messages come out condensed into two messages with tokens.
    /********************SAMPLE1*************************************/
    Default for MESG1 is ' '
    Default for MESG2 is ' '
    Default for MESG3 IS ' '
    Default for MESG4 IS ' '
    INPUTS ARE Resource_id,
    submission_date(TEXT),
    MESG1(TEXT),
    MESG2(TEXT),
    MESG3(TEXT),
    MESG4(TEXT)
    JEAN1 = 'JEAN LINE 1'
    JEAN2 = ' '
    JEAN3 = ' '
    JEAN4 = ' '
    JEAN5 = 'JEAN LINE 5'
    JEAN6 = ' '
    /*Squish the messages into just two lines, jean1,jean2*/
    JEAN6=KCI_OTL_MESSAGE_ORDER(JEAN1,JEAN2,JEAN3,JEAN4,JEAN5)
    IF LENGTH(JEAN1) > 3 THEN
    RULE_STATUS = 'E'
    MESSAGE1='HXC_XXKCI_OTL_ERR3'
    TOKEN_NAME1='KCI_ERR3'
    TOKEN_VALUE1=JEAN1
    IF LENGTH(JEAN2) > 3 THEN
    MESSAGE2='HXC_XXKCI_OTL_ERR4'
    TOKEN_NAME2='KCI_ERR4'
    TOKEN_VALUE2=JEAN2
    RETURN RULE_STATUS, MESSAGE1, TOKEN_NAME1, TOKEN_VALUE1, MESSAGE2, TOKEN_NAME2, TOKEN_VALUE2
    /*******************END SAMPLE 1*******************************/
    This one keeps returning the no data found error I listed up top whenever it runs. I'm not really understanding what the issue is though... obviously something with the KCI_OVERTIME_VALIDATION. However the KCI_OVERTIME_VALIDATION runs currently in the current fastformula and it works great without tokens. It returns message1..5 without an error and reads correctly. However as soon as I try and put it in here with tokens, it starts giving me the no data found errors.
    Please note - this works great with Timekeeper, but in Self Service OTL it returns the error.
    /**************** SAMPLE 2 - WHICH RESULTS IN ERRORS ***************/
    Default for MESG1 is ' '
    Default for MESG2 is ' '
    Default for MESG3 IS ' '
    Default for MESG4 IS ' '
    INPUTS ARE Resource_id,
    submission_date(TEXT),
    MESG1(TEXT),
    MESG2(TEXT),
    MESG3(TEXT),
    MESG4(TEXT)
    JEAN1 = ' '
    JEAN2 = ' '
    JEAN3 = ' '
    JEAN4 = ' '
    JEAN5 = ' '
    JEAN6 = ' '
    JEAN5=KCI_OVERTIME_VALIDATION(RESOURCE_ID,submission_date,JEAN1,JEAN2,JEAN3,JEAN4)
    JEAN6=KCI_OTL_MESSAGE_ORDER(JEAN1,JEAN2,JEAN3,JEAN4,JEAN5)
    IF LENGTH(JEAN1) > 3 THEN
    RULE_STATUS = 'E'
    MESSAGE1='HXC_XXKCI_OTL_ERR3'
    TOKEN_NAME1='KCI_ERR3'
    TOKEN_VALUE1=JEAN1
    IF LENGTH(JEAN2) > 3 THEN
    MESSAGE2='HXC_XXKCI_OTL_ERR4'
    TOKEN_NAME2='KCI_ERR4'
    TOKEN_VALUE2=JEAN2
    RETURN RULE_STATUS, MESSAGE1, TOKEN_NAME1, TOKEN_VALUE1, MESSAGE2, TOKEN_NAME2, TOKEN_VALUE2
    /*******************END SAMPLE 2 ********************************/

  • PCG Data Conceal / Hiding Field on HTML/Self-service page

    Hi Expert,
    Customer has a requirements to extend prevention logic of data conceal and hidding field to self-service page i.e. R12 Supplier & customer creation pages.
    What would be the best approach to do this with GRC products?
    Thanks for all responses.
    Regards,
    Gan HJ

    If the page is HTML based rather than a java form, then PCG cannot work. PCG works specifically for intercepting java form calls using the jinitiator applet.

  • OTL & Self Service Module on internet

    Hi,
    We are using OTL and self service module in R12.1.3/11gr2. We are looking to deploy OTL and Self Service to be on Internet but other modules are not like GL etc. Employee don't need to come secure office connection and do their work or submit time sheet etc. Please point me if any ML document or presentation , how to configure OTL and Self service module on internet.
    thanks

    Hi,
    All you have to do is assign the profile Responsibility Trust Level to a responsibility which users want to access outside the secured area.
    Make sure the value is External for this profile.
    If you want to give access to only a set of functions under a responsibility, then you will have to create a new responsibility.
    Cheers,
    Vignesh

Maybe you are looking for

  • Re: [SunONE-JATO] JatoTutorial

    Fr?d?ric-- In the case of a GET, all the information required to reconstruct the target page is available in the address bar, and thus bookmarks work fine. When the user does a POST, the same information does not appear in the address bar and bookmar

  • A small logical problem in LSMW for MM01...

    I need to create a LSMW for MM01 transaction, wherein I have to check the initial four digits of the material as 'ORCL'. If initial four digits of the incoming material are 'ORCL', then create this material as it is. Else replace these four digits wi

  • Marking 'clips' when sound editing?

    I'm editing a lot of 'narration'. And having to build a single sentence from a dozen different takes. Is there any way I can mark a clip (that is being constantly moved around) ... adding a different color? or some indicator? (Not a marker on the tim

  • Which is better white ipad or black ipad?

    I want to get the new ipad and I have gone to the store and seen both the black and the white one. But sometimes there are limits to what you can do. I want to know how they compare. Of course I know color is my preference. But from someone who has u

  • Recovery Tool - problem connecting to service

    I'm trying to roll back my phone from DP, so I can get the cyan update. Nokia Software Recovery Tool (1.4.3) seems to get the download (I've occasionally seen the progress bar), but I repeatedly, but not consistently, get the error - "A network probl