Meta chian

Hi all,
I have included two other process chains in one how to schedule the second process chain.
Thanks In Advance.
Reg/
Jack

Hello Jack,
For the 2nd chain..u need to select the 2nd option..i.e. 'start using meta chain or API'.
this option basically means that this chain is being triggered not by itself..but by another chain..
--Now u can proceed in this way..
..create a meta chain(which contains the 2 local chains..master data attr(MDA) and master data texts(MDT)..
start variant-MDA-MDT
In the start variant here select first option..'direct scheduling'..and in its variant..define the date/time and periodicity..
for MDA and MDT..both their start variants must be set to 'start using meta chain or API'.
so when meta chain kicks off at scheduled date/time..first process..start variant goes GREEN..and then this kicks off next step..the MDA chain..once MDA chain is successful..MDT chain will kick off..
(so..MDT chain execution is triggered by successful running of MDA chain..MDT chain will not run unless MDA chain has run without errors)..
u could also have MDA chain like..
start variant..(all steps so on of MDA chain..--->MDT chain..
(but this isnt good design..it is always good to place all local chains..logically together..into a meta chain)
Vishvesh

Similar Messages

  • How can i find the meta chain name?

    My process chains are running based on meta chain option,So how can i find the meta chain name???

    Hello
    Goto SE16
    Table RSPCCHAIN
    ut u r local chain name as varient and exe
    similerly goback if the chain you get is also a local chain....Until you get only one chain...
    Where Used List --
    RSPCPROCESSLOG table
    You can see the Process Logs at SM37 too based on the Technical name of the Chain you can trace the Meta chian
    Thanks
    Geeta

  • How to find out the metachian from subchain

    hello friends,
    could you please let me know , how to find out the meta chain from subchian .
    I know the subchain name and wanted to check that this chian is included in which meta chian ,
    actaully here so many chain , so its confusing .
    Is there any way ?

    Hi,
    Pls chk this links,
    Re: Meta chains - how to create n example scenerios
    Re: How to create process chains, infopackage groups & Meta chains
    Hope this helps,
    regards
    CSM reddy

  • Start process -"Start using Metachain or API"

    Dear Experts,
                   I have a process chain,PC2 that needs to be scheduled after completion of process chain, PC1. Now can I use the condition "Start using Metachain or API". But I have no idea how it works. I referred to documentation service.sap.com but they dont tell me much about this. Can somebody please tell me or refere me to some kind of documentation on how this condition works?
    Thanks.

    Hi Visu,
           Make PC2 as a local chain in PC1. and use 'start using meta chian option' for PC2, so that PC2 will automatically trigger when ever the PC1 is completed.
    Regards-
    MM

  • Activating Process Chains

    How do we activate a meta chian,
    we have main chain A and a local to it B and C
    if i made a change in B, activating and scheduling A does not effect the changes made in B.
    If i activate and schedule B then it might run; am i right.
    So how would i go about activating and scheduling the whole chain including the local chains.
    THANKYOU THANKYOU THANKYOU

    Hi.......
    A local chain is always schedule as immediate run............So after making the Changes in Local chain..........Activate it.........and also keep the scheduling option as immediate only..............no need to scheduke it seperately..........when it is a part of a meta chain..............why u will take an immedite run for that.............then Just deschedule the Meta chain............and then again Schedule it back........
    Regards,
    Debjani..........

  • Process cahins activation

    HI everyone,
                        I need information on following topics
                   1. how to find the meta chains and process chains involve in it.
                    2. how to activate proces cahins using function modules.
    thnking you.

    Hi,
    for your first answer ..
    Go to se16 >>> rspcchain >>. give the metachain name in coulomn(Varinate) and then say execute you
    will find your metachain as trigger and the chain with (Chain) option will be your main chain..
    if that one also your meta chain you can find further in same way ..
    if you find the no of meta chains then also go to RSPCChain >> and give the chain name in process chain (column ) it will give you al the meta chians releated to it .
    reagrds,
    shikha

  • Removing Meta Chain from Schedule

    Hi
    I got a meta chain scheduled in BBD & BBQ...
    Now for my testing purpose i want to remove them from schedule for a 3 nights and want to schedule them back to normal again
    How can i do this and do i need to raise any transport request for this
    Thanks

    u dont require any transport req for this..
    Just remove from the schedule in RSPC using Meny Bar --> Process Chian --> remove from Schedule
    And then reschedule the chain with the new time schedule which is after 3 days as per ur requirement..
    For scheduling the chain --> double click on the Start process of the PC.
    From Variant screen goto the scheduler screen where u can give ur Date and time with the proper periodicify and then save the settings and schedule the chain...
    This will work for ur requirement..
    Thanks
    Assign points if this helps

  • Can not get PK-FK in meta-Data of MySql....Help me pls.

    Hello Every one.
    I can not to get the PK and FK from Meta-Data Database of mysql-4.1.1a-alpha. Anyway I tried to do the
    followihg
    1. OS windows 2000 Pro.
    2. set configuration Script support InnoDB Table Type as the follow in my.ini file.
    [mysqld-nt]
    innodb_data_home_dir = C:\mysql\data
    innodb_data_file_path =\ibdata\ibdata1:2000M // in folder \data\ i was created folder ibdata
    3. I try to create data as reference in example java code and table :persons , shirt as the example in
    Create innodb table Type of mysql doc.
    4. the code test as following
    In the test code i can get the result only from method : getPrimarykey(...); only and the other method ,getExportedKeys, getImportedKey , getCrossReference the result in ResultSet is null.
    anyway, this code i can apply in the oracle db with change db driver .
    I wish the answer why? and the actually the second parameter of this parameter , as refer scheme name , the scheme name is ?
    Thank you
    import java.sql.*;
    public class testMeta {
    public testMeta() {
    ResultSet rs=null;
    String url = "jdbc:mysql://localhost:3306/testinnodb";
    Connection con = null;
    try{
    Class.forName("org.gjt.mm.mysql.Driver");
    }catch(ClassNotFoundException ex){
    System.out.println(ex.getMessage());
    try{
    con = DriverManager.getConnection(url,"root","rootpwd");
    prtS("getConnection complete");
    DatabaseMetaData metaData = con.getMetaData();
    Connection con2 = metaData.getConnection();
    String type[] = new String[1];
    type[0] = new String();
    prtS("*************** GET Schemas ***************");
    rs = metaData.getSchemas();
                   while(rs.next()){
    System.out.println("12345");
    prtS("TABLE_CAT" + " : " + rs.getString(0));
    prtS("TABLE_CAT" + " : " + rs.getString("TABLE_SCHEM "));
                   rs=null;
    prtS("*************** GET PRIMARY KEYS ***************");
    rs = metaData.getPrimaryKeys(con.getCatalog(),null,"persons");
    while(rs.next()){
    prtS("TABLE_CAT" + " : " + rs.getString("TABLE_CAT"));
    prtS("TABLE_SCHEM" + " : " + rs.getString("TABLE_SCHEM"));
    prtS("TABLE_NAME" + " : " + rs.getString("TABLE_NAME"));
    prtS("COLUMN_NAME" + " : " + rs.getString("COLUMN_NAME"));
    prtS("KEY_SEQ" + " : " + rs.getString("KEY_SEQ"));
    prtS("PK_NAME" + " : " + rs.getString("PK_NAME"));
                   rs=null;
    prtS("*************** GET Exported KEYS ***************");
    rs = metaData.getExportedKeys(con.getCatalog(),null,"shirt");
    while(rs.next()){
    prtS("FKCOLUMN_NAME" + " : " + rs.getString("FKCOLUMN_NAME"));
                   rs=null;
    prtS("*************** GET Imported KEYS ***************");
    rs = metaData.getImportedKeys(con.getCatalog(),null,"persons");
    while(rs.next()){
    prtS("PKTABLE_CAT" + " : " + rs.getString("PKTABLE_CAT"));
    rs=null;
    prtS("*************** GET CrossReference ***************");
    rs = metaData.getCrossReference(con.getCatalog(),null,"persons",con.getCatalog(),null,"shirts");
    while(rs.next()){
    prtS("PKTABLE_CAT" + " : " + rs.getString("PKTABLE_CAT"));
    }catch(SQLException ex){
    prtS(ex.getMessage());

    How i know the jdbc driver not compatible to this
    mechanismBy reading the documentation tthat comes with your driver. Recent versions of the MySQL JDBC driver do support the getExportedKeys/ImportegKeys methods but the table needs to be crated as InnoDB.
    So run the SQL command
    show table statusWhats under the Type column for your table? If it isn't InnoDB then this isn't going to work.
    If it is InnoDB but getExportedKeys/ImportegKeys still don't work then you haven't used the "foreign key" constraint in your "create table" command

  • How do I add multiple scripts from search engines to my meta tag properties?

    I currently have copied the goolge script for website varification and analytics, etc and pasted it into my meta tag properties dialog box. There is no problem as far as Google varifying the page. However, I would like to copy Bing's search engine script into my meta tag in addition to Googles script. How do I go about doing this? Do I hit the return on my keyboard under the ending of Googles script, then paste in the Bing script?
    The the last part of the Google script ending in this:
    </script>
    (paste new script from Bing here?)
    Will this cancel out each other and cause problems?
    Can someone walk me through this process, because Bing's search engine will not varify my site through two of the three other methods.
    Ben

    Adding a script after the closure of previous script is the way to go i.e. right after the </script> tag.
    So it should look something like below:
    <script>
    Google's script
    </script>
    <script>
    Bing's script
    </script>
    Cannot comment on one interfering with the other since it really depends on what exact code is there in the scripts. Google and Bing help resources will be able to help more with this.
    Thanks,
    Vikas

  • Moving LR5 catalog (Irdata & Ircat) to a new hard drive and photos. Lost all meta data - How do I move meta data along with catalog?

    I moved LR5 catalog (Irdata & Ircat) to a new hard drive and photos. Lost all meta data - How do I move meta data along with catalog?
    The meta data for each image is missing.
    I have over 2,000 images. I don't want to go back through each image and add meta data.
    Is there some way to move everything?

    No, do not re-import your images. I assume you can see the thumbnails in the library module, just cannot access the full images, right? If this is the case there should be an exclamation mark in the top right corner of every one of your pictures and you only have to tell LR where the images are now.
    Click the exclamation mark of one of the images and a dialog window should pop-up, telling you that LR cannot find the file, but with an option to locate it. Press "Locate" and navigate to the folder on your new HD where the file is. If in the new external HD you kept the same folder structure that you had on the internal disk, LR will be able to find all your images and re-link them to the database without further intervention.

  • Can't  view Impact and Lineage tab in Meta data report

    Post Author: mohideen_km
    CA Forum: Data Integration
    Hi guys,
    I have a problem in meta Data Report ..
    IN Impact and Lineage Analysis
    I can View only OVerview Tab.I can not view Impact and Lineage
    Help me to figure out..
    Mohideen

    Hi,
    Select text column (varchar column) -> Treat Text as -> custom text format ->Remove @ (default) -> add [html]<script>sometext(‘@’)</script> followed by your javascript
    for eg:
    [html]<script>buildGoogleChart(‘@’)</script> <head> <script type="text/javascript"> function show_alert() { alert("Hello! I am an alert box!"); } </script> </head> <body> <input type="button" onclick="show_alert()" value="Show alert box" /> </body> </html>
    hope helps u.........
    cheers,
    Aravind

  • Dynamically how to get the meta data of an ui element which is custom one

    Hi All ,
    In SRM , I want to know the meta data declarations of an UI element in my webdynpro component  ..How to know this ..Can anyone help me in this ..I want to know the meta data of an ui element .
    Sandeep

    You really aren't supposed to read the properties of active UI elements directly.  Instead they should be bound to context attributes and then you read these attributes via normal context APIs.  If you absolutely needed such access because this is a standard SAP WD, then consider that the WDDOMODIFYVIEW is the only part of th event loop where you are allowed access to the View and its UI elements.

  • MacBook Pro met NVIDIA GeForce 8600M GT-grafische processors: vervormd beeld of geen beeld (2007-2008)

    Re: Artikel: TS2377, Apple website (MacBook Pro: Distorted video or no video issues)
    Specifieke producten waarop dit van invloed is:
    MacBook Pro 15-inch en 17-inch-modellen met NVIDIA GeForce 8600M GT-grafische processors
    MacBook Pro gebuikers opgelet!
    Letterlijke tekst op de Apple website: "In juli 2008 heeft NVIDIA openlijk toegegeven dat er een hoger percentage defecten bij de grafische processors is dan normaal, vanwege een verpakkingsfout. Tegelijkertijd verzekerde NVIDIA Apple ervan dat het probleem niet gold voor Mac-computers met deze grafische processors. Na het uitvoeren van een onderzoek constateerde Apple echter dat het probleem mogelijk gold voor enkele MacBook Pro-computers met de grafische processor NVIDIA GeForce 8600M GT. Als de grafische processor van NVIDIA in uw MacBook Pro defect is of binnen vier jaar na de datum van aankoop defect raakt, wordt er kosteloos een reparatie uitgevoerd, zelfs als de garantieperiode van uw MacBook Pro is verstreken."
    Waar dient u op te letten:
    "Een vervormd of een verdraaid beeld op het computerscherm. Geen beeld op het computerscherm (of extern beeldscherm), zelfs wanneer de computer is ingeschakeld"
    Mijn ervaring met de Apple helpdesk:
    Ik kocht mijn MacBook Pro 17-inch-model in de week voor Kerst 2007. In december 2011 was de MacBook nog geen 4 jaar oud toen de kuren begonnen.
    Ik had net een upgrade gedaan van OSX Snow Leopard naar Lion, en ik verweet Lion dat het meer gebruik maakt van geheugen en video: de laptop werd heet en de fan blies bij het minste of geringste.  Met als gevolg dat de laptop hing (in jargon op internet fora: 'freeze of the screen').
    Op enig moment ontstond dit verschijnsel al tijdens het opstarten.  Soms moest ik wel 20 keer rebooten om de MacBook aan de praat te krijgen. Ik wisselde Memory chips op aanraden van iemand op een forum, batterij er uit start knop indrukken en battarij er weer in, maar niets hielp. Dit gebeurde steeds vaker en ik zocht op internet naar vergelijkbare kenmerken.
    Alles wat er op internet over dit onderwerp te lezen valt heb ik gelezen.Die waren er in overvloed maar de relatie met de videokaart vond ik pas rond de Kerst 2011 toe iemand verwees naar bovenstaan artikel TS2377 op de Apple Website. De relatie werd mij duidelijk omdat de computer niet hangt: de harde schijf reutelde door maar de muis was onbewegelijk.
    Begin januari ging ik twee weken op vakantie, maar bij thuiskomst kreeg ik de MacBook pro helemaal niet meer aan de praat. Ik baalde stevig omdat ik de MacBook pro voor mijn werk nodig heb zodat ik de laptop naar een door Apple erkende serviceprovider (AASP)  bracht.
    Wat blijkt? Had ik de MacBook pro een maand eerder gebracht dan wilde Apple de kosten van vervanging van het moederbord (waar de grafische processor op is gemonteerd) vergoeden. Sterker nog, de Apple helpdesk verklaart dat de computer geen dag later dan 4 jaar oud mag zijn om voor de regeling in aanmerking te komen.
    Dus mensen die twijfelen: DIRECT contact opnemen met een door Apple erkende serviceprovider en die datum schriftelijk laten bastleggen als BEWIJS voor later! (advies van de Apple helpdesk)
    Ik heb sterk het vermoeden dat door de hitte als gevolg van het gebruik van Lion, het soldeerwerk van de processor slechte verbinding is gaan maken. Dat de MacBook Pro 27 inch heet wordt is een algemeen bekend verschijnsel. Nog geen jaar geleden moest ik de bartterij vernieuwen (drie jaar na aaschaf), omdat deze deze zo bol ging staan dat het trackpad niet meer functioneerde. Maar Apple geeft helaas ook geen garantie op batterijen!
    Ik betreur dat Apple geen coulance betracht met mijn - verder nog prima functionerende - MacBook Pro 17-inch met NVIDIA GeForce 8600M GT-grafische processor.  De eneige oplossing die ik nog zie is aanspraak maken op het 'consumentenrecht'. Ik adviseer iedereen dan ook contact op te nemen met de rechtsbijstandverzekering als Apple in deze casus niet meewerkt.
    U bent gewaarschuwd.
    Bart Lensink

    If your internal display works, it's not the nVidia problem.  The language in the article you quoted states that a non functioning internal "or" external display is an indicator of the problem.  That's a little misleading (and could be cause for confusion). In all cases, the internal display would have an issue.  If you also happen to have an external display, it would experience an issue as well.  If your internal display is functioning properly, your GPU is functioning properly.  Of course that still leaves you with getting your external display working.  Fortunately, the Bravia is a popular model and it is likely others here have used it and will hopefully chime in with their experiences.

  • Oracle states go to OTN for this:If the criteria isn't met I don't want for

    Can you easily recover from, bypass or work around the problem? = YES
    Does your system or application continue normally after the problem occurs? =
    YES
    Are the standard features of the system or application still available; is the
    loss of service minor? = YES
    ### Did it work before? If yes, what have you changed? ###
    No, We were told this was fixed with 10G so we upgraded to 10G. We have a
    report and we want it to execute if it's less than 10 records if not we want a
    message to come up that the report needs to be scheduled.
    Well we run the report and it displays exceeded record count but the format
    still runs so no time saved on the web.
    If the record count was exceeded we want to HALT the system and not go any
    farther.
    Now if we could modify the system message 1825 we would be o.k. But we don't
    know if that is going to work. If we could change the message we would be
    o.k. with that. that would mean changing the system codes though.
    ### How is the Report being called (Command line, URL or via Oracle Forms): ###
    If false comes back in the beginning then we don't want any report formatting
    to be done. Right now the format is done it seems but no data is displayed
    because criteria isn't met.
    So we dont wnat the formatting to be run when criteria isn't met. But for
    some
    reason it still runs and takes time.
    See we have some reports on the web that can only be ran by date range right
    now the clients can only run the reports for a 6 months range.. Well some
    clients have a lot smaller record count. So we want to change the way the
    reports are ran to a records count. If the count is large than said amount
    then a message comes up that states the report has to be scheduled. If the
    amount is under said amount then the report runs.
    So at this time in the report we do a count then we move onto will the report
    run or not if over the amount we want to abort the process but we don't want
    the client to see the abort. We definately don't want the client to sit and
    wait for the format to run when NO Data is to be returned.
    ### Error messages and error scenario: ###
    So what we want is too see a message "Schedule the report count exceeded" and
    NO formatting done. If under amount we want the report to run.
    ### Provide a detailed step-by-step description of your problem or question: ###
    Or is there a way to customize the messages the client / users will see. And
    no formatting time for no records returned.
    Contact me via : E-mail -> [email protected]
    Text continued in next action...
    20-SEP-04 18:39:53 GMT
    Text continued from previous action...
    20-SEP-04 19:18:51 GMT
    New info : Is there a way if the error messages have to come up that we can
    hide the message or have another screen cover that error message something to
    cover the message so that the user doesn't see the error message.
    20-SEP-04 19:30:23 GMT
    Hi Darlene,
    Thank you for using MetaLink. Iam currently working on a very critical issue.I shall review/research your issue at the earliest opportunity and w
    ill update the SR / call you as soon as we have relevant information. Thank you
    for your patience.
    Best Regards,
    Seema,
    Oracle Support Services
    STATUS
    =======
    @WIP -- Work In Progress
    20-SEP-04 19:30:30 GMT
    Email Update button has been pressed: Sending email to [email protected]
    21-SEP-04 00:32:18 GMT
    Hi Darlene!
    If you are calling the report from a form, try using the EXIT_FORM line in your code.
    Thanks and Regards,
    Seema
    21-SEP-04 00:33:01 GMT
    Email Update button has been pressed: Sending email to [email protected]
    21-SEP-04 14:09:20 GMT
    New info : We will try it and let you know.
    21-SEP-04 14:19:04 GMT
    New info : We are not calling the report from a form so this won't work. Any
    other way. We are needing to do this badly.
    21-SEP-04 14:39:06 GMT
    New info : Can I get detailed steps about how to customize the system message
    or hide the message when we abort the report?
    21-SEP-04 15:38:39 GMT
    Hi Darlene!!
    As talked to you on phone, here are the steps for you to try.
    The below has been run as a test case using emp table in scott schema of a database
    1) create a summary coloumn say cs_1 in the data model.
    2) point the function to count.
    3) Point the source to what ever's count you want it to be pointed to(say empno of emp table of
    scott schema)
    4) create a user parameter say NO_ROWS
    5) in its property palette make its data type number and initial value as 1
    6) I had teh following query for my report:
    select empno, ename from emp
    where rownum <= :no_rows
    This means that the report that will be generated will consist of a total no of NO_ROWS(that we
    shall be specifying at run time). The before report trigger(mentioned in 7 below) shall assure
    that whenever we specify NO_ROWS greater than 5 then the report will display a customized pop up
    message.
    7) create a before report trigger as:
    function BeforeReport return boolean is
    user_excp EXCEPTION;
    begin
    if :cs_1 >5 then
    raise user_excp;
    return (false);
    else
    return true;
    end if;
    EXCEPTION
    WHEN user_excp then
    SRW.MESSAGE(30, 'Data is more please schedule this report:');
    raise SRW.PROGRAM_ABORT;
    return (false);
    end;
    This way when u run a report, an argument is asked whether how many rows do you want to be
    displayed as in the parameter NO_ROWS. then you specify the number. If that number is greater
    than 5(in this case, due to if :cs_1 > 5 then....) then it will pop up a message saying "Data is
    more please schedule this report:"
    In case you do not want to specify NO_ROWS..then you need not put that and modify the report
    query as "select empno, empname from emp;" i.e. without where clause.
    21-SEP-04 16:49:30 GMT
    New info : we will try this then update the TAR.
    21-SEP-04 16:58:09 GMT
    ok you update the tar when you try the above steps.
    STATUS:
    @CUS
    23-SEP-04 02:16:00 GMT
    New info : Information from the person that did this suggestion step by step.
    I tried this step by step, but unfortunately, it doesn't work the way we want.
    First with this suggestion, the user needs to choose how many records they
    want
    to get, or we default a number of records, in order to run the report. The most
    important thing is, whenever you specify the statement return false or raise
    SRW.PROGRAM_ABORT in the before report trigger, the system message will pop up.
    I really hope that people from Oracle would let us know how to customize the
    system message or hide it.
    23-SEP-04 14:23:04 GMT
    New info : I just thought that we have some sort of message, which I guess is
    from the database, when we do claim search on client inquiry. I am just
    wondering if we could try the same thing to the report.
    The some sort of message looks like this on dev box:
    Your search exceeded 5000 records and will surpass the capabilities of this
    connection. Please narrow the search criteria and resubmit.
    It's just a thought, not sure if it's going to work.
    When could we have the DBA Make this change. The servlet.properties???
    23-SEP-04 17:30:55 GMT
    REQUESTED INFORMATION PROVIDED
    ===============================
    Hi Darlene,
    Thank you for providing the requested information. I am currently reviewing/resea
    rching the situation and will update the TAR / call you as soon as I have additi
    onal information. Thank you for your patience.
    Best regards,
    Ajit
    STATUS
    =======
    @WIP -- Work In Progress
    23-SEP-04 18:04:31 GMT
    UPDATE
    =======
    Hi Darlene,
    We cannot modify the system messages nor do I think there is a method to hide the system message. The message that was coming is
    due to the raise srw.program_abort command, which is the element through which
    we can abort the program.
    Thanks
    Best Regards
    Ajit
    @CUS
    23-SEP-04 18:29:26 GMT
    New info : Can you please look into a way that we can get something to work?
    23-SEP-04 18:49:28 GMT
    Hi Darlene,
    I am sorry to say that but I don't think there is any any workaround to this because the system message is what is generated by the oracle reports i
    nternally. Still if you wish you may refer to the otn discussion forum which is
    maintained by teh product management group and post a new thread on it. the link
    to the forum is Reports
    Also since nothing can be done on our side I don't see any reason to keep this TAR open an
    d if you wish we can soft close this.
    Thanks
    Regards
    Ajit.
    23-SEP-04 13:13:10 : CHANGES MADE VIA MetaLink
    NOT YET FORWARDED TO OUR INTERNAL SYSTEMS :
    New info : Shouldn't there always be a way to do something? I don't understand
    why we were told in 10G that this could be done and now we are told it can't.

    You can tell Thunderbird to remember your password.
    ''... they took me off their list because they kept receiving error messages when they sent me a message.''
    What is the exact error message?

  • Adding meta tags to published web site

    I have created my website using iWeb and subsequently downloaded the RAVE SEO tool and used it to add for meta tags to my sites (description and keywords).
    I followed this procedure:
    1) I published my site from iWeb to a local folder on my iMac
    2) I added the meta tags using the RAVE SEO tool
    3) I tried to publish the site to my webhotel with tags added using the ftp tool in the RAVE SEO tool.
    PROBLEM:
    when I publish from the SEO tool, it is the old sites which are published. In my local folder where I started out publishing the web site to, I can see that the tags from description and keywords have been added. But the site which is published does not contain the tags.
    I have a feeling that the SEO tool is looking in a wrong foder, but I cannot change the folder using the "FTP Details" funktion in the SEO tool.
    Do anyone have a suggestion for what to do?
    Thanks,
    Klaus

    I have a feeling that the SEO tool is looking in a wrong foder, but I cannot change the folder using the "FTP Details" funktion in the SEO tool.
    When you click publish and choose FTP you can create a new setup or use an existing one.
    And if you do not know which folder to publish to, click browse. You decide.
    !http://www.wyodor.net/_Discussions/SEOToolFTP.png!
    Message was edited by: Wyodor

Maybe you are looking for