Unable to map the timecard field to "Add'l Element Entry Info." DFF

Hi everyone,
If anybody know how can I create the field in self service timecard layout that is mapping into Add'l Element Entry Info at element level?
I follow the steps that listed in OTL implementation guide as welll as the steps in OTL timecard configuration white paper. Please let me know what steps missing/ incorrectly with the following steps I did:
1.create the DFF under OTL information types
2.run generate keyflex mapping process
3.define mapping components for both deposit and retrive process
4.define deposit/retrive process
5.create AK attribute
6.attache the AK attribute to AK region
7.change LDT file
8.fndload the custimized LDT file to HXC_TOP
9.attached the customized layout to the employees
10. create the timecard by using the customized timecard layout
11.run workflow background process
12.run transfer OTL to BEE process
13. run validate BEE process
Results:information didn't shown on timestore's additional time card detail DFF and thus the information can't be transfer to element entries

This is what I have been trying to add;
name 203.2.2.2 toll_melb_peer
name 10.66.66.1 toll_pythia_db
name 10.64.47.58 toll_P6dov-pr7_tx
name 10.64.47.66 toll_P6dov-tst7_tx
object-group network toll_hosts
desc Toll hosts
network-object host toll_pythia_db
network-object host toll_P6dov-pr7_tx
network-object host toll_P6dov-tst7_tx
object-group network toll_ecn_nat_hosts
desc Toll IPs to NAT NS LAN to
network-object 172.25.232.0 255.255.255.248
object-group service toll_tcp_ports tcp
description Allowed TCP ports to toll
port-object eq 22
port-object eq 161
port-object eq 162
access-list inside_nat0_outbound extended permit tcp object-group toll_ecn_nat_hosts object-group toll_hosts
access-list outside_cryptomap_60 extended permit tcp object-group toll_ecn_nat_hosts eq ssh object-group toll_hosts
access-list outside_cryptomap_60 extended permit tcp object-group toll_ecn_nat_hosts eq 1521 host toll_pythia_db
access-list outside_cryptomap_60 extended permit tcp object-group toll_ecn_nat_hosts host toll_P6dov-pr7_tx object-group toll_tcp_ports
access-list outside_cryptomap_60 extended permit tcp object-group toll_ecn_nat_hosts host toll_P6dov-tst7_tx object-group toll_tcp_ports
access-list outside_cryptomap_60 extended permit tcp NS_LAN 255.255.252.0 object-group toll_hosts
access-list toll-ecn-nat extended permit permit tcp NS_LAN 255.255.252.0 object-group toll_hosts
global (outside) 8 172.25.232.0 netmask 255.255.255.248
nat (inside) 8 access-list toll-ecn-nat
crypto map outside_map 60 set peer toll_melb_peer
crypto map outside_map 60 match address outside_cryptomap_60
crypto map outside_map 60 set pfs group2
crypto map outside_map 60 set transform-set ESP-3DES-SHA
crypto map outside_map 60 set security-association lifetime seconds 86400
crypto isakmp key pskgoeshere address 203.2.2.2 netmask 255.255.255.255
There is already a few VPNs setup, and an existing isakmp policy this will be able to use.

Similar Messages

  • Is it possible to map the cmp fields of the entity bean with out dictionary

    Dear sirs,
    I have created the EJB project module and WEB Module. Now i have to map the CMP fields of the entity bean to the underlying table. Is it possible to map the cmp fields of the entity bean with out java dictionary? If yes how can we do that.
    I have got some error while mapping an EJB's CMP fields to the table through dictionary. I was actually intended to map 79 fields but it gives an error that more than 64 fields are not allowed while building the dictionary.
    1. Can you tell me what could be the possible reason?
    2. Is it possible to map the cmp fields of the entity bean with out java dictionary? If yes how can we do that.
    Kindly helo me,
    Sudheesh K S

    Hi,
    Sudheesh please check up if the below link helps,there are other ways of writing the persistent.xml for container managed entity bean.
    http://help.sap.com/saphelp_nw04s/helpdata/en/9b/f695f0c84acf46a4e0b31f69d8a9b7/frameset.htm, probably in the studio you cannot browse through tables not in  the java dictionary,but manually editing it may still solve the problem.
    Also here is another link that specifies the databases supported by J2EE Engine.
    http://help.sap.com/saphelp_nw04s/helpdata/en/66/a5283eeb47b40be10000000a114084/frameset.htm
    The below link shows how to specify the database vendor and datasource
    http://help.sap.com/saphelp_nw04s/helpdata/en/e1/67fc3ee241ba28e10000000a114084/frameset.htm
    Hope you are able to solve the problem.
    Do let us know if you come up with the solution.
    Regards,
    Harish
    Message was edited by: HARISH SUBRAMANIAN

  • I am unable to Save the "Note" field while Creation of new  Contact

    Hi ,
    I  am unable to save the Note field while Creation of Contact in Web UI.
    Its happening in the Dev system but not in the QA Web UI.
    I have tried to debug  the component BP_CONT, But no use. 
    Can any one tell me the what could be the problem?
    Regards,
    DN

    Hi DN,
    The Notes part comes from the following view:
    BP_DATA/Notes (Context Node: NOTES; Attribute: TDLINE)
    You can debug in this view.
    It could also be a case of missing authorization - the entered text don't get saved when the user does not have authorization to save text in text objects. Please check.
    Regards,
    Shiromani

  • Unable to map the record variables in SubProcess

    Hi All,
    We are using Oracle BPM 11g.In my requirement,we are using one database adapter for selecting the records from table,after that we are using the subprocess to loop the process record by record,we also created the busines data objects and process data objects for group of records(record array) and single record of table record type(table which I selected in database adapter),we maped those variables in subprocess,but it is showing error as the variables are not valid.we are unable to map the each array value to single record,Can any body help out from this problem.Please share any example related to above senario.
    Thanks in Advanced.
    Parker,
    Edited by: parker on Mar 28, 2011 12:31 AM

    Hi Ammad,
    Thanks for your Reply.Actually that block is based on a complex view(xxmz_sc_detail_v).So i am trying to insert the data into one custom table(xxmz_ship_confirm).so i have written following code in the KEY-COMMIT trigger:
    BEGIN
    LOOP
    IF :xxmz_detail.select_cbx = Y then
    INSERT INTO xxmz_ship_confirm
    values(:xxmz_detail...,....,...);
    END IF;
    EXIT WHEN :SYSTEM.LAST_RECORD = 'TRUE';
    NEXT_RECORD;
    END LOOP;
    END;
    APP_STANDARD.EVENT('KEY-COMMIT');
    execute_query;
    At this block if i make any changes after i press F4 It's prompting "Do u want to save the Changes?[YES/NO/CANCEL].
    If i press "YES" it displays message "1 Records applied and Saved.
    But the record is not saved in the xxmz_ship_confirm table.
    Thanks,

  • Mapping the CMP Fields with the Database Table using Websphere???

    Hi,
    How to Map the CMP Fields with the Database Table using Websphere
    thru ejb.jar.xml???
    Thanks,
    JavaCrazyLover

    Hi,
    How to Map the CMP Fields with the Database Table using Websphere
    thru ejb.jar.xml???
    Thanks,
    JavaCrazyLover

  • Mapping the IDOC fields for Inbound PO

    Hi,
    I am trying to map the fields for PO for IDOC type ORDER05, but unable to do so for the following IDOC fields in segments.
    Document Date
    Vendor
    Account Assignment Category
    Delivery Date
    Requirement No.
    Requisitioner
    Purchase Requisition
    Preq Item No.
    Outline Agreement
    Outline Agreement No.
    What fields in the IDOC match these in SAP R/3.
    Thanks,
    Randy.

    Hi Did you manage to get this IDoc working? I'm having the same problem with the mapping and the documentation is really bad.
    Thanks.

  • How to Map the Unit field  in case of DSO and INFOCUBE

    Dear Experts,
    I have a issue ,Please help me to solve this
    I have DSO as provider ,
    And, i have to map transformations  btw the Datasource and DSO.
    In generic Data source,  i have unit fields like BASME,MEINS (Quantity units) & STWAE (currency field)
    and normal Quantity fields  like KWMNG,OAUME(quantity related),OAUWE (value related).
    In DSO data fields as Key figure info objects like  0Quantity (which have 0Unit as unit of measure) and some other  key figures which have there respective unit of measure in info object  definition.
    So you Please tell me how to map the Quantity ,Amounts, unit fields to key figures that we have.
    (How it will be for both DSO and Info cube is there any difference?)
    Edited by: AnjunathNaidu on Jan 18, 2012 1:20 PM

    Navasamol ,
    If it is works ,will u please tell me what is the difference ,if the transformations btw data source and DSO and
    what is the difference btw data source and info cube and btw DSO to Infocube or cube to cube .
    And i have  seen the Quantity fields  and there respective unit fields are mapped directly  to key figure info object
    in case of Info cube . Its working fine .
    If only 1:1 mapping allowed in DSO data fields key figures and there respective unit of measure characteristic.
    why this difference btw DSO and Info cube can any one explain me in detail.
    Expecting your valuable suggestions.
    Thanks & Regards,
    Anjunath Naidu
    Edited by: AnjunathNaidu on Jan 18, 2012 4:05 PM

  • Unable to map the portal user with back end user through web dynpro coding

    Hi All,
    I 've a portal user which is mapped to back end user by  system in the portal.
    i 'm able to get the portal user from web dynpro application.
    But unable to get the mapped back end user
    this is my code
    String systemalias = "SAP_CRM_PROD";
    Map mapattr = new HashMap();
              //     IPrincipal principal = (IPrincipal) request.getUser();
    //   get user user mapping information
    IUserMappingData userMapping =
                   //(IUserMappingData) UMFactory.getUserMapping().getUserMappingData(systemalias, principal, mapattr);
                   (IUserMappingData) UMFactory.getUserMapping().getUserMappingData(systemalias,principal,mapattr );
    //                  For testing purposes only
                   //mappingData = userMapping;
                   HashMap map = new HashMap();
                   userMapping.enrich(map);
                   mappedPassword = map.get(UMAP_KEY_PASSWORD).toString(); //String "user"
                   mappedUserId = map.get(UMAP_KEY_USER).toString(); /
    following is the error reported .
    The project was not built since its classpath is incomplete. Cannot find the class file for javax.xml.soap.SOAPMessage. Fix the classpath then try rebuilding this project.
    please help.

    Hi Sanjay,
       request component need to be initialized before using it. Include these lines before ur code.
    IPortalComponentRequest request = (IPortalComponentRequest) this.getRequest();
    String mappedPassword = null;
    String mappedUserId = null;
    Also check these threads for ur help.
    Accessing Mapped Username / Password
    How to access user id and password via UserMapping ?
    Reward points for helpful answers.
    Regards,
    Harini S

  • Unable to map non-custom fields in EBM

    Hi ,
    I have extended customer party EBO in AIA 2.4 and am using QueryCustomerPartyEBM and QueryCustomerPartyREsponseEBM in my project.
    I am sending response in QueryCustomerPartyREsponseEBM from provider to EBS to requester.
    When i map the response of invoke (that invokes ESB) in the requeter to the Response ABM and execute, all the customer fields from the EBM are getting mapped to ABM, but the non-customer fields are not getting mapped.
    When i put an assign activity after invoke and tried to retrieve these values from Response EBM, an error came up saying that the field is empty.
    But i am able to see the non-customer fields populated in response variable of invoke in requester.
    Please let me know, what might be the possible reason.

    Please refer to "XSLT Extensibility" section, Page 99, in Integration Developer Guide.
    You may find the Foundation Pack Product Documentation - Metalink Note 824495.1 at http://metalink.oracle.com/metalink/plsql/ml2_documents.showNOT?p_id=824495.1
    Regards
    Rohit

  • Unable to capture the screen field in badi

    Dear Experts,
    I have my requirement something like this.
    The t code which we are using is cj20n.
    I need to capture the date fields whcih are in  2 tab and when i press save these fields needs to be captured and validations are to be  done accordingly.
    I have found the badi name as WORKBREAKDOWN_UPDATE and when i put some break point this method trigeers but only few fields are only captured except the second tab values ( i mean date fields ).
    SO please suggest me with a solution as wht needs to be done in my case.
    Regards,
    Madhavi.

    try using import or export parameter id .

  • How to find the corresponding  field in r/3 to a info object in a cube?

    Hi,
           In a cube I have an info object WKNO and data is loaded from r/3 through  a process chain to that cube.
    now i need to check from which field and table in r/3 the data is coming to the info object?

    Hi
    You can take the datasource name for the Cube and the infoobject
    Then pass this to table RSOFIELDMAP , to get the corresponding  R/3 fieldname
    And for R/3 table u need to check datasources definition in BI content library
    May b if ur datasource is there in below the link u can follow the tables to get the exact field source
    https://wiki.sdn.sap.com/wiki/display/BI/BW%20SD%20MM%20FI%20DATASOURCES
    Hope this helps
    Sonal.....

  • How to disable the text field in File upload element?

    Hi,
    How can we disable the text field in the "File upload" UI element so that the user won't be able to type the file path there, but he will still be able to browse the file using the Browse button?
    Regards
    Praveen

    Hi Praveen,
    This is not possible with the Web Dynpro File Upload UI element.
    Thanks,
    Samta

  • Unable to Find the enchanced fields in transfer structure.

    Hi,
    I need to add 4 fields for a dat asource which is already present through function module in Generic Extraction.
    I had added the fields removed(unchecked the hide option) for those fields in extract structure in r/3.
    I had replicated the datasource and i checked the fields in data source(Data source-->display --> Fields). Those fields are available in datasource. But iam unable to find those newly added fields in Transfer structure.
    Kindly update me if i missed anything and why iam not able to find those fields .
    Thanks & Regards,
    Bharathi.

    Hi,
    Try activating the datasource using the program RSDS_DATASOURCE_ACTIVATE_ALL.
    after executing the program, enter source system and datasource. also UNCHECK the option "only inactive objects"
    check the transferrules after activating the datasource.
    This might help you.
    Regards,
    Srinath.
    Edited by: Srinath Singamsetti on Jul 27, 2009 11:19 AM

  • How to map the form fields with zoho crm module?

    I am integrating a web app with Zoho CRM,I created a form in .aspx and put some fields on it like first name,last name,email etc.Now i want to map these fields with the zoho crm contacts module,so that when i submit this form it will save the data there.
    Sumit Bhargav

    Hi Sumit,
    ZOHO CRM is third party software, it’s out of our support range. I recommend you have a look at ZOHO Developer API from
    http://www.zoho.com/crm/help/api/. If you have any questions about it, you can open thread on their forum for support.
    https://forums.zoho.com/.
    Thank you for understanding.
    Regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • I came up with the brilliant idea to add Photoshop Elements 6 to Adobe CS3

    My original purpose was to add the OneOn Software with Elements.  Well I found I started having some problems with Photoshop.  I was adding Nik filters to both the elements and the CS3.  I didn't realize that I had Elements 6 so I downloaded 8 to help the situation.  This only made it work.  I decided to delete Photoshop CS3 and both elements 6 and 8.  I notice that the CS3 and Elements were sharing software.  When I tried to reload CS3 but I kept getting requests for Elements 6 and then 8 and back again.   I wasn't able to reload the software.  I kept getting errors to complete the software before loading other software.  I went through the computer and deleted all the Adobe files in Applications and in Utilities.  I have repaired the hard drive and the permissions under Disk utility.  I still have a problem loading CS3.  At this time I am going to start fresh and reload Adobe Snow Leopard.  Does anybody have any suggestions to fix the problem without reloaded the software and wiping everything out.  Thanks.
    Mark
    The moral in this story is keep it simple and don't mix Elements and Photoshop CS3.
    I did call Adobe tech support and they only support the most current software which is CS5 so they didn't help me at all.

    Well, I don’t quite follow the problem … but maybe the cleaner script can help removing CS3 properly before reinstalling?
    http://kb2.adobe.com/cps/829/cpsid_82947.html

Maybe you are looking for

  • MRP Issue in MD51

    Hi All, Facing problem in MRP run...pls see the scenario Case -1 Sales Order - A Line item - 10 Material - XXX Qty - 100 WBS - YYY If MRP runs for WBS-YYY in MD51 system creates Planned order/Prod ord for 100 Case -2 All parameters are same as that o

  • Ps Cs5 crashing

    Problem Event Name: BEX64   Application Name: Photoshop.exe   Application Version: 12.0.4.0   Application Timestamp: 4d9d8f8e   Fault Module Name: WinTab32.dll_unloaded   Fault Module Version: 0.0.0.0   Fault Module Timestamp: 4e694f62   Exception Of

  • Why can't my image be displayed?

    Anybody could help me with the code? the image does not seem to appear when i run it...is it because JPanel cannot work with Canvas? or is it because of the error in getImage() method? This are the code for the ImageClient import java.awt.*; import j

  • Is it possible to add a button with image on the title bar(IDR)?

    I look through all the buttons in the example, All of them does not with an image on them. Is it posslbe to put a image on the title bar? Best regards? Blake Le

  • Mail shows just my first name. Please help me

    Hello, if I write an email with my MAIL program, everybody can just see my first name. This is very unprofessional. In the Mail settings is in the Account information my full name stated. But it still shows just my first name. How can I change it, th