Adding the style/feature to the different elements of a prototype design based in dreamweaver...

So, I would like to begin by mentioning that I am new on forum culture and am willing to be despised for my noobness, linked to a more in-depth discussion, or just a simple shot of dam experts said what are you doing kid?

That being said, I created a web design using slices in Illustrator, export said slices as CSS dreamweaver and fragmentary designed headers, body text, text boxes, images, and general stuff of Visual design in photoshop for the site. For example, I did a text box containing a picture and a bar of semi transparent background with the text in photoshop. I "connect" to this file in dreamweaver, and it's great, yay! Oh, wait, isn't that a psd... still racking frackin slices, buttons, div tag names, etc.!

Heres my main problem and I realize now that I shouldn't go to dreamweaver until I finished in the design process, streamlining grace from illustrator/photoshop-> Fireworks-> dreamweaver, but since I have this method simplified and instead jumped in dreamweaver with nothing other than a wire frame configuration , Well now, I have to separate each individual design in photoshop (e.g. like the text box with the image)

How can I effectively replace the 'images' in places like the header, with clear-cut textbody, div tag css and html files exported from Fireworks so that I can say click on a link, the text or creating nifty rollovers and fades to different elementsand muhahahahaha appointed! infinite beauty.

More...

Now, I know that fireworks and photoshop work hand in hand, and when I take the original photoshop file and plug it into Fireworks, it breaks down into layers for me. Nice... ;) Now, I can select each individual element and set its div tag, name, etc... BUT! How I would wear this in my dreamweaver file.


Say I have a bit of space, 250 x 200 in a normal web page (1024 x 768) (800 x 600) layout and I had one of my photoshop "photodesigns," including the text box, a picture and semi transparent border, and the file I "organized" in fireworks with the div tags and a new css/html file has been created especially for this space... How to place the news, including the new divtags, new html (IE ability to change/set the individual items) in this place?

Code would be awesome...

I would simply replace where the existing code is for (main_img1)

Question #2

If I create a copy of the page and just try and delete all of the code for the menu widget spryaccordion, I get errors.

Download your problem on your remote server page and post a link.  The answers are in your code, and no one can help you with that without seeing your page.

Also, how y ' All worry about compatibility issues with internet explore?

Web pages need to perform well in all browsers and web devices.  Browser rendering problems are mainly caused by a bad code or bad choice.  Working with HTML valid & CSS code can go a long way to make your web pages cross browser compatible.

Code Validation tools
------------------------------------
CSS - http://jigsaw.w3.org/css-validator/
HTML - http://validator.w3.org/

If you still have display issues in Internet Explorer only, use conditional comments.

http://www.positioniseverything.NET/articles/CC-plus.html

Nancy O.
ALT-Web Design & Publishing
Web | Graphics | Print | Media specialists
http://ALT-Web.com/
http://Twitter.com/ALTWEB

Tags: Dreamweaver

Similar Questions

  • Adding the different values to a selection list?

    4.2.1

    Hello

    I have three pages, home page that has to do with a filter period - values of the last 7 days last 14 days. Filter period is: P1_PERIOD
    I have another page with the same report - last values 1 day, last 7 days, 30 days previous and last quarter. Filter period is: P2_PERIOD

    Page two above shows the same reports based on the time period selected in the respective pages.
    Page 1 
    Item           last 7 days          last 14 Days
    lights             10                      16
    Tail Lamp         2                      10
    
    Page 2
    
    Item              last 1 day              last 7 days                 last 30 days                   last quarter
    
    lights               1                         10                              20                               100
    .
    .
    Now I have a third page that actually is a detail page that lists the details of the item
    item_id              item_name                  Item_Purchase_date
    
    1                       Lights                             19-Mar-2013
    1                       Lights                              16-Mar-2013
    .
    .
    The indictments to page 1 and page 2 hyperlinked.

    My question is

    1. on the page two: P2_PERIOD has the list of various selection options. so on page 3 I have an interactive report, when I run the query, I run it as
    select * from item_master where item_purchase_date between decode(:P2_period,1, sysdate-1, 2, sysdate-7,3, sysdate-30, 4, sysdate-90) and sysdate.
    However, I also want to do the same on page 1. Or when the user presses the account on 7, 14 days, it will take them to the page three, but the same report should be run for 7 or 14 days based on what the user has selected in: P1_PERIOD.
    select * from item_master where item_purchase_date between decode(:P1_period,1, sysdate-7, 2, sysdate-14) and sysdate.
    Counsel on how to do it?

    Thank you
    Ryan

    ryansun wrote:
    4.2.1

    Hello

    I have three pages, home page that has to do with a filter period - values of the last 7 days last 14 days. Filter period is: P1_PERIOD
    I have another page with the same report - last values 1 day, last 7 days, 30 days previous and last quarter. Filter period is: P2_PERIOD

    Page two above shows the same reports based on the time period selected in the respective pages.

    Page 1
    Item           last 7 days          last 14 Days
    lights             10                      16
    Tail Lamp         2                      10
    
    Page 2
    
    Item              last 1 day              last 7 days                 last 30 days                   last quarter
    
    lights               1                         10                              20                               100
    .
    .
    

    Now I have a third page that actually is a detail page that lists the details of the item

    item_id              item_name                  Item_Purchase_date
    
    1                       Lights                             19-Mar-2013
    1                       Lights                              16-Mar-2013
    .
    .
    

    The indictments to page 1 and page 2 hyperlinked.

    My question is

    1. on the page two: P2_PERIOD has the list of various selection options. so on page 3 I have an interactive report, when I run the query, I run it as

    select * from item_master where item_purchase_date between decode(:P2_period,1, sysdate-1, 2, sysdate-7,3, sysdate-30, 4, sysdate-90) and sysdate.
    

    However, I also want to do the same on page 1. Or when the user presses the account on 7, 14 days, it will take them to the page three, but the same report should be run for 7 or 14 days based on what the user has selected in: P1_PERIOD.

    select * from item_master where item_purchase_date between decode(:P1_period,1, sysdate-7, 2, sysdate-14) and sysdate.
    

    Counsel on how to do it?

    Take a different approach. Create a new P3_PERIOD_START item on page 3, calculate the date required on pages 1 and 2 and pass the value calculated on page 3 in the links (using a URL format secure as YYYYMMDD). Change the report query to

    select * from item_master where item_purchase_date between to_date(:p3_period_start, 'YYYYMMDD') and sysdate
    

    (Think about the implications of the use of Select * in production code.) Unwanted effects may occur if the definition of the table is changed.)

  • How to separate the different elements of a composite image in separate layers?

    Hi guys,.

    I hit a road block, and I was wondering if someone could help me go beyond this.

    Basically, I have this image:

    [IMG] http://i50.Tinypic.com/13z06jn.jpg [line]

    and in the upper part of it going to the text (the title of the article).

    However, I would like for the text to go behind the head of John Marston (the man in the image), but obviously not behind the background.

    The problem I'm having is, it is a single image. I was wondering, is it possible to separate the image of the man in the background so that I can raise above the text, or a way to move the text behind him, but not behind the background?

    Or a completely different solution that I have completely forgotten? Apologies if it's very simple and it looks like I'm wasting your time. I don't claim to be an expert with Fireworks!

    Thank you in advance to anyone who is able to help me with this problem.

    Sincerely,

    Jack606.

    Use the polygon tool to draw around the figure. Once tracing has been finished, and you see what looks like the mobile dotted line that surrounds it, choose the Edition command > copy, then select > deselect and then click on the regular pointer tool, choose the command Edition > paste. That will stick in a copy of the figure you traced, which allows you to add text behind it. I made a copy for you that you will be able to edit in Fireworks.

  • break down an mp4 video to extract the different elements that make up

    Hello community,

    As a novice, I was wondering if it was possible to load a mp4 video created in Ae and Ae under load or Adobe premiere to retrieve some changes on this video?

    Thanks in advance

    Any video is just a flat collection of pixels. No there is no editable data in beyond. If you want this kind of functionality, import the AE project directly into first use DynamicLink.

    Mylenium

  • Cannot set attribute of the param element value using javascript in setAttribute

    When adding the items param via createFragment the javascript in setAttribute function does not set the "value" attribute It is necessary to set the nodetext to add this attribute to the value of the param element.

    Second, when using the method of the generated html code defines the 'value' to the innerHTML. HTML code resulting in the display by "Inspect the system" looks like this.

    < parameter id = "myID" > myValue < / param >

    Note: [the element close text < / param > is displayed correctly using inspect, but when using file-> SavePageAs the end text is not saved correctly.] I reported this in another question of moz. support FF.]

    function setparamAttrs (parmID, parmVal)
    {

    var gData = document.createDocumentFragment();
    
     var newNode = document.createElement("param");
     var textStr = document.createTextNode(parmVal);
     newNode.appendChild(textStr);
    
     newNode.setAttribute("id", parmID);
     //newNode.setAttribute("value", parmVal);  // this does not work
     //newNode.setAttribute("innerHTML", parmVal);  //this does not work
    
     gData.appendChild(newNode);
     document.body.appendChild(gData);
    

    }

    However, I was able to retrieve the "value", once it has been added using:

    var val = document.getElementById("parm0").value;)

    getAttribute ("value") does not work either.

    Finally, I added the param elements to my HTML code like this.
    < parameter id = "myID" > myValue < / param >. Then I tried to extract the value using document.getElementById("myID").innerHTML. No text has been returned. When I looked at the HTML document with inspect my HTML param element is displayed as < param id = "myID" > myVal. The closing text of the element has not the same when I use SavePageAs which I mentioned previously.

    Yes, this is the correct way to this code and it works for me without any problem.

  • Build the name of guard of the table of the last element, but not the others. Workaround solution?

    Hello

    Sorry if this has been posted before, I did the search first, but can't find anything.

    Problem is that I have two configurations which are identical and must be ordered by a single vi. Given that they are the same, they are configured with the same sets of parameters so I decided to create a cluster of these and then build an array of clusters. In this way I need to use only a thread and if I need a given parameter I can get it easily from here (or so I thought) and also because I need to see if anything changes I can compare a thread instead of each of the parameters.

    The gui has the list of parameters, then in the block diagram I group them appropiately, using "Bundle name" and then each bundle in a table by using "build the table. Problem is when I have the index in the array for the first place of the configuration and usage to unbundle the parameters I need, using "ungroup by name" (although if I use "Unbundle" the same thing happens) and lo and behol, the output names come from the configuration of the second, not the first.

    Here's the curious thing, though, even if the names are all wrong, that the values are correct. I could live with that, but it's more boring it will be another very difficult user to understand the schema more this is just a proof of principle to test with two, eventually there will be eight or more and who's going to get really confusing.

    Is there a way to get around this? Even if it is to change the names after unbundling.

    Check the attached vi to see what I mean.

    I think you forget an important point on the tables.  The only thing that may be different between each element of a table is its value.  The elements in the array must all share the same properties.  This would therefore include the names of the different elements that make up the cluster that is a table element.

    It seems that the last group that builds in the table is the one that defines the names of the items that are in the element of the cluster.  You must give all elements of the array with the same name within the cluster.  Or use a cluster of clusters rather than a table of cluster to create your data structure.

  • Dynamic adjustment of the height of the text element

    Hi all

    I'm trying to view content of the letter to a text element. If the content is up to 5 lines
    the height of the text element is just to include content only.

    In other words, the height of the text element must expand and shrink based on the content.

    It is possible that way?


    Thank you
    {: 8}

    Hello

    You can do it. Try

    SET_ITEM_PROPERTY('', POSITION, GET_ITEM_PROPERTY('letter', X_POS), TO_NUMBER(GET_ITEM_PROPERTY('letter', Y_POS)) + TO_NUMBER(GET_ITEM_PROPERTY('letter', HEIGHT)));
    

    Kind regards

    Manu.

  • Apply the style of Pará to the xml element based on the type of master page?

    IM using a flow xml, im importing the xml to be used across different master page templates and I want to apply paragraph styles different items depending on what master page xml, they are on...

    So I have 3 put templates in place

    Type of page 1

    Type of page 2

    Type of page 3

    and 3 paragraph styles

    style 1

    style 2

    style 3

    I have the same xml structure deposited on each page...

    < Entry >

    < name > Page < / name >

    < / name >

    So, can I use javascript to apply the paragraph (style 1) style to the xml element (name) on any page that uses the master page (type of Page 1)

    Is this possible? whether and how this could be done?

    Thanks in advance

    Hello

    Try:

    #include '... / XML rules/glue code.jsx ";

    myDoc var = app.documents.item (0);

    var myRuleSet = new Array (new applyParaStyle());

    {with (MyDoc)}

    var elements = xmlElements;

    __processRuleSet (Elements.Item (0), myRuleSet);

    }

    function applyParaStyle() {}

    myIdName = "Xp".

    This.XPath = "//restaurant_name";

    This.Apply = function (myElement, myRuleProcessor) {}

    {with (MyElement)}

    {Switch(insertionPoints[0].parentTextFrames[0].) ParentPage.appliedMaster.Name)}

    case "X-Master:

    App.Select (texts);

    App.Selection [0]. FillColor = myDoc.colors.item ("xxxx");

    break;

    case 'guide-Scotland:

    App.Select (texts);

    App.Selection [0]. FillColor = myDoc.colors.item ("scotland");

    by default:

    break;

    }

    }

    Returns true;

    }

    }

  • Added the new computer but lost all favorite settings on old. I need new account keep different settings on both?

    My laptop (i5, running Win 7) is my workhorse computer that had all my favorite settings stored. I added a new office (AMD, Win 8.1) that will be used as a multimedia entertainment unit, but when I connected the cable to install FireFox it replaced all the settings in my laptop with the new computer. How can I keep the different settings on each computer? Must have 2 different accounts to be able to do this? I have now lost the web address for some of my sites, so it's quite painful. The "recently marked with a bookmark" folder is the main problem, because it is where I was monitoring my sites.
    Computer LAPTOP is Acer Aspire i5 & Win 7 runs the modules listed below.
    DESKTOP is a Medion with an AMD 3.8 GHz Turbo & Win 8.1, with the new version of the FF browser.
    Auto Firefox installed the same modules as the laptop, but I will change those & don't want to FF to automatically install the same on both computers. How can I separate them?

    See this - https://support.mozilla.org/en-US/kb/how-do-i-choose-what-types-information-sync-firefox

    You can only select favorite and maybe passwordsand uncheck other options of data type.

  • Could not save the different string value to each element of the array

    I have a configuration of VI to read several channels Veristand project.  The entrance is a table 1 d of channels, (an element for each channel, I want to read).  The channels have different names, each of the elements in the chain must be different.  I am able to edit each item and run the VI, and it works fine.  However, if I save, close and reopen the VI, all elements show the same value (what happens to the value of the last element for which I defined a default value).  Is this behavior planned, or have I missed a configuration setting which would allow different string values?  Please notify.  Thank you.

    GSinMN

    Make sure that you select the table and not only one item when you right click-> set by default on the front panel.

  • I've added two elements (accessibility and analyze) in the Tools menu of right hand.  How to remove or hide?  Or at least rearrange the elements of the toolbar. I want to Sign &amp; certify be the last element/section.  Thank you.

    I've added two elements (accessibility and analyze) in the Tools menu of right hand.  How to remove or hide?  Or at least rearrange the elements of the toolbar. I want to Sign & certify be the last element/section.  Thank you.

    Hi Stacey Nathan,

    To remove the items from right toolbar, click Tools at the top.

    Then open the fall down to the accessibility or analyze and select 'delete the shortcut '.

    In a similar way, select "Add a shortcut" in the Tools drop-down menu to add to the tool on the right pane.

    Let us know if you need help.

    Kind regards

    Meenakshi

  • Adding the feature of research on firewall protected Intranet Page built with Dreamweaver

    Adding the feature of research on firewall protected Intranet Page built with Dreamweaver

    My company uses Dreamweaver to publish a Handbook of 'owner '. The author's site uses static HTML and Dreamweaver CS6 to create its content. There are about 100 web pages. We are looking to add a search function for all pages can search the entire site for key words of text.

    • I do not have to rebuild the site and with the help of PHP and database search is possible;
    • We can not use external services such as a link to Google Search the nature delicate and confidential of the content;
    • The use of JavaScript on each page to search text is not useful (the last page contains not only "a lot of text" is simply to find the appropriate final page that is troublesome.) Thus, at the time where ever you get to the end page, info you need are clear. It happened on this last page that takes too much digging right now, which is the impulse to our desire to add a search function that helps to reduce users 'conjecture' down to a few options, rather than "many" that we have.

    Two results I hope that the community can help us with is: is such a feature of search, even possible with HTML contained static? And if so, and suggestions would be most appreciated.

    In a nutshell, we are looking for an option search strings in a private website so that we can reduce the clickable users options based on the keywords they enter into a search box.

    Thank you.

    PS: We use Dreamweaver CS6

    Watch the Wrensoft Zoom.

    Manual indexing runs entirely on your end.  Ideal for sites Intranets closed, CDs, etc...

    Nancy O.

  • Inserting Image mystery using the attribute in the structured element

    I work in FM10 on Windows XP Pro. However, the models at the company where I am currently Contracting have been developed over the years, since the FM 7 or 8, with different authors and developers to refine their. Which makes them difficult to decipher at times.

    Currently, I'm trying to understand how elements of the notes works so I can fix it to work when you bind the FM source files to RoboHelp. When you click on the 'Note' parent element, you can choose from four different attributes (as shown below for ESD): note, tip, caution and warning.

    When you choose one of these attributes, it automatically inserts a graphic symbol (exclamation point, star, pencil, etc.). You then choose the next child element that creates a paragraph directly to the right of the graphic symbol.

    The problem is, I can't understand where this chart comes in the parent element and associated attributes. I thought it must be extracted from the style of paragraph, either as an image of the reference page and or symbols of the numbering of the paragraph Designer section. But I'm not either of those things anywhere. For what it's worth, the graphics look like they come from a police (see screenshot).

    The word "note" comes to the next child element and the associated paragraph style, it is designated in the numbering/AutoNumber Format: box with an associated font. The lines above and below it are similarly advanced/Frame Above / Below the FMP: setting. All this is quite easy; the attribute image... not so much.

    Can anyone tell me please where to hunt for the source of this image attribute insertion?

    ------------------------------------------------------fm_attributes.jpg

    ESD

    Element (container): Note

    General rule: stalks, NoteBody

    List of attributes

    Name: Id ID Unique in option

    Control flags: read-only, hidden

    Name: Type Optional choice

    Choice: Note, tip, warning

    Default: Note

    AutoText

    Insert automatically child: stems

    Element (container): NoteBody

    General rule: Para, (Para |) List) *.

    AutoText

    Insert automatically child: Para

    Element (container): stems

    General rule: < EMPTY >

    Text format rules

    If the context is: * < ParagonGuide

    If the context is: Note [Type = "Note"]

    Use paragraph format: Note.Icon

    Otherwise, if the context is: Note [Type = 'Attention']

    Use paragraph format: Note.Caution.Icon

    Otherwise, if the context is: Note [Type = "Tip"]

    Use paragraph format: Note.Tip.Icon

    On the other

    Use paragraph format: Note

    Rules of prefix

    If the context is: * < ParagonGuide

    If the context is: Note [Type = "Warning"]

    Prefix: Warnings not permitted in documents of Paragon.

    Range of text.

    Font properties

    Color: Red

    On the other...

    Hi Douglas,.

    I think I thought about it, although I can't prove it, but my inability to prove it is maybe the evidence itself. I know this is no logic, so please read on...

    In summary, I think that the images are caused by prefixes text inserted by ESD for the element, using the Zapfdingbats font.

    To review/summarize the structural architecture, your notes are made up of

    ... etc.

    ... Where he is the element which is containing the image and the , etc. items that contain the text of the note.

    My first idea was that when I open your file, I do not see the images; However, instead of one of the pictures missing, I get a message of missing fonts (and I have no Zapfdingbats). Here are the rules of prefix for the element (rough paste):

    Rules of prefix

    If the context is: *.<>

    If the context is: Note [Type = "Warning"]

    Prefix: Warnings not permitted in documents of Paragon.

    Range of text.

    Font properties

    Color: Red

    On the other

    Range of text.

    Otherwise, if the context is: *.< (list="" |="">

    If the context is: Note [Type = "Note"]

    Prefix: \t/

    Range of text.

    Font properties

    Family: Zapfdingbats

    Size: 22.0 pt

    Vertical offset: 28.0%

    Otherwise, if the context is: Note [Type = "Tip"]

    Prefix: \tH

    Range of text.

    Font properties

    Family: Zapfdingbats

    Size: 16.0 pt

    Vertical offset: 22.0%

    Otherwise, if the context is: Note [Type = 'Attention']

    Prefix: \t!

    Range of text.

    Font properties

    Family: TheSansExtraBold-Plain

    Size: 32.0 pt

    Vertical offset: 48.0%

    Otherwise, if the context is: Note [Type = "Warning"]

    Prefix: \t6

    Range of text.

    Font properties

    Family: Zapfdingbats

    Size: 16.0 pt

    Vertical offset: 24.0%

    On the other

    If the context is: Note [Type = "Note"]

    Prefix: /.

    Range of text.

    Font properties

    Family: Zapfdingbats

    Size: 22.0 pt

    Vertical offset: 28.0%

    Otherwise, if the context is: Note [Type = "Tip"]

    Prefix: H

    Range of text.

    Font properties

    Family: Zapfdingbats

    Size: 16.0 pt

    Vertical offset: 22.0%

    Otherwise, if the context is: Note [Type = 'Attention']

    Prefix:!

    Range of text.

    Font properties

    Family: TheSansExtraBold-Plain

    Size: 32.0 pt

    Vertical offset: 48.0%

    Otherwise, if the context is: Note [Type = "Warning"]

    Prefix: 6

    Range of text.

    Font properties

    Family: Zapfdingbats

    Size: 16.0 pt

    Vertical offset: 24.0%

    There are a whole bunch of prefixes text in there, but most use the Zapfdingbats font. This font is just a bunch of small icons as pencil your screenshot shows the image. For example, the line:

    Prefix: \t/

    .. .will be insert a tab, then a slash in Zapfdingbats. I bet that if you apply Zapfdingbats to one of you to the paragraphs, and then type a forward slash, you will get one of those pictures you've been see.

    The evidence would be to change these characters in the prefix rules and see if the images change. Because I have not the police, I can't do it. But because I can't do, it proves to me that the source is indeed the police and the prefix characters. Make sense now?

    Russ

  • Value of the page element in the APA process not maintained after the send this page

    Hello - I have a sequence of events that goes like this:

    (1) region 0 REG_1 Page is rendered before footer
    -REG_1 region uses javascript / AJAX to call App process PROC_1
    -PROC_1 defines Page1 item PAGE1_MESSAGE for X
    -After that PROC_1 runs correctly, REG_1 don't doSubmit()

    (2) region 0 REG_2 Page is rendered before footer; in this case
    After the page sent by REG_1. (Requirements to ensure that)
    REG_1 has not yet reached)
    -REG_2 region shows an alert PAGE1_MESSAGE (= X).
    -REG_2 region uses javascript / AJAX to call App process PROC_2
    -PROC_2 sets page 1 point PAGE1_MESSAGE to Y
    -PROC_2 sets point Application DEBUG to PAGE1_MESSAGE (this is for debugging)
    -PROC_2 defines the point of Application APP_MESSAGE to Y (this is also for debugging)
    -After that PROC_2 runs correctly, REG_2 don't doSubmit()

    (3) after that REG_2 sent the page, here's what I have:
    -Point application APP_MESSAGE = y. good. That's what it has been for PROC_2.
    -Point Page 1 PAGE1_MESSAGE is bad. X. That's what he has been put to in PROC_1.
    -Point application DEBUG = y. good. This shows at least that PAGE1_MESSAGE was
    the value Y in PROC_2... but for some reason this value is not be kept
    After the application process is running.
    -There's that several other elements of the application located in PROC_2, and they are all correct.


    Any ideas as to why this is happening? It seems like it should be
    quite simple: set the value, send page, the value must be that
    I put it.

    Thank you
    Carol

    Hello

    Exhibition (doesnot save session state), I am not changing who is P1_MESSAGE_1.

    Why does that matter? Why does the hidden item behave differently?
    

    Yes, Hidden Items by usually default state saves. But this isn't the problem in this case because I had changed the item to display only (state saved) and that did not help. Finally back in doesnot save state.

    Try to replace alert (ajaxResponse); with the lines below

    $s('P1_MESSAGE_1',ajaxResponse);
    alert($v('P1_MESSAGE_1'));
    

    Maybe the session state is defined (server), but the value in the DOM HTML (browser) to P1_MESSAGE_1 is not defined. If adding the line above works then the hypothesis is correct.

    And I see that you made the source "static" assignment ...
    

    Yes, I made this change, because it was a reference in itself I think it was redundant. And I had to correct what I thought is not just before debugging. Which cannot be linked to the problem though.

    Kind regards

  • If we can reuse the Configuration element already created in the model of the ATO... ?

    Dear all,

    Please note that we started using the model workflow ATO for order management.

    Its been noticed that every time when the configuration is done, it creates a configuration item, which will be there in the master of the order of the day.

    In our business case, we can have different configurations each sales order. In this case,.

    Is there a way that we can reuse the same once its created configuration... ?

    Please update... ?

    Thanks in advance...

    Corresponding CTO can be lit. With running, if the same options are selected on a second sales order, then the CTO process will use the existing element rather than create a new item.

    There are several options to enable the corresponding feature. There are profiles that turn it on to a site... or corresponding level can be configured to work only for specific models (via an attribute of the element).

    For more information about the corresponding feature of CTO, see Configure Oracle Guide ordering process to:

    http://download.Oracle.com/docs/CD/B34956_01/current/Acrobat/120ctopg.PDF

    Thank you
    Jason

Maybe you are looking for

  • 5200 801 with DTS-6012 DVD burn DVDs!

    Since I first bought 5200-801, I had problems burning CDs and DVDs. write speed would never go to 2 x as it should be, and - more important-record would be interrupted by an error. I downloaded the update of the firmware (SDR6012-1334. (EXE) that has

  • Hello support

    In any case to find out if a router takes in charge of Hello?  It's true that to support airprint my router must support Hello? The documentation on my eHome eh100 router does not mention Hello.  It is probably too? Robert

  • What is updatus user

    recently created by I don't know what that in the users and permissions file and for some strange reason most 1 titles in my albums of music file will not play until I have reset their weird permissions, all ideas, the only thing I recently uninstall

  • Call Center and Office IP telephony Design

    Hello I hope that you guys is fine, I have a problem, I am a network engineer and responsible for designing the below: 1 - call Center with 14 Agents, this should include reports, transfer of appeal etc.... 2 - telephony on IP Office with 80 extensio

  • Photosmart 6510 B211a - I can't get BLUE print

    Printer is 4 months old. I just replaced the cartridges of HP to address real, but the BLUE doesn't. All cartridges replaced, blue does not.  I have made the clean print head test, ran the report of quality printer, but no blue appear.  The level of