Recursive item blocking

How can I block or prevent the entry of recursive components in bill of material which is not header material.
If I enter the material which is already available in bill of material, SAP should not allow the entry if the component is not headed item.
I want know if this fecitity of blocking duplicate entry of component (other than header component) is available what is the effect on rounting?
thanking you
srinivas pai

Hi Srinivas
I don't think there is any standard check here.
Try BADI: BOM_EXIT. You will need ABAPer.
Best regards
Ramki

Similar Messages

  • Mapping of recursive item

    Component I am working on consists of two Views.
    One recursive structure is shared by both of them.
    Fist View fills the structure and second one displays the structure data in accordance with different filters.
    I defined global structure in the Component context and created identical one through mapping manipulation between component and View contexts for each of the iViews.
    I didn’t succeed to map recursive item.
    How can I map recursive item of the Component context to the one of the View Context?

    Anna,
    <i>I didn’t succeed to map recursive item.</i>
    Could you provide more details? What exactly goes wrong? Does your WD application fail to compile / build? Does it behave incorrectly at runtime? How does it manifest symptoms?
    I know that there were problems with recursive node mapping between components before SP9. Probably the same error happens for mapping inside single component.
    Regards,
    VS

  • Purchase order line item block

    Hi,
    Need to understand in what circumstance Purchase order line item gets blocked automatically. I have a situation in which net price is 0.01 and line item has got blocked automatically. This is through conversion objects(using BAPI_PO_CREATE). When manually created this works fine. Where can i see this standard behavior in customization. Any additional inputs will be helpfull.
    Regards,
    Kishan

    A BAPI is just a program that cannot do anything if it does not get filled with data.
    How does it get the data? What is made with the data in a framework program before the BAPI is called? This is were you or you ABAPer has to start analyzing. Of course the BAPI is not changed, but the data has to be read from a source and need to be transferred to a internal table which is then transferred to the BAPI. This all happens in a program that is developed by a programmer. Or do you call the BAPI via SE37 ?
    SAP does not set an item block by itself, SAP gives you an error message and stops you from saving, or gives a warning message and you confirm that you read it and can continue.

  • Recursive animation block problem

    Hi all,
    i have a recursive animation block.  It calls itself according to the parameter value which can be 3 or less.
    when this parameter value is  two or one, animation is working correctly.  If the parameter value is 3, the animation block (although it works correctly in the code,debug mode), the screen seems to be called on it once.
    But, if the parameter value is 3, When I put  2 seconds between each recursion call,  the animation also seems  correctly on the screen.
    What could be the cause of the problem?
    Xcode 4. 2
    Build 4D199
    iphone 5.0 Simulator
    //Animation Definition
    -(CAAnimationGroup*) getAnimationGroupForLayer :(UIImageView *) layerView duration :(float) duration
        UIBezierPath *movePath = [UIBezierPath bezierPath];
        [movePath moveToPoint:layerView.center];
        [movePath addQuadCurveToPoint:self.totalQuestion.center controlPoint:CGPointMake(160, 240)];
        CAKeyframeAnimation *moveAnim = [CAKeyframeAnimation animationWithKeyPath:@"position"];
        moveAnim.path = movePath.CGPath;
        CABasicAnimation *opacityAnim = [CABasicAnimation animationWithKeyPath:@"alpha"];
        opacityAnim.fromValue = [NSNumber numberWithFloat:1.0];
        opacityAnim.toValue = [NSNumber numberWithFloat:0.1];
        CAAnimationGroup *animGroup = [CAAnimationGroup animation];
        animGroup.animations = [NSArray arrayWithObjects:moveAnim, opacityAnim, nil];
        animGroup.duration   = duration;
        return animGroup;
    -(void) doAnim4Layer:(UIImageView *) layerView
        [layerView.layer addAnimation:[self getAnimationGroupForLayer:layerView duration:0.25] forKey:nil];
    //Recursion
    -(void) startAnimation:(int) counter
         [UIView animateWithDuration:0.25
                         animations:^{
                             [self doAnim4Layer:(counter == 3 ? self.star1:(counter==2? self.star2:self.star3))];                                             
                         completion:^(BOOL finished)
                                [self addStar:1];      
                                if(counter == 1)
                                    [self getNextQuestion]; 
                                }else{
                                    //sleep(2);  //works correctly when initial value 3
                                    [self startAnimation:counter-1];

    i found problem.  Let me explain.
    when  i was calling animation block, i called other method which is also CAAnimation.  But i didn't implement of its delegate methods (
    - (void)animationDidStop:(CAAnimation *)theAnimation finished:(BOOL)flag{
    Now,  this delegate method is implemented and recursive animation  is done in this method.  Everthing is now ok.
    - (void)animationDidStop:(CAAnimation *)theAnimation finished:(BOOL)flag{
      self.animationCounter--;
       [self addStar:1];
        if(self.animationCounter>=1)
            //recursive call
             [self layerMovedAnimation:
                           [self getAnimatedStar:self.animationCounter]
                                andLayerName:                       [NSString stringWithFormat:@"star_%d",self.animationCounter]];
        if(self.animationCounter == 0){

  • Item Block in Scheduling Agreement

    Dear Experts,
    I would like to block an item in Scheduling Agreement.But if any  GR or IR pending ,those have to be completed.
    Is there any option for this....with deleting that item from the agreement can we do pending GR and IR for those??
    Reply me...Plz
    Thanks and Regards
    MK

    PLS FOLLOW:
    <b>ME32L</b>>><b>AGGREMENT</b> NO.>><b>ENTER</b>>>SELECT THE <b>LINE</b> U WANT TO BLOCK>>GOTO<b> EDIT</b> AT THE MENU BAR>>SELECT <b>BLOCK(CONTROL+F3</b>)>><b>ENTER</b>>><b>SAVE</b>.
    PLS GV POINTS IF FOUND USEFUL.
    INDRANIL

  • User exit/BADI for PO item blocking

    Hi All,
    Is there any userexit/BADI available for blocking PO item?
    We want block PO item based on some header and item data validations. We need an exit which will be triggered before displaying the first screen(In case of PO change-ME22N). While creating/changing existing the item we got the BADI ME_PROCESS_PO_CUST. Here we can set im_item-loekz to value S so that item will be blocked. This is working fine only for creation/Change of item. Because this BADI will be triggered when ever we make some change in existing PO item/Creating new item.
    But say we have blocked a PO item now. later we have maintained necessary data which is used in validations. Then when we enter into same PO for next time it should automatically unblock that item.
    So we need exit which will be triggered before displaying first screen. If one exit is not available the we can use EXPORT/IMPORT logic to get all the data at one place. Hope there is no confusion in the requirement.
    Please let me know if there is any EXIT/BADI available for this scenario.
    Thanks for your help in Advance.
    Does any one has some solution for this?
    Thanks,
    Vinod.
    Edited by: Vinod Reddy Vemuru on Dec 10, 2008 12:37 PM

    Hi vinod,
    I have come accross similar issue of blocking PO at item level. but we wanted to do it using Tcode MEMASSPO .Can you please give any suggestion in this regard.

  • PO Line item Blocked

    Hi,
    PO line item is blocked and when i tried to unblock it by ME22N, MEMASSPO transactions, System shows PO changed successfully but after in PO display its remains same blocked. PO has fully GR'd and Invoiced.
    So can some one suggest me what would be the possibility that unblocking is not possible here.
    Thanks & Rgds

    Hi,
    Can you check once  line item in the EKPO.
    EKPO-LOEKZ = L i.e. it is deleted
    EKPO-LOEKZ = S i.e. it is blocked
    EKPO-LOEKZ = null i.e. it is unblocked.
    Please refer the below link.
    PO problem
    Thanks.

  • Unlimited qty item blocked for invoice payment

    Hi All,
    I am facing problem in invoice payment.The items has been already assigned for overdelivery tolerance as unlimited quantity, but even then they get blocked for invoice payment telling as because of quantity variance they have been blocked.
    Kindly guide for some debugging or parameters to be looked upon.
    Regards
    Dinesh Singh

    Vadim,
    You are a real fellow !!!
    There is a copyright on myposts !!!
    You could at least change a word...
    Re: confirmation over PO quantity not possible despite TOG tolerances
    Dinesh,
    Have you checked all tolerance keys in SRM ?
    There are some tolerance key for GR qty, and some for INV amounts.
    Rgds
    Christophe

  • Strange Case..!! How 2 set an item as a master block to it's db items block

    Hello All,
    i have a question pls.
    ================
    How 2 set an item as a master block to it's related db items in the same data block; as follows:
    ============
    1-i have to enter the item's value ('LAB_TEMP' ) once then;
    2-the other related items in the same data block r changed record each time i navigate to the next record but this item is never changed in this case only if i re-entered another value as (master-detailed rel.). i tried to copy the value of this item to a display item called 'Temp' but it is changing according to the records frequency by default
    ===========================================================
    I tried the following code on when-new-record-instance & on post-changed Triggers as follows:
    ============================================================
    IF :LAB_TEMP IS NOT NULL THEN
    SET_ITEM_PROPERTY ('LAB_TEMP',ENABLED,PROPERTY_FALSE);
    SET_ITEM_PROPERTY ('LAB_TEMP',NAVIGABLE,PROPERTY_FALSE);
    SET_ITEM_PROPERTY ('TEMP',VISIBLE,PROPERTY_TRUE);
    SET_ITEM_PROPERTY ('LAB_TEMP',VISIBLE,PROPERTY_FALSE);
    :TEMP := :LAB_TEMP;
    ELSE
    SET_ITEM_PROPERTY ('LAB_TEMP',ENABLED,PROPERTY_TRUE);
    SET_ITEM_PROPERTY ('LAB_TEMP',NAVIGABLE,PROPERTY_TRUE);
    SET_ITEM_PROPERTY ('TEMP',VISIBLE,PROPERTY_FALSE);
    SET_ITEM_PROPERTY ('LAB_TEMP',VISIBLE,PROPERTY_TRUE);
    :TEMP := :LAB_TEMP;
    END IF;
    ============================================================
    even this generates unable to set enable property or visible prop. error
    ====================================================
    Someone help me with this pls.??
    ========================
    Thanks in advance,
    Regards,
    Abdetu..

    Hello everyone,
    This issue was solved as:
    ==================
    1-i created a separate db block
    2-created a text item called 'TEMP' with db=NO
    3-In the db block that i want to deal with it as:Master item to it's other related detailed items to that item which is called 'LAB_TEMP' ;
    * Copy value from property: TEMP.
    By this way i could entered a value i the ndb item called TEMP once & consequently this value is entered copyed 4 each new record i entered.
    This is an intial solution works fine at least 4 now, a Fried helped me with this i would like 2 share this info 2 others may be a new idea would help...
    Thanks always,
    Abdetu..

  • Record Group Query - item block

    I need to calculate a Record Group Query using a block item value, but when a use the query below the query didn't return rows:
    SELECT OID_SIIB_FINALIDADE_TED
         , F.COD_FINALIDADE || ' - ' || F.DES_FINALIDADE DES_FINALIDADE
      FROM SIIB_FINALIDADE_TED F
          , ( SELECT P.TP_PARAMETRO
                FROM SIIB_PARAMETROS_GERAIS P  
              WHERE P.NM_PARAMETRO = 'TIPO_' || :BLOCK.ITEMX ) PAR -- using the :BLOCK.ITEMX the query did'nt return data
    WHERE PAR.TP_PARAMETRO = F.TPO_FINALIDADEBut if a use a static query the Record Group( changing :BLOCK.ITEMX for 'STR0005' ) return the desired values.
    This Record Group is used to pupulate a LOV.
    Edited by: user5914526 on Feb 15, 2012 9:26 AM
    Edited by: user5914526 on Feb 15, 2012 9:26 AM
    Edited by: user5914526 on Feb 15, 2012 9:29 AM

    No, it doesn't .
    And return the message: "There aren't data in the List of Values"
    And the block item is not empty or null.
    Edited by: user5914526 on Feb 15, 2012 10:13 AM

  • Issue with Tabular text item block

    Hi,
    This is the psuedo form structure. First block contains search text item and ok button.
    Second block is a multi tabular form block with text items. only last text item in column is editable by user to enter values.
    | |
    | Search text OK |
    |_____________________________|
    | multi item-tabular block |
    | text item |
    | text item |
    | text item |
    | text item |
    | text item |
    User will enter search text and hit enter and it will trigger LOV and it will display list, of which user will select one and again hit enter. then the second multi tabular block is populated with values and cursor goes to text item and user can enter values in that text item.
    Problem is cursor is blinking in the middle of text item and if I try to enter some then value is displayed from the middle of text item. I tried adding a condition check if there r any nulls and removed nulls then cursor is at the right (which is correct) but after I enter some value and hit ENTER then again cursor is staying in same text item at the middle but the cursor record has moved to next record.
    Looks something like this- cursor at the middle of text item.
    233| $.00
    I have Validate-trigger, key-next-item, key-prev-item.
    Thanks in advance
    Sai

    Thanks a lot to all who spared their time looking into my question and replying.
    This is an Oracle BUG! You can check it in Metalink.
    Whenever there is any Timer enabled(with 1ms ONLY) in the form and If user is trying to move cursor in the Multi record block using Keyboard then it will not work.
    So I changed the Timer from 1ms to 2 ms (which is does not make much difference to application) then it worked fine.
    Thanks
    Sai

  • PO-item     block delete process

    Hi all,
    is possible to annul the deletion process of an item in purchase order ?
    In other word, when the user press delete button, the system go in exit MM06E005
    or in BADI ME_PROCESS_PO_CUST:    inside this exit or BADI, exist a way to cancel the delete process ?
    I found only           CALL METHOD im_item->invalidate( ).
    in IF_EX_ME_PROCESS_PO_CUST~PROCESS_ITEM, but this is not correct beaucose I invalidated the item and not annulled the delete process !!!
    Any idea ???

    not possible ?

  • Menu as library item blocks view (was: Lib item) [subject edited by moderator]

    Säker är det någon inställning jag missat men har en navigering som Lib Item som döljer sidan bakom. Nu måste jag ta bort denna varje gång jag ska redigera sidan och sedan lägga till den igen, mycket frustrerade!  Någon som har ett tips på vad jag gör för fel? Tycker jag har varit på alla inställningar jag kan komma åt men mycket möjligt att jag missat någon fiffig ruta någonstans
    tack på förhand
    Annette

    Thank you for your fast reply, here is how the page looks like. Do you think the problem lies code for the CSS that I have attached for the Navigation I include  codes for the libary item you please could give me some tips what I do wrong.
    Thank you!!
    meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    <script src="../SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
    <script language="JavaScript" type="text/JavaScript">
    <!--
    function MM_preloadImages() { //v3.0
      var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
        var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
        if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
    function MM_findObj(n, d) { //v4.01
      var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
        d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
      if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
      for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
      if(!x && d.getElementById) x=d.getElementById(n); return x;
    function MM_nbGroup(event, grpName) { //v6.0
      var i,img,nbArr,args=MM_nbGroup.arguments;
      if (event == "init" && args.length > 2) {
        if ((img = MM_findObj(args[2])) != null && !img.MM_init) {
          img.MM_init = true; img.MM_up = args[3]; img.MM_dn = img.src;
          if ((nbArr = document[grpName]) == null) nbArr = document[grpName] = new Array();
          nbArr[nbArr.length] = img;
          for (i=4; i < args.length-1; i+=2) if ((img = MM_findObj(args[i])) != null) {
            if (!img.MM_up) img.MM_up = img.src;
            img.src = img.MM_dn = args[i+1];
            nbArr[nbArr.length] = img;
      } else if (event == "over") {
        document.MM_nbOver = nbArr = new Array();
        for (i=1; i < args.length-1; i+=3) if ((img = MM_findObj(args[i])) != null) {
          if (!img.MM_up) img.MM_up = img.src;
          img.src = (img.MM_dn && args[i+2]) ? args[i+2] : ((args[i+1])? args[i+1] : img.MM_up);
          nbArr[nbArr.length] = img;
      } else if (event == "out" ) {
        for (i=0; i < document.MM_nbOver.length; i++) {
          img = document.MM_nbOver[i]; img.src = (img.MM_dn) ? img.MM_dn : img.MM_up; }
      } else if (event == "down") {
        nbArr = document[grpName];
        if (nbArr)
          for (i=0; i < nbArr.length; i++) { img=nbArr[i]; img.src = img.MM_up; img.MM_dn = 0; }
        document[grpName] = nbArr = new Array();
        for (i=2; i < args.length-1; i+=2) if ((img = MM_findObj(args[i])) != null) {
          if (!img.MM_up) img.MM_up = img.src;
          img.src = img.MM_dn = (args[i+1])? args[i+1] : img.MM_up;
          nbArr[nbArr.length] = img;
    function MM_jumpMenu(targ,selObj,restore){ //v3.0
      eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
      if (restore) selObj.selectedIndex=0;
    //-->
    </script>
    <link href="../travel.css" rel="stylesheet" type="text/css">
    <link href="../SpryAssets/SpryMenuBarHorizontal.css" rel="stylesheet" type="text/css">
    <div id="Info" style="position:absolute; left:0px; top:0px; width:1050px; z-index:30; height: 100px; right: auto; margin-right: auto; margin-left: 6%;">
      <table width="1055" border="0" align="left" cellpadding="0" cellspacing="2" name="meny">
        <tr valign="top">
          <td><table width="1050" border="0" cellpadding="0" cellspacing="0">
            <tr>
              <td height="100" valign="top"><img src="../Bilder/GJTtopp1.png" width="1050" height="75" alt="Golf Joy Travel">
                <table border="0" align="center" cellpadding="0" cellspacing="0" bgcolor="#c5e2b0">
                  <tr align="center" valign="middle">
                    <td width="20" bgcolor="#00D1C0" class="menyrubrikh"> </td>
                    <td width="117" class="menyrubrikh"><a href="../index.htm">STARTSIDA</a></td>
                    <td width="100" class="menyrubrikh"><a href="../resmal.htm">RESMÅL</a></td>
                    <td width="137" class="menyrubrikh"><a href="../forfragan.htm">HITTA DIN RESA</a></td>
                    <td width="108" class="menyrubrikh"><a href="../infor.htm">BRA ATT VETA          </a>
                    </td>
                    <td width="187" class="menyrubrikh"><a href="../kontakt.htm">KONTAKTA OSS</a></td>
                    <td width="192" class="menyrubrikh"><a href="../ftginfo.htm">OM FÖRETAGET</a></td>
                    <td width="167" class="menyrubrikh"><a href="../villkor1.htm">RESEVILLKOR</a></td>
                    <td width="22" class="menyrubrikh"> </td>
                    </tr>
                  <tr align="center" valign="middle">
                    <td colspan="9" bgcolor="#02779E"><ul id="NaviGJT" class="MenuBarHorizontal">
                      <li><a href="#" class="MenuBarItemSubmenu"><img src="../Bilder/Flagga_Sverige.png" width="48" height="35" alt=""/></a>
                        <ul>
                          <li><a href="../Sverige.htm" class="MenuBarItemSubmenu">Arrangemang</a>
                            <ul>
                              <li><a href="../Sverige_Grand.htm">Grand Hotel</a></li>
                  <li><a href="../Sverige_Bastad.htm">Hotel Skansen</a></li>
                            </ul>
                          </li>
                          <li><a href="../Longstay.htm" class="MenuBarItemSubmenu">Long Stay</a>
                            <ul>
    <li><a href="../SPCBBonmont.htm">Costa Dorada, Bonmont</a></li>
    <li><a href="../SPCBManga.htm">Costa Blanca, La Manga</a></li>
    <li><a href="../SPCBlaserena.htm">Costa Blanca, La Serena</a></li>
                              <li><a href="../SPCBMarmenor.htm">Costa Blanca, Mar Menor</a></li>
                              <li><a href="../POALboavista.html">Algarve, Boavista</a></li>
    <li><a href="../POaroiera.htm">Lissabon, Aroeria</a></li>
                            </ul>
                          </li>
                          <li><a href="../grupper.htm">Gruppresor</a></li>
                          <li><a href="../traning.htm">F&ouml;r Pro</a></li>
                        </ul>
                      </li>
                      <li><a href="../hosverige.htm" title="Golf i Sverige" class="MenuBarItemSubmenu">Halmstad</a>
                        <ul>
                          <li><a href="../SVringenas.htm" title="Ringenäs golfhotell">Ringen&auml;s golfhotell</a></li>
                          <li><a href="../Grand.htm" title="Grand Hotel Halmstad">Grand Hotel Halmstad</a></li>
                          <li><a href="../hosverige.htm">Om Hallandspaketen</a></li>
                        </ul>
                      </li>
                      <li><a href="../BUlighthouse.htm" class="MenuBarItemSubmenu">Bulgarien</a>
                        <ul>
                          <li><a href="../BUlighthouse.htm">Lighthouse</a></li>
                        </ul>
                      </li>
                      <li><a href="../hodanmark.htm" class="MenuBarItemSubmenu">Danmark</a>
                        <ul>
                          <li><a href="../DAgrand.htm">Hotel Grand Park</a></li>
                          <li><a href="../DAmarielyst.htm">Hotel Casino Marielyst</a></li>
                          <li><a href="../DAsaxkjobing.htm">Hotel Saxkj&ouml;bing</a></li>
                          <li><a href="../DAmaribo.htm">Maribo S&ouml;park</a></li>
                          <li><a href="../DAprastekilde.htm">Praestekilde</a></li>
                          <li><a href="../DAhimmerland.htm">Himmerland G &amp; CC</a></li>
                          <li><a href="../hodanmark.htm">Om Danmark</a></li>
                        </ul>
                </li>
    <li><a href="../PLpoclodi.htm" class="MenuBarItemSubmenu">Polen</a>
      <ul>
        <li><a href="../PLpoclodi.htm">Villa Pacoldi</a></li>
      </ul>
    </li>
                      <li><a class="MenuBarItemSubmenu" href="../hotyskland.htm">Tyskland</a>
                        <ul>
                          <li><a href="../TYfreesenholm.htm">Golf Hotel Freesenholm</a></li>
                          <li><a href="../TYgolfresidenz.htm">Golfresidenz</a></li>
                          <li><a href="../TYtimhof.htm">Hotel Sand</a></li>
                          <li><a href="../TYcountryinn.htm">Hotel Country Inn</a></li>
                          <li><a href="../TYseeschlossche.htm">Grand Hotel Seeschl&ouml;sschen</a></li>
                          <li><a href="../TYbirke.htm">Hotel Birke</a></li>
                          <li><a href="../TYneeth.htm">Hotel Neeth</a></li>
                          <li><a href="../TYpronstorf.htm">Pronstorfer Krug</a></li>
                          <li><a href="../TYstrenglinger.htm">Strengliner M&uuml;hle</a></li>
                          <li><a href="../TYTreudelberg.htm" title="Hotel Steigenberger Treudelberg">Treudelberg</a></li>
                          <li><a href="../TYLudersburg.htm" title="Schloss Lüdersburg">Schloss L&uuml;dersburg</a></li>
                          <li><a href="../TYBasthorst.htm">Schloss Basthorst</a></li>
                          <li><a href="../TYFleesensee.htm">Fleesensee</a></li>
                          <li><a href="../hotyskland.htm">Om Tyskland</a></li>
                        </ul>
                  </li>
                      <li><a href="../hoskottland.htm" title="Storbritannien" class="MenuBarHorizontal MenuBarItemSubmenu">Storbritannien</a>
                        <ul>
                          <li><a href="../hoskottland.htm" title="Prestwick" class="MenuBarItemSubmenu">Prestwick</a>
                            <ul>
                              <li><a href="../SKTurnberry.htm" title="Turnberry Resort">Turnberry Resort</a></li>
                              <li><a href="../SKMarine.htm" title="Marine Hotel">Marine Hotel</a></li>
                              <li><a href="../SKbaPR.htm">Golfbanor Prestwick</a></li>
                            </ul>
                          </li>
                          <li><a href="../hoskottland.htm" title="St Andrews" class="MenuBarItemSubmenu">St Andrews </a>
                            <ul>
                              <li><a href="../SKardgowan.htm">Ardgowan Hotel</a></li>
                              <li><a href="../SKcarnoustie.htm">Carnoustie Resort</a></li>
                              <li><a href="../SKstandrewsbay.htm">Fairmont St Andrews</a></li>
                              <li><a href="../SKbaST.htm">Golfbanor St Andrews</a></li>
                            </ul>
                          </li>
                          <li><a href="../hoskottland.htm" title="Edinburgh" class="MenuBarItemSubmenu"> East Lothian</a>
                            <ul>
                              <li><a href="../SKmallard.htm">The Mallard Hotel</a></li>
                              <li><a href="../SKmacdonaldmarin.htm"> McDonalds Marine</a></li>
                              <li><a href="../SKbaED.htm">Golfbanor East Lothian</a></li>
                            </ul>
                          </li>
                          <li><a href="../hoskottland.htm" class="MenuBarItemSubmenu">Golf Coast England</a>
                            <ul>
                              <li><a href="../ENambassa.htm">The Ambassador</a></li>
                              <li><a href="../ENba.htm">Golfbanor</a></li>
                            </ul>
                          </li>
                          <li><a href="#" class="MenuBarItemSubmenu">Wales</a>
                            <ul>
                              <li><a href="../SKCeltic.htm">Celtic Manor</a></li>
                            </ul>
                          </li>
                          <li><a href="../ENmanor.htm" title="London" class="MenuBarItemSubmenu">London</a>
                            <ul>
                              <li><a href="../ENmanor.htm"> Manor of Groves</a></li>
                            </ul>
                          </li>
                          <li><a href="../hoskottland.htm">Om Storbrittanien</a></li>
                        </ul>
                  </li>
                      <li><a href="../hoirland.htm" title="Irland" class="MenuBarItemSubmenu">Irland</a>
                        <ul>
                          <li><a href="../IRgrand.htm" title="Grand Hotel">Grand Hotel</a></li>
                          <li><a href="../IRportmarnock.htm" title="Portmarnock Hotel and Golf Links">Portmarnock </a></li>
                          <li><a href="../IRmarine.htm" title="Carton House">Marine Hotel</a></li>
                          <li><a href="../IRdruid.htm" title="Druids Glen Hotel &amp; Country Club">Druids Glen &amp; CC</a></li>
                          <li><a href="../hoirland.htm">Om Irland</a></li>
                          <li><a href="../IRbana.htm">Golfbanor</a></li>
                        </ul>
              </li>
                      <li><a href="../hoitalien.htm" title="Italien" class="MenuBarItemSubmenu">Italien</a>
                        <ul>
                          <li><a href="../ITrobinie.htm" title="Le Robinie Golf &amp; Resort ">Milano, Le Robinie</a></li>
                          <li><a href="../ITparcomedici.htm">Rom, Parco de Medici</a></li>
                          <li><a href="../ITcastelgandolfo.htm" title="Castelgandolfo Resort">Rom, Castelgandolfo Resort</a></li>
                          <li><a href="../ITUNA.htm">Toscana, UNA Poggio de Medici</a></li>
                          <li><a href="../hoitalien.htm">Om Italien</a></li>
                        </ul>
                  </li>
                      <li><a href="../hospanien.htm" title="Spanien" class="MenuBarItemSubmenu">Spanien</a>
                        <ul>
                          <li><a href="../hospanien.htm" title="Mallorca" class="MenuBarItemSubmenu">Mallorca</a>
                            <ul>
                              <li><a href="../SPMADali.htm" title="Hotel Dali">Hotel Dali</a></li>
                              <li><a href="../SPMAcastillo.htm" title="Castillo Hotel Son Vida">Castillo Hotel Son Vida</a></li>
                              <li><a href="../SPMAAntem.htm" title="Son Antem">Son Antem</a></li>
                              <li><a href="../SPMApuntaroja.htm" title="Eurotel Punta Rotja">Eurotel Punta Rotja</a></li>
                              <li><a href="../SPbaMA.htm">Golfbanor</a></li>
                            </ul>
                          </li>
                          <li><a href="../hospanien.htm" title="Costa Brava" class="MenuBarItemSubmenu">Costa Brava</a>
                            <ul>
                              <li><a href="../SPpga.htm" title="Hotel Meliá Golf Vichy Catalan">Hotel Meli&aacute; Golf Vichy Catalan</a></li>
                              <li><a href="../SPemporda.htm" title="Emporda Golf Hotel &amp; Restaurant">Emporda Golf Hotel &amp; Restaurant</a></li>
                              <li><a href="../SPcostabrava.htm" title="Hotel Costa Brava">Hotel Costa Brava</a></li>
                              <li><a href="../SPbaCBR.htm">Golfbanor</a></li>
                            </ul>
                          </li>
                          <li><a href="#" class="MenuBarItemSubmenu">Costa Dorada</a>
                            <ul>
                              <li><a href="../SPCBBonmont.htm">Bonmont Golf Resort</a></li>
                              <li><a href="../SPCBmonica.html">Hotel Monica</a></li>
                            </ul>
                          </li>
                          <li><a href="../hospanien.htm" title="Costa Blanca" class="MenuBarItemSubmenu">Costa Blanca</a>
                            <ul>
                              <li><a href="../SPCBvillaitana.htm" title="Villaitana Wellness Golf &amp; Business Resort">Villaitana Wellness Golf &amp; Business Resort</a></li>
                              <li><a href="../SPCBHesperia.htm">Husa Alicante</a></li>
                              <li><a href="../SPCBManga.htm" title="La Manga Resort">La Manga Resort</a></li>
                              <li><a href="../SPCBMarmenor.htm"> Mar Menor </a></li>
                              <li><a href="../SPCBlaserena.htm">La Serena Resort</a></li>
                              <li><a href="../SPbaCBL.htm">Golfbanor</a></li>
                            </ul>
                          </li>
                          <li><a href="../hospanien.htm" title="Costa del Sol" class="MenuBarItemSubmenu">Costa del Sol</a>
                            <ul>
    <li><a href="../SPCSLosMonteros.htm">Los Monteros</a></li>
    <li><a href="../SPCSGuadalmin.htm" title="Hotel Guadalmina Spa &amp; Golf Resort">Hotel Guadalmina Spa &amp; Golf Resort</a></li>
    <li><a href="../SPCAlmenara.htm">Almenara Resort</a></li>
    <li><a href="../SPbaCS.htm">Golfbanor</a></li>
                            </ul>
                          </li>
                          <li><a href="../hospanien.htm" class="MenuBarItemSubmenu">Costa de la Luz</a>
                            <ul>
                              <li><a href="../SPCLMontecastillo.htm">Montecastillo</a></li>
                              <li><a href="../SPCLisalantilla.htm">Islantilla Golf Resort</a></li>
                              <li><a href="../SPbaCS.htm">Golfbanor</a></li>
                            </ul>
                          </li>
                          <li><a href="../hospanien.htm" class="MenuBarItemSubmenu">Gran Canaria</a>
                            <ul>
                              <li><a href="../SPCALope.htm">Lopesan Meloneras</a></li>
                              <li><a href="../hospanien.htm">Om Gran Canaria</a></li>
                              <li><a href="../SPbaCA.htm">Golfbanor</a></li>
                            </ul>
                          </li>
                          <li><a href="../hospanien.htm">Om Spanien</a></li>
                        </ul>
                  </li>
                      <li><a href="../hoportugal.htm" title="Portugal" class="MenuBarItemSubmenu">Portugal</a>
                        <ul>
                          <li><a href="#" title="Algarve" class="MenuBarItemSubmenu">Algarve</a>
                            <ul>
                              <li><a href="../POALpestana.htm" title="Pestana Dom João">Pestana Dom Jo&atilde;o</a></li>
                              <li><a href="../POAhilton.htm">Hilton Vilamoura</a></li>
                              <li><a href="../POALboavista.html">Boavista</a></li>
                              <li><a href="../POALrobinson.htm">Robinson Club Quinta da Ria</a></li>
                              <li><a href="../POALvilagale.htm">Vila Gal&eacute;</a></li>
    <li><a href="../POALbana.htm" title="Golfbanor Algarve">Golfbanor</a></li>
                            </ul>
                          </li>
                          <li><a href="#" title="Lissabon" class="MenuBarItemSubmenu">Lissabon</a>
                            <ul>
                              <li><a href="../POpraia.htm" title="Praia del Rey">Praia del Rey</a></li>
                              <li><a href="../POquinta.htm" title="Quinta da Marinha">Quinta da Marinha</a></li>
                              <li><a href="../POgalecascais.htm" title="Vila Galé">Vila Gal&eacute; Cascais</a></li>
                              <li><a href="../POaroiera.htm">Aroeira Resort</a></li>
                              <li><a href="../POLISbana.htm">Golfbanor </a></li>
                            </ul>
                          </li>
                          <li><a href="../hoportugal.htm">Om Portugal</a></li>
                        </ul>
                  </li>
                      <li><a href="#" class="MenuBarItemSubmenu">Cypern</a>
                        <ul>
                          <li><a href="../CYcapital.htm">Capital Coast Resort</a></li>
                        </ul>
                  </li>
                      <li><a href="../hoturkiet.htm" title="Turkiet" class="MenuBarItemSubmenu">Turkiet</a>
                        <ul>
                          <li><a href="../TUsueno.htm" title="Sueno Golf Resort">Sueno Golf Resort</a></li>
                          <li><a href="../TUcornelia.htm" title="Cornelia Diamond">Cornelia Diamond</a></li>
                          <li><a href="../TUmaxx.htm">Maxx Royal</a></li>
                          <li><a href="../TULykia.htm" title="Lykia Links">Lykia Links</a></li>
                          <li><a href="../hoturkiet.htm">Om Turkiet</a></li>
                        </ul>
                  </li>
                      <li><a href="../hoUSA.htm" class="MenuBarItemSubmenu">Florida</a>
                        <ul>
                          <li><a href="../USAGreenlinks.htm">Napels, Greenlinks Golf Villa</a></li>
                          <li><a href="../USADoral.htm">Miami, Doral Golf Resort</a></li>
                          <li><a href="../USAInnisbrook.htm">Tampa, Innisbrook</a></li>
                          <li><a href="../USAReunion.htm">Orlando, Reunion Resort</a></li>
                          <li><a href="../hoUSA.htm">Om Florida</a></li>
                        </ul>
                  </li>
                    </ul></td>
                  </tr>
                </table></td>
            </tr>
    </table></td>
    </tr>
        <tr valign="top">
          <td><table width="1050" border="0" cellpadding="0" cellspacing="0">
            <tr>
              <td valign="top"><table border="0" align="center" cellpadding="0" cellspacing="0" bgcolor="#c5e2b0">
              </table></td>
            </tr>
          </table></td>
        </tr>
        <tr valign="top">
          <td height="2"><table width="1050" border="0" cellpadding="0" cellspacing="0">
            <tr>
              <td valign="top"><table border="0" align="center" cellpadding="0" cellspacing="0" bgcolor="#c5e2b0">
              </table></td>
            </tr>
          </table></td>
        </tr>
      </table>
    </div>
    <script type="text/javascript">
    var MenuBar1 = new Spry.Widget.MenuBar("NaviGJT", {imgDown:"SpryAssets/SpryMenuBarDownHover.gif", imgRight:"SpryAssets/SpryMenuBarRightHover.gif"});
    </script>

  • Item / Block run time property

    Dear all,
    I required following run time parameter property value.
    1. Distance between record property for item.
    2. Current canvas type property. It is TAB CANVAS / STACK CANVAS etc.
    Pl. give me thro' which function, i can get this value.
    Thanks
    hiren

    well  i deleted the cache but of no use,
    i think its not cuzz of authorizations
    i'm still looking for confirmation
    need help out here, when the wad opens
    i dont see any web item just a folder standard items
    which doesnt open though
    Message was edited by:
            Vj.R T

  • Blocked Items

    We need to overcome following situation:
    - our customer needs to block an item after the delivery is done ,
    - when he tryies to invioce this item the invoicing is forbidden while the item has been already delivered.
    This will heavily impact on the customer activity.

    Hi Gordon, i'll thank you for the suggestions you made but i'll try to show you why there are not viable:
    - our customer buys and sells electrical supplies,
    - he buys from various suppliers and each items catalog is composed by hundreds of components,
    - the suppliers frequently modify components version so the need of our customer is to avoid the overstock of obsolete items and in the meantime   understock uptodate items.
    - so the old item must be definitively blocked as soon as the supplier notify a new version and this happens on the first purchase order
    Last problem is that usually companies make a massive inviocing on  the month end. No way to change that.
    In ths scenario we have only one wayout: the possibility (configurable by the customer?) to free the inviocing from blocked items block for all the items wich have been delivered.
    Many thanks for yur cooperation and best regards
    Nerio

Maybe you are looking for