Code Issue

Please use a meaningful subject in future
There has been a confusion regarding the performance for fetching the data...
There are two ways to fetch the data that have been suggested to me :-
a) Using for all entries if the data is to be fetched using non-key fields or inner joins if data is fetched using key fields in where clause.
b)  Using standard Function modules to fetch data, which means no joins no queries, but these FM  obviously use select statements in their code and morever in most of them they use select single * that means all fields are selected not according to program need. And as its using select single , i have to use FM for every field i need to fetch that too inside a loop based on some values . That means multiple FM's in a single loop ( eventually resulting in multiple single * in loop).
<<text removed>>
Thanks
Vijeta
Edited by: vijetasap on Jun 26, 2009 7:40 AM
Edited by: Matt on Jun 26, 2009 8:05 AM - don't say it's "urg".

you must be more specific, what standard FMs are you talking about.
Usually there is reason why there are standard FMs and you should use them, maybe you just don't known that there is also one for multiple rows.
Siegfried

Similar Messages

  • Is Muse compatible with Email Service Providers. I found html code issues - PCs have viewing issues

    Is Muse compatible with Email Service Providers? A colleague said Muse has html code issues as PCs struggle to display the artwork correctly when emails are delivered.

    Is Muse compatible with Email Service Providers? A colleague said Muse has html code issues as PCs struggle to display the artwork correctly when emails are delivered.

  • Serial Code Issue

    I purchased a full version of Adobe Photoshop CS4 Extended about a year and a half ago. I loaded it on my laptop just fine. However, following a HD crash, it's asking me for an upgrade check. I used the file just fine previously. How do I fix this issue?

    Your post is entitled "Serial Code Issue" but you make no mention of that in your posting.  You should provide the complete message that the software is providing to help make your problem clearer.
    If the message is indicating you need to provide a serial number to confirm upgrade eligibility it means you purchased CS4 as an upgrade to a preceding version and you need the serial number from that preceding version in order to confirm the eligibility of the new CS4 version.

  • EA4500 Intermittent Latency issue-Code Issue 2.0.37

    I have been using the WRT54GV2 wireless G router for a while with no issues. I have upgraded to the EA4500. Periodically I am experiencing bursts of high latency(local area network) which is affecting certain apps I use such as a cisco soft phone. I am using the 2.4ghz band and connecting around 150mbps.   What could be causing this? When I experience the latency issue, my data throughput fluctuates to different speeds as low as 60mb. I never had this issue on the older wireless router. I have upgraded my client drivers, could this be a code issue on the 4500?  I am on 2.0.37

    See if any of this helps.
    I had something similar and this took care of it.
     http://homecommunity.cisco.com/t5/Wireless-Routers/E4200V2-Bridge-Mode-wireless-disconnects/td-p/501...

  • Calculation of Tax Issue from FB60 (Tax Code Issue)

    Dear All,
    Normally when we purchase or received any services we post following entry.
    INVOICE VALUE IS 1000
    Purchase Ac Dr   1000
       To Vendor                   900
       T o Tax                         100
    But our requirement is that
    Purchase Ac Dr   1100
       To Vendor                  1000
       T o Tax                          100
    System should add cost of TAX  in purchase instead of reduction form vendor balance as we have to give 1000 RS to vendor.
    Can we create TAX code in this manner.
    This is not even possible form function available in Edit Option in FB60 (Calculate tax on Net Amount)
    Not even from TDS (Withholding tax)
    WE CANu2019T SUGGEST POSTING JV IN THAT CASE.
    Regards,
    Bittu

    Apologized for that Atif.
    Withholding Tax Type does not control Vendor line item.
    My issue is that system should not reduce value enter in vendor  amount field.
    System usually reduce amount which is payable to vendor
    Please see my example once again. I also mention that it is not working from Withholding Tax nor form Tax code(FTXP)
    Edit option in FB60 is also not useful in this case.
    Regards,

  • Not sure if this is a code issue

    Hello
    I've had a fair bit of help from this and another forum to get my code working. Thanks to everyone.
    Basically I've created a screensaver randomly selecting one of eight images registered as Movie Clips.
    The issues that I have found are that the playing of the movie does not always work properly, ie it stops on a fade in or fade out.
    The latest version I have is that if I create the swf and html file from my Virtual Machine (XP) at work the movi runs fine on my home (Vista) machine.
    If I try and create these files from my home machine the test (Ctrl + Enter) freezes and also if I play the swf file that also freezes, the html file runs fine.
    I had this also happen on the other way round on a previous version, things would stop on the Virtual Machine but when I copied the files to my home machine all worked fine.
    Does anyone have any thoughts on this?
    I've listed the full code below on what I am running.
    Paul
    import fl.transitions.Tween;
    import fl.transitions.easing.*;
    import fl.transitions.TweenEvent;
    import flash.events.TimerEvent;
    import flash.utils.Timer;
    import flash.utils.setTimeout;
    var mc0:mcClip0 = new mcClip0(); // each mc is associated with its' own class, whose base class is MovieClip();
    var mc1:mcClip1 = new mcClip1();
    var mc2:mcClip2 = new mcClip2();
    var mc3:mcClip3 = new mcClip3();
    var mc4:mcClip4 = new mcClip4();
    var mc5:mcClip5 = new mcClip5();
    var mc6:mcClip6 = new mcClip6();
    var mc7:mcClip7 = new mcClip7();
    var mcList:Array = new Array (mc0, mc1, mc2, mc3, mc4, mc5, mc6, mc7);
    var imgCount:uint = 8;
    var currentImage:uint = 0;
    var myTimer:Timer = new Timer(1500, 1);
    addChild(mcList[currentImage]);
    mcLogoStart();
    myTimer.addEventListener(TimerEvent.TIMER_COMPLETE, timerHandler);
    function mcLogoStart():void{
        mcList[currentImage].x= Math.floor(Math.random()  * (stage.stageWidth-400))  + 200;
        mcList[currentImage].y= Math.floor(Math.random()  * (stage.stageHeight-400))  + 200;
        var mcLogoTween:Tween = new Tween(mcList[currentImage], "alpha", None.easeIn, 0, 1, 2, true);
        mcLogoTween.addEventListener(TweenEvent.MOTION_FINISH, freezeImage);
    function freezeImage(e:TweenEvent):void{
        if(mcList[currentImage].alpha==1){
            myTimer.start();
        if(mcList[currentImage].alpha==0){
            currentImage=Math.floor(Math.random()  * (imgCount-1))  + 1;
            addChild(mcList[currentImage]);
            mcLogoStart();
    function timerHandler(e:TimerEvent):void{
        mcLogoFinish();
    function mcLogoFinish():void{
        var mcLogoTweenOut:Tween = new Tween(mcList[currentImage], "alpha", None.easeOut, 1, 0, 2, true);
        mcLogoTweenOut.addEventListener(TweenEvent.MOTION_FINISH, freezeImage);

    for example:
    import fl.transitions.Tween;
    import fl.transitions.easing.*;
    import fl.transitions.TweenEvent;
    import flash.events.TimerEvent;
    import flash.utils.Timer;
    import flash.utils.setTimeout;
    var mc0:mcClip0 = new mcClip0(); // each mc is associated with its' own class, whose base class is MovieClip();
    var mc1:mcClip1 = new mcClip1();
    var mc2:mcClip2 = new mcClip2();
    var mc3:mcClip3 = new mcClip3();
    var mc4:mcClip4 = new mcClip4();
    var mc5:mcClip5 = new mcClip5();
    var mc6:mcClip6 = new mcClip6();
    var mc7:mcClip7 = new mcClip7();
    var mcList:Array = new Array (mc0, mc1, mc2, mc3, mc4, mc5, mc6, mc7);
    var imgCount:uint = 8;
    var currentImage:uint = 0;
    var myTimer:Timer = new Timer(1500, 1);
    addChild(mcList[currentImage]);
    mcLogoStart();
    myTimer.addEventListener(TimerEvent.TIMER_COMPLETE, timerHandler); var mcLogoTween:Tween;
    function mcLogoStart():void{
        mcList[currentImage].x= Math.floor(Math.random()  * (stage.stageWidth-400))  + 200;
        mcList[currentImage].y= Math.floor(Math.random()  * (stage.stageHeight-400))  + 200;
        mcLogoTween = new Tween(mcList[currentImage], "alpha", None.easeIn, 0, 1, 2, true);
        mcLogoTween.addEventListener(TweenEvent.MOTION_FINISH, freezeImage);

  • Invoice not released to accounting: tax code issue

    Hi All,
    Iam getting an error while i released my invoice to accounting. No accounting document generated. the error is " Tax code V0 does not appear in any G/L account item Message no. FF753"
    we have various condition types in our invoices. Only  TAX condition type ZWST has tax code V0. rest of the condition types like basic price, cash dicsount, rebate condition etc do not have tax code assigned to them which is right since only tax conditions have tax code assigned to them and which is ZWST only.
    My question is why the above error comes " Tax code V0 does not appear in any G/L account item Message no. FF753" . if I double click on the error message, system shows me the following
    """"""""""""""""tax code V0 does not appear in any G/L account item
    Message no. FF753
    Diagnosis
    The document entered contains a customer or vendor item with tax code V0. This does not occur in any of the G/L account or asset items.
    Consequences:
    If you have not entered the cash discount base manually, the system will set it to zero in this item.
    If this item was paid with cash discount deduction and the cash discount amount contains a tax portion, the tax code entered is used for the backdated tax calculation. An automatic breakdown does not take place on the basis of the offsetting items.
    Procedure
    Check whether the tax code was set correctly. If necessary, correct it or enter "**".
    There are, however, also situations in which it makes sense to enter a tax code manually which differs from the offsetting items, for example, during data acquisition.
    Effects on Customizing
    You can define when this system message is to be issued in accordance with your requirements.
    In Customizing, choose Cross-Application Components -> Bank Directory -> Change Message Control.
    The application area and message number can be taken from the technical documentation """""""""""""
    I do not know what system is saying.Could anybody help.
    regards
    sachin

    Hi Sonu,
    Please refer SAP Note 112609.
    Thanks & Regards,
    Santosh

  • Urgent please-sorting code issue in BIP

    Hi,
    issue with sort order in BIP reports. I gave code like this but saying expression error. Please help me.
    sort should be in the order of numbers , then upper case then lower case values.
    declared variable is <?variable: srtStr; "'01234567890ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz'"?>
    then i am trying to apply code in my group
    <?for-each-group:ssAssetMgmtAsset;./ssReferenceNumber3?><?sort:current-group()/string-length(substring-before ($srtStr,substring(ssReferenceNumber3,1,1)));'ascending';data-type='text'?>
    the above code saying expression error
    Thanks,
    lax

    What is the exact error you get?
    I believe that the data-type (within the for-each-group) should be number. Try that and let me know if that fixes your issue.
    Thanks,
    Bipuser

  • F110 Issue-sort code issue

    Hi Gurus,
    We have one issue by F110,by using the bank transfer.so all the payments are cleared.and DME file is generated.we have to upload to the bank.before that we have to convert the file into notepad.by using our local software we upload into our PC.but here
    some vendors are not picking up the right sort codes.on which base it is picking up.only for some vendors we are facing this issue.
    Thanks in advance
    Jana

    Dear,
    Please check the vendor master for the sort key entry in accounting information accounting, compare the sort key with other vendor masters. Check whether reconciliation GL in vendor master is also given the same sort key as in the vendor master.

  • TDS Certificate, Challan Payment Issue and BSR Code Issue

    Hi All,
    I have configured Extended withholding tax as follows and encountered some issues
    1. Specify Document Type (Accounts Payable): Here I have given Document type as SA and I am able to Pay the remittance challan through Post Vendor challan transaction.
    MY question is How can I update my check no. I tried to update through FCH5 But it is showing no data.
    2. Form 16A Certificate: How the field Cheque / DD No (If Any) gets updated?
    3. BSR Code in Form  16A: I have maintained Bank branch in FI02. and made the remittance challan through that bank.
        but still my BSR Code is not updating in Form 16A.
    4. Form 16A Certificate: How does the Quarter Acknowledgement No field gets updated?
    Kindly provide me the solutions for the above queries.
    Your inputs are very much appreciated.
    Thanks in Advance
    Best Regards
    Shashi
    Edited by: shashi mantripragada on Apr 7, 2010 9:43 AM
    Edited by: shashi mantripragada on Apr 12, 2010 2:13 PM

    Hi,
    Please check entries in the number ranges that needs to be maintained for WT certificates.
    Financial Accounting (New) - Financial Accounting Global Settings (New) - Withholding Tax - Extended Withholding Tax - Posting - India - Withholding Tax Certificates for Vendors and Customers - Maintain Number Ranges
    And also check its assignment.
    Hope this helps.
    Vikas.

  • Please help with this registration code issue!

    Hi,
    I just purchased Quicktime Pro, and am trying to use it. For some reason when I am working with a video, my registration code is always showing in the window under the video.
    Why is this, and how can I remove it so that it doesn't constantly show?
    Thanks!

    If you do post a pic, blur out or hide your registration number.
    Never heard of your type of issue either.

  • How do I redeem a coupon code issued by Apple, due to a previously botched iPhoto book?

    I had a recent iPhoto book order that was misprinted twice & although it was eventually redone & perfect, Apple issued me a coupon code for a credit on a future job.  I'm trying to redeem that now but can't find where to do so.
    The instructions that came with the code say to "click Buy then click Use A Coupon on the right".  There is no Use A Coupon on the right or anywhere else.  I've gone through all the ordering screens, up to the point where it says "Place Order" & there is no Use A Coupon button.
    On the very last Place Order screen there was an Enter Promo Code box & I tried to enter my coupon code there but it woudn't take it.
    The email states that the coupon code is valid until the end of 2011 so I know it's not expired.
    Anyone ever done this before?

    "Promo Code" is the only option I see in iPhoto '11.
    If you haven't already, make sure you are copying and pasting the code from the email to the promo box.
    If that doesn't help I suggesty you email them back to ask them how to use the code they gave you.

  • Code issue in php form - submit button not sending email

    Created a form that was originally supposed to open up to 2 pages depending on what was clicked. Clear would send you to an error page, and submit would send you to a thank you page. Decided that was a waste and so did not create the html pages. BUT, wanted the form info for the contact page.
    Here is the issue: it will not submit when submit is clicked. It clears when you click clear, but there's no email coming from the site via submit.
    Do I need to edit the php form code if I don't want the other pages? I've looked at what I have but I don't see if there is a form error or anything here. Here is the code for anyone who wants to have a look. Thanks in advance.
    <?php
    // get posted data into local variables
    $EmailFrom = "EMAIL FROM WEP PAGE - CONTACT - ";
    $EmailTo = "[email protected]";
    $Subject = "EMAIL FROM jennylowhar.com - CONTACT -";
    $name = Trim(stripslashes($_POST['name']));
    $telephone = Trim(stripslashes($_POST['telephone']));
    $email = Trim(stripslashes($_POST['email']));
    $comments = Trim(stripslashes($_POST['comments']));
    // validation
    $validationOK=true;
    if (Trim($name)=="") $validationOK=false;
    if (Trim($email)=="") $validationOK=false;
    if (!$validationOK) {
      print "<meta http-equiv=\"refresh\" content=\"0;URL=error.html\">";
      exit;
    // prepare email body text
    $Body = "";
    $Body .= "name: ";
    $Body .= $name;
    $Body .= "\n";
    $Body .= "telephone: ";
    $Body .= $telephone;
    $Body .= "\n";
    $Body .= "email: ";
    $Body .= $email;
    $Body .= "\n";
    $Body .= "comments: ";
    $Body .= $comments;
    $Body .= "\n";
    // send email
    $success = mail($EmailTo, $Subject, $Body, "From: <$EmailFrom>");
    // redirect to success page
    if ($success){
      print "<meta http-equiv=\"refresh\" content=\"0;URL=thankyou.html\">";
    else{
      print "<meta http-equiv=\"refresh\" content=\"0;URL=error.php\">";
    ?>

    I'm confused by that, but I know this works.
    $fname=STRIPSLASHES($_POST['fname']);
    $lname=STRIPSLASHES($_POST['lname']);
    $title=STRIPSLASHES($_POST['title']);
    $company=STRIPSLASHES($_POST['company']);
    $street=STRIPSLASHES($_POST['street']);
    $town=STRIPSLASHES($_POST['town']);
    $zip=STRIPSLASHES($_POST['zip']);
    $phone=STRIPSLASHES($_POST['phone']);
    $fax=STRIPSLASHES($_POST['fax']);
    $county=STRIPSLASHES($_POST['county']);
    $phone=STRIPSLASHES($_POST['phone']);
    $email=STRIPSLASHES($_POST['email']);
    $comments=STRIPSLASHES($_POST['comments']);
    $date=STRIPSLASHES($_POST['date']);
    $time=STRIPSLASHES($_POST['time']);
    $location=STRIPSLASHES($_POST['location']);
    $from="$email";
    $to="putemailhere";
    $subject="Submission from Contact Form";
    $msg= "This is a submission from yoururl.com.\n\n"
    . "Clients Name: $fname . $lname \n"
    . "Title: $title\n"
    . "Company Name: $company\n"
    . "Street Address: $street\n"
    . "Town:$town\n"
    . "Zip: $zip\n"
    . "Telephone: $phone\n"
    . "Email Address: $email\n"
    . "Comments: $comments\n";
    mail($to, $subject, $msg, 'From:' .$from);
    PS, go back and edit your origial post and REMOVE your email.
    Gary

  • Photoshop Camera Raw 7.4 Update  is not installing because of Error Code U43M1D207. What needs to be done to resolve this error code issue?

    Photoshop Camera Raw 7.4 update is not installing because of error code U43M1D207.  What needs to be done to resolve this issue?

    If you need to post again, please keept the following in mind:
    BOILERPLATE TEXT:
    Note that because this is boilerplate text, not all points may apply to any given, specific poster.
    If you give complete and detailed information about your setup and the issue at hand,
    such as your platform (Mac or Win),
    exact versions of your OS, of Photoshop (not just "CS6", but something like CS6v.13.0.6) and of Bridge,
    your settings in Photoshop > Preference > Performance
    the type of file you were working on,
    machine specs, such as total installed RAM, scratch file HDs, total available HD space, video card specs, including total VRAM installed,
    what troubleshooting steps you have taken so far,
    what error message(s) you receive,
    if having issues opening raw files also the exact camera make and model that generated them,
    if you're having printing issues, indicate the exact make and model of your printer, paper size, image dimensions in pixels (so many pixels wide by so many pixels high). if going through a RIP, specify that too.
    etc.,
    someone may be able to help you (not necessarily this poster).
    a screen shot of your settings or of the image could be very helpful too.
    Please read this FAQ for advice on how to ask your questions correctly for quicker and better answers:
    http://forums.adobe.com/thread/419981?tstart=0
    Thanks!

  • RMI Client Code Issue

    Hello,
    Here is my client side RMI program:
    import java.rmi.*;
    public class MyRemoteClient {
    public static void main(String args[]) {
    MyRemoteClient mm = new MyRemoteClient();
    mm.go();
    public void go(){
    try{
    MyRemote service2 = (MyRemote) Naming.lookup("rmi://xxx.xxx.xx.xx/Hello");
    String s = service2.sayHello();
    System.out.println(s);
    } catch(Exception ex){ex.printStackTrace();}
    }Having started RMI Registry and Service Implementor code on the server, if I try to run the above code on the client it fire the following error:
    java.rmi.ConnectException: Connection refused to host: 127.0.1.1; nested exception is:
    java.net.ConnectException: Connection refused: connect
    at sun.rmi.transport.tcp.TCPEndpoint.newSocket(Unknown Source)
    at sun.rmi.transport.tcp.TCPChannel.createConnection(Unknown Source)
    at sun.rmi.transport.tcp.TCPChannel.newConnection(Unknown Source)
    at sun.rmi.server.UnicastRef.invoke(Unknown Source)
    at MyRemoteImpl_Stub.sayHello(Unknown Source)
    at MyRemoteClient.go(MyRemoteClient.java:11)
    at MyRemoteClient.main(MyRemoteClient.java:6)
    Caused by: java.net.ConnectException: Connection refused: connect
    at java.net.PlainSocketImpl.socketConnect(Native Method)
    at java.net.PlainSocketImpl.doConnect(Unknown Source)
    at java.net.PlainSocketImpl.connectToAddress(Unknown Source)
    at java.net.PlainSocketImpl.connect(Unknown Source)
    at java.net.SocksSocketImpl.connect(Unknown Source)
    at java.net.Socket.connect(Unknown Source)
    at java.net.Socket.connect(Unknown Source)
    at java.net.Socket.<init>(Unknown Source)
    at java.net.Socket.<init>(Unknown Source)
    at sun.rmi.transport.proxy.RMIDirectSocketFactory.createSocket(Unknown Source)
    at sun.rmi.transport.proxy.RMIMasterSocketFactory.createSocket(Unknown Source)
    ... 7 more
    I am wondering as to why is it trying to connect to a local host 127.0.1.1 instead of the IP Address specified at by"xxx.xx.xx.xx" in the program?
    I have the stub class and the service interface classes on my client-side.
    Thanks.

    I am wondering as to why is it trying to connect to a
    local host 127.0.1.1 instead of the IP Address
    specified at by"xxx.xx.xx.xx" in the program?Because that only specifies where the lookup should be done, i.e. where the Registry is. This lookup() returns a stub to your remote object which has its own IP address and port embedded into it, and that's where 127.0.0.1 is coming from - you're not doing Registry.lookup at this point, you're calling your remote method.
    This indicates a DNS or /etc/hosts misconfiguration - your primary IP address is coming up as 127.0.0.1 instead of whatever your public IP address is. Famous Linux issue. You should really fix it in your DNS or /etc/hosts, but you can work around it by setting -Djava.rmi.server.hostname=<public IP address> at the server JVM.

  • HTML code issues

    I have a topic that was once stable
    , but now at one point in the top
    ic the style is correct. But in another area, the style will not take and the HTM
    L code inserts <span> etc., etc. Here is an example if you look at the H
    2 head:
    <?xml version="1.0" encoding="utf-8" ?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <meta name="template" content="NERC.htt" />
    <meta name="generator" content="Adobe RoboHelp 8" />
    <title>Revoking PI User Access</title>
    <link rel="StyleSheet" href="..\default.css" type="text/css" />
    </head>
    <body>
    <?rh-script_start ?><script src="../ehlpdhtm.js" type="text/javascript"
            language="JavaScript1.2"></script><?rh-script_end ?>
    <?rh-placeholder type="header" ?>
    <h1>Revoking PI User Access</h1>
    <p>Access for both a PI user and a SCADAView user can be revoked if a Mantis
    ticket requesting removal from IT AccessRequest exists. For Mantis tickets,
    make sure that a <span class="BoldName">Real Time Systems User ID Add-Changed-Remove</span>
    form completed by the user’s E4 manager is attached to the ticket. If
    not, contact the requestor.</p>
    <p>In order to remove access, you must search for the user name in both
    the old and new databases:</p>
    <ul type="disc">
    <li class="BulletedList">For instructions on revoking a user's access
      in the old database, <a href="#Removing_Access_Old_DB">click here</a>.</li>
    <li class="BulletedList">For instructions on revoking a user's access
      in the new Active Directory database, <a href="#Removing_Access_New_DB">click
      here</a>.</li>
    </ul>
    <p>After revoking a PI user's access, you also need to remove the user's
    name from the Outlook Address Book. For instructions, <a href="#Removing_User_Outlook_Group">click
    here.</a></p>
    <h2>Removing a user's access in the old database<a name="Removing_Access_Old_DB"></a></h2>
    <ol>
    <li class="NumberedList"><p style="margin-left: 0px;">Go to the SCADA
      website at <a href="http://scada/" style="font-size: 10pt;">HTTP://SCADA</a>.</p></li>
    <li class="NumberedList"><p>When the <span class="BoldName">SCADA &amp;
      Distribution Automation</span> home page displays, under <span class="BoldName">PI
      Historian</span>, click <span class="BoldName">User Maintenance</span>
      (circled in red). <a class="dropspot" href="javascript:TextPopup(this)"
            id="a5">Click to view</a>.</p>
    <div class="droptext" id="POPUP134020538" style="display: none;">
      <p><img src="../PI_Historian.jpg" alt="" style="border-left-style: Solid;
         border-left-width: 2px; border-right-style: Solid; border-right-width: 2px;
         border-top-style: Solid; border-top-width: 2px; border-bottom-style: Solid;
         border-bottom-width: 2px;" width="194" height="109" border="2" /></p>
    </div></li>
    <li class="NumberedList"><p>When the SCADA System Logon screen displays,
      perform the following:</p></li>
    </ol>
    <ol start="1">
    <li class="NumberedList2"><p>For <span class="BoldName">User Id,</span>
      enter your PI user id.</p></li>
    <li class="NumberedList2"><p>For <span class="BoldName">Password,</span>enter
      your PI password.</p></li>
    <li class="NumberedList2"><p>For <span class="BoldName">Select Group,
      </span>click <span class="BoldName">PRG</span> from the dropdown list.</p></li>
    <li class="NumberedList2"><p>Click <img src="../ButtonSubmit.JPG" alt=""
                style="border: none;" width="61"
                height="25" border="0" /><span
      class="BoldName">.</span></p></li>
    </ol>
    <p style="text-indent: 84px;"><span class="BoldName">&#160;Result:</span><span
      class="Result"> The </span><span class="BoldName">User Administration</span><span
      class="Result"> screen displays the user's information. <a class="dropspot"
      href="javascript:TextPopup(this)" id="a2">Click to view</a>.</span></p>
    <div class="droptext" id="POPUP133400192" style="display: none;">
    <p><img src="../UAdminKUSBJX.jpg" alt="" style="border: none;" width="456"
        height="368" border="0" /></p>
    </div>
    <ol start="4" type="1">
    <li class="NumberedList"><span class="Result">I</span>f the user id
      is recognized, but PI access must be removed while keeping <span class="BoldName"
      style="font-weight: normal;">SCADAView.</span></li>
    <li class="NumberedList">If the user id is recognized, but PI access
      must be removed while keeping <span class="BoldName" style="font-weight: normal;">SCADAView
      access, uncheck the </span><span class="BoldName">PI Access</span><span
      class="BoldName" style="font-weight: normal;"> checkbox and click
      </span><img src="../ButtonModify.JPG" alt="" style="border: none;"
         width="63" height="25" border="0" />. </li>
    </ol>
    <p style="margin-left: 60px;"><span class="BoldName">&#160;Result: &#160;</span>If
    the PI-only access removal is successful you should see this message (circled
    in red).</p>
    <ul type="disc">
    <ol start="6" type="1">
      <li class="NumberedList"><p>&#160;</p></li>
      <li class="NumberedList">If both SCADAView and PI Access must be
       removed, click <img src="../ButtonDelete.JPG" alt="" style="border: none;"
            width="63" height="24" border="0" />.</li>
      <p>&#160;Result: If both SCADAView and PI access removal is successful
       you should see the following message (circled in red). <a class="dropspot"
       href="javascript:TextPopup(this)" id="a4">Click to view.</a></p>
      <div class="droptext" id="POPUP133037650" style="display: none;">
       <p><img src="../UAdminDeleted.jpg" alt="" style="border: none;"
          width="466" height="409" border="0" /></p>
      </div>
      <p class="Note" style="margin-left: 108px; text-indent: -48px;">&#160;NOTE:
       &#160;<span style="font-weight: normal;">The User ID is the person’s
       LAN user id. This removes the user id from the GLOBE_USER table.</span></p>
      <h2><span style="font-weight: normal;">Removing a user's access
       in the new database (Windows Active Directory)<a name="Removing_Access_New_DB"></a></span></h2>
      <ol type="1">
       <li class="NumberedList"><p><span style="font-weight: normal;">Remote
        desktop to either server: <span style="font-weight: bold;">cccs-pifig01</span>
        or <span style="font-weight: bold;">lc3s-pifig01</span>.</span></p></li>
       <li class="NumberedList"><p><span style="font-weight: normal;">Double-click
        the <span style="font-weight: bold;">Energy PI Users Group.</span></span></p></li>
       <li class="NumberedList"><p><span style="font-weight: normal;">When
        the<span style="font-weight: bold;"> Energy PI Users Properties
        </span>dialog<span style="font-weight: bold;"> </span>displays,
        select the <span style="font-weight: bold;">Members</span>
        tab. See below.</span></p></li>
      </ol>
      <p style="margin-left: 48px;"><span style="font-weight: normal;"><img
       src="../Remove_NewDB.jpg" alt="" style="border: none;" width="963"
       height="642" border="0" /></span></p>
      <ol start="4" type="1">
       <li class="NumberedList"><p><span style="font-weight: normal;">Select
        the LAN user name on the screen and click <img src="../ButtonRemove.jpg"
                    alt="" style="border: none;"
                    width="75"
                    height="24"
                    border="0" />.
        </span></p></li>
      </ol>
      <p style="text-indent: 60px;"><span style="font-weight: normal;"><span
       style="font-weight: bold;">&#160;Result:</span> The user is removed
       from the PI access Active Directory user database.</span></p>
      <h2><span style="font-weight: normal;">Removing a user's name from
       Outlook<a name="Removing_User_Outlook_Group"></a> </span></h2>
      <p><span style="font-weight: normal;"><span class="BoldName" style="font-weight: normal;">This
       procedure involves removing the newly deleted user from the </span><span
       class="BoldName">T&amp;D PI Users</span><span class="BoldName"
                   style="font-weight: normal;">
       group in the Outlook Address Book.</span></span></p>
      <ol start="1" type="1">
       <li class="NumberedList"><p><span><span class="BoldName" style="font-weight: normal;">Open
        the address book in Outlook.</span></span></p></li>
       <li class="NumberedList"><p><span style="font-weight: normal;">Locate
        and delete the user’s name from the <span class="BoldName">T&amp;D
        PI Users group.</span></span></p></li>
       <li class="NumberedList"><p><span style="font-weight: normal;">Complete
        the Mantis ticket.</span></p></li>
       <li class="NumberedList"><p><span style="font-weight: normal;">If
        the user is on the Terminated Employees list, enter the employee’s
        user id in the PI Access column and highlight the entire row
        with an orange background color.</span></p></li>
      </ol>
      <p>&#160;</p>
      <?rh-placeholder type="footer" ?>
    </ol>
    </ul>
    <?rh-placeholder type="footer" ?>
    <?rh-script_start ?><script type="text/javascript" language="JavaScript1.2">//<![CDATA[
    if( typeof( TextPopupInit ) != 'function' ) TextPopupInit = new Function();
    TextPopupInit('a5', 'POPUP134020538');
    TextPopupInit('a2', 'POPUP133400192');
    TextPopupInit('a4', 'POPUP133037650');
    //]]></script><?rh-script_end ?>
    </body>
    </html>
    I am exhausted from deleting specific HTML code to make the content work. Plus there seems to be an issue with the margins moving around. Can someone help me with this HTLM code nightmare? Other than deleting it all and inputting the text again? This is the only topic in my project in which this has occurred.

    Hi Gloria,
              Its not possible to talk about a solution until you know the issue which caused it. the question is the HTML cannot get reorganize in RoboHelp if it is not edited exclusively - by this I mean if you bring in all the content through RoboHelp UI then RoboHelp will not change HTML by itself, until you manually change the html code.
    you should try to find out the cause of the seizure (by which I think you mean hang), It could be that you are using any version control and it failed to checkout/checkin one or more project files, It might be that .cpd file got corrupted in that case you can try deleting the .cpd file after closing the project and it will get recreated by RoboHelp on next Open project, or it is possible that some of your shared resources might be missing/moved because of which RoboHelp hangs then in such case you should replace/remove these resources.
    You should not be working on the project over network (i.e. the Project should be on the local drive).
    Are you using CBTs and UDVs or your topics are too large (and thus processing of these topics seizes RoboHelp)
    by any means deleting random HTML code of any topic might actually make the HTML invalid and cause more crashes or hangs.
    I have listed down almost all the reason..
    one way is to remove topics and find out the culprit topics which causes the hang and if you find one you can share it with me at [email protected] and I might find the cause of RH hang by inspecting that
    Hope this helps
    Ashish

Maybe you are looking for