Create/run Report on specific folder size on machines?

Done some searching but can't seem to get a suitable solution for this. Essentially I want to run a report which will tall the the total size of a folder, if it exists, on all my machine. "C:\myprograms\tax". It's not in the user context which
should make this somewhat easier?
Does anyone know any relatively straightforward ways of getting a report on this?
Thanks!

ok; here's what I did in my lab (and it worked for me):
1. Create a new ConfigItem -- check the box about "This Configuration item contains application settings".  For this example, I'm going to name it "InetPub Folder Size"
2. Detection methods, use a custom script, powershell
   if (Test-Path c:\inetpub) {write-host exists}
3.  Setting, New, Script, String data type, add script of Powershell.  I know your script appended "MB"; but I think from the standpoint of what I'd do with the data (potentially) once I get a report out, I'd want it to be just a raw number,
so if I had to do stuff with that number in sql or excel, I don't have to strip out the MB part.  You'll know it's MB, right?
if (Test-Path c:\inetpub) {
$colItems = (Get-ChildItem c:\inetpub -recurse | Measure-Object -property length -sum)
$result = [int]($colItems.sum / 1MB)
write-host $result
4.  Compliance Rules; Value EQUALS the phrase  "Report Any Value" 
Since it will never ever return that result, everything will be a non-compliant (which is what we want)
5. Supported Platforms: select all or just select the OS' you care about.
6.  Create a baseline (name doesn't matter), add this CI to it.  after you add it, make sure you change Purpose from "Required" to "Optional".
7. Deploy the Baseline on a (for example) daily re-run schedule to a collection--probably just a test box for now.
8. Bunch of policy refreshes, and interactively run the baseline.  in the control panel applet, it SHOULD say it's non-compliant.  Locally check the report there, see what the results are (just so you see it working).
9. in SQL Management Studio (might take a few minutes for the non-compliant value to show up from the client through your MP into your database, i.e., wait 15-20 min maybe), run this against your CM_ database:
select
  s1.netbios_name0,
  ci.displayname,
  rooles.RuleName,
  perclientdetails.DiscoveredValue
from
v_localizedciproperties ci
join vDCMDeploymentNonCompliantRuleDetailsPerClientMachine perclientDetails
 on perclientdetails.ci_id=ci.ci_id
join v_CIRules rooles on rooles.rule_id=perclientdetails.rule_id
join v_r_system s1 on s1.ResourceID=perclientDetails.ItemKey
where
  ci.displayname = 'InetPub Folder Size'
 and
 ci.localeid = 1033
order by s1.Netbios_Name0
Standardize. Simplify. Automate.

Similar Messages

  • Looking for reporting options on specific folder sizes

    I need to devise a way to report on the size of specific folders on our Windows 2012 R2 file server. I haven't found at FSRM does this yet. I've tried some Powershell scripts that get about half way there but they throw errors if file name/paths exceed
    260 characters. Has anyone found a method or product to report just on folder sizes without these limits?
    Orange County District Attorney

    Hi,
    PowerShell does not support more than 260 char. If you cannot decrease the folder and file names, as workaround, please refer to the articles below to resolve the issue:
    .NET, PowerShell Path too Long Exception and a .NET PowerShell Robocopy Clone
    http://social.technet.microsoft.com/wiki/contents/articles/12179.net-powershell-path-too-long-exception-and-a-net-powershell-robocopy-clone.aspx
    Best Regards,
    Mandy 
    If you have any feedback on our support, please click
    here .
    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.

  • How to create a report with different page sizes

    Hi,
    I would like to create a report with different page sizes, it's possible to do it with diadem?
    When I change the layout parameters, changes afect to all sheets...
    Is there a way to change page size individually for each sheet?
    Thanks in advance.
    Marc

    Hi Marc,
    You can use the DocStart and DocEnd commands along with the PicPrint command to spool multiple print commands to the same output PDF file using the direct printer approach.  This should enable you to programmatically specify the page size differently for each sheet that you add to the print job.
    ' Print PDF Page by Page.VBS
    OPTION EXPLICIT
    Dim i, Path, OldPrintName
    Path = AutoActPath & "2D Stacked"
    Call DataDelAll
    Call DataFileLoad(Path & ".TDM")
    PDFFileName = Path & " Page by Page.pdf"
    IF FileExist(PDFFileName) THEN Call FileDelete(PDFFileName)
    OldPrintName = PrintName
    PrintName = "winspool,DIAdem PDF Export,LPT1:" ' Set to PDF printer
    PDFResolution = "72 DPI" ' "2400 DPI" , "default"
    PDFOptimization = TRUE
    PDFFontsEmbedded = FALSE
    PDFJPGCompressed = "high"
    PrintOrient = "landscape" ' orient paper
    Call PrintMaxScale("GRAPH") ' auto-max, see alternative margin setting variables below
    PrintLeftMarg = 0.181
    PrintTopMarg = 0.181
    PrintWidth = 10.67
    'PrintHeigth = 7 (read-only)
    Call WndShow("REPORT")
    Call DocStart ' Begin multi-page document/print job
    FOR i = 1 TO 4
    Call PicLoad(Path & ".TDR")
    Call GraphSheetNGet(1)
    Call GraphSheetRename(GraphSheetName, "Page " & i)
    Call PicUpdate
    Call PicPrint("WinPrint") ' Add a page to be printed
    NEXT ' i
    Call DocEnd ' End multi-page document/print job
    PrintName = OldPrintName
    Call ExtProgram(PDFFileName)
    Brad Turpin
    DIAdem Product Support Engineer
    National Instruments

  • Creating publishing page in specific folder and with custom page layout using JSOM

    Hi!
    I have a site collection under my root, in which I have a page library with a folder inside. I want to create a publishing page inside the folder using JSOM. The API provides the following information on the three possible ways of how you can create a publishing
    page.
    PublishingPageInformation with all defaults.
    PublishingPageInformation.Name and PublishingPageInformation.PageLayoutListItem.
    PublishingPageInformation.Name, PublishingPageInformation.PageLayoutListItem and PublishingPageInformation.Folder.
    Source - SP.Publishing.PublishingPageInformation Properties (sp.publishing)
    Since I want to create the page in a specific folder in the page library, I have to go for the last option.
    I have a function call chain that look as follows:
    getLanguageID(webUrl, languageID)
    .then(function(resolveVal) {
    language = resolveVal;
    return checkPageExist();
    .then(getEditorialNewsFolderJSOM)
    .then(getAssociatedPageLayoutListItem)
    .then(addPublishingPage)
    The first two methods, 
    getEditorialNewsFolderJSOM
    getAssociatedPageLayoutListItem
    fetches the required data as SP.Folder- and SP.ListItem-objects.
    The problem occurs when
    addPublishingPage
    is called. This method, in turns calls this function. 
    var pageInfo = new SP.Publishing.PublishingPageInformation();
    pageInfo.set_name(publishPage.title);
    pageInfo.set_pageLayoutListItem(pageLayoutListItem);
    pageInfo.set_folder(editorialNewsFolder);
    pageCreationContext.newPage = pubWeb.addPublishingPage(pageInfo);
    clientContext.load(pageCreationContext.newPage);
    clientContext.executeQueryAsync(function() {
    publishPage.isPageCheckOut = true;
    resolve();
    }, function(error) {
    reject(precio.intranet.resource.errCreateContent_addPublishPage);
    The error happens when this function is called with the page information object.
    SP.Publishing.PublishingWeb.addPublishingPage(pageInformation)
    Error:
    Cannot read property '$2t_0' of undefined
    and it happens in SP.Runtime.js.
    I've tried this
    sample code from the MSDN-team, and added the pagelayout and folder properties, but it renders the same error.
    Creating a page directly in the page library with a blank SP.PublishingPageInformation object works perfectly fine!
    What could possibly be wrong? The error isn't something that I can debug myself since it happens in SP.Runtime.js, and the documentation for this is very sparse!
    Any help on how to resolve this issue would be helpful!

    Hi Vinay,
    This may be useful:
    https://blogs.oracle.com/jdevotnharvest/entry/remote_task_flow_vs_wsrp

  • Recovering a specific folder after time machine back up

    Hey there,
    im having lots of problems with my macbook pro retina 15 from last year.
    to try to fix problems with the battery not lasting even 3h, the apple care ask me to format my computer.
    I tried to do so without success, as i could not download the software due to my horrible conection.
    anyway, i had to work the next day so i restored my Time machine i did the same day.
    Today i realized that im missing a folder ( hopefully not any others ) and im afraid i may have told my time machine to exclude that folder from my backups long time ago because i had a small hard drive.
    My question is, is it possible to restore a specific folder with any tools ?
    thanks,.

    Whoa.
    If you delete the files from your Mac.....you only have one version of them on the WD drive.
    What will happen when....not if....the WD drive has a problem?
    Only the most foolhardy of users would ever consider keeping only one version of their important files.
    My advice, if you decide to do this anyway, would be to only delete files from your Mac that you can afford to lose.
    Another thought might be that Time Machine backs up the changes on your Mac. When Time Machine starts needing more space, it will pick up the fact that you deleted the original files from your Mac.....and it will delete them from your backups.  You will not know when this will occur.
    Bottom line....to be safe, you need at least one version of your important data on two separate drives. When one fails, you at least have the other.

  • Create materialized view with specific column sizes

    Hi all,
    I'm trying to create a materialized view with a specific a column size. Something like
    create materialized view test_mv
    refresh force on demand
    as
    select id,
           cast(my_compound_field as nvarchar2(50))
    from ( select id,
                  field1 || field2 my_compound_field
           from   my_table);But Oracle seems to ignore the cast and takes the maximum size it finds for field1 || field2 in the select query. The resulting table has a column nvarchar2(44) instead of nvarchar2(50).
    This can give a problem when the view is refreshed... there could be new data that exceeds the current size, i.e. where length(field1 || field2) > 44.
    How can I override the column size of a field in a materialized view?
    Edit: Some additional info to clarify my case:
    field1 and field2 are defined as nvarchar2(25). field1 || field2 can theoretically have a length of 50, but there is currently no data in my table that results in that length, the max is 44. I am afraid that there will be data in the future that exceeds 44, resulting in an error when the MV is refreshed!
    Edited by: Pleiadian on Jan 25, 2011 2:06 PM

    Cannot reproduce what you are saying is happening.
    SQL> create table t (a nvarchar2(50), b nvarchar2(50));
    Table created.
    SQL> create materialized view tmv as
      2  select a, b, a || b c from t;
    Materialized view created.
    SQL> desc tmv
    Name                                      Null?    Type
    A                                                  NVARCHAR2(50)
    B                                                  NVARCHAR2(50)
    C                                                  NVARCHAR2(100)
    SQL> drop materialized view tmv;
    Materialized view dropped.
    SQL> create materialized view tmv as
      2  select a, b, substr(a || b, 1, 10) c from t;
    Materialized view created.
    SQL> desc tmv
    Name                                      Null?    Type
    A                                                  NVARCHAR2(50)
    B                                                  NVARCHAR2(50)
    C                                                  NVARCHAR2(10)
    SQL> select * from v$version;
    BANNER
    Oracle Database 11g Enterprise Edition Release 11.1.0.7.0 - 64bit Production
    PL/SQL Release 11.1.0.7.0 - Production
    CORE    11.1.0.7.0      Production
    TNS for Linux: Version 11.1.0.7.0 - Production
    NLSRTL Version 11.1.0.7.0 - Production
    SQL>Edited by: 3360 on Jan 25, 2011 8:10 AM
    And with data
    SQL> insert into t values ('3123423423143hhshgvcdcvw', 'ydgeew  gdfwe   dfefde  wfjjjjjjj');
    1 row created.
    SQL> commit;
    Commit complete.
    SQL> desc tmv
    Name                                      Null?    Type
    A                                                  NVARCHAR2(50)
    B                                                  NVARCHAR2(50)
    C                                                  NVARCHAR2(10)
    SQL> select * from tmv;
    A
    B                                                  C
    3123423423143hhshgvcdcvw
    ydgeew  gdfwe   dfefde  wfjjjjjjj                      3123423423

  • Run action on specific file size

    I feel like such a noob when it comes to scripting.
    I'm trying to create a script that will place my logo on my images.  My logo size varies depending if it's a wallet, 4x5, 5x7, 8x10.
    I know how to check if the activeDocument.width is greater than it's height and run the appropriate logo placement action, but am unsure how to get everything to run automatically depending on the pixel size (if activeDocument.width is 2100 pixels, run 5x7 horizontal logo action).  Not sure if I can use multiple conditions like:
    if (activeDocument.width > activeDocument.height) AND activeDocument.width = 2100 pixels
        doAction("5x7_H","5x7_.atn");
    The coding isn't correct, but describes what I'm trying to do.
    Thanks

    Paul,
    Doesn't your code run the same action for both horz and vert docs. And assume they are 300 ppi?
    How about something like this
    #target photoshop
    var doc = app.activeDocument;
    var Width = doc.width.as('in');
    var Height = doc.height.as('in');
    var Max = Math.max(Width,Height);
    switch (Max){
    case 6 : //6 inch longside
                        if(activeDocument.width > activeDocument.height){
                             doAction ("4x6_H", "actionSet");
                        }else{
                             doAction ("4x6_V", "actionSet");
                        break;
    case 7 :// 7 inch longside
                        if(activeDocument.width > activeDocument.height){
                             doAction ("5x7_H", "actionSet");
                        }else{
                             doAction ("5x7_V", "actionSet");
                        break;
    case 10 : // 10 inch longside
                        if(activeDocument.width > activeDocument.height){
                             doAction ("8x10_H", "actionSet");
                        }else{
                             doAction ("8x10_V", "actionSet");
                        break;
    default : break;

  • How to create ZPS Report showing specific Project details?

    Hi,
    How do I create a custom  ZPS report which shows Project details and progress The requirements are to see 20 fields in one single report . The fields which  to be seen in the report are Labor Cost, Material Cost,Labor hrs,finish dates, billing plan, Milestones, NWA,Responsible person,Work Center,Warranty information all in one report.
    Please advise how to create such a report.
    Thanks much!

    you can use
    ABAP
    Query
    Report Painter / Writer
    to create your won reports
    The choice will depend on what exactly you want

  • Removing specific folder from time machine help!

    I had a drive die that had only specific folders backed up. Large files sizes. How do I remove them from time machine now that the drive is gone. I read that you can use the gear menu to remove the back up but it does not seem to work. and since it's not the drive being backed up but only a portion of it, I see no way to remove this data. Any help would be appreciated

    You do mean you want to delete all the backups of those folders, right?
    If so, use the procedure in #E3 of Time Machine - Troubleshooting to see the backups, then select them and use the "gear" menu or right-clicking, to get the menu where you can delete them.  See #12 in Time Machine - Frequently Asked Questions for details on that.

  • Trying to create a report that shows all 8.1 machines missing update 1 (KB2919355)

    Currently I have a report that polls every machine that talks to our SCCM 2012 server and only displays Windows 8.1 machines.  
    I'd like to modify the code where it will only show the 8.1 machines that are missing Update 1.  That way we can go through and patch the ones that need it.  Is this possible? 
    The existing query looks like the following: 
    SELECT
    SCCM_Ext.vex_R_System.Name0
    ,vMacAddresses.MacAddresses
    ,v_GS_PC_BIOS.SerialNumber0
    ,v_GS_COMPUTER_SYSTEM.Model0
    ,SCCM_Ext.vex_R_System.Operating_System_Name_and0
    ,v_GS_COMPUTER_SYSTEM.UserName0
    FROM
    SCCM_Ext.vex_R_System
    INNER JOIN vMacAddresses
    ON SCCM_Ext.vex_R_System.ResourceID = vMacAddresses.ItemKey
    LEFT OUTER JOIN v_GS_PC_BIOS
    ON SCCM_Ext.vex_R_System.ResourceID = v_GS_PC_BIOS.ResourceID
    LEFT OUTER JOIN v_GS_COMPUTER_SYSTEM
    ON SCCM_Ext.vex_R_System.ResourceID = v_GS_COMPUTER_SYSTEM.ResourceID
    WHERE
    SCCM_Ext.vex_R_System.Operating_System_Name_and0 like '%6.3'
    ORDER BY SCCM_Ext.vex_R_System.Name0

    Here is the code I use to pull 64bit machines that don't have CU1 (BTW cu2 is now out):
    select SMS_R_SYSTEM.ResourceID,SMS_R_SYSTEM.ResourceType,SMS_R_SYSTEM.Name,SMS_R_SY STEM.SMSUniqueIdentifier,SMS_R_SYSTEM.ResourceDomainORWorkgroup,SMS_R_SYSTEM .Client from SMS_R_System inner join SMS_G_System_SMS_ADVANCED_CLIENT_STATE on SMS_G_System_SMS_ADVANCED_CLIENT_STATE.ResourceID
    = SMS_R_System.ResourceId inner join SMS_G_System_COMPUTER_SYSTEM on SMS_G_System_COMPUTER_SYSTEM.ResourceID = SMS_R_System.ResourceId where (SMS_G_System_SMS_ADVANCED_CLIENT_STATE.DisplayName = "CCM Framework" and SMS_G_System_SMS_ADVANCED_CLIENT_STATE.Version
    != "5.00.7958.1203") and SMS_G_System_COMPUTER_SYSTEM.SystemType = "x64-based PC"
    Minor mods to this or your code should do the trick.
    ...I see you're talking an update to the OS, rather than SCCM update. Still hopes this helps.
    Ben JohnsonWY

  • Create Collection in specific folder

    I have a software deployment runbook that creates a collection if needed. The Create Collection activity seems to only allow for creating collections in the root folder. I have tried adding the folder path before the collection with name like AAA:\<object
    type>\folder\sub-folder\subfolder but Orchestrator seems to add extra slashes like AAA:\\<object type>\\folder\\sub-folder\\subfolder
    which breaks it.
    I am also playing with just running a Move-CMObject script after the Create Collection. But since you cannot have the SCCM console and PowerShell module on a server running the IP...thats just a huge pain in the butt. 
    Can anyone offer advice on creating collections in a specific folder?
    Thanks.
    - Slow is smooth and smooth is fast.

    Hello,
    Based on my research, it seems that create collection and move it to specified folder is the only solution.
    Is remoting an option for you? You can remote to SCCM server, and import PowerShell module. So you can run PowerShell to create collection and move the specified folder.
    PowerShell – Connecting to Configuration Manager
    Microsoft Configuration Manager 2012 and Powershell–Part 2
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected]

  • Create trace file on specific location

    Hi all,
    I'm working with a 11gR2 Enterprise DB on Linux RedHat 5
    Now I need to create a trace file. This trace will be huge and I need to create it on an specific folder on my system because the udump fs could be small for it. These are the commands I'll use:
    oradebug setospid 3165
    oradebug unlimit
    oradebug event 10046 trace name context forever, level 12
    If I use the "oradebug tracefile_name" I'll get the actual trace file name but, How can I say the specific location where I need to create it?
    Best regards,
    dbajug

    dbajug wrote:
    Hi all,
    I'm working with a 11gR2 Enterprise DB on Linux RedHat 5
    Now I need to create a trace file. This trace will be huge and I need to create it on an specific folder on my system because the udump fs could be small for it. These are the commands I'll use:
    oradebug setospid 3165
    oradebug unlimit
    oradebug event 10046 trace name context forever, level 12
    If I use the "oradebug tracefile_name" I'll get the actual trace file name but, How can I say the specific location where I need to create it?
    Best regards,
    dbajugi dont know of any method that will allow you to do this for a single file, but you can use below workaround since the tracefile name is predictable
    lets say your database name is ORCL
    the ospid is 3165, so the tracefile will be created as udump/ORCL_ora_3165.trc
    before starting the trace, you can pre-create it at different location and point a symlink on it, e.g
    touch /lot_of_space_here/trace.trc
    ln -s /lot_of_space_here/trace.trc udump/ORCL_ora_3165.trc
    and now start tracing

  • How to export and save a report at server or a remote machine?

    Hi,
    We have our BOE server XI R2 installed in Solaris SPARC machine. I would like to export the report to Word and then save it in a remote/another machine. Presently our application is showing a save as dialog to client. Instead we want it to be saved in a specific machine.
    Thanks

    Hi   Bhave  ,
    Thanks for taking sometime to clear our doubt.
    We were trying the solution your solution but still we had been thrown the save as dialog.
    Let me clearly state the problem which we are facing.
    Presently we are able to redirect user to BO server which in turn shows  a save as dialog in client's machine. What we are trying to do is to run report at specific time---> exporting to word -
    > saving it on a particular machine and mail the users location or a url which authenticates and redirects user to the file.
    FYI We have a Business Objects Enterprise(server) XI Release 2 server installed on Solaris.
    Thanks
    Hi Bhave ,
    We tried the code you have specified. There was some problem with Business Objects server. On solving the same your code works well.
    We are able to save file in RTF format. But when we were trying to convert to PDF and save. RAS server goes down. We dont know the reason.
    And where we will be able to find what are the  responsibilities of all the servers running in BO XI R2.
    Thanks
    Edited by: lnarayanan86 on Aug 13, 2009 11:04 PM

  • How to create a report with selection screen that can run in background

    Sorry to ask these basic questions but I am knew to ABAP Programming.
    To keep it simply, I am attempting to create a report that has a simple parameter driven selections screen with one field.  That field takes in a folder path from the user.  The user executes the report.  The report creates a simply BDC that goes into SE16, gathers data from a table, and exports the results to a text file using the folder path provided.  I created a variant for the folder path field in the selection screen hoping to use it while executing the report in the background.  The report is not exporting the file as it did when run in the foreground for some reason.
    I am wondering what event is triggered when a report is executed in the background.  In the foreground (or when I execute the program via SE38->Execute->With Variant) the user needs to execute the program by hitting the execute button once the variant has populated the folder path field.  It works then, so I am trying to get the same to work in the background.  I am thinking I didn't put the program together correctly to accommodate the running in the background.  How can you create a report that can accept user input via variant into a selection screen and then run in the background?
    Please, any information would be greatly appreciated.
    Thanks you all for reading this!!!

    Ok, finally I understand what you're doing. Initially you lost me with the SE16 reference...
    Not sure what you're trying to achieve overall, but apart from the fact that you cannot export/download a file to a user's PC via background job (unless you have a mapped network share on the server or something like an FTP server on the user's PC, but both are pretty hypothetical scenarios and unlikely to occur).
    Also, the BDC approach to get data via SE16 is pretty awkward. Note that SE16 is guarded by some authorization checks and often users won't have access in production (which might not matter if you intend to always run your program in background via dedicated batch user). However, I have no clue why you wouldn't want to use [open SQL|http://help.sap.com/abapdocu_70/en/ABENOPEN_SQL_READING.htm] to read the data. You could then save it on the application server or if you really have to get it to the user you can consider e-mailing the file (extracts should be compressed before sending). For the latter you'll find plenty of references here, basically it's the [business communication services|http://help.sap.com/saphelp_nw2004s/helpdata/en/2d/1c5d3aebba4c38e10000000a114084/frameset.htm] that you'd need to look at.

  • How to create a dynamic link in a Form to link to a specific FOLDER

    Hello,
    I have created a reports of all employees of my department.
    This reports shows me the empno and ename
    When I clicked on a empno ( for example empno = 1 ) then then I got a MASTER DETAIL FORM about that employee(empno = 1) .
    Who he or she is and which course he or she had followed.
    I want create a dynamic link in the MASTER DETAIL FORM which shows me directly the folder of that employee ( in this example folder 1 ).
    If I clickt on the report with all employees of my department on an other number ( for example empno = 3333333) then if I click on the dynamic link in the MASTER DETAIL FORM I want to see the folder of employee 3333333 !!! You know what I mean ?
    What I want to know is, how to create a dynamic link that shows me directly a folder which is dependent on which empno I had clicked on in the report ( report with employee numbers and ename )
    Is there any way to pass some parameters into a link to a Folder ? Is this possible in Portal ? Does anyone know how to do this, or do you have a suggestion how to solve this problem ?
    Thanks a lot !!!
    Chu Lam

    Hi Chetan,
    I am glad that someone had replied on my question.
    I will explain it to you again.
    I have created a report that shows me all employees. If I click on a employee number then I get an MASTER DETAIL FORM on my screen with all the information(where he works now and which number I have to dial ifhow can I reach him by telephone) of that employee on which number I clicked on.
    I really like this mechanism. (You click on a number and the information that you see in the next screen is dependent of the number you clicked on ! )I have created all this. It works fine.
    What I want is to expand this example.
    Every employee has a FOLDER (yes, those ones in Content Area ) which they can insert text or image into that folder. The folder name is just the employee number. ( employee with employee number 3303, he owns a folder which is named 3303 and an employee with empno 9999, he or she owns a folder with the name 9999. )
    Every employee can tell more about himself in that FOLDER by iserting text and images. For example : What he likes, pictures of his vacation, something like this.
    What I want is this :
    If I click on the first report,which provides me all employees on screen, on a employee number 3303 then I get a Master Detail Form on my screen with all information about that employee with employee number 3303. And I want in this MASTER DETAIL FORM to create a link that shows me directly the FOLDER of that employee ( 3303), so I can learn more about employee with employee number 3303. But I don't know how to create this link.
    That link had to be dependent on the employee number. The difficult thing about this link is that this link had to be dynamic.
    I hope this will make it clear to you :
    (report all employees:)
    empno ename
    3301 john smith
    3302 peter clark
    3303 wilson jones
    If I click on a empno ( for example 3303) then I get a MASTER DETAIL FORM which provides me information.
    (MASTER DETAIL FORM )
    EMPNO 3303
    ENAME wilson jones
    department New York
    mobile number 98908763
    Company tel. no day
    AOL 097485838 monday till wednesday
    Oracle 04848584333 thursday and friday
    LINK
    (what I want is to create a link here )
    If I click on LINK in this MASTER DETAIL FORM then I want to link to the FOLDER of this employee ! ( In this example it is FOLDER 3303.
    BUT IF I CLICKED ON THE FIRST REPORT ON A DIFFERENT NUMBER ( FOR EXAMPLE 3301) THEN IF I CLICK ON LINK IN THE MASTER DETAIL FORM THEN I HAVE TO LINKED TO FOLDER 3301.
    I just want to know how to make a link like this ( create a dynamic link to a specific folder ).
    Thanks in Advance.
    Chu

Maybe you are looking for

  • How to get spool no created when a job is created

    Hi, I am creating a Job using Job_Open,Job_Submit and Job_Close FM's The job created will have a spool associated. How can i programmatically find out spool number created ? Pls Help!! Answers will be rewarded. Rohan

  • Huge tracts of white space padding in topics

    Mostly whenever there is a javascript call, like for a fixed sized popup. This is no a huge problem, but it seems that this also causing trailing spaces after the link to disappear and that is a problem.

  • My iTunes library just disappeared!!

    I don't know what happened, my mom tried to upload her iPod (shuffle) but she said that it didn't show up in iTunes, so I tried but when I pulled iTunes up everything was gone. Help please!! -my iPod is an iPod Nano

  • Basic Duplication Question?

    When I iSync it wants to duplicate every entry in iCal and the address book! What should I do? David

  • KDE networkmanager

    hi i got a problem with network manager, when i try to set up a static ip in wireless device on KDE send me a message; Connection deactivated and doesnt work even if i setted up the default settings, doesnt work i need to errese the conection, to con