Recursive style error

I am having trouble attaching my css sheet to the index.html. I keep getting the message:
A recursive style import found while trying to add check_cs6.css. Please resolve this error by editing the file in an external text editor and try again.
I am going through the tutorial and it is not helping with this error, can anyone help me?

That error is generally caused when trying to attach a stylesheet to itself.
Make sure your .html document is open and active. Click inside it to make sure it has the focus before you try to attach the stylesheet to it.

Similar Messages

  • RECURSIVE STYLE IMPORT?

    If you google this problem you can see it has occurred and been left unsolved for THREE YEARS. 
    I am ready to give up and throw out Dreamweaver because of this seemingly unsolved problem. 
    None of the solutions work, even the one repeated several times by the author, who says that we are trying to attach the style sheet to itself, without telling how to fix that problem. 
    If I and a lot of other users create a style sheet and then attempt to attach it to the index file we get the message "A recursive style import was found while trying to add check_cs6.css.  Please resolve this error by exiting the file in an external editor and try again."
    I have tried over and over and over.  What good is this program if we cannot attach the style sheet to an index file? 

    OK.  Are you working within a defined local site folder in DW?  Without this critical first step, DW can't manage assets for you.
    Once you have your site defined, create a new CSS file.  File > New > Blank page > CSS.
    Cut and paste the following CSS code into that new CSS page and SaveAs some_filename.css 
    I like to keep CSS files in a Styles folder in my site but that's up to you.
    @charset "utf-8";
    #container {
              width: 968px;
              background: #FFF;
              margin: 0 auto;
              padding-left: 10px;
              padding-right: 10px;
              overflow: hidden;}
    #header {
    #main_image {
    #left_column {
    #center_column {
    #right_column {
    #footer {
    Next, open your HTML page and link it to the external CSS file as described below.
    http://alt-web.com/DEMOS/DW-Link-Stylesheet.shtml
    Let me know what happens.
    Nancy O.

  • Internal error in R-tree processing: [Recursive fetch error]

    Hello,
    I seem to be getting an error when using any type of SDO function (SDO_RELATE, SDO_FILTER, SDO_ NN, ... ) on my spatially indexed data. The error I'm getting is this:
    ERROR at line 1:
    ORA-29903: error in executing ODCIIndexFetch() routine
    ORA-13236: internal error in R-tree processing: []
    ORA-13236: internal error in R-tree processing: [Recursive fetch error]
    The interesting part of this is that I only get this error if I insert more than 31 entries into the table. All the relevant code is posted below, what I do is create the table, then create the metadata from the sqlplus interface. After that I run a java program that does Clear() then Insert() then Create_Indices(). All these run just fine (at least run without telling me about any errors). But as soon as that is all done and I do an SDO query on the data, for example:
    SELECT location stop_range_poly_area
    FROM stops
    WHERE SDO_FILTER
    location,
    SDO_GEOMETRY
    2003, null, null,
    SDO_ELEM_INFO_ARRAY(1,1003,1),
    SDO_ORDINATE_ARRAY(300,300, 600,300, 600,600, 300,600, 300,300)
    ) = 'TRUE';
    I get the above mentioned error. But if I change my data so that it doesn't have more than 31 entries (doesn't matter which 31 entries, just so long as it doesn't exceed that number) that query (and all of my other SDO test queries on the stops table) seems to work just fine.
    Thanks for looking at this,
    Brad
    ---- SQLPLUS Code -----------------------------------------------------------------------------------------------------------
    CREATE TABLE stops
    stop_id VARCHAR2(4) PRIMARY KEY,
    address VARCHAR2(256),
    location sdo_geometry
    INSERT INTO user_sdo_geom_metadata VALUES
    'stops',
    'location',
    MDSYS.SDO_DIM_ARRAY
    MDSYS.SDO_DIM_ELEMENT('X', 0, 600, 0.005),
    MDSYS.SDO_DIM_ELEMENT('Y', 0, 800, 0.005)
    null
    ----- Java Code -----------------------------------------------------------------------------------------------------------------
    // Clear
    // Description:
    // This function clears all the data in the stop tables in the database
    // given in the connection.
    public static void Clear (Connection connection)
    Statement statement;
    try
    statement = connection.createStatement();
    statement.executeUpdate("DROP INDEX stops_index");
    statement.executeUpdate("DELETE stops");
    statement.close();
    catch (SQLException e)
    System.err.println("SQLExcpetion (Stop.Clear()): " + e.getMessage());
    // Create_Indices
    // Description:
    // Create indices for stops table
    public static void Create_Indices (Connection connection)
    Statement statement;
    String sql_query;
    sql_query = "CREATE INDEX stops_index ON stops(location) " +
    "INDEXTYPE IS MDSYS.SPATIAL_INDEX";
    try
    statement = connection.createStatement();
    statement.executeUpdate(sql_query);
    statement.close();
    catch (SQLException e)
    System.err.println("SQLExcpetion (Stop.Create_Indices()): " + e.getMessage());
    // Insert
    // Description:
    // This function inserts this object into the stops table in the database
    // given in the connection.
    public void Insert (Connection connection)
    Statement statement;
    String sql_query;
    sql_query = "INSERT INTO stops VALUES ('" +
    stop_id + "', '" +
    address + "', " +
    "sdo_geometry(2001, null, sdo_point_type(" +
    location.x + "," +
    location.y + ",null), null, null)" +
    try
    statement = connection.createStatement();
    statement.executeUpdate(sql_query);
    statement.close();
    catch (SQLException e)
    System.err.println("SQLException (Stop.Insert()):" + e.getMessage());
    Message was edited by: loos to include the changes proposed by the second poster.

    Hi,
    Thanks for trying but changing those items for the specific failing queries didn't seem to help. Though you do seem to be right about the internal/external polygon problem, so I changed it all my other queries to see if they would fail (that way things would at least be consistent), but it doesn't seem to make a difference. All my old failing quries still fail and my working ones still work. I also changed the co-ordinates as you specified and still have no changes (unless of course the results changed, but right now I'm just looking for queries that compile and run, the results don't matter yet).
    Maybe this will help, I'll give you guys both sets of data, one that works and one that doesn't and maybe you can see a problem in the data that I'm just missing or too ignorant to see. The data is simply comma seperated values that I parse into the required fields in the order (id, description, x, y).
    So far, the only reason I've been able to find that the non-working data doesn't work is because there are more than 31 rows. I started taking records out of the stops table in a binary search sort of pattern. If I take out stops 100-115 (resulting 29 records) all the queries work, if I take out stops 100-107 (resulting in 36 records) it doesn't work. If I take out 109-115 (resulting in 35 records) it doesn't work. If I take out 1-11 (resulting in 32 records) it doesn't work. If I take out 1-12 (resulting in 31 records) it does work. Here's a table
    Take out Stops ---- records left -- Works?
    s1-s11 ------------ 32 ------------ No
    s1-s12 ------------ 31 ------------ Yes
    s100-s115 --------- 29 ------------ Yes
    s100-s107 --------- 36 ------------ No
    s109-s115 --------- 35 ------------ No
    Thanks again for checking this out,
    Brad
    ------- Working Data ---------------------------------------------------------------------------------------
    (Student_id, Department, x, y)
    Student_1,Computer Science ,296,131
    Student_2,Social Science,130 ,279
    Student_3,Mechanical Engineering ,392,180
    Student_4,Electrical Engineering ,342,322
    Student_5,Computer Science ,165,490
    Student_6,Scicology ,393,533
    Student_7,Physical Therapy ,590,616
    Student_8,Civil Engineering ,165,640
    Student_9,English ,360,412
    Student_10,Economy ,89,32
    Student_11,Computer Science ,26,117
    Student_12,Social Science,430 ,291
    Student_13,Mechanical Engineering ,382,80
    Student_14,Electrical Engineering ,542,222
    Student_15,Computer Science ,154,290
    Student_16,Scicology ,493,323
    Student_17,Physical Therapy ,290,426
    Student_18,Civil Engineering ,65,230
    Student_19,English ,300,412
    Student_20,Economy ,44,292
    Student_21,Computer Science ,146,431
    Student_22,Social Science,405 ,179
    Student_23,Mechanical Engineering ,192,480
    Student_24,Electrical Engineering ,412,202
    Student_25,Computer Science ,265,49
    Student_26,Scicology ,33,273
    Student_27,Physical Therapy ,186,216
    Student_28,Civil Engineering ,365,600
    Student_29,English ,309,42
    Student_30,Economy ,415,392
    ------- Non Working Data ---------------------------------------------------------------------------------
    (Stop_id, Address, x, y)
    s1, 2341 Portland,377,64
    s2, 24th St. / Hoover St.,308,22
    s3, 2620 Monmouth Ave.,272,138
    s4, 2632 Ellendale Pl.,128,110
    s5, 2726 Menlo Ave.,85,231
    s6, 2758 Menlo Ave.,84,124
    s7, 28th St. / Orchard Ave.,183,236
    s8, 28th St. / University Ave.,414,308
    s9, 30th St. / University Ave.,391,352
    s11, 34th St. / McClintock St.,180,458
    s12, 36th Pl. / Watt Way,176,622
    s13, Adams Blvd. / Magnolia Ave.,218,87
    s14, BG Mills Apts.,23,637
    s15, Cardinal Gardens Apts.,156,389
    s16, Centennial Apts.,373,126
    s17, Chez Ronee Apts.,446,414
    s18, City Park Apts.,70,323
    s19, Dental School,219,478
    s96, Founders Apts.,373,192
    s97, Hillview Apts.,412,214
    s98, House of Public Life,531,303
    s99, JEP,304,523
    s100, Kerchoff Apts.,473,272
    s101, Leavey Library,370,559
    s103, McClintock St. / Childs Way,129,553
    s104, Mt. St. Marys College,565,127
    s105, Pacific Apts.,398,240
    s107, Parking Center,525,652
    s109, Parkside,78,651
    s110, Severance St. / Adams Blvd.,435,202
    s111, Research Annex,492,776
    s112, Sierra Apts.,352,230
    s113, Sunset Apts.,267,278
    s114, Terrace Apts.,156,280
    s115, Troy East Apts.,402,397
    s116, University Regents Apts.,182,181
    s117, Watt Way / 36th Pl.,176,622
    s119, Watt Way / Bloom Walk,158,653
    s120, Windsor Apts.,257,236
    s121, Zemeckis Center,476,474
    s137, Gate #2,321,715
    s138, 24th St. / Toberman St.,377,64

  • AS2.0 : Infinite recursion loop error when launching debugger

    I want to debug a project:
    When I run it from Flash, it doesn't work as expected but it
    doesn't display
    any compiling nor runtime error.
    But when I want to debug it and press the Play button of the
    debugger, it
    displays an infinite recursion loop error.
    I get this error even when I set a breakpoint at the first
    line of the
    script.
    How can I debug the debugger? lol!
    If you know Flash debugger's internal behavior, can you tell
    me how it can
    display an infinite recursion loop while a classic preview
    does not.
    Thanks.
    Henri

    What you are trying to do is not supported on Windows.
    You mention a thin client.  This has nothing to do with thin clients.  Thin clients are just dumb monitors that run a remote RDP session.
    If you are connecting to a terminal server there is a configuration in GP or in the terminal server configuration that let you specify an alternate shell.  If you are running this as a remote to a workstation then you need to specify the shell in the
    user profile.  THis can be done through group policy or via a registry edit.
    You cannot use a script for this and you cannot use an Office program without Explorer.  Office requires Explorer to run which is why you are getting that error.
    Redirecting userinit for the whole machine will likely create many bad side effects as it is a fundamental process.  It is called multiple times during logon.  Replacing it with a batch file will cause you script to be executed multiple times. 
    Usually userinit is called at least three times.  In a domain with Group Policy it can be called a dozen times.  I am pretty sure the only reason for it being in the registry is to allow for debugging.
    Another this folder.ng to knowis that userinit has to complete before many things in Office will work correctly dependin on you implementation.
    You can load the powerpoint viewer and directly launch that with the file name from the
    "startup"  .  You can also try and set the powerpoint viewer as the alternate shell.  It just might work because it is designed to run completely stand alone with no Office and is used in kiosks which generally run without Explorer. 
    You can also try to use IE to launch the ppt as it can host this with the viewer installed.  It can be set to fullscreen and it will re-launch  when exited just like Explorer does,
    ¯\_(ツ)_/¯

  • Hi i'm using firefox nightly after today's flash player update im facing this error "style error #2134" when playinf videos on some websites tell me about inf

    Hi, i'm using firefox nightly.
    After today's flash player update im facing this error "style error #2134" when playinf videos on some websites. Tell me about info i have to provide to solve this problem. Thanks

    Hello,
    I am not a Flash developer, but based on my search, this particular error 'style error #2134' means that the Flash video / game that you are viewing is not able to store data on the local storage (your machine).
    Can you please check the setting described in the Adobe KB [http://helpx.adobe.com/flash-player/kb/error-2134-cannot-create-sharedobject.html Enable Storage for Flash Player], to see if this helps in resolving the issue.
    Thank you

  • Recursive Loop Error while doing standard cost estimate

    SAP Gurus,
    We are trying to do standard cost estimate on a material and we are getting error because it is going in recursive loop even though we have used "recursive allowed" indicator for item components in the BOM. The error message numbers are CK 730 and CK 740. We are using 4.6c. I have tried the same scenario in ECC 6.0 and still I get the same problem.
    Below is my BOM structure:
    Material 10890345 (has low-level code 012)
            ---> 10867220 (has low-level code 013) and has recursive allowed indicator
    10867220
            ---> 10846733  (has low-level code 014) and has recursive allowed indicator
    10846733
            ---> 10890345 (has low-level code 012) and has recursive allowed indicator
    According to me, the BOM for material 10846733 is causing the problem.
    For some weird reason while doing the costing run for material 10890345, it s not stopping and going in a loop.10890345  and 10846733 should ideally have the same low-level code as they are recursive.
    Please help to provide some solutions at the earliest on how to avoid recursive loop during costing.
    Regards,
    Swapnil

    Dear,
    I have 2 things to shear with you.
    The method we followed to solve the iteration is as below
    1.Config change -
    Valuation variant in the costing variant, we changed the sequence as below
    material valuation
    4 planned price 1
    2 std price
    3 Mov ave price
    2. Material master change
    made all the semi finished goods and finished goods
    procurement type = E,
    costing with qty structure,
    Enter the planned price1
    By doing this what happens is
    when system first start the iteration, takes the planned price 1 and start iterating and next time in the second iteration it takes the calculated price from qty structure till it finds the difference between the value calculated is less than .001. Then it gives the result
    Why lot size is important is, in our case in some levels the usage is very less compared to the first material header qty and system used to stop in between  and not even reaching the last level as during the cycle it was reaching less .001 difference. may be in your case it may not be the case...just check
    Please come back after trying this. this was the only last option i had to solve the issue in my client.
    Another alternative is to have a different material for costing purpose to stop the iteration which i will not recommend as we need to do some calculation for each stage and input the cost of dummy material in each stage.
    My client is happy with the result as the difference between manual calculation and system calculation is less then .1%...this is because SAP will not consider the difference beyond .001, but in excel you get as many as decimals you want.

  • Web Service Client encoding style error

    Hi all,
    I have a created a java static stub client (created with wscompile from the wsdp). If I run the client I receive the following error
    "unexpected encoding style: expected=http://schemas.xmlsoap.org/soap/encoding/..."
    I am using a delphi web service server, the encoding style is set to "http://schemas.xmlsoap.org/soap/encoding/"
    My server simply echos a string with the method name "echoString"
    Where do I go from here?
    Does the xmlns tag in the "config-wsdl.xml" have anything to do with it?
    Complete error :
    java.rmi.RemoteException: Runtime exception; nested exception is:
    unexpected encoding style: expected=http://schemas.xmlsoap.org/soap/encoding/, actual=
    at com.sun.xml.rpc.client.StreamingSender._handleRuntimeExceptionInSend(StreamingSender.java:248)
    at com.sun.xml.rpc.client.StreamingSender._send(StreamingSender.java:230)
    at staticstub.IMyEmailWebService_Stub.echoString(IMyEmailWebService_Stub.java:68)
    at DelphiClass.main(DelphiClass.java:25)
    Caused by: unexpected encoding style: expected=http://schemas.xmlsoap.org/soap/encoding/, actual=
    at com.sun.xml.rpc.encoding.SOAPDeserializationContext.verifyEncodingStyle(SOAPDeserializationContext.java:159)
    at com.sun.xml.rpc.encoding.ObjectSerializerBase.deserialize(ObjectSerializerBase.java:150)
    at com.sun.xml.rpc.encoding.ReferenceableSerializerImpl.deserialize(ReferenceableSerializerImpl.java:134)
    at staticstub.IMyEmailWebService_Stub._deserialize_echoString(IMyEmailWebService_Stub.java:173)
    at staticstub.IMyEmailWebService_Stub._readFirstBodyElement(IMyEmailWebService_Stub.java:157)
    at com.sun.xml.rpc.client.StreamingSender._send(StreamingSender.java:158)
    Thank you in advance
    Garth

    Looks like the server is not using the correct encoding. I suggest using a packet sniffer so you can actually see the SOAP message to verify that. Apache Axis has a tcpmon utility that works very nicely.

  • Recursive node error in ESR

    Check result for Data Type: PriceDerivationType | http://alfuttaim.com/xi/storeConnectivity:
    Data type Data Type PriceDerivationType | http://alfuttaim.com/xi/storeConnectivity points to itself
    Hi Experts ,
    I have a datatype part of sap standard content which has a recursive node ( poniting to itself).
    I have to copy it to a local name space and use it . When i try to copy it and activate it i am getting this
    error .
    "Check result for Data Type: PriceDerivationType | http://alfuttaim.com/xi/storeConnectivity:
    Data type Data Type PriceDerivationType | http://alfuttaim.com/xi/storeConnectivity points to itself"
    Please let me know how do i go abt activating this object.
    Thanks in advance and best regards,
    Anil

    Hi Anil,
      When you copy it local namespace, verify the namespace is local or the one which is poiting to itself.
      If this is pointing itself, manually you change the namespace which you want and activate it.
      Hope this helps.
    Regards
    Shankar.

  • Recursive file error 6

    Hello,
          I am getting the following error when I am using the "Recursive File List" vi,   "Error 6 occurred at List Folder in Recursive File List.vi>file_list.vi".  The dialog box also states that the npossible reasons are that there is a Laview Gernic file I/O error related to the NI-488. I have assumed that the Recursive File List vi does exactly what the name implies, you simply pass the vi a directory and presto...some times later it output the names of all of the files that exist in the directly you input and every dir below. 
    Regards,
    Kaspar
    Regards,
    Kaspar

    Error codes are sometimes re-used by software components. This is especially true for older code and/or libraries. Error code 6 can mean either a generic file I/O error or a GPIB error. Which one it means depends on what function generated. Since it was a file I/O related function then obviously it's not a GPIB error. With respect as to what it means, the full text is:
    Generic file I/O error. A possible cause for this error is the disk or
    hard drive to which you are trying to save might be full. Try freeing
    up disk space or saving to a different disk or drive.
    Does this error happen every time? Does it happen with a specific file? I am assuming that it's not a disk space issue (have you checked, though?). It's possible you may have a bad block on your disk. 

  • Enconding style ERROR

    On the Pocket Pc emulator of VS2003 i'm trying to run an application that
    want to access web services on a java server ( using JWSDP 1.5).
    And occurs a error, and i don't no how to slove it:
    unexpected encoding style:
    expected=http://schemas.xmlsoap.org/soap/encoding/, actual=
    A think it's a lack of what is the actual enconding, but i'm not sure...
    Even doe i dont no how to solve it.
    Thanks

    There will be a class named as <Service_name>Stub.java which is generated through wscompile. Here <Servicename> is the name of service which you are accessing.
    Here is the sample code which will be in that file. Just add the provided line as first line of this fuinction. i.e add "deserializationContext.pushEncodingStyle(SOAPConstants.NS_SOAP_ENCODING);" to this method like it is done here. I've highlighted that line.
    * this method deserializes the request/response structure in the body
    protected void _readFirstBodyElement(XMLReader bodyReader, SOAPDeserializationContext deserializationContext, StreamingSenderState  state) throws Exception {
    deserializationContext.pushEncodingStyle(SOAPConstants.NS_SOAP_ENCODING) int opcode = state.getRequest().getOperationCode();
    switch (opcode) {
    case terminal_mgmnt_OPCODE:
    deserializeterminal_mgmnt(bodyReader, deserializationContext, state);
    break;
    case sp_mgmnt_OPCODE:
    deserializesp_mgmnt(bodyReader, deserializationContext, state);
    break;
    case pipe_mgmnt_OPCODE:
    deserializepipe_mgmnt(bodyReader, deserializationContext, state);
    break;
    default:
    throw new SenderException("sender.response.unrecognizedOperation", Integer.toString(opcode));
    Regards,
    Piyush

  • Function sequence error / Recursive functions error

    Hi! I've a little problem over here. I have an application (servlet) that makes recursive functions with DB access. This function contains a resultset that calls the same function again until no more data is found. The problem, is that I'm using JDBC-ODBC bridge (because this must work in SQL Server, Informix, Sybase, Access and Oracle), so I need to make commit of the connection in every resultset. If I make the commit inside the resultset, I got a "Function Sequence error" exception. Of course, I can't close every statement inside the resultset (or at least I don't know how). My code looks like this:
    public void myfunction(String odbc,String data1,String data2) throws SQLException,Exception{
         //this class, myclassDB, just return a established connection with the DB
         Connection connection = myclassDB.connect(odbc);
         Statement statement = connection.createStatement();
         ResultSet rs = statement.executeQuery("query");
         while(rs.next()){
              //do something with the information
              //make recursive
              connection.commit();
              myfunction(odbc,data1,data2);
         statement.close();
         connection.close();
    }Hope you can help me!
    Feel free to email me at [email protected]
    Regards!     

    I am not really sure what the question is but...
    Presuming that there isn't something wrong with your design (which recursive calls suggest) then you need to extract all of the data, close the resultset/statement then do the recursive calls. If you do processing first then you can still commit on the connection.

  • WebService Unrecognized binding style error

    I am trying to access a webservice method throught action
    Script. I just need to call a method " RequestSomeMethod"and send 2
    parameters. But am getting following error :
    RPC Fault faultString="Unrecognized binding style 'null'.
    Only 'document' and 'rpc' styles are supported."
    faultCode="EncodingError" faultDetail="null"
    I am not expecting anything back from the webservice. I just
    need to call the method so that it takes some action.
    Can please somebody help me with this and tell me why am I
    getting this error and how to get rid of it?
    Attacjed is the code I am using:
    <?xml version="1.0"?>
    <mx:Button xmlns:mx="
    http://www.adobe.com/2006/mxml"
    click="useWebService()" width="80%" >
    <mx:Script>
    <![CDATA[
    import mx.rpc.soap.LoadEvent;
    import mx.controls.Alert;
    import mx.rpc.http.HTTPService;
    import mx.rpc.soap.WebService;
    import mx.rpc.events.ResultEvent;
    import mx.rpc.events.FaultEvent;
    private var ws:WebService;
    private var para1:Number;
    private var para2:int;
    override public function set data(value:Object):void
    para1=1;
    setStyle("color", "red");
    enabled=false;
    label ="Do not click";
    para2=0
    public function useWebService():void {
    ws = new WebService();
    ws.addEventListener("fault", faultHandler);
    ws.addEventListener(LoadEvent.LOAD,wsLoaded);
    ws.addEventListener(ResultEvent.RESULT, result_listener);
    ws.wsdl= "someurl?wsdl";
    ws.loadWSDL();
    private function wsLoaded(loadEvent:Event):void{
    ws.RequestSomeMethod(para1, para2);
    public function echoResultHandler(event:ResultEvent):void {
    Alert.show("WSDL returned");
    public function faultHandler(event:FaultEvent):void {
    trace(event.fault);
    public function result_listener(event:ResultEvent):void {
    ]]>
    </mx:Script>
    </mx:Button>

    In the wsdl file that I am accessing, some of the tags it has
    are as below. It does not have style property in soap binding tag,
    but is in operation tag. Is that OK? or does flex expect it to be
    in soap binding tag and hence give me this error?:
    - <wsdl:binding name="abc" type="tns:IJK">
    <wsp:PolicyReference URI="#XYZ" />
    <soap12:binding transport="
    http://schemas.xmlsoap.org/soap/http"
    />
    - <wsdl:operation name="RequestDetails">
    <soap12:operation soapAction="
    http://tempuri/RequestDetails"
    style="document" />
    - <wsdl:input>
    <soap12:body use="literal" />
    </wsdl:input>
    - <wsdl:output>
    <soap12:body use="literal" />
    </wsdl:output>
    </wsdl:operation>
    </wsdl:binding>

  • HRFORMS - Style error

    Hi Guys,
    Can someone help me I am encountering an error when running a copied SMARTFORM in HR FORMS.
    Here's what I did: I copied an existing HR Form then changed the Smart Style inside the copied form but upon running the print program, an error pointing out that the style from the form that I copied does not exist. It's like it's still pointing to the style of the reference form.
    Is there anything that I need to change?
    thanks.
    regards,
    tin

    Hi
    Check the output options tab of all the nodes used in the smartform like tables, templates, text elements..etc...If anyother style is assigned other than the one you gave in the Attributes of the PAGE.
    Vishwa.

  • Recursive BOM error in MD04 (May be more related to MM?)

    Hi,
    I am looking for help with this error. We added a Substitute upper level Assembly Material into an existing BOM within a Production Order and this error occurs to the part in MD04.
    Checking the available SAP Notes on this subject leads me to the conclusion that the reason for it happening is that the Low Level code on the substitute assembly material is missing!
    The SAP Notes also provide a couple of downloads that can fix this issue, but only for SAP versions up to R/3 4.6? They are not applicable for our version - ECC 6.0.
    Does anyone know if it is possible to manually change/update a Low Level Code for a material?
    Regards,
    Allan

    No answer required at this time. Will re-post if error occurs again.

  • Styles  error

    I set up my styles correctly. But when I use one of them, it chooses a different font. It is driving me crazy.
    Running InDesign CS3 on XP computer.
    Trudie

    Perhaps you've inadvertently got a character style applied that's overriding your paragraph style. Select your text and set your character style to None. Then reapply you paragraph style. (Hold down alt if it has a plus sign next to the paragraph style.) I found once that I accidentally had selected a character style without having any text selected. That meant that ALL new text I placed had that style applied to it, and it overrode my paragraph styling. That drove me nuts for until I figured out what the problem was. So without any text selected, look at your character style palette. Is anything selected?

Maybe you are looking for

  • Ipod usb problem

    I have a problem with my ipod. When i plug it into my usb port it says that the following: No drivers are installed for this device. ^ thats what it says about the USB cable. Does anyone know how I could fix this? Yes I restarted my ipod and yes i've

  • Side-Loade​d Apps Not Working On Z10

    I recently started sideloading apps on my z10 with google chrome playbook device manager and all goes well, but the problem is that they dont work. Even after pasting the files to misc/adroid/Android/data or obb, the apps dont load, all it says is "u

  • I just ripped quite a few music albums.  How do I know if they went into the cloud, and if they did not, how do I get them into the cloud

    just ripped quite a few music albums.  How do I know if they went into the cloud, and if they did not, how do I get them into the cloud

  • WAIT ACK

    HI B2B gurus, We send one PO to our trading partner,it successfully received by them but they havn't send MDN, in out B2B console, until 2 hours it showing as state =waitack, after 2 hours, it was errored out "Message retry count for the message has

  • I am unable to get the HUD display to appear...help

    My first use of my new CS5 is was to try the new HUD color picker.  I picked a brush tool...held down shift+alt+right-click and went of the image and held it.  Nothing happened.  I just get a cursor with the eye-dropper and a plus sign onder it and a