How to add SaveFileDialog to PowerShell Get-ADUser Export-CSV

Hi,
I am having a bit of difficulties with getting the SaveFileDialog to work when I use the Get-ADUser export-CSV.
Current code:
$handler_Output_Click=
$User = Get-Aduser $textBox1.Text -Properties DisplayName,sAMAccountName,EmailAddress,Mobile,Company,Title,Enabled,LockedOut,Description,Created,Modified,LastLogonDate,AccountExpirationDate,AccountLockoutTime,BadLogonCount,CannotChangePassword,LastBadPasswordAttempt,PasswordLastSet,PasswordExpired,LogonWorkstations,CanonicalName | Select DisplayName,sAMAccountName,EmailAddress,Mobile,Company,Title,Enabled,LockedOut,Description,Created,Modified,LastLogonDate,AccountExpirationDate,AccountLockoutTime,BadLogonCount,CannotChangePassword,LastBadPasswordAttempt,PasswordLastSet,PasswordExpired,LogonWorkstations,CanonicalName | Export-CSV C:\temp\test.csv -NoTypeInformation ';' -encoding utf8
$richTextBox1.Text = "A file 'test.csv' has been created to C:\temp\ based on the user: $($textBox1.Text)"
Here a specific filename is already defined and I have to edit the code each time I want a different filename.
It would be perfect if I could implement the SaveFileDialog box so I have the ability to name the file before saving and possibly even have the option to select the file type (among .CSV and All files).
This it the export/output button itself:
$System_Drawing_Point = New-Object System.Drawing.Point
$System_Drawing_Point.X = 502
$System_Drawing_Point.Y = 38
$Output.Location = $System_Drawing_Point
$Output.Name = "Output"
$System_Drawing_Size = New-Object System.Drawing.Size
$System_Drawing_Size.Height = 23
$System_Drawing_Size.Width = 85
$Output.Size = $System_Drawing_Size
$Output.TabIndex = 2
$Output.Text = "Export as file"
$Output.UseVisualStyleBackColor = $True
$Output.add_Click($handler_Output_Click)
# $form1.AcceptButton = $Output
$Output.DataBindings.DefaultDataSourceUpdateMode = 0
$form1.Controls.Add($Output)
And in the beginning of my script I also have defined the following:
[System.Windows.Forms.Application]::EnableVisualStyles();
[reflection.assembly]::loadwithpartialname("System.Windows.Forms") | Out-Null
[reflection.assembly]::loadwithpartialname("System.Drawing") | Out-Null
[reflection.assembly]::loadwithpartialname("System.Windows.Forms.SaveFileDialog") | Out-Null
And also:
$Output = New-Object System.Windows.Forms.Button
Any ideas how can I implement the SaveFileDialog so when I press the "Export as file" button the PowerShell command "Get-Aduser $textBox1.Text -Properties DisplayName,sAMAc..." is ran and I can choose the file name from a pop-up
dialog box where to save the file and also put a filename? Currently I have to edit the code in order to assign a new file name (or go rename the file from that location).
Thank you in advance,
Henri
EDIT:
I know that the below is the answer to the SaveFileDialog, however I cannot imagine how I could implement it to my script into the "Get-Aduser $textBox1.Text -Properties a,b,c,d | select a,b,c,d | Export-CSV C:\temp\test.csv" cmdlet.
Function Get-SaveFile($initialDirectory)
[System.Reflection.Assembly]::LoadWithPartialName("System.windows.forms") |
Out-Null
$SaveFileDialog = New-Object System.Windows.Forms.SaveFileDialog
$SaveFileDialog.initialDirectory = $initialDirectory
$SaveFileDialog.filter = "All files (*.*)| *.*"
$SaveFileDialog.ShowDialog() | Out-Null
$SaveFileDialog.filename

Just run the dialog before exporting the file.  Why is that a problem?
\_(ツ)_/
It works now! I made some modifications and it works. Thank you very much for the advice.
$handler_Output_Click={
Add-Type -AssemblyName System.Windows.Forms
$SaveAs1 = New-Object System.Windows.Forms.SaveFileDialog
$SaveAs1.Filter = "CSV Files (*.csv)|*.csv|Text Files (*.txt)|*.txt|Excel Worksheet (*.xls)|*.xls|All Files (*.*)|*.*"
$SaveAs1.SupportMultiDottedExtensions = $true;
$SaveAs1.InitialDirectory = "C:\temp\"
if($SaveAs1.ShowDialog() -eq 'Ok'){
$User = Get-Aduser $textBox1.Text -Properties DisplayName,sAMAccountName,EmailAddress,Mobile,Company,Title,Enabled,LockedOut,Description,Created,Modified,LastLogonDate,AccountExpirationDate,AccountLockoutTime,BadLogonCount,CannotChangePassword,LastBadPasswordAttempt,PasswordLastSet,PasswordExpired,LogonWorkstations,CanonicalName | Select DisplayName,sAMAccountName,EmailAddress,Mobile,Company,Title,Enabled,LockedOut,Description,Created,Modified,LastLogonDate,AccountExpirationDate,AccountLockoutTime,BadLogonCount,CannotChangePassword,LastBadPasswordAttempt,PasswordLastSet,PasswordExpired,LogonWorkstations,CanonicalName | Export-CSV $($SaveAs1.filename) -NoTypeInformation ';' -Encoding UTF8
$richTextBox1.Text = "A file $($SaveAs1.filename) has been created based on the user: $($textBox1.Text)"

Similar Messages

  • Get-aduser - Export-CSV -- POWERSHELL

    I need help in getting this command to export the data into a CSV.
    Get-ADUser -Filter * -Properties
    whenCreated | Where-Object {$_.whenCreated -ge ((Get-Date).AddDays(-30)).Date} | FL SamAccountName, Name, DistinguishedName, whenCreated
    | Export-Csv
    c:\scripts\ADCreatedUsers.csv
    When doing this the command does not give me anything close to what I expect.

    Duplicate thread.
    Active thread is here:
    https://social.technet.microsoft.com/Forums/scriptcenter/en-US/15c5347a-4c18-404c-a9f9-0ba48b932384/getaduser-exportcsv-powershell?forum=ITCG
    Don't retire TechNet! -
    (Don't give up yet - 13,085+ strong and growing)

  • How to add a image to header of exporting pdf in devexpress gridview

    hi guys ;
    how to add a image to header of exporting pdf in devexpress gridview content

    Hi Aly14,
    I am not sure what the type of your project was, is it a C# project or an asp.net project?
    If would be helpful if you could share us more information about your issue.
    In addition, I made a research about your issue and I think the links below might be useful to you:
    # ASPxGridView insert an image for Header and Footer sections for pdf export
    https://www.devexpress.com/Support/Center/Question/Details/Q37155
    # Adding an "Export Header" to PDF export in MvcGridView
    https://www.devexpress.com/Support/Center/Question/Details/T141918
    Best Regards,
    Edward
    This response contains a reference to a third party World Wide Web site. Microsoft is providing this information as a convenience to you. Microsoft does not control these sites and has not tested any software or information found on these sites; therefore,
    Microsoft cannot make any representations regarding the quality, safety, or suitability of any software or information found there. There are inherent dangers in the use of any software found on the Internet, and Microsoft cautions you to make sure that you
    completely understand the risk before retrieving any software from the Internet.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click HERE to participate the survey.

  • Get-Mailbox –Server "abc" | Get-MailboxPermission | Export-csv C:\permissions.csv

    I am new to exchange command shell, I need to get a list of all security permissions per mailbox, we have executed the following command:
    get-mailbox -server "removed" | get-mailboxpermission | export-csv c:\permissions.csv
    The command ran ok, and has exported 9 fields, pscomputername, runspaceid, accessrights, deny, inhertiance, user, identity, isinherited, isvalid.
    My question is, which field in the above lists which mailbox the permissions are for? is it the "identity" field?

    Hi,
    Sorry for delayed reply. Did you mean the access rights do not appear correctly in the output CSV file, with the microsoft.exchange.management.recipienttasks.mailboxrights[], instead of the actual mailbox rights?
    If so, I recommend you check the article DareDevil57 provided.
    How to List all Users Who Have Access to Other Exchange Mailboxes
    http://exchangeserverpro.com/list-users-access-exchange-mailboxes/
    Note: Microsoft is providing this information as a convenience to you. The sites are not controlled by Microsoft. Microsoft cannot make any representations regarding the quality, safety, or suitability of any software or information found there. Please make
    sure that you completely understand the risk before retrieving any suggestions from the above link.
    Hope this helps.
    Best regards,
    Belinda
    Belinda Ma
    TechNet Community Support

  • Powershell Get-ADUser returns Computer objects as well ???! How to prevent.

    I ran the following script and got a bunch of computer objects in my csv. How to i Prevent this? I already tried using 
    Where-Object{$_.type
    -eq
    "user"} OR
     -filter{type
    -eq
    "user"}
    script:
    Get-ADUser-Filter*-PropertiessamAccountName,accountExpires,Created,LastLogonTimeStamp,Department,physicalDeliveryOfficeName,employeeID,AccountExpirationDate,Manager|
    Where-Object
    {$_.accountexpirationdate
    -lt$timex}
    |
    select
    Name,samAccountName,@{Name="Timestamp";
    Expression={[DateTime]::FromFileTime($_.lastLogonTimestamp)}},@{n='Date
    Created';e={$_.created}},Department,@{n='Location';e={$_.physicalDeliveryOfficeName}},employeeID,AccountExpirationDate,@{Label='Manager
    sAMAccountName';Expression={(Get-ADUser$_.Manager).sAMAccountName}},@{Label='Manager
    Name';Expression={(Get-ADUser$_.Manager).name}}
    |
    export-csv
    -path$mypath-notypeinformation

    Someone told me the Computer accounts are generic accounts...makes any sense?
    No.
    EDIT: What's the output of this command for one of these computer accounts:
    Get-ADUser ThatComputerAccount | Select *
    Don't retire TechNet! -
    (Don't give up yet - 13,225+ strong and growing)

  • Powershell Get-Aduser

    Trying to write a script that will check whether a few accounts are enabled, locked out, and return the last password reset time.  Any reason why $User.LockedOut or $_.LockedOut will not return a value?
    $Users = "USER1",
    "USER2",
    "USER3"
    ForEach ($User in $Users) {
    Get-ADUser $User -Properties Name,sAMAccountType,Enabled,LockedOut,PasswordLastSet | Select Name,sAMAccountName,Enabled,LockedOut,PasswordLastSet | Out-Null
    # Check if account is Enabled or Disabled
    Write-Host $User.LockedOut

    $User is just a string, in the code you've posted. You're calling Get-ADUser, but not saving the object that it returns anywhere (and in fact, you're piping it to Out-Null.)
    Try this:
    $Users = "USER1",
    "USER2",
    "USER3"
    ForEach ($UserName in $Users) {
    $User = Get-ADUser $UserName -Properties Name,sAMAccountType,Enabled,LockedOut,PasswordLastSet
    # Check if account is Enabled or Disabled
    Write-Host $User.LockedOut

  • How to add a header to an InfoSpoke generated CSV

    Hello everybody,
    I would appreciate any suggestions on how to add a header line (with the field names) to the CSV-file generated by an InfoSpoke.
    Thanks for your help.
    Greetings,
    Martin

    if I recall correctly, that "header line" you're looking for, gets created automatically as a 2nd file... you could use a macro to combine both files in Excel?

  • Powershell get-aduser filter problem

    Powershell'Filter' = {(Enabled -eq $True) -and ((Office -ne "EXCLUDE") -or (Office -notlike '*'))}
    The filter parameter isn't very user friendly.  Try this and see if it is what you want.

    Hello all, I am trying to filter a script I found here from Martin9700to get users from an ad ou. The original line: 'Filter' = {Enabled -eq $True} works and I am trying to add a filter to exclude users that have Office value of EXCLUDE. If I use: 'Filter' = {(Enabled -eq $True) -and (office -eq "EXCLUDE")} then it will get the user that has EXCLUDE but I can't get any negative to work. I have tried -ne, -notlike and several combos of syntax but I really don't understand much of it. Any help would be greatly appreciated! The complete script is below. Thanks!

  • Forms: How to add large text without getting wrapped

    hi Waveset/Sun IDM folks,
    I need to add a large text to the form via a Field at the bottom of the Form. So using Title and SubTitle form properties is not an option.
    When I use Label/Text/TextArea type of Fiels, I see that the text is getting wrapped as if it is a label for a text box or text area or Radio.
    I do not have an option of using Title and SubTitle properties of the Form as the text appears at the middle and bottom of the page. What options do I have?
    My form has :
    SectionHead:
    FirstName: <Text>
    LastName: <Tex>
    Address: <Text Area>
    Contract(Section Head)
    <Large text needs to go here>

    ok, nevermind, Using FieldType-Panel and adding Label fields in it worked out fine for me. Issue closed.

  • Powershell get-ADUser Security

    Hello
    I've got a question, is it possible to get the Securitycontext of an Useraccount (which groups/Users has access to the account and with wihich rights? --> img)
    Thank you in advance.
    n0rthclub
    n0rthclub

    Hi,
    Just checking in to see if the suggestions were helpful. Please let us know if you would like further assistance.
    TechNet Subscriber Support
    If you are
    TechNet Subscription
    user and have any feedback on our support quality, please send your feedback
    here.
    Regards, Yan Li

  • How to add links and rollovers from an exported Edge Reflow HTML in Dreamweaver?

    Hi,
    Thanks to the very helpful community I have found the way to get my HTML file from Edge Reflow.
    Upon opening the HTML file in Dreamweaver, the CSS, Java scripts are wonderfully linked. However, I am not experienced enought to manipulate the divs to get a rollover or add links to the layout.
    Eg. Sticky Navigation bar on the top, how do you add rollovers and links?
    All help is very much appreciated.
    Thank you for your help in advance!

    Hi Chris,
    your plan for Reflow sounds good. Versioning is probably the most adaptable way to integrate it with the rest of the workflow.
    What I think is still missing, on the simple side, is link creation and management inside Reflow.
    Of course, considering you have just introduced multiple pages, this feature shouldn't be far...
    About Dreamweaver, I've been a faithful user for years but now it's definitely old for some uses.
    Just to say, if I open the responsive page I just created in Reflow with DWCC in Live View, something basic as background gradients are completely missing. Well, I'm not going to use it for this kind of work.
    Do you know for what DW is still a great tool? Email Newsletters, since they still have to respect old standards that no one else uses anymore.
    For all the rest I definitely prefer the editor/IDE way: SublimeText and other tools.
    They're faster, more apt to the task and, similarly to the Adobe Edge line of products, made with the same technologies they help to work with.
    In the future, who knows... Maybe, you should put in development a "Dreamweaver Edge" version and drop the old one, a little clunky even if recently revarnished  ;-)

  • HT2500 How to copy all addresses in mail and export CSV?

    I've got 250+ addresses that I can access when sending email.  I want to export those addresses into a .csv form to be able to import them to another mail program.  If I go through Address Book I will only get 66 vcards and will not have the rest.  Any ideas or workarounds?

    Some of us like to advise against storing ''anything ''in the Inbox, let alone adding to it your Sent messages.
    The setting you mention will start saving sent messages immediately. It's up to you to move historic messages from the proper Sent folder to wherever you want them. Be aware that if the account uses IMAP, it may take some time for the client (Thunderbird) and the server to get back into step.
    I file my messages in different folders according to who I'm corresponding with (family), or the project the messages relate to (at work). So yes I too want replies filed alongside the messages they respond to. I go about this by using an add-on, "Copy Sent To Current" which modifies Thunderbird's storing strategy for sent messages, and can be set to prompt me to choose when sending.
    Another approach you may prefer is Conversations, as in gmail, where the messages in a to-and-fro conversation are strung together. However in most business correspondence, it's customary to simply top-post at the top of the incoming message and send the whole thing back, so it becomes less necessary or useful to store all the messages anyway. Each message is in itself a summary of the conversation so far.
    In either case, typing the appropriate words into the add-ons window's search box will find suitable add-ons for you.

  • How to pass Text value/bind variable in Export CSV (FLOW_EXCEL_OUTPUT)

    I am using the following in Report Definition -> Header
    <tr>
    <td>
    Download
    </td>
    </tr>
    This will give me the standard output in Excel and it will contain columns only specified in SQL query.
    I want to import all other bind variables, which I am using in the report (these are not the columns in SQL query). These variables I want to display only once at the top of the Excel.
    thanks,
    deepak

    You can create a csv file manually. See this posting:
    http://spendolini.blogspot.com/2006/04/custom-export-to-csv.html
    Denes Kubicek
    http://deneskubicek.blogspot.com/
    http://www.opal-consulting.de/training
    http://htmldb.oracle.com/pls/otn/f?p=31517:1
    -------------------------------------------------------------------

  • How to add a certificate to IIS global "Server Certificates" list using PowerShell?

    Hi, been surfing the web for an example on how to add a certificate to the "global" IIS "Server Certificates" list using PowerShell but to no luck. I already have code in place on how to tie / associate a specific website with a specific cert but not how
    to add the new .cer file using the "Complete Certificate Request..." wizard using PowerShell.... I dont expect the final code to become published but if someone had an idea on howto integrate / get an entry point on where to interact between the "Server Certificate"
    list in IIS and POSH I would be super happy! :|
    I am runnign IIS on a Windows 2008R2 x64 Standard Edition if that helps..... of course, I would saddle for an CLI if there is no other way, but POSH is of course the way to go! :)
    Thanks for the help in advance guys, take care!
    br4tt3

    Hi and thanks for the suggestions!
    Although it comes close, the suggested code example points on howto import / incorporate .pfx files - I am getting fed by .cer files which I need to add into the IIS console using POSH.
    I tried explore the IIS.CertObj object but was not able to work out if this one could be used for importing / adding .cer files into IIS! However, launching the following command from a POSH console with Import-Module Webadministration already
    loaded into that shell;
    $certMgr = New-Object -ComObject IIS.CertObj returns the following error message:
    New-Object : Cannot load COM type IIS.CertObj
    From an IIS perspective I have the following components installed;
    [X] Web Server (IIS)                                    Web-Server
        [X] Web Server                                      Web-WebServer
            [ ] Common HTTP Features                        Web-Common-Http
                [ ] Static Content                          Web-Static-Content
                [ ] Default Document                        Web-Default-Doc
                [ ] Directory Browsing                      Web-Dir-Browsing
                [ ] HTTP Errors                             Web-Http-Errors
                [ ] HTTP Redirection                        Web-Http-Redirect
                [ ] WebDAV Publishing                       Web-DAV-Publishing
            [X] Application Development                     Web-App-Dev
                [ ] ASP.NET                                
    Web-Asp-Net
                [X] .NET Extensibility                      Web-Net-Ext
                [ ] ASP                                    
    Web-ASP
                [ ] CGI                                    
    Web-CGI
                [ ] ISAPI Extensions                        Web-ISAPI-Ext
                [ ] ISAPI Filters                           Web-ISAPI-Filter
                [ ] Server Side Includes                    Web-Includes
            [ ] Health and Diagnostics                      Web-Health
                [ ] HTTP Logging                            Web-Http-Logging
                [ ] Logging Tools                           Web-Log-Libraries
                [ ] Request Monitor                         Web-Request-Monitor
                [ ] Tracing                                
    Web-Http-Tracing
                [ ] Custom Logging                          Web-Custom-Logging
                [ ] ODBC Logging                            Web-ODBC-Logging
            [X] Security                                   
    Web-Security
                [ ] Basic Authentication                    Web-Basic-Auth
                [ ] Windows Authentication                  Web-Windows-Auth
                [ ] Digest Authentication                   Web-Digest-Auth
                [ ] Client Certificate Mapping Authentic... Web-Client-Auth
                [ ] IIS Client Certificate Mapping Authe... Web-Cert-Auth
                [ ] URL Authorization                       Web-Url-Auth
                [X] Request Filtering                       Web-Filtering
                [ ] IP and Domain Restrictions              Web-IP-Security
            [ ] Performance                                 Web-Performance
                [ ] Static Content Compression              Web-Stat-Compression
                [ ] Dynamic Content Compression             Web-Dyn-Compression
        [X] Management Tools                                Web-Mgmt-Tools
            [X] IIS Management Console                      Web-Mgmt-Console
            [X] IIS Management Scripts and Tools            Web-Scripting-Tools
            [ ] Management Service                          Web-Mgmt-Service
            [ ] IIS 6 Management Compatibility              Web-Mgmt-Compat
                [ ] IIS 6 Metabase Compatibility            Web-Metabase
                [ ] IIS 6 WMI Compatibility                 Web-WMI
                [ ] IIS 6 Scripting Tools                   Web-Lgcy-Scripting
                [ ] IIS 6 Management Console                Web-Lgcy-Mgmt-Console
        [X] FTP Server                                      Web-Ftp-Server
            [X] FTP Service                                 Web-Ftp-Service
            [X] FTP Extensibility                           Web-Ftp-Ext
        [ ] IIS Hostable Web Core                           Web-WHC
    More or less the one thing that I am trying to get up and running is an automated FTPS solution - I just use the IIS console to be able to troubleshoot / compare how things scripted from POSH interacts in the MMC representation. The error I am getting
    might be that I am lacking some IIS components to be in place to be able to automate some parts of the IIS - as suggested by the IIS.CertObj object listed in the example..... I will get back if I can track down which component needs to be added to be
    able to reference the IIS.CertObj object.
    Br4tt3 signing out...
    br4tt3

  • How to add the Note board web part to a page with powershell

    Hi everyone,
    I've been looking around everywhere but haven't seen it explicitly mentioned. 
    Does anyone know how to add the Note Board web part to a Team Site page, e.g. Non-publishing site, Left Zone, First webpart in the zone in powershell?
    Examples like this one http://adicodes.com/adding-web-part-to-page-with-powershell/ only talk about custom web parts uploaded from a local drive.
    The example here looks good - http://spcrew.com/blogs/lists/posts/post.aspx?id=21 but is it for the Page Viewer Web Part. How would you go about getting the correct name for the note board web part and configuring it? 
    Many Thanks,
    Ashley
    function main(){
    [void][System.Reflection.Assembly]::LoadWithPartialName("Microsoft.SharePoint")
    $url = "http://sp2010dev1/sites/test1"
    $OpenWeb = Get-SPWeb $url
    $OpenWeb
    $OpenSite = Get-SPSite $url
    $file = $OpenWeb.GetFile("http://sp2010dev1/sites/test1/SitePages/test1.aspx")
    $WebPartManager = $file.GetLimitedWebPartManager([System.Web.UI.WebControls.WebParts.PersonalizationScope]::Shared)
    Add-PageViewerWebPart "http://sp2010dev1/sites/test1" "http://sp2010dev1/sites/test1/SitePages/test1.aspx" "Body" 0 "SPCrew Site" "sp2010dev"
    $OpenWeb.Dispose()
    function Add-PageViewerWebPart($SiteURL, $pageUrl, $webpartzone, $index, $title, $content)
        $site = new-object Microsoft.SharePoint.SPSite($SiteURL)
        $web=$site.OpenWeb()
        $webpartmanager=$web.GetLimitedWebPartManager($pageUrl, [System.Web.UI.WebControls.WebParts.PersonalizationScope]::Shared)
        $webpart = new-object Microsoft.SharePoint.WebPartPages.PageViewerWebPart
        $webpart.ChromeType = [System.Web.UI.WebControls.WebParts.PartChromeType]::TitleOnly;
        $webpart.Title = $title
        $webpart.ContentLink = "http://www.spcrew.com";
        $webpartmanager.AddWebPart($webpart, $webpartzone, $index);    
        $web.Close()
        $site.Close()
    function Get-SPSite([string]$url) {
        New-Object Microsoft.SharePoint.SPSite($url)
    function Get-SPWeb([string]$url) {
        $SPSite = Get-SPSite $url
        return $SPSite.OpenWeb()
        $SPSite.Dispose()

    Hi,
    According to your post, my understanding is that you wanted to add the Note board web part to a page with PowerShell.
    The name of the Note Board web part is SocialCommentWebPart.
    I recommend to use the powershell code below:
    $pageUrl="http://sitename/SitePages/test.aspx"
    $SiteURL="http://sitename"
    $site = new-object Microsoft.SharePoint.SPSite($SiteURL)
    $web=$site.OpenWeb()
    $webpartmanager=$web.GetLimitedWebPartManager($pageUrl, [System.Web.UI.WebControls.WebParts.PersonalizationScope]::Shared)
    $webpart = new-object Microsoft.SharePoint.Portal.WebControls.SocialCommentWebPart
    $webpart.title="Note Board"
    $webpartmanager.AddWebPart($webpart, "MiddleZone", 0);
    $web.Close()
    Then the Note board web part will be added to the page.
    Best Regards,
    Linda Li
    Linda Li
    TechNet Community Support

Maybe you are looking for

  • Population of Oracle DBs from XML?

    Forgive me if I haven't fully understood Oracle's new XML parser for Java, but is it possible to >>directly<< populate an Oracle database from an XML file or do you have to use the Java parser. As a developer using Delphi it would be most useful to h

  • How can I set the java Date not greater than the day inputed?

    When I would input the date, I don't want it to be after this day because it would violate some business logic in my program. I am allowed to input date latter than this day like yesterday, last week etc. but not after this day.....Can anyone give me

  • Display problems when installing Panther

    I purchased a G3 blue/white from work with 9.2.2 and the panther install disks (3 of them). The monitor was fine in 9.2.2. Upon inserting the panther disks, the display went grayscale and was next to unreadable. However, the install continued through

  • Content Area API in 9.0.2 (wwsbr_api) is there a workaround?

    The end goal is to have a button in a region that takes users to an add item form. I want to have the button right on the page, without having to go to edit mode. So, looking at the PDK I see wwsbr_api.add_item. http://portalstudio.oracle.com/pls/ops

  • No condition tab in STO

    Hi experts, sometimes in the inter or intra company STO, there is no condition tab in item details level. And it has no impact to billing creation in which the price is got correctly from info record. why some times no this tab? what is the reason be