Fields not autopopulating after RUP7 patch

All
I have a custom page that when you select a value from a list of value based on your selection it will populate the rest of the fields in the page. It was working with out a problem. After we apply the RUP7 Patch, the page is no longer getting populated with when we select a value from the list of value.
We thought that we just needed to recompile the page with the newer version of J developer but it did not help
could there be a profile option that we missed?
Below is the code
thank you
public void processFormRequest(OAPageContext pageContext, OAWebBean webBean)
super.processFormRequest(pageContext, webBean);
OAApplicationModule am = pageContext.getApplicationModule(webBean);
// default values when quote to send and expire is selected from the LOV
String event = pageContext.getParameter("event");
if("lovUpdate".equals(event))
// if (pageContext.isLovEvent())
// then grab the View Object and set the Default effective date to be set.
OAViewObject VO = (OAViewObject)am.findViewObject("B2BQuoteProcessLogVO1");
Row row = (Row)VO.getCurrentRow();
String quoteToSend = (String)VO.getCurrentRow().getAttribute("TransmitQuotationName");
String quoteToExpire = (String)VO.getCurrentRow().getAttribute("ExpireQuotationName");
Number quoteId = (Number)VO.getCurrentRow().getAttribute("TransmitQuoteId");
Number quoteId2 = (Number)VO.getCurrentRow().getAttribute("TransmitQuoteId");
String stmt = null;
String stmt2 = null;
String restrictPurchase = null;
String quoteCategory = null;
String stmt3 = null;
String stmt4 = null;
String websiteName = null;
String summaryFlag = null;
String websiteNumber = null;
//initialize values
if (quoteToSend != null)
row.setAttribute("TransmitEffectiveDate",am.getOADBTransaction().getCurrentDBDate());
// Find Default Quote Category
stmt2 = "begin ? := FORX_B2B_QUOTE_PROCESS_API.get_quote_category(?); end;";
try
java.sql.CallableStatement cs2 = am.getOADBTransaction().createCallableStatement(stmt2, 1);
cs2.registerOutParameter(1,Types.VARCHAR);
cs2.setInt(2, quoteId2.intValue());
// execute statement
cs2.executeUpdate();
// get return value
quoteCategory = cs2.getString(1);
// close statement
cs2.close();
catch(Exception e) {}
row.setAttribute("QuoteCategory",quoteCategory);
// Find Default Restrict Purchase Value
stmt = "begin ? := FORX_B2B_QUOTE_PROCESS_API.get_restrict_purchase(?); end;";
try
java.sql.CallableStatement cs = am.getOADBTransaction().createCallableStatement(stmt, 1);
cs.registerOutParameter(1,Types.VARCHAR);
cs.setInt(2, quoteId.intValue());
// execute statement
cs.executeUpdate();
// get return value
restrictPurchase = cs.getString(1);
// close statement
cs.close();
catch(Exception e) {}
// Assign default restrict Purchase value
row.setAttribute("RestrictPurchase",restrictPurchase);
// Find Default Website Name Value
stmt3 = "begin ? := FORX_B2B_QUOTE_PROCESS_API.get_website_name(?); end;";
try
java.sql.CallableStatement cs = am.getOADBTransaction().createCallableStatement(stmt3, 1);
cs.registerOutParameter(1,Types.VARCHAR);
cs.setInt(2, quoteId.intValue());
// execute statement
cs.executeUpdate();
// get return value
websiteName = cs.getString(1);
// close statement
cs.close();
catch(Exception e) {}
// Assign default Website Name value
row.setAttribute("WebsiteName",websiteName);
// Find Default Summary Flag Value
stmt3 = "begin ? := FORX_B2B_QUOTE_PROCESS_API.get_summary_flag(?); end;";
try
java.sql.CallableStatement cs = am.getOADBTransaction().createCallableStatement(stmt3, 1);
cs.registerOutParameter(1,Types.VARCHAR);
cs.setInt(2, quoteId.intValue());
// execute statement
cs.executeUpdate();
// get return value
summaryFlag = cs.getString(1);
// close statement
cs.close();
catch(Exception e) {}
// Assign default Summary Flag Value
row.setAttribute("Attribute2",summaryFlag);
if (quoteToExpire != null)
row.setAttribute("ExpireExpirationDate",am.getOADBTransaction().getCurrentDBDate().addJulianDays(-1,0));
// Pressing the "Apply" button means the transaction should be validated
// and committed.
if (pageContext.getParameter("Apply") != null)
OAViewObject vo = (OAViewObject)am.findViewObject("B2BQuoteProcessLogVO1");
String quoteToSend = (String)vo.getCurrentRow().getAttribute("TransmitQuotationName");
//Date effectiveDate = (Date)vo.getCurrentRow().getAttribute("TransmitEffectiveDate");
Number quoteLogId = (Number)vo.getCurrentRow().getAttribute("QuoteLogId");
//String quoteCategory = (String)vo.getCurrentRow().getAttribute("quoteCategory");
String quoteToExpire = (String)vo.getCurrentRow().getAttribute("ExpireQuotationName");
//Date expireExpirationDate = (Date)vo.getCurrentRow().getAttribute("ExpireExpirationDate");
am.invokeMethod("apply");
// Indicate that the Create transaction is complete.
TransactionUnitHelper.endTransactionUnit(pageContext, "quoteProcessTxn");
// Assuming the "commit" succeeds, navigate back to the "Deal Sales Credit Assignment" page
// and display a "Confirmation" message at the top of the page.
MessageToken[] tokens = { new MessageToken("QUOTESEND",quoteToSend),
new MessageToken("QUOTEEXPIRE",quoteToExpire)};
OAException confirmMessage = new OAException("FORX",
"FORX_B2B_PRC_QUOTE_CONFIRM",
tokens,
OAException.CONFIRMATION,
null);
if ((quoteToSend == null) && (quoteToExpire == null))
else
// Add the confirmation message at the top of the page
pageContext.putDialogMessage(confirmMessage);
pageContext.forwardImmediately("OA.jsp?page=/forsythe/oracle/apps/forx/b2bquote/webui/B2BQuoteProcessPG",
null,
OAWebBeanConstants.KEEP_MENU_CONTEXT,
null,
null,
true, // retain AM
OAWebBeanConstants.ADD_BREAD_CRUMB_NO);
else if (pageContext.getParameter("Cancel") != null)
am.invokeMethod("rollbackB2BQuoteProcess");
// Indicate that the Create transaction is complete.
TransactionUnitHelper.endTransactionUnit(pageContext, "quoteProcessTxn");
pageContext.forwardImmediately("OA.jsp?page=/forsythe/oracle/apps/forx/b2bquote/webui/B2BQuoteProcessPG",
null,
OAWebBeanConstants.KEEP_MENU_CONTEXT,
null,
null,
false, // retain AM
OAWebBeanConstants.ADD_BREAD_CRUMB_NO);
Edited by: user618218 on May 2, 2011 9:58 AM

I tried the following:
     Recompiled the page using the recommended version of Jdeveloper OA framework 11.2.10.RUP7
     Redeployed the page in DEV
     Set user profile option per Oracle request
     I tried each package call in TOAD and they are all returning values as expected
     I strip the codes that call packages to get default values and replace it with hard coded values
     I changed the code
o     From
String event = pageContext.getParameter(event);
If (“lovUpdate”.equals(event))
o     To what was in the RUP7 document
If (pageContext.isLovEvent()
None of these worked

Similar Messages

  • LM13: Verification field not cleared after [Enter] key

    Hi Experts,
    I'm facing the issue as stated in the OSS note 916654 - LM13: Verification field not cleared after [Enter] key. My current system is ECC, that is why the OSS is already applied to the ECC version. But the problem is, i still faced the problem stated in the OSS.
    Symptom
    In customizing:
    - You have defined [ENTER] in destination screen 302 to SAVE items.
    - You want to verify the destination bin information.
    You use 'Confirm Transfer Order Clustered' RF transaction LM13.
    You scan several SUs and press enter.
    You press [F4-Next pushbutton] to confirm the associated TO(s).
    In the destination screen 302, you scan the verification value for the first item and press [ENTER] key.
    ==> The item is confirmed correctly but when the system proposes the next item, the verification value of the first item is displayed.
    Anyone know how to fix this issue? Pls help.
    thanks
    Hooi Fung

    Hi,
    For example itab-matnr is your screen field
    in PAI
      field: itab-matnr,
             module check_matnr_0700.
    module check_matnr_0700 input.
      move itab_matnr to v_matnr.
    endmodule.
    in PBO.
    move v_matnr to itab-matnr.

  • Note 916654 - LM13: Verification field not cleared after [Enter] key

    Hi Experts,
    I'm facing the issue as stated in the OSS note 916654 - LM13: Verification field not cleared after [Enter] key. My current system is ECC, that is why the OSS is already applied to the ECC version. But the problem is, i still faced the problem stated in the OSS.
    Symptom
    In customizing:
    - You have defined [ENTER] in destination screen 302 to SAVE items.
    - You want to verify the destination bin information.
    You use 'Confirm Transfer Order Clustered' RF transaction LM13.
    You scan several SUs and press enter.
    You press [F4-Next pushbutton] to confirm the associated TO(s).
    In the destination screen 302, you scan the verification value for the first item and press [ENTER] key.
    ==> The item is confirmed correctly but when the system proposes the next item, the verification value of the first item is displayed.
    Anyone know how to fix this issue? Pls help.
    thanks
    Hooi Fung

    Thanks a lot for your prompt answer. Well yes if i clear in the PBO the value gets cleared, but then i wanted to get the next records value into the value field, well the problem got solved in a much easier way i put everything into one chain endchain statement.

  • SHCess field not appearing after using utilization tab in excise invoice

    Dear All,
    SHCess field not appearing after using utilization tab in excise invoice.The other fields and values releated to SHCess are appearing.
    Please give the inputs.
    Regards,
    deepti

    issue resolved

  • Oracle field length error after Oracle patch update

    Dear All,
    We have an ABAP program wherein we are inserting records in an external (non-SAP) Oracle DB
    by means of native SQL. On 22/08/2010, we had updated an Oracle patch in the production server.
    After the patch was updated, the program has started throwing error:
    An SQL error has occurred: ORA-12899: value too
    large for column
    "CELLAPPS"."AWLTBLMESSAGES"."MESSAGETEXT" (actual:
    438, maximum: 350)#ORA-06512: at line 1
    The message text variable has only 219 characters. After some observations, i found that all the data is
    converted into exactly double the length after this oracle patch update.
    Please help.
    Thanks.

    Hello,
    Which is your NLS for your SAP and the external databases?
    SELECT VALUE FROM V$NLS_PARAMETERS WHERE PARAMETER = 'NLS_CHARACTERSET';
    What is your DBCO Conn. Info field?
    What is the result if you set the remote connection in DBCO as per SAP note [808505|http://service.sap.com/sap/support/notes/808505]?
    Regards,
    Eduardo Rezende

  • Concurrent Manager Not Started after RUP7

    Hi All,
    After applying patch (6241631) 11.ATG_RUP7 concurrent manager showing status as not started in OAM.
    The patch Installation completed succesfully with no issues.
    All the concurrent managers are running and all application is running fine. Only the issue is with OAM
    Thanks in advance for any inputs.

    Hi,
    Note: 858801.1 - Known Issues On Top of 11i.ATG_PF.H.delta.7 (RUP7) - 6241631Doesn't contains any Information.Save this document for future reference as I expect bugs and.issues to be reported later.
    I will try to regenerate all JAR files with force option. For this do we need to bounce web server?Yes.
    Regards,
    Hussein

  • Adobe form not working after MSS Patch Upgrade

    Hi,
    We have implemented ESS/MSS and in one of the MSS scenario to create a new personnel chnage request we have an Adobe interactive form (WD) which actually validates the users Social Security number by calling an RFC in the ECC 6.0 and updates the form's filed on the front end. There was an issue of "Expired SSO Ticket" and to resolve this SAP recommended to apply SAP_JTECHS (SAPJTECHS13P_14-10003467) and SAP_JTECHF (SAPJTECHF13P_15-10003468) patches to fix the problem. But after applying these patches Adobe form for PCR has stopped working and it just gets hanged, form appears on the front end and when user enters the values and hit enter to validate, it doesnt communicate with the Backend ECC system only the SAP status picture keeps rotating, i turned the trace ON and checked it, its not at all communicating with the ECC system. Where as in other systems where we have not appplied the pacthes, those are working fine. One of the error i noticed in the server log is as below:
    jco.client.mysapsso2=AjExMDAgAA5wb3J0YWw6QkNPTFNUT4gAE2Jhc2ljYXV0aGVudGljYXRpb24BAAdCQ09MU1RPAgADMDAwAwADU1BEBAAMMjAwODExMDMxNjU3BQAEAAAAEAoAB0JDT0xTVE//AQUwggEBBgkqhkiG9w0BBwKggfMwgfACAQExCzAJBgUrDgMCGgUAMAsGCSqGSIb3DQEHATGB0DCBzQIBATAiMB0xDDAKBgNVBAMTA1NQRDENMAsGA1UECxMESjJFRQIBADAJBgUrDgMCGgUAoF0wGAYJKoZIhvcNAQkDMQsGCSqGSIb3DQEHATAcBgkqhkiG9w0BCQUxDxcNMDgxMTAzMTY1NzQwWjAjBgkqhkiG9w0BCQQxFgQUfD7V7TS!58cgzIFyucxCSL4ltuswCQYHKoZIzjgEAwQvMC0CFA4Q0!Rr2xYFPwFwXz8WeFF1UALlAhUAmHiTdHw!3s4Q!Jc9gDyY4QSvxa4=, user=, mshost=sapdv2.company.com, r3name=DV2, jco.client.type=B, jco.client.trace=0, group=SRS, codepage=1100}
    Client not connected#
    #1.5 #76C1EDD07B440026000000000007501600045ACC2EF6809D#1225732914577#/Applications/BusinessLogic#sap.com/home~zb2bzsrs#com.sap.isa.core.eai.sp.jco.JCoConnectionStateful#BCOLSTO#1480##hadspd1.bnet_SPD_306896250#BCOLSTO#daca9e30a9cb11dd99c976c1edd07b44#SAPEngine_Application_Thread[impl:3]_19##0#0#Error#1#/Applications/BusinessLogic#Java###Error occcurred in EAI layer "".#2#com.sap.mw.jco.JCO$Exception: (104) RFC_ERROR_SYSTEM_FAILURE: Error in module RSQL of the database interface.#parameters: [client]='null' [user]='null' [language]='null' [ashost]='null' [systemnumber]='null' [mshost]='null' [gwhost]='null' [gwserv]='null' [group]='null' [systemid]='null'
    Properties: {passwd=?, lang=en, client=150,
    Can someone please suggest what could be the possible reason for such a problem with Adobe form and whats the way out to resolve this. Appreciate a quick help in this regard.
    Thanks in  advance,
    Sarabjeet.

    Hi,
    We had the same issue after the Patch update to SP17 in both Backend as well in Portal, to resolve my colleagues had a look at the standard forms which were working and found that because of the patch update the script used in the custom forms was changed and not the standard and
    on event trigger which was processed in the container they replace the script to the standard one. and it started working.
    But this is not the solution we are looking at solution on having the same version of script as in the standard even after the patch update.
    So to your point to resolve compare the scripts in both standard and customized forms and do the same.
    And also have a look at the SAP Note: 1109392
    .... this is a temporary solution.....
    Hope this helps.
    Cheers-
    Pramod

  • XMII content area not opening after Netweaver patch update.

    Hi all,
    Recently we upgrade Netweaver patches [few] from 7.3 SP7 to 7.3 SP9, after the patch update XMII is not show main content area, Header and links in the left panel are displayed but the main content area is blank.
    Error Trace:
    #2.0 #2014 07 14 13:32:16:540#+0300#Error#com.sap.xmii.Illuminator.gui.homepage.HomePageBuilder#
    ##sap.com/xapps~xmii~ear#C0000A365209024C00000001000031D8#111421450000000004#sap.com/xapps~xmii~ear#com.sap.xmii.Illuminator.gui.homepage.HomePageBuilder#96221#353##1FCB79F10B4211E4BC70000006A4280A#f37849690b4111e4afb7000006a4280a#f37849690b4111e4afb7000006a4280a#0#Thread[HTTP Worker [@2100786422],5,Dedicated_Application_Thread]#Plain##
    Error transfering attributes org.w3c.dom.DOMException: INVALID_CHARACTER_ERR: An invalid or illegal XML character is specified. #
    #2.0 #2014 07 14 13:32:31:063#+0300#Error#com.sap.xapps.mpm.interceptors.AuthorizationChecker#
    #NONE#sap.com/xapps~mpm~ear#C0000A365209024D00000017000031D8#111421450000000004#sap.com/xapps~mpm~ear#com.sap.xapps.mpm.interceptors.AuthorizationChecker#96221#353#JTA Transaction : 57060#1FCB79F10B4211E4BC70000006A4280A#204e5c880b4211e4b3cb000006a4280a#204e5c880b4211e4b3cb000006a4280a#0#Thread[HTTP Worker [@15878578],5,Dedicated_Application_Thread]#Plain##
    com.sap.xapps.oee.ejb.exception.OEELocalizedException: User 96221 does not have authorization to execute this service; user is trying to perform action read#
    #2.0 #2014 07 14 13:32:31:063#+0300#Error#com.sap.xapps.mpm.interceptors.ExceptionHandlerInterceptor#
    #NONE#sap.com/xapps~mpm~ear#C0000A365209024D00000019000031D8#111421450000000004#sap.com/xapps~mpm~ear#com.sap.xapps.mpm.interceptors.ExceptionHandlerInterceptor#96221#353#JTA Transaction : 57060#1FCB79F10B4211E4BC70000006A4280A#204e5c880b4211e4b3cb000006a4280a#204e5c880b4211e4b3cb000006a4280a#0#Thread[HTTP Worker [@15878578],5,Dedicated_Application_Thread]#Plain##
    com.sap.xapps.oee.ejb.exception.OEELocalizedException: User <USER_ID>does not have authorization to execute this service; user is trying to perform action read#
    #2.0 #2014 07 14 13:32:31:079#+0300#Error#com.sap.tc.webdynpro.model.ejb.model#
    #BC-JAS-EJB#tc~cm~ejb~api#C0000A365209024D0000001B000031D8#111421450000000004#sap.com/xapps~mpm~ui#com.sap.tc.webdynpro.model.ejb.model#96221#353##1FCB79F10B4211E4BC70000006A4280A#204e5c880b4211e4b3cb000006a4280a#204e5c880b4211e4b3cb000006a4280a#0#Thread[HTTP Worker [@15878578],5,Dedicated_Application_Thread]#Plain##
    execute
    Component and version:
    Component
    Version
    ADSSAP
    1000.7.30.0.0.20101020230400
    AJAX-RUNTIME
    1000.7.30.9.19.20140618151600
    BASETABLES
    1000.7.30.9.1.20140217143400
    BI-WDALV
    1000.7.30.7.2.20120925175200
    CFG_ZA
    1000.7.30.7.1.20120710234700
    CFG_ZA_CE
    1000.7.30.7.0.20120312160300
    CORE-TOOLS
    1000.7.30.9.15.20140609162300
    DI_CBS
    1000.7.30.9.0.20130217111100
    DI_CLIENTS
    1000.7.30.7.2.20120808174400
    DI_CMS
    1000.7.30.9.0.20130217111100
    DI_DTR
    1000.7.30.9.1.20130429184500
    ENGFACADE
    1000.7.30.9.3.20130731225200
    ENGINEAPI
    1000.7.30.9.13.20140514195200
    EP-BASIS-API
    1000.7.30.9.3.20131203022700
    ESI-UI
    1000.7.30.7.1.20120419061400
    ESP_FRAMEWORK
    1000.7.30.7.3.20121022202400
    ESREG-BASIC
    1000.7.30.7.2.20130915212500
    ESREG-SERVICES
    1000.7.30.7.0.20120312224700
    FRAMEWORK
    1000.7.30.9.6.20140312211900
    FRAMEWORK-EXT
    1000.7.30.9.11.20140510042200
    J2EE-APPS
    1000.7.30.9.8.20140513152200
    J2EE-FRMW
    1000.7.30.9.20.20140702194800
    JSPM
    1000.7.30.7.1.20131029203300
    LM-CORE
    1000.7.30.9.10.20140702194800
    LM-CTS
    1000.7.30.7.5.20121018185000
    LM-CTS-UI
    1000.7.30.7.0.20120312160500
    LM-MODEL-BASE
    1000.7.30.7.0.20120312170300
    LM-MODEL-NW
    1000.7.30.7.0.20120312170300
    LM-SLD
    1000.7.30.7.3.20130822180000
    LMCFG
    1000.7.30.7.7.20130211235800
    LMCTC
    1000.7.30.7.5.20120823193700
    LMNWABASICAPPS
    1000.7.30.9.7.20140528172400
    LMNWABASICCOMP
    1000.7.30.7.1.20120501171100
    LMNWABASICMBEAN
    1000.7.30.7.2.20130509173200
    LMNWACDP
    1000.7.30.7.0.20120312170300
    LMNWATOOLS
    1000.7.30.7.0.20120313005500
    LMNWAUIFRMRK
    1000.7.30.7.3.20131028182100
    MESSAGING
    1000.7.30.9.31.20140616191000
    MII_ADMIN
    1000.14.0.4.2.20140310045511
    ODATA-CXF-EXT
    1000.7.30.8.3.20130619172700
    OEE_MII
    1000.1.0.2.0.20140110094411
    SAP-XI3RDPARTY
    1000.7.30.0.0.20101021060500
    SAPMECORE
    1000.6.1.4.14.201405091456
    SAPMECTC
    1000.6.1.4.2.20140513105149
    SAPMEINT
    1000.6.1.4.9.20140513105113
    SAPMEINTCTC
    1000.6.1.4.2.20140411083601
    SAPMELEGACY
    1000.6.1.4.14.201405091456
    SAP_BUILDT
    1000.7.30.9.0.20130217101400
    SECURITY-EXT
    1000.7.30.7.5.20121008182800
    SERVERCORE
    1000.7.30.9.31.20140702194800
    SOAMONBASIC
    1000.7.30.9.1.20130626201800
    SR-UI
    1000.7.30.7.0.20120313005400
    UDDI
    1000.7.30.7.0.20120312224700
    UISAPUI5_JAVA
    1000.7.30.9.19.20140130141100
    UMEADMIN
    1000.7.30.7.7.20130515172000
    WD-ADOBE
    1000.7.30.7.0.20120312164400
    WD-APPS
    1000.7.30.9.0.20130217123000
    WD-RUNTIME
    1000.7.30.9.22.20140609172000
    WD-RUNTIME-EXT
    1000.7.30.9.0.20130217123000
    WSRM
    1000.7.30.9.0.20130217140200
    XMII
    1000.14.0.4.3.20140314030733
    Are we missing patch updates?
    Has anyone faced this issue, any help would be highly appreciated.
    Thanks,

    Please see SAP Note 2040655 for this fix.
    Regards, Steve

  • Master-detail: detail field not displayed after changed by master field

    I want to use the Depends on item with Clear/refresh value functionality in a master detail situation. Within the same group it is no problem to use the setter method of a field to change a second field and then displaying this new value. But in the detail group, I can not select items from the master group as a depends on item.
    In the setter of the master field, the value in a field for each row in the detail (table layout) is updated. The only problem is that this updated value is not displayed, the old value doesn't change. When saving the changes, the displayed value is committed to the database. When de updated field is not displayed at all, the correct value is saved, so I know the detail field is updated.
    How can I make sure the displayed value in the detail is displayed after changeing a master field? I already gave the detail field the correct partial trigger.

    Wouter,
    I guese you don;t see the changed value when you display the detail item because after the depends on item update changed the detail item, JSF procesing continues and the detail table changes are sent to the server which will override again the detail item attriibute, resetting it to the old, still displayed value.
    So, the trick is to get PPR working. Make sure the partialTYriggers property of the detail item is set to the value of the id property of the master item. If it still doesn't work, try setting the partial triggers property on the table, instead of the individual item.
    Steven Davelaar,
    JHeadstart team

  • Help for date field not working after upgrade

    hi experts,
    In our BSP application for a page we had an inputfield (date).
    Onvaluehelp for input field we were calling the saphelpdate function.
    however after upgrade this functionality is not working properly as no pop up comes after clicking on the icon.
    we have upgraded to SPS 16 recently.
    please help me.
    regards,
    Arvind.

    Hi, I try upper case but nothing happen. This is all my code by far, I hope you can help me:
    DATA: BEGIN OF T_PCONT OCCURS 0,
          PCONT LIKE ZPSPERMISOS-PSOBKEY,
    END OF T_PCONT.
    DATA: BEGIN OF T_FIELDS OCCURS 0.
            INCLUDE STRUCTURE help_value.
    DATA END OF T_FIELDS.
    DATA: BEGIN OF T_VALUES OCCURS 0,
          VALUE(60) TYPE c.
    DATA: END OF T_VALUES.
    DATA: N TYPE i.
    SELECTION-SCREEN BEGIN OF BLOCK  b20 WITH FRAME TITLE text-b02.
      SELECT-OPTIONS:
        P_CONT FOR  ZPSPERMISOSH-PSOBKEY OBLIGATORY NO-EXTENSION NO INTERVALS,
        P_INT  FOR  ZPSPERMISOSH-PARTNER OBLIGATORY NO-EXTENSION NO INTERVALS,
        P_FEC  FOR  ZPSPERMISOSH-ZFINICN NO-EXTENSION NO INTERVALS,    
        P_RAZ  FOR  ZPSPERMISOSH-ZRAZONFINIC NO-EXTENSION NO INTERVALS.
    SELECTION-SCREEN END OF BLOCK b20.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR P_CONT-LOW.
      PERFORM P_HELP_P_CONT USING P_CONT-LOW.
    *&      Form  P_HELP_P_CONT
    FORM P_HELP_P_CONT  USING P_P_CONT.
      DESCRIBE TABLE T_PCONT LINES N.
      IF N EQ 0.
        T_FIELDS-FIELDNAME  = 'PSOBKEY'.
        T_FIELDS-TABNAME    = 'ZPSPERMISOS'.
        T_FIELDS-SELECTFLAG = 'X'.
        APPEND T_FIELDS.
        CLEAR T_FIELDS.
        SELECT PSOBKEY FROM ZPSPERMISOS
        INTO  TABLE T_PCONT.
        SORT T_PCONT BY PCONT.
      CALL FUNCTION 'HELP_VALUES_GET_WITH_TABLE'
        EXPORTING
          CUCOL        = 10
          CUROW        = 1
          TABNAME      = 'T_PCONT'
          FIELDNAME    = 'PCONT'
        IMPORTING
          SELECT_VALUE = P_P_CONT
        TABLES
          FIELDS       = T_FIELDS
          VALUETAB     = T_VALUES.
    ENDFORM.                    " P_HELP_P_CONT
    Edited by: J. Garibaldi on Nov 25, 2009 11:14 AM
    Edited by: J. Garibaldi on Nov 25, 2009 11:16 AM

  • HCM Processes & Forms: Field not updating after Drop Down list selection

    Hello all,
    I am having a problem that I think happens a lot, but I can't solve it through all the examples given here.
    I have a Drop Down List where I change the value. On the CHANGE event, I have:
    xfa.record.CONTROL_PARAM.ISR_EVENT.value = "GET_ORGINFO";
    ContainerFoundation_JS.SendMessageToContainer(event.target, "submit", "", "", "", "");
    I have defined a User Event called GET_ORGINFO. It gets triggered fine. It moves into my generic service that I defined, and it changes the value that I want to change.
    When I look at the PDF, the value is still in it's old value. So, after reading some blogs, which specifically says, if something goes wrong in one service (I have 3: my own, SAP_PA and S_MGRS_POSITIONS), they all fail. I debugged and checked, and, after some changes, nothing goes wrong anymore, nothing that I can see anyway.
    So what I do see, is that there's a call made like this:
      CALL METHOD me->process_data_container
        EXPORTING
          ref_to_data_container = ref_to_relevant_data_container
          operation             = c_do_operations
          message_handler       = dummy_message_handler
          no_auth_check         = no_auth_check
        IMPORTING
          is_ok                 = operation_ok.
    Within this method, my new value is listed (in the table VALUES_OF_FIELDS). After this call is made, so when it exists the method process_data_container, the old values are back in VALUES_OF_FIELDS.
    So, at the last moment INSIDE the method, the values are correct, as soon as it steps out of this method, the old values are back.
    Does anyone have any idea? Am I doing something wrong with regards to the User Events? I am on EnhP 04.
    Gr,
    Jaron Frenk

    Hey Chris,
    Unfortunately, that's not it. I did check the fields I need. Everything is going ok. As in, I get the fields (with their current values) in my own generic operation. I see everything updated the way it should. But then at the end, nothing happens...
    What exactly do you mean by " then make sure your own generic service has it's input/output defined correctly". What input/output do you mean? I assume the generic service itself is okay, since it works with the user event "USER_EVENT_CHECK". And it sure is possible I am forgetting something in the definition of the user event, but I can't figure out what.
    A small addition*
    I just checked by user event. I have 3 fields selected:
    I0001_PERSG
    I0001_PERSG_TXT
    I0001_PERSK
    The generic service should get the PERSG and PERSG_TXT based on the PERSK that is entered. I don't think I need anything more.
    Gr,
    Jaron
    Edited by: J. Frenk on Apr 26, 2010 9:01 AM

  • FTPS file adapter setup fields not visible after SP13 install

    After installation of SP13, I was looking for file adapter FTPS setup (fields described in SP13 release notes). I could not see any. It's just like the old adapter.
    Java cryptolib is installed, and we checked it is there.
    we recycled the whole thing.
    Any idea what could be missing ?

    Solved. We had applied SP12 file.
    Note that this originates from the SP stack download tool.
    We had followed the generic download process and it did not contain the SP13 tpz file.
    I tried again this morning, when selecting source sp11 target sp13, The selection of packages selects
    SAPBASIS12_0-10002900.zip... and not the SP13 one.
    Watch out if you move two SP up !
    Detailed solution :
    Downloaded the SP13 zip file. the following way.
    service.sap.com  download/entry by app grp/sap content
    process integration (XI content)/ XI_CONTENT_SAP_BASIS/ XI_CONTENT_SAP_BASIS_6.40/DB independant/ selected sp13 from the list
    Unzipped, and put the tpz file in the import directory
    of the repository. file name is XI3_0_SAP_BASIS_6.40_13_02.tpz
    Imported it
    And it works now
    Thanks a lot for your help.

  • YouTube Feature Not Working After Installing Patch

    The YouTube feature won't work even after installing the latest patch.  I have also found that the Jeopardy and Millionaire widgets are very touchy and crash easily.  There is nothing on this blog that offers any help in how to get this working.  Adobe must know it's not working with all the comments on this blog, so when are they going to do something about it.  I would really like to use this feature in my training, but I cannot.  Please Adobe, fix this. 

    I saw this poster's comments on the YouTube channel video for this interaction. Maybe it will help ...
    My friends, it´s working, but not in the first 4 options of previewing. You need to publish at your site for testing, or, in most cases, it works too when you select to preview in web browsesr (F12). I didn´t test yet in HTML5 web browser preview (F11), but I think it works there too. And it´s so fine!

  • Solaris 10 daylight saving not working after install patch 122032-04

    All,
    I installed Solaris 10 with recommended patches. Patch 122032-04 also installed and some how when I test the daylight saving and does not work.
    Any more patches should I apply for this to work?
    Thanks for your help!

    After removing every xf86-video-* package except  xf86-video-nouveau, xf86-video-vesa and  xf86-video-nv plus installing nouveau-dri and rebooting, it works. Thanks karol!

  • 10.1.2.0.2 OID not listening after database patch 10.0.5

    Hi
    I've installed database patch 10.0.5 to an Oracle Infrastructure 10.1.2.0.2. The software and scripts installed with no problems. I started the OID server using:
    opmnctl start process-type=OID
    Which always worked before and it returns with no errors. But OID is not listening on port 389. dcmctl start will throw an error trying to connect to OID.
    Any ideas?

    The readme for the patch has very detailed instructions !
    OID needs to be up as you say plus the other components. But there is a good prereq checker before you run it.
    If worried do a backup of $OH , the inventory and the IASDB then give it a try, if it fails just restore.

Maybe you are looking for

  • How to update adobe flash player with os10.6.8

    how to update adobe flash player with os10.6.8

  • How can I edit individual video frames?

    I have been searching the web and scratching my head trying to figure out a way of scrubbing a bit of content out of a few frames in a video. I have iMove (the latest version) and I have Final Cut Express (obviously a few years old now) and would be

  • ORACLE SERVER ERROR

    pls tell how can i trap and handle the error returned by oracle server in my forms with the oracle error no and the associated message with that error. thank you with regards

  • File drag and drop with Labview 7 and Mac OS X Tiger?

    Hi folks, I've lost the ability to drag and drop files into front panel file path controls, since I upgraded to a new OS X version. Specifically: What used to work:     - Labview 7.0     - Mac OS X 10.3.x     - drag file icon from desktop and drop on

  • Unable to join my own network, can anyone help?

    My modem was disconnected from power for a few hours and when it was plugged back in I could get on the internet with my desktop but unable to connect on my iPad.... I get a message that says: Unable to join network... Does not even give option of su