Saving photos to the web by creating events. Called the destination folder does not exist.

Hello,
I ask you for advice (assistance). A week ago I re-installed the PC and installed to the computer again Photoshop CS5. Everything works for me except for the function of storing images for web by creating events. Called me constantly destination folder does not exist. The problem I had before. I ask you this advice on how to solve this problem.
Thanks for the advice

hi,
i don't know if i integrate your code correctly, but it doens't work for me. I presently create skin for client and this plugin is really usefull for me.
i use win7 64bit home edition, and photoshop cs5
there is how i integrate this :
// EDIT ALEX GRENIER
function getPreferencesFolder() {
     var userData = Folder.userData;
     if (!userData || !userData.exists) {
          userData = Folder("~");
     var folder = new Folder(userData + "/xtools");
     if (!folder.exists) {
          folder.create();
     return folder;
function exportChildren(dupObj, orgObj, dupDocRef, folder) {
if (getCSVersion() >= 10) // CS3 Only
     // Create assets folder in Flex app's directory
     // var tempFolder;
     // tempFolder = new Folder (folder + "/assets/");
     // tempFolder.create();
     // EDIT ALEX GRENIER
     var tempFolder;
     tempFolder = getPreferencesFolder();
i put the code creating the folder in comment and put your code in place, i also put your function before the function creating file.
With the base code (without modification) photoshop is able to create my folder assets, but when it try to export the png, it export nothing, so i have a empty folder.
thank you,
Alex

Similar Messages

  • Could not complete the Action, since the destination folder does not exist.

    I'm a frequent user of "Image Processor" but today accidentally I am getting the error although I am having the required folder as a destination.

    Is the Folder on an external medium, what are the complete path and name of the Folder?

  • Type (..) of the context element (..) in view (..) does not exist

    Hi all
    I have got an question. I have an ABAP webdynpro with a context node which is connected to an ABAP structure.
    The context node is mapped to a context node of a view and the fields of the view are mapped to the context node of the view. So the data is send through them. That works fine.
    Within this ABAP structure i have added 3 extra new fields. After creating them i activated the structure.
    Within the webdynpro i have updated the context mapping between the node and the structure and also between the different mappings between the views and the componentcontroller where this node is used,
    Within the context tab of all the views i see all the three new fields.
    When i try to map those fields to a field in the screen it cannot be done. i get the following message:
    Type (..) of the context element (..) in view (..) does not exist
    Anf the new fields are gray.
    Does anybody know the solution for this?
    kind regards,
    Anton Pierhagen

    Hi all
    Thanks for all of the replies. But unfortunately the right answer wasn't there.
    I had tried to map the structure and re-create the node on several levels in my web-dynpro, but there was no change after this changes.
    When i created an own dataelement and an own domain in my ABAP structure, it worked.
    I could select them in the webdynpro. But why????
    i still not get it..
    But thanks for the replies!
    Kind regards,
    Anton Pierhagen

  • The name "Folder" does not exist in the namespace

     I am trying to learn Wpf and doing some of the examples on the Microsoft site. https://msdn.microsoft.com/en-us/library/vstudio/bb546972(v=vs.110).aspx?cs-save-lang=1&cs-lang=vb#code-snippet-1
    I am using Visual studio 2013. As I work through the example I am getting the following error. 
    Error 1
    The name "Folder" does not exist in the namespace "clr-namespace:FolderExplorer".
    c:\users\hbrown\documents\visual studio 2013\Projects\FolderExplorer\FolderExplorer\MainWindow.xaml
    11 17
    FolderExplorer
    Error 2
    The name "Folder" does not exist in the namespace "clr-namespace:FolderExplorer".
    c:\users\hbrown\documents\visual studio 2013\Projects\FolderExplorer\FolderExplorer\MainWindow.xaml
    16 7
    FolderExplorer
    Here is the code:
    <Window x:Class="MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
            xmlns:my="clr-namespace:FolderExplorer"
        Title="Folder Explorer" Height="350" Width="525">
        <Window.Resources>
            <ObjectDataProvider x:Key="RootFolderDataProvider" >
                <ObjectDataProvider.ObjectInstance>
                    <my:Folder FullPath="C:\"/>
                </ObjectDataProvider.ObjectInstance>
            </ObjectDataProvider>
            <HierarchicalDataTemplate 
       DataType    = "{x:Type my:Folder}"
                ItemsSource = "{Binding Path=SubFolders}">
                <TextBlock Text="{Binding Path=Name}" />
            </HierarchicalDataTemplate>
        </Window.Resources>
    I have a class file named Folder.vb with this code. 
    Public Class Folder
        Private _folder As DirectoryInfo
        Private _subFolders As ObservableCollection(Of Folder)
        Private _files As ObservableCollection(Of FileInfo)
        Public Sub New()
            Me.FullPath = "c:\"
        End Sub 'New
        Public ReadOnly Property Name() As String
            Get
                Return Me._folder.Name
            End Get
        End Property
        Public Property FullPath() As String
            Get
                Return Me._folder.FullName
            End Get
            Set(value As String)
                If Directory.Exists(value) Then
                    Me._folder = New DirectoryInfo(value)
                Else
                    Throw New ArgumentException("must exist", "fullPath")
                End If
            End Set
        End Property
        ReadOnly Property Files() As ObservableCollection(Of FileInfo)
            Get
                If Me._files Is Nothing Then
                    Me._files = New ObservableCollection(Of FileInfo)
                    Dim fi As FileInfo() = Me._folder.GetFiles()
                    Dim i As Integer
                    For i = 0 To fi.Length - 1
                        Me._files.Add(fi(i))
                    Next i
                End If
                Return Me._files
            End Get
        End Property
        ReadOnly Property SubFolders() As ObservableCollection(Of Folder)
            Get
                If Me._subFolders Is Nothing Then
                    Try
                        Me._subFolders = New ObservableCollection(Of Folder)
                        Dim di As DirectoryInfo() = Me._folder.GetDirectories()
                        Dim i As Integer
                        For i = 0 To di.Length - 1
                            Dim newFolder As New Folder()
                            newFolder.FullPath = di(i).FullName
                            Me._subFolders.Add(newFolder)
                        Next i
                    Catch ex As Exception
                        System.Diagnostics.Trace.WriteLine(ex.Message)
                    End Try
                End If
                Return Me._subFolders
            End Get
        End Property
    End Class
    Can someone explain what is happening. 
    Thanks Hal

    Did you try to build the application (Project->Build in Visual Studio) ? If the error doesn't go away then and you have no other compilation errors (if you do you need to fix these first), you should replace "FolderExplorer" with the namespace
    in which the Folder class resides. If you haven't explicitly declared a namespace, you will find the name of the default namespace under Project->Properties->Root namespace. Copy the value from this text box to your XAML:
    xmlns:my="clr-namespace:FolderExplorer"
    The default namespace is usually the same as the name of the application by default so if your application is called "FolderExplorer" you should be able to build it.
    If you cannot make it work then please upload a reproducable sample of your issue to OneDrive and post the link to it here for further help.
    Please remember to close your threads by marking helpful posts as answer and then start a new thread if you have a new question.

  • No synch choice in safari. So how do I synch my bookmarks in safari to firefox when the synch icon firefox says you have to use does not exist in safari.

    no synch choice in safari. So how do I synch my bookmarks in safari to firefox when the synch icon firefox says you have to use does not exist in safari?
    I cannot set up synch with bookmarks in safari since there is no synch icon in preferences in safari.

    This is crazy. The directions on firefox keep telling you to go to links that do not exist to import bookmarks from safari.
    For example, it says;
    Firefox imports Safari settings automatically. Just go to File > Import... and select Safari. In the next window, check the boxes of what you want to import. For example, your Safari Bookmarks will appear in Firefox's Bookmarks menu as "From Safari." Whatever other bookmarks you had on your Safari Bookmarks Bar will automatically appear on your Firefox Bookmarks Bar, too.
    BUT THERE IS NO IMPORT LINK UNDER FILES ON FIREFOX!
    Then I tried to add a device. I got the code but the continue link was not on ever. I tried it over and over and it does not work.
    WHO MAKES THIS SYSTEM??? How can something that should be so simple be so impossible, and why does Firefox direct you to links that do not exist or, if they exist, do not work!
    Thanks,
    Mike Ruggeri

  • Error while creating folder: Path is invalid because folder does not exist

    Hi,
    I am having an issue while creating Folders in ID, when I create folder Structure like EDI -> VENDOR -> DELL I am getting the error as below:
    Path /EDI/VENDOR/DELL/ is invalid because folder VENDOR does not exist
    So first 2 levels of folder structure is fine and when I create third level (DELL) I get the above error. Any idea how to resolve this or is this the limitation?
    We have
    Service Pack:06
    Release:NW711_06_REL
    Thanks,
    Laxman

    Hi Laxman,
    Kindly try to refresh the SLD cache by going to Environment -> Clear SLD Data Cache. Make sure that the Cache Status are all in green.
    Hope this would help.
    Regards,
    Jenny

  • Error while creating connection pool "FATAL: database "null" does not exist

    Hi,
    Iam trying to create a XA connection pool using postgres driver (postgresql-8.3-603.jdbc3.jar) on Weblogic 8.1.6.0 from the Admin Console.
    I have provided the following info in the JDBC config
    Driver Class Name: org.postgresql.xa.PGXADataSource.
    JDBC URL: jdbc:postgresql://192.168.192.112:5432/sample1
    UserName: postgres
    Password: Postgres
    When i click Test Driver Configuration. Iam getting the following error
    "FATAL: database "null" does not exist"
    if i change the Driver Class Name to "org.postgresql.Driver", it is working fine. But as iam trying to create XA datasource i need to use the XA Driver class name.
    Can someone tell me how to resolve this issue ?
    The postgres version iam using is 8.3.1

    Hi Joe,
    The driver is in the classpath.
    Please find the stack trace.
    org.postgresql.util.PSQLException: FATAL: database "null" does not exist
    at org.postgresql.core.v3.ConnectionFactoryImpl.readStartupMessages(Conn
    ectionFactoryImpl.java:444)
    at org.postgresql.core.v3.ConnectionFactoryImpl.openConnectionImpl(Conne
    ctionFactoryImpl.java:99)
    at org.postgresql.core.ConnectionFactory.openConnection(ConnectionFactor
    y.java:66)
    at org.postgresql.jdbc2.AbstractJdbc2Connection.<init>(AbstractJdbc2Conn
    ection.java:124)
    at org.postgresql.jdbc3.AbstractJdbc3Connection.<init>(AbstractJdbc3Conn
    ection.java:30)
    at org.postgresql.jdbc3.Jdbc3Connection.<init>(Jdbc3Connection.java:24)
    at org.postgresql.Driver.makeConnection(Driver.java:386)
    at org.postgresql.Driver.connect(Driver.java:260)
    at java.sql.DriverManager.getConnection(DriverManager.java:512)
    at java.sql.DriverManager.getConnection(DriverManager.java:171)
    at org.postgresql.ds.common.BaseDataSource.getConnection(BaseDataSource.
    java:83)
    at org.postgresql.xa.PGXADataSource.getXAConnection(PGXADataSource.java:
    47)
    at org.postgresql.xa.PGXADataSource.getXAConnection(PGXADataSource.java:
    32)
    at weblogic.management.console.utils.JDBC.testConnection(JDBC.java:185)
    at weblogic.management.console.actions.mbean.JDBCConnectionPoolTestActio
    n.prePerform(JDBCConnectionPoolTestAction.java:114)
    at weblogic.management.console.actions.mbean.DoMBeanWizardAction.perform
    (DoMBeanWizardAction.java:215)
    at weblogic.management.console.actions.internal.ActionServlet.doAction(A
    ctionServlet.java:182)
    at weblogic.management.console.actions.internal.ActionServlet.doPost(Act
    ionServlet.java:86)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run
    (ServletStubImpl.java:1077)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubIm
    pl.java:465)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubIm
    pl.java:348)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationActio
    n.run(WebAppServletContext.java:7047)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(Authenticate
    dSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:
    121)
    at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppSe
    rvletContext.java:3902)
    at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestIm
    pl.java:2773)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:224)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:183)

  • How to stop Timer event inside movie clip that does not exist?

    Hello. I am using Adobe Flash CS6.
    As this topic title says. how to stop Timer event nside movieclip that does not exist?
    I mean my fla stracture is  there are 2 frames on main timeline, and I put mcA on frame 2.
    And I put a button on root that does
    if(currentFrame ==1)
    gotoAndStop(2);
    else if (currentFrame ==2)
    gotoAndStop(1);
    And mcA has AS inside and it is
    var T_Timer:Timer = new Timer(1000,0)
    T_Timer.addEventListener(TimerEvent.TIMER, test)
    function test(e:TimerEvent):void{
    trace("Timer active")
    T_Timer.start();
    I need to stop T_TImer from root on frame 1, not on frame 2.
    but, "mcA.T_Timer.stop();" won't work.
    I get TypeError: Error #1010 error.
    I don't know how to stop this timer event. I have to stop it from root, and I can't use EVENT_REMOVED in this case.

    If the object doesn't exist you cannot do anything relative to targeting it.  Maybe you should move the timer to the main timeline where you can access it any time.

  • Want to start PSE 12 in photo editor but it will only start in Orgaizer, can't get to welcome screen and the .exe file that Adobe said to look for does not exist on my files

    Have tried to start PSE 12 in photo editor but it continues to start in Organizer.  I do not want my pictures loaded in Organizer at all.  Saw a page on the web that said to click on an .exe editor file but that is not on my files.  Also cannot get a welcome screen to come up, only an organizer even though I checked it the first time to come up in photo editor.  I'm now having Organizer crammed down my throat.  Tried online chat but was cut off with the statement that no support is offered for v12 any longer.

    Hi,
    You failed to say which operating system you are running on so I'm assuming it is Windows of some type.
    You should be able to find the following files, using explorer, depending on your system.
    64bit system: "C:\Program Files (x86)\Adobe\Photoshop Elements 12\PhotoshopElementsEditor.exe"
    32bit system: "C:\Program Files\Adobe\Photoshop Elements 12\PhotoshopElementsEditor.exe"
    Double clicking on that should start the editor - suggest to create a shortcut to it.
    If you can't find one of those files, then you either installed it somewhere else or you need to re-install elements.
    Brian

  • The button to create a new account with iChat does not appear

    I've been trying to create a new account .mac from iChat, but the button does not appear, can you help please?
    Thank you
    Ivan

    Hi,
    The @mac.com Registration is Here
    You are right that there was a Button in iChat and iChat 5 that when @mac.com was selected as the type would then sned you off to that page (in iChat 5 the AIM option and using the Button took you to the AIM registration)
    Soon after Apple brought this to iChat 5 then AIM moved their Registration page making the Link useless.
    For some reason Apple also removed the ability in iChat 5 to go to the @mac.com site
    The Button is absent (rather than "Missing") in iChat 6 and Messages beta.
    The AIM registration Page is Here
    ON the @mac.com site keep the password to 16 characters or less (The AIM server limits)
    You cannot use another Email to link to the @mac.com name that is already in use with an Apple ID
    10:03 PM      Thursday; June 21, 2012
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"
      iMac 2.5Ghz 5i 2011 (Lion 10.7.2)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
    "Limit the Logs to the Bits above Binary Images."  No, Seriously

  • Install web server 7U5 on Mandriva - runtime user id does not exists error

    Hi,
    I'm trying to install Sun Web Server 7 update 5 on Mandriva 2009 but the installation process stucks on the step where the Runtime User ID must be entered. It says that the root account doesn't exists which obviously it does. It happens both on GUI and console installs and there isn't an error nowhere, I suppose that the routine on the installer that it's used to verify the user fails on Mandriva but without an error or something I can't figure out why it's failing and try to woekaround it.
    Has anyone had a similar issue while installing sun web server ?

    Looking a little at this problem, I can see that both useradd commands are very similar, both distros have almost the same version and the main differences between them is that Red Hat useradd has an extra option for SE Linux which Mandriva doesn't use:
    Red Hat useradd version (CentOS equivalent):
    [root@demo ~]# rpm -qf `which useradd`
    shadow-utils-4.0.17-13.el5
    Red Hat useradd options:
    -b, --base-dir BASE_DIR       base directory for the new user account
    home directory
    -c, --comment COMMENT         set the GECOS field for the new user account
    -d, --home-dir HOME_DIR       home directory for the new user account
    -D, --defaults                print or save modified default useradd
    configuration
    -e, --expiredate EXPIRE_DATE  set account expiration date to EXPIRE_DATE
    -f, --inactive INACTIVE       set password inactive after expiration
    to INACTIVE
    -g, --gid GROUP               force use GROUP for the new user account
    -G, --groups GROUPS           list of supplementary groups for the new
    user account
    -h, --help                    display this help message and exit
    -k, --skel SKEL_DIR           specify an alternative skel directory
    -K, --key KEY=VALUE           overrides /etc/login.defs defaults
    -m, --create-home             create home directory for the new user
    account
    -l,                       do not add user to lastlog database file
    -M, do not create user's home directory(overrides /etc/login.defs)
    -r, create system account
    -o, --non-unique              allow create user with duplicate
    (non-unique) UID
    -p, --password PASSWORD       use encrypted password for the new user
    account
    -s, --shell SHELL             the login shell for the new user account
    -u, --uid UID                 force use the UID for the new user account
    *-Z, --selinux-user SEUSER     use a specific SEUSER for the SELinux user mapping*
    Mandriva useradd version:
    [root@localhost juancho]# rpm -qf `which useradd`
    shadow-utils-4.0.12-19mdv2009.1
    Mandriva useradd options:
    -b, --base-dir BASE_DIR       base directory for the new user account
    home directory
    -c, --comment COMMENT         set the GECOS field for the new user account
    -d, --home-dir HOME_DIR       home directory for the new user account
    -D, --defaults                print or save modified default useradd
    configuration
    -e, --expiredate EXPIRE_DATE  set account expiration date to EXPIRE_DATE
    -f, --inactive INACTIVE       set password inactive after expiration
    to INACTIVE
    -g, --gid GROUP               force use GROUP for the new user account
    -G, --groups GROUPS           list of supplementary groups for the new
    user account
    -h, --help                    display this help message and exit
    -k, --skel SKEL_DIR           specify an alternative skel directory
    -K, --key KEY=VALUE           overrides /etc/login.defs defaults
    -m, --create-home             create home directory for the new user
    account
    -M, do not create home directory for the new user
    -n,                   do NOT create a group with the same name
    as the user
    -o, --non-unique              allow create user with duplicate
    (non-unique) UID
    -p, --password PASSWORD       use encrypted password for the new user
    account
    -r create a system account
    -s, --shell SHELL             the login shell for the new user account
    -u, --uid UID                 force use the UID for the new user account
    If the problem lies in one of the extra options that Red Hat includes because it has a newer version of shadowutils package I could try to help upgrade it to a newest version as I'm somewhat involved in the Mandriva development community, but seeing that most of the options between the two versions are almost the same I think the problem lies somewhere else. Also taking into account that the installation as a non root user also fails with the same error, that would make me think that the problem isn't when trying to create a new user but when trying to check it's existence on the system.

  • While creating Update rules -"Error Info source does not exist"

    While creating an update rule I am getting an error that Info source doesnot exist though the inf source is active.
    here is error:
    No communication structure exists in version  abc...   A
    Message no. RSAU251
    Diagnosis
    In order to be able to maintain the update rules an active communication structure must be available.
    Procedure
    This error message can have two causes.
    No active communication structure exists.
    Activate the communication structure in the Data Warehousing Workbench.
    No communication structure exists for the InfoSource.
    Create a communication structure in the Data Warehousing Workbench for the InfoSource.
    <<text removed>>
    Thanks,
    Vasu
    Edited by: Matt on Apr 26, 2010 9:31 AM

    Hi Vasu,
    as it clearly shows below message
    No communication structure exists for the InfoSource.
    Create a communication structure in the Data Warehousing Workbench for the InfoSource.
    Create an info source first and assign it to your datasource and map the fileds in transfer rules and activate it.
    Then try to create the update rules between your target and info source.
    Hope this helps.
    Regards,
    Reddy

  • CREATE MATERIALIZED VIEW - TABLE OR VIEW DOES NOT EXIST

    Anybody can help me? Why could this happen?
    SQL> CREATE MATERIALIZED VIEW LESTARI.YIELD_BI_ACTUAL_PLAN_BLOK_MVU
    2 TABLESPACE MVU
    3 NOCACHE
    4 NOPARALLEL
    5 REFRESH FORCE
    6 START WITH TO_DATE('19-APR-2005 18:00:00','DD-MON-YYYY HH24:MI:SS')
    7 WITH PRIMARY KEY
    8 USING DEFAULT LOCAL ROLLBACK SEGMENT
    9 DISABLE QUERY REWRITE AS
    10 SELECT PT,
    11 TO_CHAR(TANGGAL,'MMYYYY')PERIODE,
    12 AFDELING,
    13 BLOK,
    14 TH_TANAM,
    15 SUM(TON_TERIMA) TON_TERIMA,
    16 SUM(JJG_TERIMA) JJG_TERIMA,
    17 SUM(JJG_PANEN) JJG_PANEN,
    18 SUM(HK) HK, (LS_TANAM),
    19 DECODE(LS_TANAM,0,0,ROUND((SUM(TON_TERIMA)/(LS_TANAM)),2)) YIELD,
    20 HITUNG_STANDARD_YIELD (PT, TH_TANAM,TO_CHAR(TANGGAL,'MMYYYY')) YIELD_STD,
    21 DECODE(SUM(JJG_TERIMA),0,0,ROUND(SUM(TON_TERIMA)*1000/SUM(JJG_TERIMA),2)) BJR,
    22 HITUNG_STANDARD_BJR_TH_TANAM(PT,TH_TANAM) BJR_STD,
    23 DECODE(SUM(HK),0,0,ROUND((SUM(TON_TERIMA)*1000/SUM(HK)),2)) OP,
    24 DECODE(SUM(JJG_TERIMA),0,0,HITUNG_STANDARD_OUTPUT_PEMANEN(ROUND(SUM(TON_TERIMA)*1000/SUM(JJG_
    TERIMA),2))) OP_STD,
    25 MAX(POTENSI) POTENSI,
    26 MAX(DIS_POT) DIS_POT,
    27 DECODE(LS_TANAM,0,0,ROUND(MAX(POTENSI)*MAX(DIS_POT)/100/LS_TANAM,2)) YIELD_POTENSI,
    28 MAX(RAPIM) RAPIM,
    29 MAX(DIS_RAPIM) DIS_RAPIM,
    30 DECODE(LS_TANAM,0,0,ROUND(MAX(RAPIM)*MAX(DIS_RAPIM)/100/LS_TANAM,2)) YIELD_RAPIM
    31 FROM (SELECT B.*, A.LS_TANAM, A.TH_TANAM, POTENSI, DIS_POT, RAPIM, DIS_RAPIM
    32 FROM ASSET_BLOK_VU A, T_TANAMAN B, T_PLAN_TANAMAN C, T_DISTRIBUSI_PLAN_TANAMAN D
    33 WHERE A.PT = B.PT
    34 AND B.PT = C.PT
    35 AND C.PT = D.PT
    36 AND A.KD_AFD = B.AFDELING
    37 AND B.AFDELING = C.AFDELING
    38 AND A.KD_BLOK = B.BLOK
    39 AND B.BLOK = C.BLOK
    40 AND A.TAHUN = TO_CHAR(TANGGAL,'RRRR')
    41 AND TO_CHAR(TANGGAL,'MM')=D.BULAN
    42 AND A.TAHUN = D.TAHUN
    43 AND A.TAHUN = C.TAHUN
    44 AND A.LS_TANAM > 0) A
    45 GROUP BY PT, TO_CHAR(TANGGAL,'MMYYYY'), AFDELING, BLOK, LS_TANAM, TH_TANAM
    46 /
    CREATE MATERIALIZED VIEW LESTARI.YIELD_BI_ACTUAL_PLAN_BLOK_MVU
    ERROR AT LINE 1:
    ORA-00942: TABLE OR VIEW DOES NOT EXIST

    32 FROM ASSET_BLOK_VU A, T_TANAMAN B, T_PLAN_TANAMAN C, T_DISTRIBUSI_PLAN_TANAMAN D
    Either of these tables/views do not exist. Check the spelling of the table/view names

  • "ERROR -  The destination mailbox does not exist"???

    If I try to move an email from a mailbox/folder I made in Mail app to my inbox I get this ridiculous message. What's up with this??
    Thanks
    12 inch Powerbook G4 1GHz   Mac OS X (10.3.1)  

    Kevin,
    Welcome to the Discussions.
    The Junk.mbox folder in the account folder may not have gotten converted to the new mailbox structure in Tiger. You could confirm this by using the Finder to open Home/Library/Mail/the account folder/the Junk.mbox folder, and reporting the contents.
    However, it will likely be useful to place the Junk filtering back into Training, quit Mail and drag any Junk.mbox folder from the account folder, relaunch Mail and choose again to have Junk mail moved to the Junk mailbox, and Mail should create a new Junk.mbox folder, that it can use.
    Keep us posted.

  • User created with FOR LOGIN and login does not exist?

    I hope my question is clear.  For testing I made a group in Active Directory named MyDatabaseReadOnly with one user as a member.  I
    do not have a login in SQL Server by the same name.  I created a database user with the following script.
    USE [MyDatabase]
    GO
    CREATE USER [MyDatabaseExec] FOR LOGIN [MyDomain\MyDatabaseReadOnly]
    GO
    The script created the user MyDatabaseExec in MyDatabase.  I gave the user MyDatabaseExec permission to execute one stored procedure.  I then logged in as the lone member of the MyDatabaseReadOnly group and was able to execute the stored procedure
    in SSMS.
    How does this work since there is no login MyDomain\MyDatabaseReadOnly? I understand (I think) that you can create database users
    without a login but I don't understand how I'm able to run the proc.
    Kevin

    The reason is you can have user in the database without a login in the master database and in such case, the user authentication is done through windows group.
    read this article and you can understand  https://msdn.microsoft.com/en-us/library/ms173463.aspx?f=255&MSPPError=-2147217396
    Users based on Windows principals that connect through Windows group logins
    Hope it Helps!!

Maybe you are looking for

  • Assigning value to a range dynamically

    Hello All, I want to assign the values to a range dynamically. For example in the following piece of code, I cannot directly assign wa-kunnr to r_kunnr-low. LOOP AT ITAB INTO WA. r_kunnr-sign    = 'I'. r_kunnr-option = 'EQ'. r_kunnr-low     = wa-kunn

  • 9.2 and clean HD.

    Well, lucky me: I picked up in garage sale $99.00 iMac G3, Graphite version. NO DISKs. And it had 9.1 on it. Also CD burder. Great for kids. I took advice on this board and picked up an Mac OS 9.2.1 disk (white, with the big gold '9') on it. I sucess

  • Oracle 11g R2 RAC on vmware

    Hi All, I have read many blogs and article about installing Oracle 11g R2 RAC on vmware. For self learning process what should be minimum configuration of hardware. Minimum physical memory will be 8 GB what is minumum processor required ( 2 Cores / 4

  • My Zen Sleek Photo will not connect to compute

    I am extremely disappointed ! Despite being told yesterday that I need Microsoft Service Pack 2 installed on my computer before my USB would detect the player, I have successfully downloaded MS SP 2 and guess what ? It still says "your player is not

  • How to maintain table t180v and t180z

    hi all, when we customized va05 by copying it to zva05, SAP system prompt to maintain entry in both t180v and t180z. please advise the proper way to do that. thanks.