Spry:state="error" field is always visible?!

I define layers to display the current spry:state, one for
spry:state="loading", the second for spry:state="error" and the
third for spry:state="ready". The problem is that
spry:state="error" field is always visible along with
spry:state="loading"?! Am I making some mistake or what? Here is a
part of relevant code:
<div id="vijesti" spry:region="pvVijestiMini"
class="vijestimini">
<div id="ucitavanjemini" spry:state="loading"
class="indikator">
<p>
<span><img
src="slike/pomocne/loader.gif"></span>
<span>Podaci se učitavaju...</span>
</p>
</div>
<div id="greskamini" spry:state="error"
class="indikator">
<p>
<span><img
src="slike/pomocne/loader2.gif"></span>
<span>Podaci ne postoje ili su
nedostupni...</span>
</p>
</div>
<div id="podaci" spry:state="ready">
<span class="vijestnaslov">Čikom vijesti
[{ds_UnfilteredRowCount}]</span>
<div id="redovimini" class="redovimini">
<div class="red" spry:repeat="pvVijestiMini">
<p class="podnaslov">
<span>{datum}</span><br>
<span class="naziv">{naziv}</span>
</p>
<p>
<span>{ukratko}<a
href="index.php?jezik=0&meni1=3&meni2=0&meni3=0"><img
src="slike/pomocne/dalje.gif"
class="dalje"></a></span>
</p>
</div>
</div>
<div id="navigacija">
<div spry:if="{ds_UnfilteredRowCount} == 0">Nema
podataka u tabeli "Vijesti"!</div>
<div spry:if="{ds_UnfilteredRowCount} &gt; 0">
<div><a href="#"
onclick="pvVijestiMini.firstPage(); return
false;">|&lt;</a><span> </span></div>
<div><a href="#"
onclick="pvVijestiMini.previousPage(); return
false;">&lt;&lt;</a></div>
<div> stranica {ds_PageNumber} od
{ds_PageCount} </div>
<div><a href="#" onclick="pvVijestiMini.nextPage();
return
false;">&gt;&gt;</a><span> </span></div>
<div><a href="#" onclick="pvVijestiMini.lastPage();
return false;">&gt;|</a></div>
</div>
</div>
</div>
</div>
The second question: How do I hide region container until it
gets filled with data?

Look, you got me all wrong. I don't want to hide a main
region, just the spry:state="error" appearing the same time as
spry:state="loading"!!!
<div id="ucitavanjemini" spry:state="loading"
class="indikator">
<p>
<span><img
src="slike/pomocne/loader.gif"></span>
<span>Podaci se učitavaju...</span>
</p>
</div>
<div id="greskamini" spry:state="error"
class="indikator">
<p>
<span><img
src="slike/pomocne/loader2.gif"></span>
<span>Podaci ne postoje ili su
nedostupni...</span>
</p>
</div>

Similar Messages

  • Spry:state not working properly

    Hi,
    I have the following code wrapped around my page:
    <div spry:state="loading"
    class="AjaxLoadingLarge">Loading...</div>
    <div spry:state="error">Sorry! An Error has
    occurred!</div>
    <div spry:state="ready">
    PAGE CODE HERE
    </div>
    Whilst the page is loading, the Loading State Appears on the
    screen normally but also has the Error State Content and the Ready
    State Content (unpopulated with Data) - ie it's the table with all
    the header row and 1 results row displaying the dataset field names
    {EventID} {EventDesc} etc.
    Once the page is loaded, everything displays perfectly, It
    just looks as though the "state" is not being handled properly
    until the state becomes ready.
    Anyone else seen this problem? and any ideas?
    Dom

    Hi - Thanks for the response.
    The previous line of code now reads:
    <div spry:region="ds1" class="SpryHiddenRegion">
    and I have closed the DIV off but it has made no difference
    whatsoever - but there is no class in any .css for this.
    Having Googled this, I found that some people have a class in
    the .css as display:none. I added this and nothing is then visible.
    Any further ideas?
    Dom

  • Spry:state and dynamic accordion

    When I use a dynamic accordion (i.e. populated by a dataSet),
    the accordion functionality disappears. Here is my code. Am I doing
    something wrong, or is this just a bug?
    Thanks
    Andy
    <div spry:region="dsOrders">
    <div spry:state="loading">Data is
    loading...</div>
    <div spry:state="error">Error loading
    data...</div>
    <div spry:state="ready">
    <div id="orders" class="Accordion">
    <div class="AccordionPanel" spry:repeat="dsOrders">
    <div class="AccordionPanelTab"><h3
    spry:content="{ORDERNUM}"></h3></div>
    <div class="AccordionPanelContent"><span
    spry:content="{ORDERDATE}"></span></div>
    </div>
    </div>
    </div>
    </div>

    This might also be helpful to some. Not only do we have
    states in SPRY... but events! Here is how I did it on a site that
    has a dataset called dsOpportunities. The following HTML/Javascript
    was added to the head tags of the HTML. Then the on <body
    onload="afterReady()" > was used to make sure it was run.
    Remember that your section you are hiding needs to have a class
    with the same senario. (Or if it is unique you could do something
    simular with ID rather than class.
    <script>
    function afterReady() {
    $('pageContent').style.visibility = 'hidden';
    var iSPRY = new Object;
    iSPRY.onPostLoad = function(dataSet,data) {
    $('pageContent').style.visibility = 'visible';
    dsOpportunities.addObserver(iSPRY);
    </script>
    <style>
    .pageContent {
    visibility: hidden;
    </style>

  • Spry:State and PagedView

    Dear Member,
    hope that somebody can help me this time..
    I am using spry, and a lot of trick to make it work.
    The spry:state="loading" options don't wanna work for me
    it's only work if i don't use the PagedView...
    Here the simple code
    I have a simple XMLdataset:
    var dsmio = new Spry.Data.XMLDataSet("Xml/filexxx.asp", "Clienti/Cliente", {sortOnLoad: "RagioneSociale", sortOrderOnLoad: "ascending", useCache: false});
    and a pagination on it:
    var paginazione = new Spry.Data.PagedView( dsmio ,{ pageSize: 50 });
    finally the code to show my data:
    <div spry:region="paginazione">
    <div spry:state="loading">Loading Data - Please stand by...</div>
    <div spry:state="error">OPS, something went wrong!</div>
    <div spry:state="ready">
      <table width="100%">
        <tr>
          <th width="25%" height="20" align="left" bgcolor="#CCCCCC" spry:sort="RagioneSociale">RagioneSociale</th>
          <th width="25%" height="20" align="left" bgcolor="#CCCCCC" spry:sort="Email">Email</th>
          <th width="25%" height="20" align="left" bgcolor="#CCCCCC" spry:sort="Telefono">Telefono</th>
          <th width="25%" height="20" align="left" bgcolor="#CCCCCC" spry:sort="PersonaRiferimento">PersonaRiferimento</th>
        </tr>
        <tr spry:repeat="paginazione" class="{ds_EvenOddRow}">
         <td width="25%" height="20">{RagioneSociale}</td>
          <td width="25%" height="20">{Email}</td>
          <td width="25%" height="20">{Telefono}</td>
          <td width="25%" height="20">{PersonaRiferimento}</td>
        </tr>
      </table>
    </div>
    Hope some Guru can help me

    Hi guys!
    This is easy to solve:
    You have to work in two different regions!
    <div spry:region="dsmio">
      --- Put the loader here...
    </div>
    <div spry:region="paginazione">
    content
    </div>
    You can hide the "layout" of the content by :
    <div id="content" spry:if="'{ds_PageTotalItemCount}' != ' ' ">
    content...
    </div>
    ds_PageTotalItemCount is empty during loading.....
    Have fun & keep coding

  • Forced spry:state

    Hello,
    I'm wondering if I can force the spry:state="error" from the
    server. Here's what I'm attempting to do:
    1. User logs in using a form.
    2. Login name / password verification script (in PHP) creates
    a session cookie with a randomly generated code and updates a user
    db with that code to track the session.
    3. When the user requests data, the server side script (in
    php) first validates the cookie against the session code in the
    database and returns the requested data if the code in the cookie
    matches the code in the db. (if exists).
    4. If the cookie does not exist or does not match, then I'd
    like the script to return a spry:state="error" and have the html in
    that state block displayed (requests the user to log in, or
    redirects them to a login page).
    I've seen a post where it was suggested to return an empty
    set, but this is a somewhat different behavior. Can you force a
    spry:state to "error"? Am I over complicating this whole process?

    You can force a region to display a specific state
    programatically like this:
    var rgn = Spry.Data.getRegion("myRgnName");
    if (rgn)
    rgn.setState("error");
    You can see this being done in this sample:
    http://labs.adobe.com/technologies/spry/samples/data_region/RegionStatesSample.html
    Also check out state mapping:
    http://labs.adobe.com/technologies/spry/samples/data_region/StateMappingSample.html
    --== Kin ==--

  • TABLE ILLEGAL STATEMENT  error with MODIFY command

    Hi gurus,
    i want you to inform me about table illegal statement error. The error occurs when i use modify as below.
    loop at itab.
       select .......
             where xxx eq itab-xxxx.
           MODIFY itab.
      endselect.
    endloop.
    i know that i have to give the sy-tabix as INDEX parameter to the modify command. but i want to know why i have to do this?
    cause when i debug, i follow the sy-tabix field and it have not a change in select endselect.
    may the reason of the error about cursor in select and cursor effects modify command?
    or why?
    Thx,

    Hello,
    I guess this is because your MODIFY statement is inside the SELECT ... ENDSELECT & not inside the LOOP ... ENDLOOP.
    SAP documentation says:
    Within a LOOP loop, the INDEX addition can be ommitted. In this case the current table line of the LOOP loop is changed.
    You have to change the coding:
    DATA: v_index TYPE i.
    loop at itab.
    v_index = sy-index.
    select .......
    where xxx eq itab-xxxx.
    MODIFY itab INDEX v_index.
    endselect.
    endloop.
    BR,
    Suhas
    PS: The coding practice followed is not very performance oriented as well. May be you should have a look around in some blogs, wikis in SCN & change the code accordingly.
    Edited by: Suhas Saha on Nov 19, 2009 9:41 AM

  • PCUI error: Field group could not be read completely

    Hello,
    I am trying to remove some fields from the Sales Data tab in the Sales Orders application CRMD_BUS2000115. I have changed field groups before, noth in CRM 4.0 and CRM 5.0, but in this case, I always get this error.
    By going into debugging mode (tracelevel set to 2222) I determined the main field group to be SLO_SALES, with lots of smaller reference groups below. Whenever I change one of the reference groups and try to generate the layout of SLO_SALES I get the error "Field group could not be read completely". I even reverted all changes by emptying all the entries from the reference groups so that my c-tables are empty, but I still get the error. All field groups below this one yield the error "No field group selected in blueprint table", so I cannot build those either.
    Has anybody else tried to change the contents of that application in that tab?
    Regards
    Thomas

    Hi Thomas,
    Everytime you do changes in the reference group the entries in table 'CRMC_FIELDGRP' changes. So you will have to go to this table check entries for the main feild group 'SLO_SALES' in your case and then change entries for this feildgroup in CRMC_BLUEPRINT_C. The idea ia that the data should be consistent/same in both the places.
    Hope this helps you.
    Regards,
    Hetal.

  • Buritto/Hero 4.5 (MobileApplication) Scrollbar always visible?

    I've tried for 3 to 4 days now...
    To make a scrollers scrollbar always visible.
    It seems to me extremely counterintuitive to make a scollbar not visible within a scroller that has (for example) a textarea in it.
    You can't see that the text goes beyond the viewport and should be scrolled. Usually a scrolls purpose is to help identify there is more to scroll to.
    Enough said there, making the scrollbar invisible or fade away is really bad (DESIGN Flaw).
    Trying to make it appear initially is ultimately currently impossible from what I can tell (BUG & DESIGN flaw).
    Don't recommend turning visiblity or alpha on. That was the first minute of four days no success.
    ScrollerPolicy is only about should it appear when the content is larger and that is also not the issue.
    You see for some backwards thinking reason the scroller only appears when your actually scrolling and then fades away when done.
    I did override to disable fade out potentially (not perfect example for animated sliding action).
    Well first I replaced the skin with something people can actually see too instead of the thin line of black on black. (using a spark skin not the default)
                import spark.skins.spark.VScrollBarSkin;
                public function init():void {
                    xtc.getTextFor(title, contentTextArea);
                    contentScroller.verticalScrollBar.setStyle("skinClass", Class(VScrollBarSkin));
                    contentScroller.verticalScrollBar.addEventListener(MouseEvent.MOUSE_UP, bringMeBackPlease);
                public function bringMeBackPlease(e:MouseEvent):void {
                    trace("bringMeBackPlease: " + e.type);
                    trace("MOUSE: " + e.localX + " " + e.localY);
                    var ai:AnimateInstance = contentScroller.verticalScrollBar.activeEffects[0];
                    if(ai != null) {
                        if(ai.animation != null) {
                            ai.animation.stop();
                            ai.animation = null;
                            contentScroller.verticalScrollBar.removeEventListener(MouseEvent.MOUSE_UP, bringMeBackPlease);
    Okay well that reminds me I totally replaced the skin with a Catylist built one two but this animated fade functionality resides clearly in the Scroller class I think.
    You'd possible be able to replace the Scroller class via Catylist but it only has a few simple objects to play with No textarea, no Scroller, etc.
    I couldm't find a different none mobile spark scroller that isn't disfunctional in this way (fadeing scrollbars).
    I even delved into using Effects to Fade it back
                //private var restoreSliderFade:Fade = new Fade();
    skipping code it did fade the dcroller to view but I could not also make the scrollbar fade back.
    I tried simulating drag operations, mousedown, move events etc. nohting can actually get the f!ng scrollbar to appear that I can find.
    It's rare I result to forums so I'm hopeful people at Adobe in development see this stuff and actually realize the need a boolean on the MobileApplication Scroller Class that is something like autohideScrollbars with a default of false.
    Please help ASAP anyone any work around??!!!
    At this point I'm forced to try and make the scroller cut a line of text in half so the user thinks Oh I should scroll now... but where's the scrollbar?!
    I've dynamically loaded the textarea in init and that resizes the thing.
    I've added manually draging of the textarea (also seems wrong and should work by default)
                private function draggingContent(me:MouseEvent):void {
                    trace("draggingContent" + me.toString());
                    switch(me.type) {
                        case MouseEvent.MOUSE_DOWN:
                            dragging = true;
                            dragOrigin = contentScroller.contentMouseY;
                            scrollStart = contentScroller.verticalScrollBar.value;
                            break;
                        case MouseEvent.MOUSE_MOVE:
                            if(dragging == true) {
                                contentScroller.verticalScrollBar.value = (scrollStart + (dragOrigin - contentScroller.contentMouseY));
                            break;
                        case MouseEvent.MOUSE_UP:
                        case MouseEvent.MOUSE_OUT:
                            contentScroller.setFocus();
                            dragging = false;
                            break;
                        default:
                            break;
    with listeners in initi()
                    contentTextArea.addEventListener(MouseEvent.MOUSE_DOWN, draggingContent);
                    contentTextArea.addEventListener(MouseEvent.MOUSE_MOVE, draggingContent);
                    contentTextArea.addEventListener(MouseEvent.MOUSE_UP, draggingContent);
                    contentTextArea.addEventListener(MouseEvent.MOUSE_OUT, draggingContent);
                    contentScroller.setFocus();
    I could go on with all the ways I looked at ever class property and function, delved through the debug viewer inspecting values before and during states of visibility.
    Is there a way to access all the automation and disable certain ones like fading with my hack breaking other more useful smoothings, or override the ones I loath?!!
       Your angry MobileApplication Burrito Beta Testing Victim

    I'm sorry to hear you've been having problems with this, but thank you for providing this feedback on here.  It's really helpful for us to hear experiences like this so we can work to make things easier.
    1. "making the scrollbar invisible or fade away is really bad (DESIGN Flaw)."
    Native iOS and Android applications also fade away their scrollbars the same way, but they do initially show the scrollbar for a short time when the view is first loaded before fading them away.
    Here's an enhancement request for allowing scrollbars to always be visible: http://bugs.adobe.com/jira/browse/SDK-29296
    2. "Trying to make it appear initially is ultimately currently impossible from what I can tell (BUG & DESIGN flaw)."
    This is something we thought about doing, but didn't have the time to implement in this release.  See attached ZIP for an example of how you might do this.
    There is an enhancement filed here: http://bugs.adobe.com/jira/browse/SDK-29299
    3. "ScrollerPolicy is only about should it appear when the content is larger and that is also not the issue."
    When you're using a mobile Scroller the horizontalScrollPolicy/verticalScrollPolicy govern whether scrolling is allowed in that direction.  It doesn't have any further connection with the visibility of scroll bars like it does in a desktop Scroller.
    4. "Well first I replaced the skin with something people can actually see too instead of the thin line of black on black. (using a spark skin not the default)"
    The skin for the scrollbars has been updated since the preview release and will stand out more in the final release.
    5. "I couldm't find a different none mobile spark scroller that isn't disfunctional in this way (fadeing scrollbars)."
    On a desktop application you can hook up your own HScrollBar/VScrollBar directly to have more control over things like this, but in a mobile application only Scroller currently is able to handle touch-based scrolling.
    It might make sense to enable touch scrolling without needing a Scroller.  Here's the enhancement request for this: http://bugs.adobe.com/jira/browse/SDK-29300
    7. "I tried simulating drag operations, mousedown, move events etc. nohting can actually get the f!ng scrollbar to appear that I can find."
    Interesting idea, but faking a touch scroll is quite tricky and won't really get the results you are looking for in the final release so I would recommend not going further down this approach.
    8. "It's rare I result to forums so I'm hopeful people at Adobe in development see this stuff and actually realize the need a boolean on the MobileApplication Scroller Class that is something like autohideScrollbars with a default of false."
    This relates to the first two bugs listed above.
    9. "Please help ASAP anyone any work around??!!!"
    See the attached ZIP for an example application that demonstrates how to keep the scrollbars always visible, as well as a sample way of implementing the initial show and fade functionality.
    It was a bit tricky to figure this out because both Scroller and ScrollerLayout affect the visibility of the scrollbars and change includeInLayout/scaleX/scaleY when things are not visible.
    10. "Your angry MobileApplication Burrito Beta Testing Victim"
    Again, thank you for your detailed feedback.  I know working with preview releases can be very frustrating at times, but hopefully the information in this post helps ease the pain a little.
    Please feel free to vote and comment on any/all of the bugs listed above.
    Thanks,
    Steve

  • Gettig a spry javascript error

    I create a form and when after I insert a Spry text
    validation field and fill out the dialog box, I get this error:
    While
    executing inspectSelection in Spry_ValidationTextField.htm, a
    javascript error occurred.
    I hit OK and then I get it again and then I hit OK again and
    then I go back to DW but the scrpt is not working propperly after
    that.
    What is wrong?

    That's not the javascript cache. That's DW's file cache. It's
    a standard
    solution for things like this.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "jslacker" <[email protected]> wrote in
    message
    news:fb6gdk$qvc$[email protected]..
    >I think you may have been on to something there. I
    uninstalled the
    >extension
    > and Dreamweaver suddenly started playing happy.
    Reinstalled the newest
    > version
    > (3.0.4) and Dreamweaver was back to throwing errors. I
    stumbled across a
    > support forum post at dwuser.com on an unrelated error
    that suggested
    > resetting
    > the Dreamweaver javascript cache. Just for fun I tried
    that. Now,
    > amazingly, I
    > have the extension installed and no errors. It could be
    that something
    > random
    > got fried in the javascript cache and recreating it
    fixed the problem.
    >
    > The path to the javascript cache is:
    <system_drive>:\Documents and
    > Settings\[username]\Application Data\Adobe\Dreamweaver
    > 9\Configuration\WinFileCache-xxxxxxxx.dat
    >
    > Delete the WinFileCache*.dat file and open Dreamweaver
    again. Apparently
    > the
    > file will be recreated automatically. With about an hour
    of work done so
    > far
    > this fix seems to be holding.
    >

  • Not highlighting error fields in subform when displaying FacesMessages

    Hi,
    I am trying to display FacesMessage on UI and highlight the errored field. It is working as expected if my fields are NOT in subform like this:
    <af:form>
    <af:inputText label="Label 159" id="it5"/>
    <af:commandButton text="commandButton 2" id="cb3"
    action="#{viewScope.backing_testFormLayout.validateRecordset}"/>
    </af:form>
    java codes:
    public String validateRecordset() {
    FacesContext fc = FacesContext.getCurrentInstance();
    fc.addMessage("it5", new FacesMessage(FacesMessage.SEVERITY_ERROR,
    "Parameter Name is required",
    null));
    return null;
    However, if my fields are in subform, the FaceMessage error is displayed, but the errored field ("it5") is not highlighted.
    <af:form>
    <af:subform id="s9">
    <af:inputText label="Label 159" id="it5"/>
    <af:commandButton text="commandButton 2" id="cb3"
    action="#{viewScope.backing_testFormLayout.validateRecordset}"/>
    </af:subform>
    </af:form>
    Any ideas?
    Thanks
    -Mina

    Use s1:it5 as the id of the input Text component instead -
    public String validateRecordset() {
    FacesContext fc = FacesContext.getCurrentInstance();
    fc.addMessage("s1:it5", new FacesMessage(FacesMessage.SEVERITY_ERROR,
    "Parameter Name is required",
    null)); On a sidenote its always better to use bean binding instead of hardcoded id's to avoid issues downstream during maintainance and changes when id changes.
    Also add partialSubmit= true to avoid a full page submit.

  • Input variables screen always visible

    Hi....i have a WAD and i want to know if theres a way to have the input variables screen always visible ....for example i want tha t the variables input fields always on top of the WAD, and the user can write new values and click on execute button (or something like that) and execute the WAD.......
    Another option would be using input fields in WAD but i dont know if its possible to pass the web item input fields values as filter for WAD queries....
    Regards

    Hi Oscar,
    Just add this piece of code within the <body>....</body?  to your template backend
    <!-- Display Variable Screen --->
              <TD class=SAPBEXNavLine><A href="<SAP_BW_URL CMD='PROCESS_VARIABLES' VARIABLE_SCREEN='X'>"><IMG
                alt="<SAP_BW_TEXT program="SAPLRRSV" key="T76">" src="Mime/BEx/Icons/S_B_VARB.gif"
                border=0  valign="middle"></A></TD>
              <TD class=SAPBEXNavLine> |</TD>
    Just check if src="Mime/BEx/Icons/S_B_VARB.gif" is present in your repository. This if for the icon.
    Hope this helps...!!

  • Force -(FormUID) always Visible when ...

    any one of SDKers know how to force the form contained user defined fields always visible when core form is loaded. For example If Form Invoice(133)load then Form -133 Visible.
    Thx
    -Hamdi-

    Hi Hamdi,
    I'd like to know which item event you use to activate '6913' menu.
    Form_Load or Form_Activate?
    If you don't mind can you give me a your source code?
    Joanne
    Message was edited by: Joanne Lee

  • Spry:state  unexpected results

    I am using Spry/AJAX to populate a page, but whenever the
    page loads you see the dynamic content tags in the form fields and
    then it reloads with the data in the form fields. Is there any way
    to make it not show the dynamic content tags and just show the form
    once the data is in the form fields? Go to the following link to
    see what I mean:
    http://www.homesandagents.com/Members/contact_info.asp?userID=10000&sessionID=&contactID=1 0064
    I tried using spry:state="loading", but it still shows the
    form with the dynamic tags first (ie. {last_name}), then the
    loading state, and then finally the ready state.

    I'm not seeing the data references when I load your page. But
    that may be due to the fact that it looks like you've added the
    SpryHiddenRegion class to your region.
    --== Kin ==--

  • Error: Field BNKA-BNKLZ . is not an input field

    Dear Experts,
    My client following vendor creation process is as follows
    Requestor logs his request into EP -> it is recorded into MDM -> after approval from central team, it syndicate into SAP -> Idoc entry -> Table entry
    Now in case of vendor request comes with bank data, Idoc gets failed with error message u201CField BNKA-BNKLZ . is not an input fieldu201D
    Message no. 00347
    Diagnosis:
    A transaction is processed using batch input.
    System Response:
    The runtime error field xxx occurs (invalid entries)
    Procedure:
    Correct the batch input data. Depending on the processing scenario, this can affect either of the following objects:
    Batch input session
    CATT procedure
    Application program
    If I reprocess this Idoc in foreground mode in Tcode: WE19 it is getting successfully posted.
    Kindly help me to resolve this issue.
    Regards,

    Can it be that you have bank data in your vendors for banks that are not yet created.
    if you create vendors manually then SAP is creating the bank master record automatically in background if not present when you entered bank data in the vendor master.
    But in IDOC processing, SAP just focus on the master data transferred with the IDOC, it creates vendor masters, but it does not create  central address data  nor bank data.
    you have to create the banks as a preceeding step to vendor creation.

  • Displaying an error message with a link to the error field

    By default, ADF validation usually displays an alert with an error message and a link to the error field.
    I have some custom validations where I finally display the error message with this:
      public static void MessageError(String messageText){
        //String messageText="No se han encontrado estos datos";
        FacesMessage fm = new FacesMessage(messageText);
         * set the type of the message.
         * Valid types: error, fatal,info,warning
        fm.setSeverity(FacesMessage.SEVERITY_ERROR);
        FacesContext context = FacesContext.getCurrentInstance();
        context.addMessage(null, fm);
    My customer is asking for displaying a link to the error field in this kind of error alerts as standard errors do.
    Is there any way to get this ?

    Can't you include this in your message?
    You may want to check Duncan's blog https://blogs.oracle.com/groundside/entry/get_more_from_your_messages whichgives more inside on what you can do
    Timo

Maybe you are looking for