NT CWS - Container - SecurityDescriptor

Hello,
In the code (Container.cs) that implements the IContainer interface, there is a function called GetGroups() which gets the NT User groups associated with the directory. Within this function, there is a call to a function GetACLEntries which returns the users associated with the file location.
I am trying to use the SecurityDescriptor to call GetFileSecurity() - like this: SecurityDescriptor secDesc = SecurityDescriptor.GetFileSecurity(fileLoc);
However, it does not seem to be recognized. I have imported and referenced mmsseclib.dll in order to use "Microsoft.Win32.Security" which should contain the SecurityDescriptor class but doesn't. This excercise was done in one of the labs in "BEA ALUI IDK 6.0 Part 2 - Develop Web Services" course. Below is the function with all the using statements. C#, Visual Studio 2003 . Please help.
using System;
using System.Collections;
using System.Text;
using com.plumtree.openfoundation.util;
using log4net;
using Microsoft.Win32;
using Microsoft.Win32.Security;
using Plumtree.Remote.Crawler;
using Plumtree.Remote.Util;
public static ACLEntry[] GetACLEntries(string fileLoc, bool groups)
Log("[FUNCN] public static ACLEntry[] GetACLEntries(String fileLoc, bool groups)");
Log("fileLoc:" + fileLoc);
Log("groups:" + groups);
ArrayList al = new ArrayList();
SecurityDescriptor secDesc = SecurityDescriptor.GetFileSecurity(fileLoc);
using (secDesc)
     foreach (Ace ace in secDesc.Dacl)
          try
               //if it's a group and it has access, add it.
               if (ace.Sid.IsValid)
                    if (groups)
                         if ((ace.Sid.GetNameUse().Equals(SID_NAME_USE.SidTypeGroup) || ace.Sid.GetNameUse().Equals(SID_NAME_USE.SidTypeWellKnownGroup)) && ace.Type.Equals(AceType.ACCESS_ALLOWED_ACE_TYPE))
                              if (ace.Sid.AccountName.ToUpper().Equals(EVERYONE_GROUP_NAME))
                                   Log("[EVERYONE GROUP ADDED] " + fileLoc + " - group:" + groups.ToString() + " - domain:" + ace.Sid.DomainName + ";account:" + ace.Sid.AccountName + ", NameUse:" + ace.Sid.GetNameUse().ToString());
                              //return new ACLEntry[]{new ACLEntry(secDesc.Group.DomainName, EVERYONE_GROUP_NAME)};
                              al.Add(new ACLEntry(secDesc.Group.DomainName, EVERYONE_GROUP_NAME));
                              else
                              Log("[GROUP ADDED] " + fileLoc + " - group:" + groups.ToString() + " - domain:" + ace.Sid.DomainName + ";account:" + ace.Sid.AccountName + ", NameUse:" + ace.Sid.GetNameUse().ToString());
                                   al.Add(new ACLEntry(ace.Sid.DomainName, ace.Sid.AccountName));
                         else
                              Log("[GROUP NOT ADDED] " + fileLoc + " - group:" + groups.ToString() + " - domain:" + secDesc.Group.DomainName + ";account:" + ace.Sid.AccountName + ", NameUse:" + ace.Sid.GetNameUse().ToString());
                    else
                    if (ace.Sid.GetNameUse().Equals(SID_NAME_USE.SidTypeUser) && ace.Type.Equals(AceType.ACCESS_ALLOWED_ACE_TYPE))
                         Log("[USER ADDED] " + fileLoc + " - group:" + groups.ToString() + " - domain:" + ace.Sid.DomainName +
                                             ";account:" + ace.Sid.AccountName + ", NameUse:" + ace.Sid.GetNameUse().ToString());
                         al.Add(new ACLEntry(ace.Sid.DomainName, ace.Sid.AccountName));
                    else
                         Log("[USER NOT ADDED] " + fileLoc + " - group:" + groups.ToString() + " - domain:" + ace.Sid.DomainName + ";account:" + ace.Sid.AccountName + ", NameUse:" + ace.Sid.GetNameUse().ToString());
          else
               Log("[NOT VALID] " + fileLoc + " - " + ace.Sid.AccountName);
catch (Exception ex)
     logger.Error("[****ERROR ENCOUNTERED****] GetAclEntries(" + fileLoc + "," + groups + ")", ex);
return (ACLEntry[]) al.ToArray(typeof (ACLEntry));
}

Okay, so I ended up downloading a project that used win32security.dll and used that DLL which got the function/class to compile.
Now in the CWSUtilities class, there are EncryptString and DecryptString functions that require use of the PTCipherUtilityClass found in com.plumtree.utility. Again, I can not find this DLL/library so that I can compile. I found an old community forum posting of someone having the same issue. So I'd like to re-open this issue and see if anyone out there has a solution. Here is the old posting:
http://209.85.173.132/search?q=cache:m4GJbr7ezPoJ:forums.bea.com/message.jspa%3FmessageID%3D500017506%26+NTCWS&hl=en&ct=clnk&cd=3&gl=ca
Here is the EntryptString function:
public static string EncryptString(string val, string key)
     Log("[FUNCN] public static string EncryptString(string val, string key)");
     PTCipherUtilityClass cipher = new PTCipherUtilityClass();
     string output = cipher.Encrypt(val, key);
     return output;
Where and How can I use com.plumtree.utility so that I can access PTCipherUtilityClass?

Similar Messages

  • Error in attaching to container node - The code returned was 404

    I have a customer who has messed with their NTCWS and I'm trying to resurect it.
    I've been able to setup the correct Remote Server, Crawler Web Service (.NET CWS etc), Data Source - Remote (.NET CWS Data Source), Crawler and Job etc., but the job always fails.
    Here is the job log output:
    12/13/04 16:33:49- Starting to run operations (1 total) for job 'Neil Test NTCWS Job'. Will stop on errors. (PID=6248)12/13/04 16:33:50- *** Job Operation #1 of 1: Crawler 'Neil Test NTCWS Crawler' [Run as owner 'Neil Gidley']12/13/04 16:33:50- Starting Crawler "Neil Test NTCWS Crawler" at 12/13/2004 4:33:50 PM.12/13/04 16:33:50- Crawler starting from scratch: Neil Test NTCWS Crawler12/13/04 16:33:50- Error in attaching to container node Crawler Start Node to get child documents and containers: IDispatch error #19880 (0x80044fa8): [The SOAP Connection stopped executing method urn:plumtree-com:ContainerProvider.Initialize after 1 attempt(s).  Last error: The SOAP Connection has recieved an HTTP error while executing during connection attempt 1 of method urn:plumtree-com:ContainerProvider.Initialize!.  The code returned was 404.]12/13/04 16:33:50- Crawler has experienced a fatal error (Could not attach provider to start node, crawl cannot proceed.), shutting down.12/13/04 16:33:50- Bulk import completed, resulting in the successful storage of 0 new cards.12/13/04 16:33:50- Could not attach provider to start node, crawl cannot proceed.12/13/04 16:33:50- *** Job Operation #1 failed: Could not attach provider to start node, crawl cannot proceed. (0x4)12/13/04 16:33:50- Done with job operations.12/13/04 16:33:50- Could not attach provider to start node, crawl cannot proceed.
    Any ideas why I'd be receiving a 404 and causing the Job to Fail? The target crawl location is local to the portal itself - it is all installed on the same machine and the files we're trying to crawl are on the same machine.
    i've created a share with read/write etc access by Everyone. The Data Source - Remote is using my domain/name account which has Logon As Batch abilities etc...and should be able to crawl these files.

    My tcptrace says 'invalid hostname'.
    I assume that is the hostname of the target given in the Crawler object of where it is trying to attach and not the hostname of the Remote Server where the NTCWS code resides in the CWS Web Service.
    I've tried the following values:
    \\CESRVPP01.eugene1.net\Neil
    \\cesrvpp01\Neil
    \\10.10.34.41\Neil
    Here's the full tcpTrace output:
    POST /ntcws/ContainerProviderSoapBinding.asmx HTTP/1.1Host: ceppdportal:9999Cache-Control: no-cachePragma: no-cacheSOAPAction: "urn:plumtree-com:ContainerProvider.Initialize"Content-Type: text/xml; charset="UTF-8"User-Agent: Mozilla/4.0 (compatible; MSIE 6.0 compatible; Plumtree 4.0; Windows NT)Accept: */*Accept-Encoding: gzipConnection: Keep-AliveContent-Length: 000002692
    <?xml version='1.0' encoding='UTF-8'?><SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <SOAP-ENV:Body > <Initialize xmlns="urn:plumtree-com:ContainerProvider"> <DataSourceInfo > <NamedValue xmlns="http://www.plumtree.com/xmlschemas/xui/"> <name >PTC_MAX_FILE</name> <value >50000000</value> </NamedValue> <NamedValue xmlns="http://www.plumtree.com/xmlschemas/xui/"> <name >PTC_SOAP_USE</name> <value >LOCAL</value> </NamedValue> <NamedValue xmlns="http://www.plumtree.com/xmlschemas/xui/"> <name >PTC_SOAP_OPEN</name> <value >URL</value> </NamedValue> <NamedValue xmlns="http://www.plumtree.com/xmlschemas/xui/"> <name >PTC_FILE_PASS</name> <value >PUilp4ElTOdKWHrhA09aGhkjQ==</value> </NamedValue> <NamedValue xmlns="http://www.plumtree.com/xmlschemas/xui/"> <name >PTC_PBAGFORMAT</name> <value >1000</value> </NamedValue> <NamedValue xmlns="http://www.plumtree.com/xmlschemas/xui/"> <name >PTC_GATEWAY</name> <value >0</value> </NamedValue> <NamedValue xmlns="http://www.plumtree.com/xmlschemas/xui/"> <name >CSP-SESSION-TOKEN</name> <value >2498|1103050835|4QWhsGW/5APMi1aPx7R9arhbOdI=</value> </NamedValue> <NamedValue xmlns="http://www.plumtree.com/xmlschemas/xui/"> <name >PTC_FILE_USER</name> <value >CEDOM100\cedxnpg</value> </NamedValue> </DataSourceInfo> <CrawlInfo > <NamedValue xmlns="http://www.plumtree.com/xmlschemas/xui/"> <name >PTC_CRAWL_DEPTH</name> <value >1</value> </NamedValue> <NamedValue xmlns="http://www.plumtree.com/xmlschemas/xui/"> <name >PTC_FOLDER_NAME</name> <value >Neil</value> </NamedValue> <NamedValue xmlns="http://www.plumtree.com/xmlschemas/xui/"> <name >PTC_CDLANG</name> <value >en</value> </NamedValue> <NamedValue xmlns="http://www.plumtree.com/xmlschemas/xui/"> <name >PTC_PBAGFORMAT</name> <value >3000</value> </NamedValue> <NamedValue xmlns="http://www.plumtree.com/xmlschemas/xui/"> <name >PTC_UNIQUE</name> <value >\\CESRVPP01.eugene1.net\Neil</value> </NamedValue> </CrawlInfo> </Initialize> </SOAP-ENV:Body></SOAP-ENV:Envelope>--------------------------HTTP/1.1 400 Bad RequestContent-Type: text/htmlDate: Tue, 14 Dec 2004 18:55:38 GMTConnection: closeContent-Length: 39
    <h1>Bad Request (Invalid Hostname)</h1>

  • Modified NT CWS - Gateway Issue

    I am attempting to build a modified NT CWS for a special situation I have. I have a series of HTML documents, stored in a root folder. Several of these documents contain hyperlinks to other files that are stored in a sub-folder of the HTML documents.
    The problem is, once all of these HTML documents, folders, and other files are crawled using a mirrored NT crawl, the links no longer work. The links are trying to access the internal server directly instead of going through the gateway.
    I have made a copy of the out-of-the-box NT CWS and have changed the web.config file to use the gateway. I have added the base gateway url to the web service settings, but the link in the HTML documents is still not being changed upon crawl.
    I have deleted all of the documents from the knowledge directory and have cleared the crawler deletion history to make sure I am not looking at old data, but the links are always absolute urls to the internal server and never use the gateway?
    Any suggestions as to where to look?
    Thanks-- Jeff

    Is your new Data Source registered to "gateway documents"?
    Are the URLs returned from your CWS inside the gateway space of the Web Service registration?

  • Cannot run CWS Cralwer Job

    Hi,
    We are trying to run a CWS NT File Crawler to remotely crawl files in. However, we got the following error in the job history:
    Error in attaching to container node Crawler Start Node to get child documents and containers: IDispatch error #19880 (0x80044fa8): [The SOAP Connection stopped executing method urn:plumtree-com:ContainerProvider.Initialize after 1 attempt(s). Last error: The SOAP Connection timed out while communicating with the server during attempt 1.]
    While on the PTSpy I got this warning when I run the crawler
    AddrResolver::HostAddrData::InitCallback() - Unable to resolve "blah". GetLastError() = 122
    AddrResolver::GetHost("blah") - Can't resolve name to IP address!
    However, I can access blah through the internet and could ping it.
    We've been having SSL problems but solved by installing certificates. I just wonder if anybody have the same problem before and able to solve it?
    Thanks,
    Joshua

    How do you install certificates?
    We are using in internal CA and I am getting the following error message:
    2696 07-26 12:53:12 Error WebDownloaderParallel.dll 1220 2752 SSLChannel.cpp(634) Fatal error establishing secure channel on socket 2071 Status = 0x80090325 (The certificate chain was issued by an authority that is not trusted.
    Thanks
    Wolfgang

  • CWS not creating folders/subfolders in Plumtree

    Hi,
    We are in the process of developing CWS for LiveLink using EDK 5.0.2. We would like the crawler to be able to mirror Livelink's folder structure in Plumtree. But I believe due to Issue #21434 , the crawler cannot programmatically create the folder /sub-folders. We are able to crawl the documents that are in the folders/subfolders.Is there a programmatic work-around for this ?
    Thanks in advance.
    Mihir

    It's unnecessary to call back to the portal API for any of this information, and undesirable since it is relatively inefficient.
    First regarding mirroring: you should simply have each instance of you IContainer objects return the array of immediate child objects. Then, the portal user simply needs to select "mirror folder hierarchy" and the portal will automatically mirror your underlying folder structure.
    Secondly, regarding knowing the parent when getChildContainers is called: If you step back and look at how IContainerProvider and IContainer work together, this is easy:
    The portal will call IContainerProvider.AttachToContainer() for every folder/container, passing in the "containerLocation" of your parent (or current) folder. At this point, you usually will (and probably should) create a new instance of your IContainer class, passing the "containerLocation" on to the initializer method of IContainer. IContainer should save this value in an instance variable inside the object.
    Later on, the portal will call IContainer.getChildContainers() on this instance of IContainer. This method ought to look up the value of the instance variable and then use that to get access to the folder in the backend system. It should then be able to easily get a list of the immediate children of that folder, and return them in the array of ChildContainers.
    I don't know that much about Livelink, but the "containerLocation" will be some value that allows your code to easily look up and get access to the underlying container in the backend system. For example, it may be a path, or an inode number, or some other key like that.
    Anyway, once you understand how this works, you'll see that the portal then (eventually---exactly when and in what order is undefined) calls IContainerProvider.AttachToContainer() for each of the ChildContainers in the array, passing in the same "containerLocation" value as your code returned in the array, and the process continues recursively. (The very first top-level crawl gets its location from the crawler configuration, which is set by the user.)

  • Refreshing the Data from a embed view in a view container

    Hi everybody
    I would like to know how can I do to refresh all data from a View with a view container the problem is:
    that I have a window that has a view at the same time this has a view container.  The Main view brings the data of editable elements when I select one element of the main view the view container brings a list for that element (dependencies) but only the first time a choose an element loads the correct data, when I choose another one it brings the same old data and doesn't make the call for the wdDoInit() method.
    The question is:
    How do I force the view to refresh all the data or call again the wdDoInit() method?
    Thank you for your help

    Aida,
    Lets say you have two components C1 and C2 and you want method from C1 to be available in C2 then follow these steps:-
    1) Goto the Interface Controller of C1 and create a method there lets say doSomething
    2) Then goto C2. There you can see Used Web Dynpro Components --> Right click Add Used Component --> Give some name say C1Comp --> Click browse and select C1 --> Click Finish.
    3) Next goto Component Controller of C2 --> Properties --> Click Add and check if C1 is added. If not then select the checkbox and select OK.
    4) Now goto Implementation tab of C2 and lets say wdDoInit you can write following code:-
    wdThis.wdGetC1CompInterface().doSomething();
    Chintan

  • How to get the values from a html form embedded in a swing container

    Hi all,
    I am developing an application in which i have to read a html file and display it in a swing container.That task i made it with the help of a tool.But now i want to get the values from that page.ie when the submit button is clicked all the values of that form should be retrived by a servlet/standalone application.I don't know how to proceed further.Any help in this regard will be very greatful
    Thanks in advance,
    Prakash

    By parsing the HTML.

  • Which type of invoices does RKBP contains?

    Hello all,
    I have report all Vendor Invoices(open/closed).
    I know that tables RKBP and RSEG tables can  be used for this. I have to retrive based on posting only.
    Can anyone tell me does this tables contain both type of invoices?
    i have few more queries.
    Can anyone explain me wht is parked, complete and parket&complete invoice/doc types.
    thanks

    Hello,
    In table field RBKP-RBSTAT has all the statuses you are looking for.
    Parked:  Information required to post the invoice document is still missing and you do not want to have to re-enter the data entered so far. The balance is not zero.
    Parked and completed: No more changes should be made to the invoice document.
    The balance is zero. The invoice document is flagged for posting but is not to be posted yet.
    Thanks,
    Venu

  • Unable to load the project. latter is probably damaged or contain outdated elements

    any one can help me with this probleme

    Hi,
    I am the one with the problem wich kaderdz exposed. Sorry for my English writing, my first language is French!
    I still have the same problem and some of my projects won't open (months of work...).
    The few projects that opens are kind of weird : only one chanel work in the audio, and the "title" window has also change. Here are some screen shots of what happens :
    message 1:
    message 2 - translation : impossible to charge the project. It is damage or contain obsolet elements :
    message 3 :
    title window :
    I would be so grateful if you can solve the problem. It's a lot of work!!

  • Firefox 21.0 crashes I attempt to open a page containing video

    When ever I open any page containing a video, such as any youtube page my browser immediately closes and presents me with a crash report I believe this started happening after a firefox or adobe update a few weeks ago. The problem continues when Im in safe mode and Ive tried many suggested fixes including updating flash, reinstalling firefox, disabling hardware acceleration, checking for conflicting realplayer, editing my the flash cfg file, and so on but non of those had any effect and It's sad cause I know from looking though these forums and elsewhere that others are having the exact same problem and these solution aren't working for anyone.
    I couldn't find any answers to the problem so I reverted to firefox 20.1 decided to wait for next update, as there seems to be a flash update a couple weeks. Somehow I ended up back on FF21.0 and so Im here again asking the same question before I re-revert. So here are the details again.
    Im Post my reports and spec like this because non of these options; "automatically" "try these manual steps" or "Show details" work for me in my outdated IE which is the only working browser I have atm. The first report shows results with addons enabled and all my usual settings the second show results with in safe mode. As you can see the two are the same for the most part
    The report: With addons enabled
    AdapterDeviceID: 0x6719
    AdapterVendorID: 0x1002
    Add-ons: yesscript%40userstyles.org:1.9,optout%40google.com:1.5,foxyproxy%40eric.h.jung:4.2,adblockpopups%40jessehakanen.net:0.7,%7B73a6fe31-595d-460b-a920-fcc0f8843232%7D:2.6.6.2,%7B972ce4c6-7e08-4474-a285-3208198ce6fd%7D:21.0
    AvailablePageFile: 4682809344
    AvailablePhysicalMemory: 1420525568
    AvailableVirtualMemory: 3792789504
    BuildID: 20130511120803
    CrashTime: 1370577662
    EMCheckCompatibility: true
    Email:
    FramePoisonBase: 00000000f0de0000
    FramePoisonSize: 65536
    InstallTime: 1369263628
    Notes: AdapterVendorID: 0x1002, AdapterDeviceID: 0x6719, AdapterSubsysID: 24611462, AdapterDriverVersion: 9.12.0.0
    D2D? D2D+ DWrite? DWrite+ D3D10 Layers? D3D10 Layers+
    ProductID: {ec8030f7-c20a-464f-9b0e-13a3a9e97384}
    ProductName: Firefox
    ReleaseChannel: release
    SecondsSinceLastCrash: 1109
    StartupTime: 1370577654
    SystemMemoryUsePercentage: 62
    Theme: classic/1.0
    Throttleable: 1
    TotalVirtualMemory: 4294836224
    URL: https://plus.google.com/u/0/_/notifications/frame?origin=http%3A%2F%2Fwww.youtube.com&source=yt&hl=en-US&jsh=m%3B%2F_%2Fscs%2Fabc-static%2F_%2Fjs%2Fk%3Dgapi.gapi.en.YwZcwvhQD7M.O%2Fm%3D__features__%2Fam%3DIA%2Frt%3Dj%2Fd%3D1%2Frs%3DAItRSTNqkRhMtkpSA0AbmH0iColYw_JJwg#pid=36&rpctoken=387582488&_methods=setNotificationWidgetSize%2CsetNotificationWidgetHeight%2CsetNotificationText%2ChideNotificationWidget%2CopenSharebox%2ConError%2C_ready%2C_close%2C_open%2C_resizeMe%2C_renderstart&id=I1_1370577662087&parent=http%3A%2F%2Fwww.youtube.com
    Vendor: Mozilla
    Version: 21.0
    Winsock_LSP: MSAFD Tcpip [TCP/IP] : 2 : 1 : %SystemRoot%\system32\mswsock.dll
    MSAFD Tcpip [UDP/IP] : 2 : 2 :
    MSAFD Tcpip [RAW/IP] : 2 : 3 : %SystemRoot%\system32\mswsock.dll
    MSAFD Tcpip [TCP/IPv6] : 2 : 1 :
    MSAFD Tcpip [UDP/IPv6] : 2 : 2 : %SystemRoot%\system32\mswsock.dll
    MSAFD Tcpip [RAW/IPv6] : 2 : 3 :
    RSVP TCPv6 Service Provider : 2 : 1 : %SystemRoot%\system32\mswsock.dll
    RSVP TCP Service Provider : 2 : 1 :
    RSVP UDPv6 Service Provider : 2 : 2 : %SystemRoot%\system32\mswsock.dll
    RSVP UDP Service Provider : 2 : 2 :
    This report also contains technical information about the state of the application when it crashed.
    (Im Post my reports and spec like this because non of these options; "automatically" "try these manual steps" or "Show details" work for me in my outdated IE which is the only working browser I have atm)
    AdapterDeviceID: 0x6719
    AdapterVendorID: 0x1002
    AvailablePageFile: 4607332352
    AvailablePhysicalMemory: 1334870016
    AvailableVirtualMemory: 3936632832
    BuildID: 20130511120803
    CrashTime: 1370580940
    EMCheckCompatibility: true
    Email: [email protected]
    FramePoisonBase: 00000000f0de0000
    FramePoisonSize: 65536
    InstallTime: 1369263628
    Notes: AdapterVendorID: 0x1002, AdapterDeviceID: 0x6719, AdapterSubsysID: 24611462, AdapterDriverVersion: 9.12.0.0
    ProductID: {ec8030f7-c20a-464f-9b0e-13a3a9e97384}
    ProductName: Firefox
    ReleaseChannel: release
    SecondsSinceLastCrash: 290
    StartupTime: 1370580845
    SystemMemoryUsePercentage: 64
    Theme: classic/1.0
    Throttleable: 1
    TotalVirtualMemory: 4294836224
    URL: https://www.youtube.com/watch?v=saKv2djbQ5s
    Vendor: Mozilla
    Version: 21.0
    Winsock_LSP: MSAFD Tcpip [TCP/IP] : 2 : 1 : %SystemRoot%\system32\mswsock.dll
    MSAFD Tcpip [UDP/IP] : 2 : 2 :
    MSAFD Tcpip [RAW/IP] : 2 : 3 : %SystemRoot%\system32\mswsock.dll
    MSAFD Tcpip [TCP/IPv6] : 2 : 1 :
    MSAFD Tcpip [UDP/IPv6] : 2 : 2 : %SystemRoot%\system32\mswsock.dll
    MSAFD Tcpip [RAW/IPv6] : 2 : 3 :
    RSVP TCPv6 Service Provider : 2 : 1 : %SystemRoot%\system32\mswsock.dll
    RSVP TCP Service Provider : 2 : 1 :
    RSVP UDPv6 Service Provider : 2 : 2 : %SystemRoot%\system32\mswsock.dll
    RSVP UDP Service Provider : 2 : 2 :
    This report also contains technical information about the state of the application when it crashed.
    My specs:
    Firefox ver. 21.0
    Flashplayer 11.7.700.202
    OS Windows 7 Professional (x64)
    Version 6.1.7601 Service Pack 1 Build 7601
    Mobo BIOSTAR Group / TZ77XE3
    System Type x64-based PC
    Processor Intel(R) Core(TM) i5-3570K CPU @ 3.40GHz, 3401 Mhz, 4 Core(s), 4 Logical Processor(s)
    BIOS Version/Date American Megatrends Inc. 4.6.5, 4/19/2012
    SMBIOS Version 2.7
    Windows Directory C:\Windows
    System Directory C:\Windows\system32
    Boot Device \Device\HarddiskVolume1
    Hardware Abstraction Layer Version = "6.1.7601.17514"
    Installed Physical Memory (RAM) 8.00 GB
    Total Physical Memory 3.48 GB
    Available Physical Memory 1.41 GB
    Total Virtual Memory 6.96 GB
    Available Virtual Memory 4.46 GB
    Page File Space 3.48 GB

    You probably have not seen anyone reporting the exact same problem as you. All three crash reports have the same crash signature and as currently ranked 67 it is not the commonest of reasons for a crash.
    I hope you enter your email contact information when reporting crashes. I note you see this crash when using videos, others may possibly see this crash in other circumstances.
    You have already tried the obvious, attempts at a fix so it is now down to wait and see, maybe developers working on the bug will report something or fix it.
    Did you try my suggestion of installing portable ESR ?
    For forum cross referencing purposes
    * Crash Reports for Crash IDs <br />bp-71697f5d-41d4-48ae-9db9-3e6302130607<br /> bp-6e1347bc-153f-433a-9c35-a5f022130607<br /> bp-92a533a2-9e09-4c1e-8df7-deb4c2130607
    *(all three) Crash Signature: EnumSoftwareMFTs(_GUID const&, unsigned int, __MIDL___MIDL_itf_mfobjects_0000_0006_0003 const*, __MIDL___MIDL_itf_mfobjects_0000_0006_0003 const*, IMFActivate***, unsigned int*)
    * Related bug 858667 NEW crash in mozilla::wmf::MFTEnumEx @ EnumSoftwareMFTs
    *I note this was first seen in Fx21 and is 100% Windows 7
    <br />

  • Mozalloc.dll A firefox plug in container has stopped working. I can't get firefox to work for more than 2 mins. before crashing. How do I make this stop?

    AdapterDeviceID: 0x9712
    AdapterDriverVersion: 8.861.1.2000
    AdapterSubsysID: 164c103c
    AdapterVendorID: 0x1002
    Add-ons: %7B972ce4c6-7e08-4474-a285-3208198ce6fd%7D:33.1.1
    AvailablePageFile: 13967405056
    AvailablePhysicalMemory: 6222434304
    AvailableVirtualMemory: 3783245824
    BIOS_Manufacturer: Hewlett-Packard
    BlockedDllList:
    BreakpadReserveAddress: 46661632
    BreakpadReserveSize: 41943040
    BuildID: 20141113143407
    CrashTime: 1417153956
    EMCheckCompatibility: true
    EventLoopNestingLevel: 1
    FramePoisonBase: 00000000f0de0000
    FramePoisonSize: 65536
    InstallTime: 1416895140
    Notes: AdapterVendorID: 0x1002, AdapterDeviceID: 0x9712, AdapterSubsysID: 164c103c, AdapterDriverVersion: 8.861.1.2000
    D2D? D2D+ DWrite? DWrite+ D3D11 Layers? D3D11 Layers+
    ProductID: {ec8030f7-c20a-464f-9b0e-13a3a9e97384}
    ProductName: Firefox
    ReleaseChannel: release
    SecondsSinceLastCrash: 175
    StartupTime: 1417153798
    SystemMemoryUsePercentage: 25
    Theme: classic/1.0
    Throttleable: 1
    TotalPageFile: 16630353920
    TotalPhysicalMemory: 8316153856
    TotalVirtualMemory: 4294836224
    URL: https://support.mozilla.org/en-US/questions/new/desktop/fix-problems/form?search=mozalloc.dll&step=aaq-question
    Vendor: Mozilla
    Version: 33.1.1
    Winsock_LSP: MSAFD Tcpip [TCP/IP] : 2 : 1 : %SystemRoot%\system32\mswsock.dll
    MSAFD Tcpip [UDP/IP] : 2 : 2 :
    MSAFD Tcpip [RAW/IP] : 2 : 3 : %SystemRoot%\system32\mswsock.dll
    MSAFD Tcpip [TCP/IPv6] : 2 : 1 :
    MSAFD Tcpip [UDP/IPv6] : 2 : 2 : %SystemRoot%\system32\mswsock.dll
    MSAFD Tcpip [RAW/IPv6] : 2 : 3 :
    RSVP TCPv6 Service Provider : 2 : 1 : %SystemRoot%\system32\mswsock.dll
    RSVP TCP Service Provider : 2 : 1 :
    RSVP UDPv6 Service Provider : 2 : 2 : %SystemRoot%\system32\mswsock.dll
    RSVP UDP Service Provider : 2 : 2 :
    useragent_locale: en-US
    This report also contains technical information about the state of the application when it crashed.
    AND:
    A plugin container for firefox has stopped working.
    Problem signature:
    Problem Event Name: APPCRASH
    Application Name: plugin-container.exe
    Application Version: 33.1.1.5430
    Application Timestamp: 54656826
    Fault Module Name: mozalloc.dll
    Fault Module Version: 33.1.1.5430
    Fault Module Timestamp: 54654321
    Exception Code: 80000003
    Exception Offset: 00001425
    OS Version: 6.1.7600.2.0.0.256.1
    Locale ID: 1033
    Additional Information 1: 0a9e
    Additional Information 2: 0a9e372d3b4ad19135b953a78882e789
    Additional Information 3: 0a9e
    Additional Information 4: 0a9e372d3b4ad19135b953a78882e789
    Read our privacy statement online:
    http://go.microsoft.com/fwlink/?linkid=104288&clcid=0x0409

    Try creating a new Profile by following the steps from [[Managing Profiles]] [[Troubleshooting extensions and themes]] and also [[The Adobe Flash plugin has crashed]]

  • ? Office 2013 to support Excel 2003 (XLS) spreadsheets containing VBA CommandBars references

    Thanks in advance for reading this and offering any wisdom you have! I am not an expert in any of the following, so apologies if off base.
    The basic problem is: I need to use Excel 2013 to support Excel 2003 (XLS) spreadsheets containing VBA 'CommandBars' references which don't seem to work in Excel 2013. Details below.
    Most of our users are still using older desktop windows PCs and Office 2003!  We are beginning to upgrade to laptops running Windows 8.1 with Office 2013.  Of course, we IT technical people are using the new laptops first. These new laptops are
    64 bit.
    Years ago, someone did a lot of development with spreadsheets here in Excel 2003 file formats that automates many activities and routines. Now we with the new laptops are having to support this development using new machines.
    There is a basic compatibility issue that appears when first opening these Excel 2003 files that have VBA code that I'll detail below; I seem able to get by that problem.
    The current problem appears to be that the existing Excel 2003 VBA code has many references to: "For Each bar In Application.CommandBars". As I've learned, the Application.CommandBars VBA functionality is focused on older MS Office versions' menu
    commands, but "...Starting from Office 2007 the Fluent UI is used instead."  In other words, because MS Office isn't menu-driven beginning with version 2007 (uses 'the ribbon'), it appears that these references to: "For Each bar In Application.CommandBars"
    create a basic incompatibility to opening these spreadsheets in Office 2013.
    For a spreadsheet, after I resolve the issue detailed below and save it, when I reopen it I encounter error "Compile error: can't find project or library." 
    For example, the following code snippet:
    Private Sub Workbook_Open()
    For Each bar In Application.CommandBars
            bar.Enabled = False
        Next
    results in: "Compile error: can't find project or library." 
    (Sorry, can't include images yet, I am not a VERIFIED USER of this forum yet.)
    I went into VBE's menu: Tools>References and check for anything marked MISSING, which I deselected. But I am still receiving this error.
    I don't want to get into changing the code a lot to support both Excel 2003 and 2013 (I am no VBA expert, just a dabbler).
    And Microsoft officially says that Office 2003 is incompatible with Windows 8 although Application.CommandBars seem to be somewhat supported in Office 2013 .
    Are you aware of a quick VBA workaround to get by this?
    •I could comment out the validations, commands for: "For Each bar In Application.CommandBars" but then the spreadsheet code probably won't work for users using Office 2003.
    Alternatives would be:
    •Installing Office 2003 on my Win 8.1 64 bit laptop anyway, in spite of MS's saying incompatible, since this thread discusses at least one person has been able to use Office 2003
    •Keeping one older PC with Office 2003 on it for us to support the old Office 2003 code until everyone upgrades their systems
    Thanks
    Basic compatibility issue that seems solvable:
    Opening these spreadsheets displays this error:
    Compile error:
    The code in this project must be updated for use on 64-bit systems.
    Please review and update Declare statements and then mark them with the PtrSafe attribute.
    This seems resolvable by going into the VBA code and just adding element 'PtrSafe' where functions are declared; in other words, replacing VBA code "Declare Function" with "Declare PtrSafe Function" seems to get by this.

    Hi Allan_L,
    Please try the methods that provided above. And this is the forum to discuss questions and feedback for Microsoft Excel, your issue is related to Excel DEV, if you have further question, I recommend you post the question to the MSDN forum for Excel
    http://social.msdn.microsoft.com/Forums/en-US/home?forum=exceldev&filter=alltypes&sort=lastpostdesc
    The reason why we recommend posting appropriately is you will get the most qualified pool of respondents, and other partners who read the forums regularly can either share their knowledge or learn from your interaction with us. Thank you for your understanding.
    George Zhao
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • Multiple plugtmp-1 plugtmp-2 etc. in local\temp folder stay , crossdomain.xml and other files containing visited websitenames created while private browsing

    OS = Windows 7
    When I visit a site like youtube whith private browsing enabled and with the add-on named "shockwave flash" in firefox add-on list installed and activate the flashplayer by going to a video the following files are created in the folder C:\Users\MyUserName\AppData\Local\Temp\plugtmp-1
    plugin-crossdomain.xml
    plugin-strings-nl_NL-vflLqJ7vu.xlb
    The contents of plugin-crossdomain contain both the "youtube.com" adress as "s.ytimg.com" and is as follows:
    <?xml version="1.0"?>
    <!DOCTYPE cross-domain-policy SYSTEM "http://www.macromedia.com/xml/dtds/cross-domain-policy.dtd">
    -<cross-domain-policy> <allow-access-from domain="s.ytimg.com"/> <allow-access-from domain="*.youtube.com"/> </cross-domain-policy>
    The contents of the other file I will spare you cause I think those are less common when I visit other sites but I certainly don't trust the file. The crossdomain.xml I see when I visit most other flashpayer sites as well.
    I've also noticed multiple plugin-crossdomain-1.xml and onwards in numbers, I just clicked a youtube video to test, got 6 of them in my temp plus a file named "plugin-read2" (no more NL file cause I changed my country, don't know how youtube knows where I'm from, but that's another subject, don't like that either). I just noticed one with a different code:
    <?xml version="1.0"?>
    -<cross-domain-policy> <allow-access-from domain="*"/> </cross-domain-policy>
    So I guess this one comprimises my browsing history a bit less since it doesn't contain a webadress. If these files are even meant to be deposited in my local\temp folder. The bigger problem occurs when they stay there even after using private browsing, after clearing history, after clearing internet temporary files, cache, whatever you can think of. Which they do in my case, got more than 50 plugtmp-# folders in the previous mentioned local\temp folder containing all website names I visited in the last months. There are a variety of files in them, mostly ASP and XML, some just say file. I have yet to witness such a duplicate folder creation since I started checking my temp (perhaps when firefox crashes? I'd say I've had about 50 crashes in recent months).
    I started checking my temp because of the following Microsoft Security Essential warnings I received on 23-4-12:
    Exploit:Java/CVE-2010-0840.HE
    containerfile:C:\Users\Username\AppData\Local\Temp\jar_cache2196625541034777730.tmp
    file:C:\Users\Username\AppData\Local\Temp\jar_cache2196625541034777730.tmp->pong/reversi.class
    and...
    Exploit:Java/CVE-2008-5353.ZT
    containerfile:C:\Users\Noname\AppData\Local\Temp\jar_cache1028270176376464057.tmp
    file:C:\Users\Noname\AppData\Local\Temp\jar_cache1028270176376464057.tmp->Testability.class
    Microsoft Security Essentials informed me that these files were quarantained and deleted but when going to my temp file they were still there, I deleted them manually and began the great quest of finding out what the multiple gigabytes of other files and folders were doing in that temp folder and not being deleted with the usual clearing options within firefox (and IE).
    Note that I have set my adobe flasplayer settings to the most private intense I could think of while doing these tests (don't allow data storage for all websites, disable peer-to peer stuff, don't remember exactly anymore, etc.). I found it highly suspicious that i needed to change these settings online on an adobe website, is that correct? When right-clicking a video only limited privacy options are available which is why I tried the website thing.
    After the inital discovery of the java exploit (which was discovered by MSE shortly after I installed and started my first scan with Malwarebytes, which in turn made me suspicious whether I had even downloaded the right malwarebytes, but no indication in the filename if I google it). Malwarebytes found nothing, MSE found nothing after it said it removed the files, yet it didn't remove them, manually scanning these jar_cache files with both malwarevytes and MSE resulted in nothing. Just to be sure, I deleted them anyways like I said earlier. No new jar_cache files have been created, no exploits detected since then. CCleaner has cleaned most of my temp folder, I did the rest, am blocking all cookies (except for now shortly), noscript add-on has been running a while on my firefox (V 3.6.26) to block most javascripts except from sites like youtube. I've had almost the same problem using similar manual solutions a couple of months ago, and a couple of months before that (clearing all the multiple tmp folders, removing or renaming jar_cache manually, running various antmalware software, full scan not finding a thing afterwards, installing extra add-ons to increase my security, this time it's BetterPrivacy which I found through a mozilla firefox https connection, I hope, which showed me nicely how adobe flash was still storing LSO's even after setting all storage settings to 0 kb and such on the adobe website, enabling private browsing in firefox crushed those little trolls, but still plugtmp trolls are being created, help me crush them please, they confuse me when I'm looking for a real threat but I still want to use flash, IE doesn't need those folders and files, or does it store them somewhere else?).
    I'm sorry for the long story and many questions, hope it doesn't scare you away from helping me fight this. I suspect it's people wanting to belong to the hackergroup Anonymous who are doing this to my system and repeating their tricks (or the virus is still there, but I've done many antivirus scans with different programs so no need to suggest that option to me, they don't find it or I run into it after a while again, so far, have not seen jar_cache show up). Obviously, you may focus on the questions pertaining firefox and plugtmp folders, but if you can help me with any information regarding those exploits I would be extremely grateful, I've read alot but there isn't much specific information for checking where it comes from when all the anti-virus scanners don't detect anything anymore and don't block it incoming. I also have downloaded and installed process monitor but it crashes when I try to run it. The first time I tried to run it it lasted the longest, now it crashes after a few seconds, I just saw the number of events run up to almost a million and lots of cpu usage. When it crashed everything returned back to normal, or at least that's what I'm supposed to think I guess. I'll follow up on that one on their forum, but you can tell me if the program is ligit or not (it has a microsoft digital signature, or the name micosoft is used in that signature).

    update:
    I haven't upgraded my firefox yet because of a "TVU Web Player" plugin that isn't supported in the new firefox and I'm using it occasionally, couldn't find an upgrade for it. Most of my other plugins are upgraded in the green (according to mozilla websitechecker):
    Java(TM) Platform SE 6 U31 (green)
    Shockwave for Director (green - from Adobe I think)
    Shockwave Flash (green - why do I even need 2 of these adobe add-ons? can I remove one? I removed everything else i could find except the reader i think, I found AdobeARM and Adobe Acrobat several versions, very confusing with names constantly switching around)
    Java Deployment Toolkit 6.0.310.5 (green, grrr, again a second java, why do they do this stuff, to annoy people who are plagued with java and flash exploits? make it more complicating?)
    Adobe Acrobat (green, great, it's still there, well I guess this is the reader then)
    TVU Web Player for FireFox (grey - mentioned it already)
    Silverlight Plug-In (yellow - hardly use it, I think, unless it's automatic without my knowing, perhaps I watched one stream with it once, I'd like to remove it, but just in case I need it, don't remember why I didn't update, perhaps a conflict, perhaps because I don't use it, or it didn't report a threat like java and doesn't create unwantend and history compromising temp files)
    Google Update (grey - can I remove? what will i lose? don't remember installing it, and if I didn't, why didn't firefox block it?)
    Veetle TV Core (grey)
    Veetle TV Player (grey - using this for watching streams on veetle.com, probably needs the Core, deleted the broadcaster that was there earlier, never chose to install that, can't firefox regulate that when installing different components? or did i just miss that option and assumed I needed when I was installing veetle add-on?)
    Well, that's the list i get when checking on your site, when i use my own browseroptions to check add-ons I get a slightly different and longer list including a few I have already turned off (which also doesn't seem very secure to me, what's the point in using your site then for anything other than updates?), here are the differences in MY list:
    I can see 2 versions of Java(TM) Platform SE 6 U31, (thanks firefox for not being able to copy-paste this)
    one "Classic Java plug-in for Netscape and Mozilla"
    the other is "next generation plug-in for Mozilla browsers".
    I think I'll just turn off the Netscape and Mozilla one, don't trust it, why would I need 2? There I did it, no crashes, screw java :P
    There's also a Mozilla Default plugin listed there, why does firefox list it there without any further information whether I need it or not or whether it really originates from Mozilla firefox? It doesn't even show up when I use your website plugin checker, so is there no easy way by watching this list for me to determin I can skip worrying about it?
    There's also some old ones that I recently deactivated still listed like windows live photo gallery, never remember adding that one either or needing it for anything and as usual, right-clicking and "visit homepage" is greyed out, just as it is for the many java crap add-ons I encountered so far.
    Doing a quick check, the only homepage I can visit is the veetle one. The rest are greyed out. I also have several "Java Console" in my extentions tab, I deactivated all but the one with the highest number. Still no Java Console visible though, even after going to start/search "java", clicking java file and changing the settings there to "show" console instead of "hide" (can't remember exact details).
    There's some other extentions from noscript, TVU webplayer again, ADblock Plus and now also BetterPrivacy (sidenote, a default.LSO remains after cleanup correct? How do I know that one isn't doing anything nasty if it's code has been changed or is being changed? To prevent other LSO's I need to use both private browsing and change all kinds of restrictions online for adobe flashplayer, can anyone say absurd!!! if you think you're infected and want to improve your security? Sorry that rant was against Adobe, but it's really against Anonymous, no offense).

  • How can I load a .xlsx File into a SQL Server Table using a Foreach Loop Container in SSIS?

    I know I've REALLY struggled with this before. I just don't understand why this has to be soooooo difficult.
    I can very easily do a straight Data Pump of a .xlsX File into a SQL Server Table using a normal Excel Connection and a normal Excel Source...simply converting Unicode to DT_STR and then using an OLE DB Destination of the SQL Server Table.
    If I want to make the SSIS Package a little more flexible by allowing multiple .xlsX spreadsheets to be pumped in by using a Foreach Loop Container, the whole SSIS Package seems to go to hell in a hand basket. I simply do the following...
    Put the Data Flow Task within the Foreach Loop Container
    Add the Variable Mapping Variable User::FilePath that I defined as a Variable and a string within the FOreach Loop Container
    I change the Excel Connection and its Expression to be ExcelFilePath ==> @[User::FilePath]
    I then try and change the Excel Source and its Data Access Mode to Table Name or view name variable and provide the Variable Name User::FilePath
    And that's when I run into trouble...
    Exception from HRESULT: 0xC02020E8
    Error at Data Flow Task [Excel Source [56]]:SSIS Error Code DTS_E_OLEDBERROR. An OLE DB error has occured. Error code: 0x80004005.
    Error at Data Flow Task [Excel Source [56]]: Opening a rowset for "...(the EXACT Path and .xlsx File Name)...". Check that the object exists in the database. (And I know it's there!!!)
    I don't understand by adding a Foreach Loop Container to try and make this as efficient as possible has caused such an error unless I'm overlooking something. I have even tried delaying my validations and that doesn't seem to help.
    I have looked hard in Google and even YouTube to try and find a solution for this but for the life of me I cannot seem to find anything on pumping a .xlsX file into SQL Server using a Foreach Loop Container.
    Can ANYONE please help me out here? I'm at the end of my rope trying to get this to work. I think the last time I was in this quandry, trying to pump a .xlsX File into a SQL Server Table using a Foreach Loop Container in SSIS, I actually wrote a C# Script
    to write the contents of the .xlsX File into a .csv File and then Actually used the .csv File to pump the data into a SQL Server Table.
    Thanks for your review and am hoping and praying for a reply and solution.

    Hi ITBobbyP,
    If I understand correctly, you want to load data from multiple sheets in an .xlsx file into a SQL Server table.
    If in this scenario, please refer to the following tips:
    The Foreach Loop container should be configured as shown below:
    Enumerator: Foreach ADO.NET Schema Rowset Enumerator
    Connection String: The OLE DB Connection String for the excel file.
    Schema: Tables.
    In the Variable Mapping, map the variable to Sheet_Name, and change the Index from 0 to 2.
    The connection string for Excel Connection Manager is the original one, we needn’t make any change.
    Change Table Name or View name to the variable Sheet_Name.
    If you want to load data from multiple sheets in multiple .xlsx files into a SQL Server table, please refer to following thread:
    http://stackoverflow.com/questions/7411741/how-to-loop-through-excel-files-and-load-them-into-a-database-using-ssis-package
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • Embed view in view container dynamically

    Hello Experts,
      I have links in my web dynpro ABAP view, when user clicks on a link I need to show another view in view container.  For example I have two links in my view and when user clicks on link1 I need to show VIEW1 to the user in the view container UI element, if user clicks on link2 I need to show VIEW2.  I have written the below code in Link action method.  But it is not working.  Any one can help in this?
      DATA : lo_window_controller TYPE REF TO if_wd_window_controller.
      DATA : lo_view_controller TYPE REF TO if_wd_view_controller.
      DATA : lo_window_rr TYPE REF TO if_wd_rr_window.
      lo_view_controller   = wd_this->wd_get_api( ).
      lo_window_controller = lo_view_controller->get_embedding_window_ctlr( ).
      lo_window_rr         = lo_window_controller->get_window_info( ).
    Embedding view
      lo_window_rr->embed_view( used_view_name     = 'V_EMP_TERMINATION'
                                embedding_position = 'V_ACTION/VCU_CONTAINER'
                                used_component_name = 'ZHR_MSS_APPL' ).
    with best regards
    K. Mohan Reddy

    Hi mohan ,
    You written the code for embedding the view . then you have to creat the navigation link then only you can do navigation
    Look at the sample code for creating the navigation link dynamically
    DATA lo_navi_services TYPE REF TO if_wd_navigation_services_new.
    DATA lo_api_v_main_wf TYPE REF TO if_wd_view_controller.
    DATA lo_navi_services TYPE REF TO if_wd_navigation_services_new.
    DATA lo_view_usage TYPE REF TO if_wd_rr_view_usage.
    DATA lo_window TYPE REF TO if_wd_rr_window.
      lo_api_v_main_wf = wd_this->wd_get_api( ).
      lo_navi_services ?= lo_api_v_main_wf.
      lo_view_usage = lo_api_v_main_wf->get_view_usage( ).
      lo_window = lo_view_usage->get_window( ).
    CONSTANTS lc_target TYPE string VALUE 'VIEW_MAIN_WF/VC_WF'. "viewname /view vontainer name
    *Write the code for getting the view name here
    if view_name is not initial
       TRY.
         lv_window_name = lo_window->get_name( ).
         wd_comp_controller->fire_unactivate_all_pro_event( ).
            wd_this->m_navi_repository_handle = lo_navi_services->do_dynamic_navigation(
                source_window_name        = 'lv_window_name'
                source_vusage_name        = lo_view_usage->name
                source_plug_name          =  'source_out_plug'
             plug_parameters           = lv_plug_parameter
                target_view_name          = lv_view_name
                target_plug_name          = 'FROM_Plug'
             target_embedding_position = lc_target )."lv_target ).
          CATCH cx_wd_runtime_repository INTO lr_error.
        ENDTRY.
    hope thisl piece of code is help full
    regards
    chinnaiya

Maybe you are looking for

  • Automatic Generation of Purchase Order at Goods Receipt

    Hello, I have configured movement type 101 to allow for automatic PO, and performed all of the other necessary configuration, which this forum was very helpful in pointing out. The system is successfully creating the PO in the background as expected.

  • Navigation Issue - popup

    Hi experts,   I have two windows ,one is mainwindow and another one is popup window.   In the main window I have two views,first views action button calls the popup window. On clicking OK from popup i need to display second view of  main window. I in

  • Compression large clip

    Hi everybody, I would like to make a DVD out of a .mov sequence, the size of which is 85 Go (about 4 hours). I understand that compressor can only compress 2 hours and FCP about the same. How can I compress 4 hours ? If I split it in two in FCP and g

  • Dynamic binding problem

    I have a problem, i want to use a extend to arraylist to implement different validation to objects. So i added a method add(Person person), dynamic binding, but it has a incorrect behavior, i think import java.util.ArrayList; import java.util.Collect

  • How to add report engine

    Would any one of you please tell me how to increase the Report engine and Que No Clearly Because i am not familiar with formserver configuration,Very urgent Please....