Problem with merging changes made in Business Catalyst

I put some text frames in my Muse project and now my client try to make some changes in text using Business Catalyst but we have big problem because it is impossible to merge changes back to the Muse project. The site is in Polish language but I also tried to do it with English. The result is different but also wrong.
As you can see bellow (screen1)I tried to change words "Adobe Muse" to "adobe muse" and "apps" to "application". Look at Preview on Page result. The newe phrase "adobe muse" is inside the word "videos" instead of following it. So we have: " ....and videoadobe museuse is....". But fortunatelly after clicking "Merge into Muse" everything is OK (screen2).
But when I use Polish language both results are wrong: Preview on Page and the result after merging (see screen 3 and 4)
So I can't work together with my client and it's a big problem because I choose Muse and Business Catalyst for this project just to have this possibility.
Some ides about reasons? I hope these problems are easily solvable.

Hi TheArtDictator,
The issue you're running into is similar to http://forums.adobe.com/message/6012076#6012076.
There isn't a fix yet. What we know is that HTML character entities (like ® or –) can somehow appear in content edited using In-Browser Editing. The Muse sync process doesn't expect/handle them correctly. What we don't know is what causes these entities to be inserted. To help us figure that out, could you find out:
- Which OS and browser (including versions) were used by the client?
- Did the client copy/paste content from external sources?
Thanks,
Abhishek

Similar Messages

  • What is the problem with fonts changing to myriad pro? Is this problem ever going to be resolved? Its driving me mad!

    What is the problem with fonts changing to myriad pro? Is this problem ever going to be resolved? Its driving me mad!

    Browser Dog, Amy,
    The default font remains Myriad Pro until you change it, either in the RGB/CMYK Startup files or in the preferences, options depending on versions.
    Concerning missing font names, I believe this may solve it:
    Open System Preferences and go to Accessibility. Next, select Display from the source list along the left, then check the box labelled Reduce transparency.
    It was first presented in this post #15 by TheUlser:

  • How do I change DNS to Business Catalyst servers.  I am having problems can anyone help please?

    How do I change DNS to Business Catalyst servers.  I am having problems can anyone help please?

    What problem are you having?
    Have you read this KB? - Domain name and DNS: Quick reference

  • Help needed with header and upload onto business catalyst

    Can someone help with a problem over a header please?
    I have inserted a rectangle with a jpeg image in  background, in the 'header' section, underneath the menu. It comes up fine on most pages when previsualised, going right to the side of the screen, but stops just before the edge on certain pages. I have double checked that I have placed it in the right place in relation to the guides on the page.
    That's one problem.
    The second problem is that I tried to upload onto business catalyst, which got to 60% and refused to go any further, saying it couldn't find the header picture, giving the title and then u4833-3.fr.png. The picture is in the right folder I have double checked. And it isn't a png. Does it have to be ?
    And the third problem is that I got an email following my upload from business catalyst in Swedish. I am living in France.
    Can anyone help ? Thanks.

    Thanks for replying,
    How can I check the preview in other browsers before I publish a provisional site with BC?
    The rectangle width issue happens on certain pages but not others. The Welecom page is fine when the menu is active, also the contact page, but others are slightly too narrow. Changing the menu spacing doesn’t help - I was already on uniform but tried changing to regular and back.
    In design mode the rectangle is set to the edge of the browser, that’s 100%browser width right?
    Re BC I have about 200 images on 24 different pages and it seems to be having difficulty uploading some of them. But it has managed a couple I named with spaces but not others I named with just one name.
    Is there an issue on size of pictures ? If I need to replace is there a quick way to rename and relink or do I have to insert the photos all over again?
    I’m a novice with Muse with an ambitious site !
    Thanks for your help.
    Mary Featherstone
    Envoyé depuis Courrier Windows
    De : Sanjit_Das
    Envoyé : vendredi 14 février 2014 22:15
    À : MFeatherstone
    Re: Help needed with header and upload onto business catalyst
    created by Sanjit_Das in Help with using Adobe Muse CC - View the full discussion 
    Hi
    Answering the questions :
    - Have you checked the preview in Muse and also in other browsers ?
    - Does the rectangle width issue happens when menu is active , or in any specific state , Try to change the menu with uniform spacing and then check.
    - In design view the rectangle is set to 100% browser width ?
    With publishing :
    - Please try to rename the image file and then relink
    - If it happens with other images as well , see if all the image names includes strange characters or spaces.
    - Try again to publish
    With e-mail from BC :
    - Under preferences , please check the country selected.
    - If you have previously created partner account in BC and selected country and language then it would follow that, please check that.
    Thanks,
    Sanjit
    Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at http://forums.adobe.com/message/6121942#6121942
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/6121942#6121942
    To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/6121942#6121942. In the Actions box on the right, click the Stop Email Notifications link.
    Start a new discussion in Help with using Adobe Muse CC at Adobe Community
    For more information about maintaining your forum email notifications please go to http://forums.adobe.com/thread/416458?tstart=0.

  • Performance problem with MERGE statement

    Version : 11.1.0.7.0
    I have an insert statement like following which is taking less than 2 secs to complete and inserts around 4000 rows:
    INSERT INTO sch.tab1
              (c1,c2,c3)
    SELECT c1,c2,c3
       FROM sch1.tab1@dblink
      WHERE c1 IN (SELECT c1 FROM sch1.tab2@dblink);I wanted to change it to a MERGE statement just to avoid duplicate data. I changed it to following :
    MERGE INTO sch.tab1 t1
    USING (SELECT c1,c2,c3
       FROM sch1.tab1@dblink
      WHERE c1 IN (SELECT c1 FROM sch1.tab2@dblink) t2
    ON (t1.c1 = t2.c1)
    WHEN NOT MATCHED THEN
    INSERT (t1.c1,t1.c2,t1.c3)
    VALUES (t2.c1,t2.c2,t2.c3);The MERGE statement is taking more than 2 mins (and I stopped the execution after that). I removed the WHERE clause subquery inside the subquery of the USING section and it executed in 1 sec.
    If I execute the same select statement with the WHERE clause outside the MERGE statement, it takes just 1 sec to return the data.
    Is there any known issue with MERGE statement while implementing using above scenario?

    riedelme wrote:
    Are your join columns indexed?
    Yes, the join columns are indexed.
    You are doing a remote query inside the merge; remote queries can slow things down. Do you have to select all thr rows from the remote table? What if you copied them locally using a materialized view?Yes, I agree that remote queries will slow things down. But the same is not happening while select, insert and pl/sql. It happens only when we are using MERGE. I have to test what happens if we use a subquery refering to a local table or materialized view. Even if it works, I think there is still a problem with MERGE in case of remote subqueries (atleast till I test local queries). I wish some one can test similar scenarios so that we can know whether it is a genuine problem or some specific problem from my side.
    >
    BTW, I haven't had great luck with MERGE either :(. Last time I tried to use it I found it faster to use a loop with insert/update logic.
    Edited by: riedelme on Jul 28, 2009 12:12 PM:) I used the same to overcome this situation. I think MERGE needs to be still improved functionally from Oracle side. I personally feel that it is one of the robust features to grace SQL or PL/SQL.

  • Problems with Merging Account

    Hi Experts,
    I have 2 problems with merging accounts:
    1) Opportunity is not moved from source data to master data. I do not know why. Central BP is changable.
    2) Contact Person is only copied, not moved. This causes problems later on when we want to delete the source data.
    Any idea how to solve this?
    Best regards,
    Cristina

    Hi Arno:
    First of all: Thanks for answering my thread!
    The problem with opportunities in my system is, that they are not merged at all, not even with the batch job. I checked trx. BUSWU02. Node CRM370 is assigned to variant CLEAR_REP.
    Also the central Business Partner in opportunity remains changable, once the opportunity was saved.
    Anything else I have to check??
    Best regards,
    Cristina

  • Problem with iChat changing my custom away message after 30 minutes

    Lately, I've been having a big problem with iChat changing any custom away message that I put up to "Away" after 30 minutes or so. Is there anything I can do to make it stop? Another issue I'm having is that sometimes when people on my buddy list change their away message, it doesn't show up on iChat unless I go offline and then sign back on. Any idea why it's doing that, and what I can do to get it to stop?
    Thanks.
    - Danielle
    G3 iMac   Mac OS X (10.3.9)  

    Hi ienjoyanime,
    Go to the General Section of iChat Preferences.
    Does it say you are set to Go to Away when you log off/QUit iChat ?
    is the computer going to Sleep at this point ?
    10:59 PM Saturday; April 1, 2006

  • Muse overwrites any SEO title Tag or Description changes made in Business Catlayst. Is there a work aorund to this? The sites do NOT merge or Muse does not detect the changes made.

    Please advise if there is a work around. If not, Adobe really should fix this issue.

    As you've noticed, Muse will clobber any changes made to the pages Muse works with that have been done outside Muse*. Are the page title features provided not enough for your purposes? Does the information in this thread help at all: Re: How do I add Meta tags to pages?
    * Excepting changes made through 'In-Browser Editing'.

  • Muse will not download changes for Adobe Business Catalyst?

    Saya it all. Make a change in Catalist try to sync with Catalist and it say... Text frame on page 'HOME' was modified on this web page, but the change could not be merged into Muse.

    Hi,
    This error happens in the case where the act of merging a text change from Business Catalyst could end up deleting a hyperlink in your text frame. In such cases, Muse leaves the text frame unchanged but warns you so you may merge the change manually.
    The warning message identifies the text frame content, the containing page title, and a link to the web-page on Business Catalyst; that should help with the manual merge.
    Thanks,
    Abhishek

  • Problems with Plan Change - Needs Immediate Result

    Hello,
    I have been a long time Verizon Wireless customer.  I have two lines, one of which was assigned to a tablet with a 1gb plan.  I maintained this line for the upgrade since my other line has unlimited data.  I recently upgraded to the Note 3, and in the process was told that I'd have to establish a new line to accomplish the upgrade.  The representative, from Costco, let me know that it shouldn't be a problem transferring the same plan to the newly established line and not to worry about anything going wrong.  That night I called Verizon for the first time and worked with a customer service representative who ended up making the problem worse by canceling the tablet line before transferringthe device to the new line.  This caused a problem with my sim card, and I have to request a new one because my old was was constantly showing an "aging" status.  Even a few days later.  The first night consisted of two phone calls to Verizon because the rep mentioned above ended up disconnecting me trying to get over to tech support.  The second rep was much more helpful, but wasn't able to do anything and let me know I'd have to work with tech support, but should wait until the next day to allow the sim to "age."
    The next day was the 4th of July, so I called back the next day and went through a similar process, spent about 30 minutes with one rep, only to be told my sim was still "ageing" and to talk to tech support.  Every time I was connected with tech support it was a minimum 30 minute wait, just to be told that there was nothing they could do, again, and they sent me a new sim card.  When i received that sim, at which point it was the following week, I called back and activated my tablet successfully.  Hung the phone up and thought all was well, until I saw my balance due the next day.  It was nearly double what I usually pay.  The representative never informed me that it would default to a prorated amount based on that payment, of 4gb.  None of which I need.  I called back, again, and was told that I wasn't able to use the old plan I had since it didn't exist anymore.  This time the representative was very pleasant, and let me know she'd put a request in to see if the old plan would be possible, given my situation.  I was alright with that, and this was the first time I wasn't frustrated after hanging up the phone.
    She called me back yesterday letting me know that Verizon isn't willing to allow me to use my old plan, and that there is a new plan options, that is 10 dollars a month.  Honestly that was all right, so I called in today to change it to that plan and have it backdated to the date of upgrade to fix my billing issue.  During the process of looking up my information, the representative I spoke with today disconnected me.  Over the last week and a half I have spent nearly 3-4 hours on the phone with Verizon just trying to fix this issue that was not anything I could have controlled.
    The rep at Costco told me I'd have no issues transferring my lien to the new line we opened that day, and the first individual I spoke with on the phone canceled the line too early and further delayed the process by requiring me to request a new SIM card for the tablet.  After being disconnected this time, I'm extremely frustrated with the entire situation and Verizon in general.  I've been a customer of Verizon for nearly ten years, and for the fist time I am considering moving to another carrier seeing.  In that ten year period, I have probably called into customer service less than 5 times.  And in the last week and a half I have made more calls, and spent far more time on the phone than every before.
    The bottom line is, I need to have the plan changed on my tablet line to something comparable to what I had previously, which was a 20 dollar, 1gb plan with the 10 dollar tablet fee.  I need this taken care of ASAP and I need to know it's being done correctly.  If Verizon is going to partner with companies like Costco to provide phones to members, and increase their customer base, than these reps need to be better equipped to handle the upgrade process.  And it seems that the call centers I have spoken with are a 50/50 shot in terms of reaching someone who is able to do their job effectively and in a timely fashion.
    I hope to be contacted with a resolution by today or I will be returning the phone, and looking elsewhere for my wireless needs.
    Thank you.
    Josh

    There is an "undocumented" parameter you need to include in your
    page. It MUST be a hidden field value called "p_action". The
    form hidden value is either "OK" or "CANCEL" (case sensitive).
    Thus, when the form is submitted, this parameter states to
    commit the changes. Useful if you have a "Save" button and
    a "Cancel" button.

  • Pages - Eliminate save prompt when closing file with no changes made

    Hey everyone -
    This isn't really a question thread, but rather a solution I built to eliminate one of Page's annoyances.
    This problem has been encountered before, but the question isn't truly ever answered. I would reply to those (they're the top results in Google), but because they are archived I can't change them at all.
    The Problem:
    Even after disabling the .pages prompt, it still prompts to save files just before I close them. The exact message is: Do you want to save the changes made to the document "some_document"?
    Details:
    System Version:          OS X 10.9.1 (13B42)
    Kernel Version:          Darwin 13.0.0
    Pages Version: 5.0.1
    The Solution:
    Create a workflow.
    Open Automator, select New Document.
    Select Service, then click Choose.
    Set Service Receives to "no input" and change the "in" drop down list to "Pages.app".
    Next, search for Quit Application, put it in there.
    Set this to Pages.app, and ensure the box "Ask to save changes" is unchecked.
    Save it. I believe there is a default location, so don't specify a path. Give it a name. Quit Automator.
    Assign a keyboard shortcut to the workflow.
    Open System Preferences > Keyboard > Shortcuts.
    Go to Services on the left hand panel.
    Scroll to the bottom.
    Under General, you should see the workflow you created. Mine was called "Quit Pages".
    Click it, then select the Add Shortcut button.
    Give it a rarely used shortcut. I chose ⌘⇧X, but you're welcome to do whatever you like.
    Quit System Preferences.
    At this point, it should work. Open up Pages, open a new document, then do the shortcut. It should exit without any issue. However, I did not like having to learn a new shortcut just to pull this off. So I did this:
    Use BetterTouchTool to configure it properly.
    Download BetterTouchTool and install it.
    Open it up.
    Go to the Basic Settings tab, and ensure the "Launch BetterTouchTool on startup" is checked.
    Click the Gestures tab.
    Select Keyboard in the horizontal bar.
    On the left hand panel, near the words "App Specific", click the plus symbol. This should allow you to add an application.
    Select Pages.
    Click the Pages application in the left hand panel (if it is not already).
    At the bottom of the main panel, click "Add new shortcut".
    Keyboard shortcut: ⌘Q
    Trigger other keyboard shortcut: ⌘⇧X (or whatever you used in System Preferences).
    Quit the application.
    Open it back up. It should now be running in your Menubar.
    Now, if you open a .docx document with Pages, then hit ⌘Q, it should exit without any fuss. HOORAH!
    Granted, this does have a few tradeoffs. If you go to Pages > Quit, it will still prompt you. Also if you want to close the current window (⌘W), it will still prompt you.

    You get this behavior if the file which you opened is not a Pages '09 one.
    If it is a Pages '08 one, it must be entirely transcoded so it's a modified document and given that, the program must ask you to save it.
    If you save it as a Pages '09 document, you will no longer be asked to save (in these conditions).
    Yvan KOENIG (from FRANCE mercredi 11 février 2009 23:16:00)

  • Problem with MERGE statement

    Hi All,
    We are encountering a strange problem with the merge command.
    The following statement works :-
    merge into ATTRIBUTE_GROUP@US_PRODUCT_UAT a
    using
         select
              a1.group_id,
              a1.NAME,
              a1.CREATE_DATE,
              a1.MODIFY_DATE
         from
              ATTRIBUTE_GROUP_LOG a1,
              product_push_wrk a2
         where
              a2.column_id = a1.group_id and
              a2.modify_date = a1.modify_date ) b
    on ( a.group_id = b.group_id)
    when matched then
         update set
              a.NAME = b.NAME,
              a.CREATE_DATE = b.CREATE_DATE,
              a.MODIFY_DATE = b.MODIFY_DATE
    when not matched then
         insert
              a.group_id,
              a.NAME,
              a.CREATE_DATE,
              a.MODIFY_DATE
         values
              b.group_id,
              b.NAME,
              b.CREATE_DATE,
              b.MODIFY_DATE
    However when we change the order of the columns in the select query as follows the an error occurs : -
    merge into ATTRIBUTE_GROUP@US_PRODUCT_UAT a
    using
         select
              a1.NAME,
              a1.group_id,
              a1.CREATE_DATE,
              a1.MODIFY_DATE
         from
              ATTRIBUTE_GROUP_LOG a1,
              product_push_wrk a2
         where
              a2.column_id = a1.group_id and
              a2.modify_date = a1.modify_date ) b
    on ( a.group_id = b.group_id)
    when matched then
         update set
              a.NAME = b.NAME,
              a.CREATE_DATE = b.CREATE_DATE,
              a.MODIFY_DATE = b.MODIFY_DATE
    when not matched then
         insert
              a.group_id,
              a.NAME,
              a.CREATE_DATE,
              a.MODIFY_DATE
         values
              b.group_id,
              b.NAME,
              b.CREATE_DATE,
              b.MODIFY_DATE
    ERROR at line 15:
    ORA-00904: "B"."GROUP_ID": invalid identifier
    SQL> l 15
    15* on ( a.group_id = b.group_id)
    The structure of the attribute_log table is as follows :-
    SQL> desc ATTRIBUTE_GROUP
    Name Null? Type
    GROUP_ID NOT NULL NUMBER
    NAME NOT NULL VARCHAR2(96)
    CREATE_DATE NOT NULL DATE
    MODIFY_DATE NOT NULL DATE
    Any pointers to the cause of this error will be highly appreciated.
    Thanks and Regards,
    Suman

    The table structures are as follows :-
    04:17:17 SQL> desc product_push_wrk
    Name Null? Type
    COLUMN_ID NOT NULL NUMBER
    TYPE NOT NULL VARCHAR2(10)
    PARENT_COLUMN_ID NUMBER
    LEVEL_NO NUMBER
    MODIFY_DATE NOT NULL DATE
    04:17:25 SQL> desc ATTRIBUTE_GROUP_LOG
    Name Null? Type
    GROUP_ID NOT NULL NUMBER
    NAME NOT NULL VARCHAR2(96)
    CREATE_DATE DATE
    MODIFY_DATE DATE
    04:18:02 SQL> desc ATTRIBUTE_GROUP
    Name Null? Type
    GROUP_ID NOT NULL NUMBER
    NAME NOT NULL VARCHAR2(96)
    CREATE_DATE DATE
    MODIFY_DATE DATE

  • Integration with muse created forms and business catalyst mailing lists

    I have just spent a long time on a chat session with support after spending most of a day trying to sort out how to have the people who fill in our contact us page to be automatically added to a mailing list to keep in contact with them, but it seems there isnt a strong link with muse to do this easily.
    When you create a form in muse, it has an option to send the completed forms to a selected email adress. It would be great if you there was also an option to add that contact to a selected mailing list group already created in Business Catalys
    I would have also like the full integration of form central to be inside muse with all its functions. So I could create gift voucher orders forms  and receive payments by paypal or other options.
    It has been a frustrating day trying to figure it out as the forums didnt seem to help with the info i needed.
    It seems to use Business Catalyst webforms requires html coding knowledge which I dont have. you can created a basic form in there easily, but if you want to make it two collumns wide or other changes, it is very difficult to use with coding
    A decent wysiwig editor in Business Catalyst would be great
    thanks for listening.
    Overall I think Muse is excellent so I am surprised, this part of the software doesnt work as I expected.
    Brian

    Hi
    This was the full video I did
    Integrate Leadpages with Adobe Business Catalyst on Vimeo
    Pretty sure it works
    Here's the code I used so you can compare and contrast
    <form name="catemaillistform52797" onsubmit="return checkWholeForm52797(this)" method="post" action="http://www.platonik.co.uk/CampaignProcess.aspx?ListID=47104">
        <div class="form">
          <div class="item">
            <label for="CLFullName">Full Name</label>
            <input class="cat_textbox_small" type="text" name="FullName" id="CLFullName" maxlength="255" />
          </div>
          <div class="item">
            <label for="CLEmailAddress">Email Address</label>
            <input class="cat_textbox_small" type="text" name="EmailAddress" id="CLEmailAddress" maxlength="255" />
          </div>
          <div class="item">
            <input class="cat_button" type="submit" value="Subscribe" id="catlistbutton" />
          </div>
        </div>
        <script type="text/javascript" src="http://www.platonik.co.uk/CatalystScripts/ValidationFunctions.js"></script>
        <script type="text/javascript">
          //<![CDATA[
          function checkWholeForm52797(theForm){
            var why = "";
            if (theForm.EmailAddress) why += checkEmail(theForm.EmailAddress.value);
            if (why != ""){
              alert(why);
              return false;
            theForm.submit();
            return false;
          //]]>
        </script>
      </form>

  • Problems With Inserting/Changing Artwork - Help Requested

    OK...let me set this up...
    I currently have approximately 3500 files. When I first starting importing my CD's, I didn't see the need for what I saw as superficial information that I would never need or want. Just song title and artist. Then, sometime ago, I got interested in adding artwork to my files. Back then, it wasn't as important and I kind of didn't take the time to really spend on the files to get what would be quality artwork for all of my files. However, all got artwork and it worked fine.
    Fast forward to more recent times, and I decided to improve the artwork for those that I took a more lackadaisical approach previously. Now, I have finished going over them, but I seemed to have some issues with about two dozen files, and it is most perplexing. Any help would be greatly appreciated...
    What the issue is that I can't alter the artwork for these two dozen files. I have copy/pasted artwork in the INFO box, and have even tried deleting what was there previously, but to no avail. In addition, I can insert artwork with MPFreaker, and have iTunes show it, but if I alter ANY of the other information in either MPFreaker or iTunes (album, title, etc...), the artwork disappears. However, this does not appear to be the same issue as other issues that I have read about as I researched this seeking an answer. For one thing, it's only the artwork that can't be altered. Other information can be altered with no problem. These are not locked files in the Finder. Also, the permissions are the same as the rest of the other 3400+ files. In addition, I even took the additional step and set the permissions to the iTunes Music folder and then selected "Apply To Enclosed Items" to make sure that all have the same permissions, but to no avail.
    The files also play with no apparent problem.
    Any help or insight would be most greatly appreciated. If anyone needs any additional info, just ask or check the info about my setup below.

    OK...some additional information for those that come across this....
    After some more checking, I realized that even though I could change/save other TAG information on the file within iTunes, it was not saving it with the file...When I made changes and then checked with another program, those changes were not reflected, although some of the reverse was true - changes made in the TAG program were not always recognized in iTunes. So in frustration, I opened the file within a sound editor and then faked a change (copy/paste/undo) and then saved....at that point, the file was properly recognized in iTunes.
    Hope this helps someone.

  • How do I replace existing website with one created with muse and hosted by business catalyst

    My client has a website / URL in use.  I have designed a new website using adobe Muse that will replace their existing website, and I would like to use business catalyst to host the new site.  What do I need to do to transfer the URL to business catalyst, and post the new site live?

    Hi
    You can use their BC login details and use them , which on publish the site will be under their account.
    Please change the BC login from Edit > Preferences > Publish > Switch Accounts , for Mac it would Adobe Muse > Preferences
    Thanks,
    Sanjit

Maybe you are looking for

  • Sun-Java-System-SMTP-Warning

    Customers using our company's products have been finding the following error message when sending messages with image attachments from our devices: "Sun-Java-System-SMTP-Warning: Lines longer than SMTP allows found and truncated" RFC 2045 - Multipurp

  • IPhoto 5 can't find my pictures after installing a new hard drive.

    I had a corrupted hard drive which I was able to get going again with Disk Warrior. I backed up my i Photo Library on external storage and then installed the new drive and reinstalled OS 10.4.10 on my old G4. I then installed iLife 05 and tried to op

  • What are the list of .stock by storage location

    hi, iwant to devlop the report to stock by storage location.give me description about a report to list of .stock by storage location. what are the functional spects for this report, what are the tables and fields we have to used for this report plz g

  • System generated emails - how to include a mandatory prefix for all email

    Good morning. I have been asked if there was a way to default a Security Classification into the Subject Line of all SAP system generated emails. Examples "[UNCLASSIFIED] Please approve Purchase Order 123456" or "[UNCLASSIFIED] Please approve Absence

  • Importing registered serves fails in MSSM 2012

    I exported servers two days ago, and did a clean install of Win7, now when I try to import that sqlservers.regsrvr I face this error: =================================== Key not valid for use in specified state.  (System.Security) Program Location: