ADF 11g - Issue with Custom Skin for CommandButton & InputNumberSlider.

Hi,
Any Help relative will be greatly appreciated !!!
Currenlty we have an requirement to override the UI Skin of ADF to custom one.
Where the page design has some command button & InputNumberSlider(replace with skin of scroll bar)
FYI, we are working with Integrated Weblogic Server, Jdeveloper Version(Build JDEVADF_MAIN.BOXER_GENERIC_081002.2127.5156)
Following is the JSPX, containing style (CSS) with in
==============================================================================================================================
<?xml version='1.0' encoding='windows-1252'?>
<jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:af="http://xmlns.oracle.com/adf/faces/rich"
xmlns:trh="http://myfaces.apache.org/trinidad/html">
<jsp:directive.page contentType="text/html;charset=windows-1252"/>
<f:view>
<af:document binding="#{backingDisplayImageShell.document1}" id="document1">
<af:form binding="#{backingDisplayImageShell.form1}"
inlineStyle='align:center; background-image:url("img/flex-skin.jpg");background-repeat:repeat;'
id="form1">
<style type="text/css">
@platform window, linux {
@agent ie, gecko {
af|inputNumberSlider::minus-button {
background-image: url('../img/skin/horizontal_scrollbar_arrowUp.gif');
af|inputNumberSlider::plus-button{
background-image: url('../img/skin/horizontal_scrollbar_arrowDown.gif');
af|inputNumberSlider::thumb-icon-style{
background-image : url('../img/skin/horizontal_scrollbar_knobLarge.gif');
af|inputNumberSlider::thumb{ 
background-image: url('../img/skin/horizontal_scrollbar_knobLarge.gif');
af|inputNumberSlider:vertical::thumb{ 
background-image: none;
af|inputNumberSlider:vertical::thumb:rtl{ 
background-image: none;;
af|inputNumberSlider:vertical:disabled::thumb{ 
background-image: none;
af|inputNumberSlider:vertical:disabled::thumb:rtl{ 
background-image: none;
af|inputNumberSlider:disabled::minus-button{ 
background-image: none;;
af|inputNumberSlider:disabled::plus-button{
background-image: none;;
af|inputNumberSlider:disabled::thumb{ 
background-image: none;
af|inputNumberSlider::minor-tick{
background-image : none;
</style>
<trh:script>goGetShuffled = function(event) { var source =
event.getSource(); AdfCustomEvent.queue( source, "OnImageClick"
, {}, false); event.cancel(); }; /*function hidePopUpWindow(){
hide(); }*/</trh:script>
<af:spacer height="100"/>
<af:panelGroupLayout layout="horizontal" halign="center"
id="panelGroup4CmdButtons"
inlineStyle="width:45%; height:16px; background-color:transparent;"
clientComponent="true">
<af:commandButton text="Download" icon="/img/download.jpg"
inlineStyle='background-image:url("img/skin/commandButton.gif"); background-repeat:no-repeat; border-color:transparent; border-style:none;'/>
<af:commandButton text="Promote" icon="/img/promote.jpg"
inlineStyle='background-image:url("img/skin/commandButton.gif"); background-repeat:no-repeat; border-color:transparent; border-style:none'/>
<af:commandButton text="Delete" icon="/img/delete.jpg"
inlineStyle='background-image:url("img/skin/commandButton.gif"); background-repeat:no-repeat; border-color:transparent; border-style:none'/>
<af:commandButton text="Zoom" icon="/img/zoom.jpg" partialSubmit="true"
immediate="true"
inlineStyle='background-image:url("GlowingButton_disabledSkin.png"); background-repeat:no-repeat; border-color:transparent; border-style:none'></af:commandButton>
<af:commandButton text="Open" icon="/img/open.jpg"
inlineStyle='background-repeat:no-repeat; border-color:transparent; border-style:none'/>
</af:panelGroupLayout>
<af:spacer height="50"/>
<!-- Scroll Bar for pagination : Start -->
<af:panelGroupLayout id="panelGrpScrollBar" layout="horizontal"
halign="center" valign="top"
inlineStyle="width:60%; background-color:transparent;">
<af:commandImageLink icon="img/skin/horizontal_scrollbar_arrowUp.gif"
action="#{backingDisplayImageShell.previousShelf}"/>
<af:inputNumberSlider simple="true" autoSubmit="true" immediate="true"
binding="#{backingDisplayImageShell.inputNumberSlider1}"
id="inputNumberSlider1"
valueChangeListener="#{backingDisplayImageShell.sliderValueChgLstnr}"
minimum="0" maximum="7" minimumIncrement="1"
contentStyle="width:1100px;" rendered="true"
inlineStyle="text-decoration:none; border-color:transparent; border-style:none; border-width:0px; font-size:0%;"/>
<!-- 0.05 -->
<af:commandImageLink action="#{backingDisplayImageShell.nextShelf}"
icon="img/skin/horizontal_scrollbar_arrowUp.gif"/>
<af:commandLink/>
<af:outputText value="0 - 20"
binding="#{backingDisplayImageShell.outputText1}"
noWrap="true" id="outputText1"/>
</af:panelGroupLayout>
<!-- Scroll Bar for pagination : End-->
</af:form>
</af:document>
</f:view>
<!--oracle-jdev-comment:auto-binding-backing-bean-name:backingDisplayImageShell-->
</jsp:root>
==============================================================================================================================
Thanks
Rani Velu

With the Skin changes provided in CSS is not been reflected.
Since, it seems to have ADF Skin, but not the custom one.
I tried even using this way as well, but not progress.
<af:inputNumberSlider simple="true" autoSubmit="true" immediate="true" styleClass="af|inputNumberSlider::major-tick { border-color: red; }"
id="inputNumberSlider1" inlineStyle="border-color:transparent; border-style:none"
minimum="0" maximum="7" minimumIncrement="1"
contentStyle="width:100px;" rendered="true"
/>

Similar Messages

  • Issue with customer exit for copying one variable value to another

    Hello Gurus,
    I need to copy the value of a single value variable into another single customer exit variable.
    I coded as below.
      WHEN 'customer_exit_var'.
        IF I_STEP = 2. "after the popup
          LOOP AT I_T_VAR_RANGE INTO LOC_VAR_RANGE
          WHERE VNAM = 'user_input_Variable'.
            CLEAR L_S_RANGE.
            L_S_RANGE-LOW = LOC_VAR_RANGE-LOW.
            L_S_RANGE-HIGH = ''.
            L_S_RANGE-SIGN = 'I'.
            L_S_RANGE-OPT = 'EQ'.
            APPEND L_S_RANGE TO E_T_RANGE.
            EXIT.
          ENDLOOP.
        ENDIF.
    I used the condition <= for the customer exit variable in the report. But, it is considering only single value, but not all the values <= to the give value.
    Please help me in this regard,
    Thanks,
    Aarthi.

    Thanks for your immediate response Govind.
    My report is restricted based on two dates. Date1 and Date2. Need to consider all records whose dates are <= Date1 and <= Date2.
    Date1 and Date2 should have same values. But user inputs only Date1.
    So, I created Date1 as Single, User Input Variable restricted the query with <=Date1.
    Next I created Date2 as Single, Customer Exit Variable and restrcited the Query with <=Date2.
    In CMOD I used the above code to assigne Date1 Value to Date2.
    When I execute the report, say I give todays date in the report (Dec, 12, 2007). Date2  has to consider all the values <= Dec 12, 2007. But, in my case it is considering only Dec 12, 2007, but not the before dates.
    So, Please help me in solving this problem.
    Thanks,
    Aarthi.

  • Oracle ADF 11g – Authentication using Custom ADF Login Form Problem

    Hi Guys,
    I am trying to Authenticate my adf application using custom Login Form.
    following this..
    http://www.fireboxtraining.com/blog/2012/02/09/oracle-adf-11g-authentication-using-custom-adf-login-form/#respond
    But my Login Page is not Loading.I think its sending request in chain.my jdev version is 11.1.1.5.Any Idea.
    Thanks,
    Raul

    Hi Frank,
    I deleted bounded code and In another Unit Test I created a simple login.jspx page and applied form based authentication but still facing same problem means something wrong in starting.
    My login.jspx page is
    <?xml version='1.0' encoding='UTF-8'?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1"
              xmlns:f="http://java.sun.com/jsf/core"
              xmlns:h="http://java.sun.com/jsf/html"
              xmlns:af="http://xmlns.oracle.com/adf/faces/rich">
      <jsp:directive.page contentType="text/html;charset=UTF-8"/>
      <f:view>
        <af:document id="d1" >
          <af:form id="f1" >
            <af:panelFormLayout id="pfl1">       
              <af:inputText label="USERNAME" id="it1"
                            />       
              <af:inputText label="PASSWORD" id="it2"
                              />
              <af:commandButton text="LOG IN" id="cb1" />
              <f:facet name="footer">       
              </f:facet>                 
            </af:panelFormLayout>
          </af:form>
        </af:document>
      </f:view>
    </jsp:root>
    Don't know wht real problem is

  • Custom skin for FLVPlayback

    Hi ..
    I am trying to create a custom skin for the FLVPlayback componenet... I was wondering if someone could point me in a direction of a comprehensive tutorial..
    Thanks a bunch!!

    Hello,
    I have been attempting to use this code with the FLVPlayback
    component - when tested, the component and placeholder image both
    load, but once the user hits the play button I get an error code:
    ArgumentError: Error #2025: The supplied DisplayObject must
    be a child of the caller.
    at flash.display::DisplayObjectContainer/removeChild()
    at video_fla::MainTimeline/removePF()
    The video still plays, but the placeholder image doesn't get
    removed.
    This is the actionscript I'm using:
    import fl.video.VideoEvent;
    var pfContainer:MovieClip = new MovieClip();
    myPlayer.addChildAt(pfContainer, 1);
    var pf:Loader = new Loader();
    pf.load(new URLRequest('slatepf.png'));
    pfContainer.addChild(pf);
    pfContainer.x = 0;
    pfContainer.y = 0;
    myPlayer.addEventListener(VideoEvent.PLAYING_STATE_ENTERED,
    removePF);
    function removePF(e:Event):void{
    removeChild(pfContainer);
    Any help would be appreciated. Thanks!

  • Issues with Custom Chart

    Hi,
    I am facing some issues with custom charts.
    1. X Axis value is getting cut off. Given date as x axis parameter and last 2 digits of date is getting cut off. (format like 19-Apr-2011T00:00:00). And this value cut of happening only for custom chart.
    2. On right click of the custom chart, when i am selecting Preview, it opens a new pop up window with and error as Error: "Application error occurred during the request processing.". No preview is being generated.
    3. In Server Scaling, i checked Use global auto scaling, and many times it is showing improper y axis or mutiple y axis values with the same value or it is displaying improper global range
    kindly help
    Regards
    Muzammil

    Muzammil,
    Without seeing your data and your chart configuration, it is difficult to understand exactly the issues you are encountering.  I have the same JRE and the same version and build of MII as you.  I have no difficulty with the scaling or with Global Range, but problems displaying the date in my tests.
    I would suggest the you enter a ticket into the SAP Support System, and enclose a  copy of your data (run the query, use Browser with Content Type = text/xml) and export a copy of you display template.
    Lastly, what type of query are you using - sql, tag?
    Kind Regards,
    Diana Hoppe

  • Issues with Custom Settings

    Is anyone else having issues with custom settings on 10.8.2?
    I am trying to configure basic office 2011 settings based on the keys located at http://afp548.com/mediawiki/index.php/Office_2011_Settings using a device group.
    However, when I log into an authenticated user's machine and load pref setter I can see that the customizations are not found on the newly managed machine.  I know the push updates are working, but for custom settings I seem to be getting nothing.
    My questions:
    - Am I just flat our doing it wrong? (meaing, should the plist files be copied over)
    - Are there common issues to look out for?
    - Can anyone share basic custom settings they have that work?
    Thanks!

    Thats a bad idea. Office dos not react well to having it's prefences copied from one machine.
    Check out: http://www.officeformachelp.com/office/administration/mcx/
    It's a good guide for MS Office prefs.

  • I have an issue with disappearing option for 1920x1080 in Preferences / Displays.

    Recently updated to 10.9 - have all updates installed - Mid 2010 iMac 21.5.
    I have an issue with disappearing option for 1920x1080 in Preferences / Displays. - After overnight shutdown, my iMac woke up and the screen resolution of my 2nd was set at 800 x 600 - the display a Samsung S22B150 was previously working properly at 1920 x 1080.  This option is no longer available in the system preferences - highest resolution available 1600 x 1200.
    I use my mMac for Photography and use the second monitor for the interface, leaving the iMac screen as a full work area for the photos.
    I have tried:
    Power down Monitor & restart
    Shutdown & restart
    Shutdown & restart in Safe Boot Mode (options same in Prefs)
    Power down Monitor & restart in Safe Boot Mode
    Ran Disc Utility - Repaired Permissions, verified both HDD & Mac OSX
    Udated Pram
    I am now at a loss, I guess I could try a recovery, and download/install  Mavericks again, but do not wish to do this if I can help it.
    I have searched the net to see if there are any Terminal commands to enable the resolution, but can find nothing.
    Anyone out there have any ideas, please.

    Back up all data. Quit System Preferences if it's running.
    Triple-click anywhere in the line below on this page to select it, then copy the text to the Clipboard by pressing the key combination command-C:
    ~/Library/Preferences/ByHost
    In the Finder, select
    Go ▹ Go to Folder...
    from the menu bar. Paste into the box that opens (command-V), then press return. A folder should open. If it does, look for a file with a long name that begins "com.apple.preference.displays2". There may be several such files. Move them to the Trash.
    Test.

  • Issue with Visibility Settings for Backgrounds and Layers

    I am using Acrobat Pro XI 11.0.10 (Windows) and having an issue with visibility settings for layers and backgrounds. I am attempting to get backgrounds to appear while viewing in Adobe Reader and Acrobat Pro but not be printed and so far have had no success.
    When using a background the Appearance Options dialogue has "Show when printing" unchecked, but "Show when displaying on screen" is checked. This results in the background not showing on the screen, and the background will only appear once the box for "Show when printing" is checked. It looks like the option for printing is dictating whether or not the background is able to appear.
    Using layers has not worked either. The background layer is set to "Never Prints", but will still show up when printed.
    I was wondering if anyone else has run into this and has a solution, or has any recommendations.
    Thanks in advance.

    Hi setrev2012,
    How are you adding the backgroud?
    The only way I can think to accomplish this is via a watermark.
    The basics...
    Open PDF in Acrobat. Choose Pages > Watermark > Add Watermark.
    Select a jpg or PDF of your background and adjust scaling options as desired.
    Then click the Appearance Options.. and uncheck the Show When Printing option.
    In this image the PDF is a blank page with the word "Test" on it. The watermark is the stamp and impression (a stock photo jpg).
    If you want a solid color background, just create a flat image of the background color for use as the watermark.
    If you have already followed the steps and still facing the issue then please share the file with me at [email protected] so that i can have a look.
    Regards,
    Rave

  • Hello every one, am having issue with my itunes, for some reason or another my icon in the itunes doesnt change, its stuck on Songs, and will not let me get playlist or anything else. can any one tell me if that can be fixed

    hello every one, am having issue with my itunes, for some reason or another my icon in the itunes doesnt change, its stuck on Songs, and will not let me get playlist or anything else. can any one tell me if that can be fixed

    http://support.apple.com/kb/TS3694#error-1
    Error 1 or -1
    This may indicate a hardware issue with your device. Follow Troubleshooting security software issues, and restore your device on a different known-good computer. If the errors persist on another computer, the device may need service.

  • Deployment Issues with Custom TS variables set for client

    Good Day folks!
    I have come across an interesting issue that I have not been able to find a quick fix as such I am looking for some ideas where to trouble shoot my issue moving forwards.
    So the Issue:
    I have a TS that deploys a Windows 8.1 SOE image, this is done first by using a PXE boot PE image for an “unknown” systems to load a Custom HTA. This HTA allows me manually add the system to SCCM and add it to a required deployments collection that has the
    8.1 SOE deployed to it.
    The HTA also sets a few custom variables for the system resource things like system location, Machine Domain etc. 
    Once the HTA has run the system then has a delay to allow for the resource to show up tin the 8.1 deployment collection and then closes.
    Now all this appears to work fine, the system is added to the collection, reboots and the deployment runs from start to finish without error.
     I can also check the system resource and the variables are present.
    The problem I have found is that the custom variables for this resource are not being used by the TS after reboot.. upon further investigation I found that these variables are not even being retrieved ( ran a VB script to save all the variables from the
    TS to a txt file to check this )  Because of this the TS is bypassing some needed TS Tasks.
    A few interesting things to note:
    System appears to be added again when AD discovery is run…. So it causes a Duplicate.
    Client Dose connect to SCCM server after deployment but is not receiving deployments ( is getting some policy )
    Worked with SCCM 2012 but not 2012 R2
    So it appears that when the system reboots from the HTA PE step it has identified itself as an unknown system again…. Even though it has been manually added…
     I am interested to know if first of all if others would agree with this and second how SCCM while running a TS matches itself up to a system to retrieve the custom set variables before client install etc... Or a good place to start looking
    to dig up more information!  Or anything else!
    Thanks
    Stuart.

    Have you taken a look at this hotfix?
    http://support.microsoft.com/kb/2907591
    We had to apply it in order for our variables to be seen.
    joeblow

  • ADF wont work with custom LoginModule! Question for Mr. Nimphius!

    ive setup login module as shown in:
    http://www.oracle.com/technology/products/jdev/howtos/10g/jaassec/index.htm
    code:
    actionContext.getHttpServletRequest().isUserInRole("Administrators") works! but i also want this code to work in ADF:
    appmod.getSession().isUserInRole("Administrators")
    with default loginmodule "oracle.security.jazn.tools.Admintool" everything is ok! i can get roles in adf but with custom login module i cant!
    in ApplicationModule config i have setup
    jbo.security.config =
    jbo.security.context = oracle.security.jazn
    jbo.security.enforce = Must
    jbo.security.loginmodule = oracle.sample.dbloginmodule.DBTableLM.DBTableLoginModule
    please help!

    thank you very much for the reply!!!!
    i did what you told but no luck... :(((
    i still can not get user role from application module!
    this code:
    if (AppModule.getSession().isUserInRole("Administrators"))
    System.out.println("User is in role! ");
    simply does not work!
    ive tested on standallone oc4j, ive tested on embeded jdveloper 10.1.2.1 !
    i get NullPointerException at at oracle.jbo.server.security.jazn.JboJAZNUserManager.isUserInRole(JboJAZNUserManager.java:113)
    the thing is that i can use isUserInRole() from request but i can not from application modulle....
    ...ive lost hours in decompiling and tracking down ADF code just to realize that there is no way to use custom login module with ADF because the thing is hard coded to use xml or ldap..
    the only way i see how to solve the problem is to extend oracle.jbo.server.SessionImpl
    and override
    getUserRoles()
    and
    isUserInRole(String s)
    i can substitute session class with my own by setting
    SessionClass = oracle.jbo.server.ExtendedSessionImpl
    in file jboserver.properties (which is inside bc4jmt.jar)
    the easier way is to write my own function isUserInRole() in EntityImpl... i always can get user principal name with AppModule.getUserPrincipalName()
    what do you think?

  • OBIEE 11G: Issue with Agent

    Hello All,
    I am trying to make agent work in OBIEE 11G together with Active Directory settings but the agent are failling for some users. Some users are not able to send the ibots:
    We get the following message with Agent Failed:
    Agent ID: XXXXXXX
    No devices for user: XXXX
    Agent ID: XXXXXXXX
    No Content for user: XXXX
    Kindly note that I have already checked the My Account of these users and the email address is well present there.
    Can anyone help us investigate on this issue.
    Thanks and Regards

    Where do you have your LDAP configured
    Is it in RPD or in Weblogic?

  • Issues with trade in for promotion of iPhone 6

    I have had nothing but issues while trying to purchase the iPhone 6.  I have been a Verizon customer for over 4 years.  First is was my data plan had to change, I’m like ok… but the info. i was given by 3 different people was incorrect.  I was downgraded from an unlimited dat plan to a 2GB for the same price. I was told by since I was downgrading from unlimited I would be able to purchase a 2GB plan but receive 6GB …. well that was “mis-informed” as I was told when I put in my pre-order for my iPhone 6 and then had to wait 2 hours to speak with someone about the data plan because my online order would not go through until the dat plan was fixed.
    I pre-order my phone and fallout the trade in form for my iPhone 4 (which was still working).  My trade in was canceled after i received the new iPhone!  Apparently the system couldn’t catch up fast enough and then when you call the Trade in # you can not get through.  I fill out a 2nd application and this was sticks.  I mail the iPhone 4 in…. and 3 weeks later is it received and processed - but apparently in the shipping process the phone was damaged and now I am being “penalized”.  I was supposed to receive $40 for the iPhone 4 and $160 for the new phone as a promotion. 
    I am being told that my screen is cracked and the phone doesn’t turn on.  After calling numerous times again and finally getting through my case is being escalated to support - I reply to the support email about the situation…. the next day i get an e-giftcard for $36 - unacceptable.   I write again …. now a week later still no response.  I call back the trade in #.  I explain everything all over again… “Sorry Ma’am we have a picture of the device and there is a small crack at the bottom corner of the screen”.  So because the phone was damaged in shipping (in their packaging… a plain paper envelope no bubble wrapping, I am getting duped.  I am told to call customer service for help.  I call, a very nice woman answers on the phone 15 minutes she is trying to contact her supervisor, with no luck…. and she is not sure why they told me to call customer service, because it is a different dept and they can’t help anyway.
    So now I sent another email in.  This is ridiculous!  I would have never sent in my phone for a “rebate” or order the new phone if it had not been for that promotional offer.  My phone worked just fine, no cracks, no dropped calls, no Bluetooth issues, etc. like i have with this new iPhone.
    This lack of customer service is unacceptable.  I would have never signed up for a new 2yr contract with them if I knew all the issues I would have.  4 years of loyalty and this is how they treat their customers.

    The phone was an iPhone 4, and we were informed that the Find My iPhone feature was on. However, my wife turned it off, and I double-checked this before the phone was sent in. When the feature was turned off, the instructions provided by Verizon were followed exactly, however we were informed that the feature also needed to be turned off on iCloud (even though there were no directions indicating this in any of the Verizon documentation or on the website).
    At this point it isn't as much about getting the $111 as it is about letting someone know how rudely my wife was treated by Adam (he was at station 34 on Monday, February 10 - she noted this, because he refused to give out his last name). She was told several times by Adam that he does not report to anyone, that he had no supervisor, and there was no one higher up we could speak with. He was rude, condescending, and obviously blatantly lied. Additionally he intentionally kept my wife on hold for 30 minutes hoping she would give up and hang up. The reason we know that he did so intentionally, is because he also indicated that it was "actually pretty slow" in the call center. He also indicated that she had no additional recourse and should just "hang up" and "give up."
    It's really just that we don't feel like we can trust the trade-in program, and won't be trading in any additional phones through that program. Thank you for responding, at least we can be sure that there is some customer service still happening at Verizon. We have just had our faith in Verizon's customer service pretty rudely shaken.

  • Issue with customer Incoming Payment

    Hi Gurus,
    I need your help related to an issue with Incoming customer payment. This is the first time I am doing this Incoming payment set-up. I have odne the payment program set-up for outgoing payments. I need to configure the automatic payment program for incoming payments. After the payment run is successfully executed, we need to create and send Idoc's to the bank. This process of payment run and Idoc creation is being used successfully for outgoing payments.
    From configuration side, I have created a new payment method and have set it up for incoming payments. I have selected ACH as format and PPD as format supplement. I did the bank set-up and have assigned a partner profile to it. I have assigned a reference key 17 in the SPRO-> Print->Payment media.
    The issue is that when I run the payment run for customer open item, the payment run is successful and the item gets cleared but no Idoc's are being generated. I have entered my House bank and account number in the variant as well. I am getting the following error:
    Step 001 started (program SAPFPAYM_SCHEDULE, variant &0000000000869
    No variants found for format ACH
    No Payment Media Created in Format 100
    I would really be thankful if you can help me in resolving this issue. I am not sure which step I am missing.
    Thanks,
    Best Regards,
    Shalu

    Hi Lakshmipathi,
    Yes the Document split has been activated. This issue is the specific one. We have different C&F location. Sales happens accross India. Hence we have created the Business area concept for each location to get the location wise balance sheet. I have also activated the zero balancing for Profit center and also Business area so that i can derive the Location wise Balance sheet.
    Now the sales invoice has been processed from C&F Location. Customer deposit the Cheque directly to the Head office Bank and not at the C&F Location bank. I don't want to clear the existing open item because 50% of the cheque gets bounced. So i am booking the incoming payment without clearing the open item.
    While processing the incoming payment user is entering the C&F location business area in the customer line item (Credit line item) and Head office business area for the Bank line item as the bank is at the Head office so that we can arrive the Balance sheet.
    Now system is not deriving the profit center for the customer line item even though the business area wise zero balance has been activated. Recon account field status group has market as optional for profit center but in F-28 i am not able to get the profit center field (Because it is balance sheet item).
    The Document type already been configure for Document split and the Recon account also categorised as Customer inthe doc splitting. I don't have any problem with document split other than this issue.
    For this issue anything can be done in the document split??
    Regards,
    Devendran

  • Issue with Apps adapter for Create_Cust_Account API

    Hi ,
    I need to invoke this package from apps adapter in BPEL(10.1.3.5).
    Create Customer: HZ_CUST_ACCOUNT_V2PUB. create_cust_account. This is a Over loaded procedure. Look for the Procedure with these Parameters.
    PROCEDURE create_cust_account (
    p_init_msg_list IN VARCHAR2:= FND_API.G_FALSE,
    p_cust_account_rec IN CUST_ACCOUNT_REC_TYPE,
    p_organization_rec IN HZ_PARTY_V2PUB.ORGANIZATION_REC_TY
    PE,
    p_customer_profile_rec IN HZ_CUSTOMER_PROFILE_V2PUB.CUSTOMER
    PROFILEREC_TYPE,
    p_create_profile_amt IN VARCHAR2:= FND_API.G_TRUE,
    x_cust_account_id OUT NUMBER,
    x_account_number OUT VARCHAR2,
    x_party_id OUT NUMBER,
    x_party_number OUT VARCHAR2,
    x_profile_id OUT NUMBER,
    x_return_status OUT VARCHAR2,
    x_msg_count OUT NUMBER,
    x_msg_data OUT VARCHAR2
    But I’m getting the following error,
    An error occurred while running Jpublisher.missing method
    · I’ve tried with Database adapter. But in the runtime I’m not able to pass oracle apps initialization parameter in spite of using transaction and idempotent property in partnerlink.
    · Then I’ve tried to invoke fnd_global.apps_initialize first then call the package from database adapter, but it fails again, apparently its not able to execute both DBadapter in same database session although they are in same BPEL transaction.
    When I’m passing the initialization parameters in adapter created wrapper procedure then its working fine and customer got created.
    Please let me know where I’m going wrong or issue with apps adapter.
    It’s urgent …
    Thanks in Advance,
    Shreekanta

    Thanks for the reply.
    I'm able to execute the BPEL flows using DB adapter in same session and customer got created.
    But I'm wondering why I cant invoke the API using Apps adapter though its standard one.
    wsdl file is not getting generated as the adapter wizard not get completed.
    Do u have any idea why its giving ' error occurred while running Jpublisher.missing method' error?should I conclude that apps adapter does not support overloaded procedure.

Maybe you are looking for

  • XRTSGenerator & XRTSMakeBundle resolution failed

    While installing OWB, installation fails abruptly with the following logs - <snip> Before processing LOADJAVA Token ... I am in processLoadJavaToken ... arguments: '-verbose' '-order' '-resolve' '-thin' '-u' 'PARIS_REP_OWNER/PARIS_REP_OWNER@(DESCRIPT

  • Cut power to dvd drive

    The dvd drive went out in my iMac, so I bought an external. My problem is that for some reason I stuck a dvd in the internal drive and the disc is stuck inside. The stuff I used to remove a disc before is home. I was wondering if there was a way to c

  • How can I open two windows from one submit?

    Is there a way to open two browser windows from one click of a button to submit a form? I have a button on a screen that does some processing of the data and then generates a PDF file with the output. I would also like it to run a report and show the

  • PSC 2355 not responding

    I have a PSC 2355 all-in-one. I run windows XP. I've started to have problems with the unit not responding. If the screen is lit up ,it will print. But the moment the screen goes off (i think this is powersave mode because the green light is lit) it

  • Gallery Stacking Order

    New to Mobile Me. I made a Gallery and want it at the end of the pages. I moved it to the last stack on the side bar but when I publish.... my home page opens and when I click ENTER it always opens up in the Gallery. All the other pages are in order,