Archiving - "Archive file detail" - "Number of objects"

Dear All,
I'm not sure this is the right forum to ask my question...
I have an archived file and if I check the file details (SARA > "Management" button > choose the file and double click on it), there's a value on the pop up window called "Number of objects", value for it is "13".
If I read the archived file there are 3692 records (header level).
What's the meaning of the "Number of objects" in the details of archived files?
(I'm speaking about an archived file created in connection with object CO_ITEM)
Please help.
Thanks,
Csaba
Edited by: Csaba Szommer on Aug 19, 2010 12:22 PM

Number of objects, is simply that the number of data objects included in that specific archive run.
Now the definition of "object" is quite a good question.
I presume an object is the compilation of the data that can be archived for one specific record and its dependencies.
But this is a purely "basis" answer (We just make sure they can go back and forward from the system to the repository)
You go to the Archive explorer in  SARI,  you can list the objects (if the infostructure is in place).
Be interesting to get a FICO Archiving Expert answer.
Regards
Juan

Similar Messages

  • Read some HR archive files (object PA_PIDX) using Abap report

    Hi experts,
    an ABAP program that is supposed to read some HR archive files (object PA_PIDX) but all we can read is the object, we cannot access the individual lines. Please help
    My code
    Output of the report as well as output of archive program
    Cycles comptab. archivés
    0000000038
    0000000040
    0000000044
    0000000045
    0000000047
    0000000050
    Cycles comptab. ignorés (pour détails voir protocole de job)
    0000000001  Simulation
    0000000002  Simulation
    0000000003  Simulation
    0000000004  Simulation
    0000000005  Simulation
    .....etc
    Please help
    Edited by: Blaiso on Apr 1, 2011 5:54 PM
    Edited by: Blaiso on Apr 1, 2011 5:59 PM
    Moderator message: please post only relevant code parts, your post must be less than 5000 characters to preserve formatting.
    Edited by: Thomas Zloch on Apr 2, 2011 9:59 PM

    Hi Ajay,
    1.  You have to create a separate field catelogus and AIS according to your requirement with the required fields you want . Because the standard structures and field catelogues contains many fields from all tables. So before doing the read operation you have to deactivate the standard AIS and activate your newly created AIS .
    2. Can you give some more details for this question to be answered.
    3. The important archiving tables used are ARCH_IDX,ARCH_RPRG,ARCH_DEF.
    4. While scheduling the Read process in batch mode , it will give you three criterias to be entered.
         . Spool Parameters
         (ii). Start date
         (iii). Archive selection of files.
        Unless you enter values for any one of these options , You cannot execute the batch job.
    Hope this would help you.
    Regards - Swarna.

  • I have a number of gzip compressed archive files I'd like to delete. How do I do this?

    I have a number of gzip compressed
    archive files I'd like to delete. How do I do this

    Select files and use one of the following:
    Drag to Trash.
    CTRL- or RIGHT-click and select Move To Trash from the context menu.
    Select Move To Trash from the Finder's File menu.
    Press the COMMAND and Delete keys.
    Then Empty the Trash using one of the following:
    CTRL- or RIGHT-click on the Trashcan and select Empty from the context menu.
    Select Empty the Trash from the Finder's Finder menu.
    Press SHIFT-COMMAND-Delete keys.

  • Unable to get Field Names from Archived File

    Hi All,
    We have a ECC 6 Ehp4 system. When i retrieve Idocs archived using SARA, the data only contains application data. There is no field names available - eg: posting date, tax code etc. Please find below the background on this issue.
    I configured archiving of process idocs (status 52,12,03) from EDIDC tables. I set up the settings for Archive Object IDOC and archived the data for 15 days.
    Both archiving and deletion of data from the table was successful.
    I tried reading the Idoc data from Archive File using the Information System option -> Info structure (available as default for Idoc).
    But the data retrieved only shows the Application data for all the segments of the IDoc. The fields for the segments like Tax Code, Posting Date etc are not available in the data. Functional teams will not be able to make sense with just the application data.
    Am I missing some setting? Is there any way to retrieve the related field values also ?
    Please help.
    Thanks and Regards,
    Raghavan

    Hi All,
    There is tcode WE10. You could choose if the data source is archive and also the archive session. You will get the list of segments provided. click on the segment number and you will get the data.
    Thanks and Regards,
    Raghavan

  • Archiving file in application server

    Hi
    Can anybody of you please let me know how to archive a file from one directory to other in the application server?
    I dont want to read one file into an internal table and then loop on that to create a new file.
    Looking for some FM or command that would do this in one shot.
    Any clue is very appreciated
    Best Regards
    Chinmou

    My  friend   there is   no   such  one program which will  do  archive  or   one function  module which  will do  as you wanted  .
    Basicall  for archiveing the data   into file  it requesite 4  basic function  modules  as .
    code] "ARCHIVE_OPEN_FOR_WRITE'
    "ARCHIVE_NEW_OBJECT'
    "ARCHIVE_GET_STRUCTURES'
    "ARCHIVE_SAVE_OBJECT[/code]    
    so  based up on the archive  obect   it will have  own  write  program  which will   use  above  4  function  modules  and  collects the  table data from the basic  archiveing  obecjt  from  the   AOBJ  tcode  archive object structure then  creates  struture for that data and then  write's  it .
    so below  is the logic  .       
    CALL FUNCTION 'ARCHIVE_OPEN_FOR_WRITE'
        EXPORTING
         call_delete_job_in_test_mode        = 'X'
         create_archive_file                 = 'X'
          object                              = v_arch_obj
         comments                            = 'ILM test FILE'
    *   DO_NOT_DELETE_DATA                  = ' '
    *   OUTPUT_SEL_SCREEN_WHEN_DIALOG       = 'X'
    *   OUTPUT_SEL_SCREEN_WHEN_BATCH        = ' '
       IMPORTING
         archive_handle                      = v_handle
    * EXCEPTIONS
    *   INTERNAL_ERROR                      = 1
    *   OBJECT_NOT_FOUND                    = 2
    *   OPEN_ERROR                          = 3
    *   NOT_AUTHORIZED                      = 4
    *   OTHERS                              = 5
      IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    *This function module should always be called when a new data object is
    *to be prepared for writing to an archive.
      CALL FUNCTION 'ARCHIVE_NEW_OBJECT'
        EXPORTING
          archive_handle                = v_handle
    *   OBJECT_ID                     = ' '
    * EXCEPTIONS
    *   INTERNAL_ERROR                = 1
    *   WRONG_ACCESS_TO_ARCHIVE       = 2
    *   OTHERS                        = 3
      IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    ** get the structures for the archiving object
    *** loop through that
      CALL FUNCTION 'ARCHIVE_GET_STRUCTURES'
        EXPORTING
          archive_handle                = v_handle
        TABLES
          record_structures             = it_structures
    * EXCEPTIONS
    *   WRONG_ACCESS_TO_ARCHIVE       = 1
    *   OTHERS                        = 2
      IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    i_stru-PARLIST[] = i_par_list[].
    * writing data object into the archive file
      CALL FUNCTION 'ARCHIVE_SAVE_OBJECT'
        EXPORTING
          archive_handle                = v_handle
    * IMPORTING
    *   OBJECT_OFFSET                 =
    *   ARCHIVE_NAME                  =
    * EXCEPTIONS
    *   FILE_IO_ERROR                 = 1
    *   INTERNAL_ERROR                = 2
    *   OPEN_ERROR                    = 3
    *   TERMINATION_REQUESTED         = 4
    *   WRONG_ACCESS_TO_ARCHIVE       = 5
    *   OTHERS                        = 6
      IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    reward  points if it is usefull ...
    Girish

  • Using an AIX archive file as a library for an external procedure.

    I cannot use an archive file, created with the ar command, that contains a shared object that was created with the xlc and ld commands as a library for external procedures. I can use the shared object file created with the ld command as a library for an external procedure. Why would I encounter an invalid magic number and what is the resolution?
    Example:
    oracle:@husk21:/home/oracle> ksh -x ./Oracle_demo.ksh
    + rm shell.o shell.so shell.so.exp shell.so.imp
    + make -f /u01/oracle/product/11.1.0.7/db/rdbms/demo/demo_rdbms32.mk extproc_no_context SHARED_LIBNAME=shell.so OBJS=shell.o
    /u01/oracle/product/11.1.0.7/db/bin/oraxlc -q32 -c -I/u01/oracle/product/11.1.0.7/db/rdbms/demo -I/u01/oracle/product/11.1.0.7/db/rdbms/public -I/u01/oracle/product/11.1.0.7/db/plsql/public -I/u01/oracle/product/11.1.0.7/db/network/public -I/u01/oracle/product/11.1.0.7/db/precomp/public shell.c
    generate_export_list() { /bin/nm -X32_64 -B -h -g "$1" | grep -v ' U ' | awk '{print $3}' | egrep -v '^\.|^TOC' | sort | uniq ; }; generate_import_list() { LIB_NAME=$1; IMP_FILE=$2; cat /u01/oracle/product/11.1.0.7/db/rdbms/lib/xa.imp | head -1 | awk '{print $0, "." }' > ${IMP_FILE}; /bin/nm -X32_64 -C -B -h -g ${LIB_NAME} | grep ' U ' | grep -v "::" | grep -v "(" | grep -v "\.cc" | awk '{print $3}' | sed -e "s/\.//g" | grep -v "^_" >> ${IMP_FILE}; }; generate_import_list shell.o shell.so.imp; generate_export_list shell.o > shell.so.exp; /bin/ld -b32 -bnoentry -bM:SRE -bE:shell.so.exp -bI:shell.so.imp -o shell.so shell.o -L/u01/oracle/product/11.1.0.7/db/lib -lc_r -lm
    ld: 0711-224 WARNING: Duplicate symbol: .system
    ld: 0711-224 WARNING: Duplicate symbol: system
    ld: 0711-345 Use the -bloadmap or -bnoquiet option to obtain more information.
    oracle:@husk21:/home/oracle> ar rv libshell.a shell.so
    ar: Creating an archive file libshell.a.
    a - shell.so
    oracle:@husk21:/home/oracle> ar tv libshell.a
    rwxr-xr-x 3514/3516 1263 Sep 08 10:00 2009 shell.so
    oracle:@husk21:/home/oracle> file shell.so
    shell.so: executable (RISC System/6000) or object module not stripped
    oracle:@husk21:/home/oracle> file libshell.a
    libshell.a: archive (big format)
    SQL> CREATE OR REPLACE LIBRARY shell_lib is '/home/oracle/libshell.a';
    / 2
    Library created.
    SQL> CREATE OR REPLACE PROCEDURE shell(command IN char)
    AS EXTERNAL
    NAME "shell"
    LIBRARY shell_lib
    LANGUAGE C
    PARAMETERS (command string);
    / 2 3 4 5 6 7
    Procedure created.
    SQL> exec shell('ls');
    BEGIN shell('ls'); END;
    ERROR at line 1:
    ORA-06520: PL/SQL: Error loading external library
    ORA-06522: 0509-022 Cannot load module /home/oracle/libshell.a.
    0509-103 The module has an invalid magic number.
    ORA-06512: at "V500.SHELL", line 1
    ORA-06512: at line 1
    SQL> CREATE OR REPLACE LIBRARY shell_lib is '/home/oracle/shell.so';
    2 /
    Library created.
    SQL> exec shell('ls');
    PL/SQL procedure successfully completed

    Using an AIX archive file as a library for an external procedure.

  • Archive files

    Hello All,
    How to handle archive files(Archived Purchase Orders). Related tables and Transaction Codes.
    Good answers will be appreciated.
    Thanks in Advance.
    Regards
    Sasidhar Reddy Matli.

    Hi,
    I guess you want to archive a purchase order.for that go to transaction sara and give the arch object.Then create variant with the table name from which you want to archive the data from.
    you can see the details in MANAGEMNT tab
    Thanks
    Vivekanand

  • Reading Archiving Files

    Hi ,
    This is Data Archiving in CRM System.
    We have Archived some of the specified Arch Objects .(For Example CA_BUPA,PRODUCT_MD,CRM_SERORD) .
    Now I have few doubt in reading files.
    when i execute reading program for CA_BUPA It will retrive Business Partner details from the Archived File.
    _Now I want to know the details of the Servive Ticket attached to a particular Business Partner's ._
    I know Arch Object CRM_SERORD will have the service ticket details .
    Is there any link between these Archiving Objects ..??
    where as geting the data from other Arch Objects concerned ..??.
    or
    Any Configuration should i need to perform in order to get the Information from one Arch Object (For Example CA_BUPA) to other Arch Object (CRM_SERORD) ...??.
    or
    Should I need any ABAP's help inorder to do the same ...??
    Please give your valuable inputs
    For Reference :
    Business Partners are storing in table >> BUT000
    Service Ticket and other Transactions are storing in the table >> CRMD_OREDRADM_H
    Which means
    CA_BUPA(Business Partners ) is Archived from table BUT000
    CRM_SERORD (Service Tickets )is Archived from CRMD_OREDRADM_H
    Thanks in Advance
    Regards
    Ganesh

    Yes this is resolved .
    By default there is link between these Arch Objects
    by means Zarix* tables.
    when you activate (AIS) Archive infostructure in the backend a table will create prefix with ZARIX*
    the following steps need to be performed .
    1.customize the infostructure by creating new infostructure,
    2.add field catalog for that..
    Regards
    Ganesh

  • Reading classification data of batchs from archiv files (MM75)

    Hi,
    At performance of archiving and deleted batch (object MM_SPSTOCK in SARA, Release 4.7), which have classification assignments (class type 022) there was a following situation: all batches in run with same material, have in index table for selection from archiv same offset, and at review of data of classification in transaction MM75 batch classification, charact values of classification are collected in one general list from all values batches on the same material in run. Besides, at viewing of a key of object of party on the screen classification in transaction MM75 (MATNR, WERKS, CHARG) it is visible incomplete batch number (3 signs from 10) only. Please support as to solve the given problem - it is required to have possibility of reading from  archiv file data for separate required batch, and in this case in archive the information has mixed up for all batches with an same material.
    Pls help.

    open a message at sap

  • PI 7.30: OS command on AIX to archive files on FTP does not work

    Dear experts,
    Our PI system runs on an AIX server.
    I have a scenario PI --> FTP. I also need to archive files in a seperate folder on the FTP.
    I have been following thread:
    Read or Write File On FTP server based on another file existence.
    After file processing in the Audit Log in RWB I among others I get the information:
    Execute OS command "sh /usr/sap/SYS/flex/batches/archive.sh file.zip /ftpfolder/file.zip"
    It seems it is working properly.
    The file itself gets processed to the "ftpfolder". But in the archive folder I do not get a copy of that file.
    My script looks like this:
    #!/bin/ksh
    ftp -n -v <<%%EOF%%
    open ftpserver
    user myuser mypassword
    prompt
    asci
    cd archivefolder
    mput $2
    bye
    %%EOF%%
    In the file receiver I have "Run OS command after message processing":
    "sh /usr/sap/SYS/flex/batches/archive.sh %f %F"
    %F stands for the complete path, right? So if I say "mput $2" in my script it should use %F.
    Could you please help me out here. I really don't know what the problem could be.
    Thank you and best regards,
    Peter

    hi Peter,
    >>>I have a scenario PI --> FTP
    but FTP does not support OS command as far as I remember
    correction:
    "Note that for the File Adapter transport protocol "FTP", the operating system command is NOT executed on the FTP server, but on the server hosting the Adapter Engine."
    please check for details:
    Note 841704 - XI File & JDBC Adapter: Operating system command
    Regards,
    Michal Krawczyk
    Edited by: Michal_Krawczyk_PIXI on Feb 3, 2012 3:38 PM

  • ERROR:Could not read archive file - during Processing Base System Part 2

    Hi there,
    What I have:
    * I have problem with installation of the Mac OS X Panther v10.3 on iMac.
    * I have 3 original CDs (black with silver X).
    What I did:
    * I made new 1 partition and formated disk as Mac OS Extended (Journaled) over the Disk Utility in the first CD as normal without additional options (if I tried to format disk with zero all data and 8 way random write format after 3 days computer freeze)
    * I verified disk over this utility - that was ok - HFS volume verifed.
    * Then I restarted the computer and ran installation from this first CD
    What happened:
    * installation did not finish, because there were some problems during installation process.
    * i tried to customize installation just for essential work (without other languages support, printers etc), but it was still the same problem
    Installation log:
    After I choosed installation type, there was first error, but it did not look like important.. - root: bootstraplookup(): unknown error code
    Checking your installation disk - OK
    Preparing disk - OK
    Preparing base 1 and 2 - OK
    Other preparing.. - OK
    Processing Base System Part 1 - OK
    Processing Base System Part 2
    ==
    ERROR:Could not read archive file. - pax: Invalid header, starting valid header search.
    ERROR:Could not read archive file. - pax: Invalid header, starting valid header search.
    last message repeated 2 times
    ERROR:Could not write file. - pax: WARNING! These patterns were not matched:
    Some files for Essentials may not have been writen correctly.
    root: Installer[108] Exception raised during posting of notification. Ignored. exception: Some files for Essentials may not have been written correctly. (code 1)
    Install Failed
    Error detected
    Name: NSGenericException
    Reason: Some files for Essentials may not nave been written correctly. (code 1)
    ==
    It seems like a problem with reading some data from the CD, but during the installation checking of disk was ok.. maybe it can be problem with the cd-rom..? Or problem with data on cd-rom - I mean bad archive file..? But it is original CD.. What do you think??
    Thank you!

    Tomas,
    On THIS Page, locate your iMac model.
    From the Documents column, click on the appropriate number link.
    Using the info in the document that opens, locate the serial number of your iMac.
    On THIS Page, in the text field for Search Tech Specs, enter that serial number.
    Click on the model of iMac that appears.
    Post a link to the page that opens, or post the info requested below.
    Exactly which model iMac is it?
    What is the Processor speed?
    What size is the Hard Drive?
    How much Memory is installed?
    What type of internal Optical Drive does it have?
    Which version of OS, was the original Installed Software?
    ali b

  • My challenge: recovering original iWeb files from 2010-2011 timeframe, which included a blog consisting of original postings from me and comments posted to the web from family and friends. I have the web archive files - but did not move iWeb files then.

    Background:  I started this blog while living overseas and going to sea with the Navy.  Missed the opportunity to move the iWeb files with content attached from the mobile.me server to another server.  Now, I have the original web archive files - good - but not the comments added to them by family and friends - bad.
    My ultimate objective is to create a hard-cover bound book of these files with the comments on the blog ... they document a rather significant experience in my family's life ... to do this, I need to recover the original files with postings.
    Any thoughts or insight would be sincerely appreciated!
    Thanks, cfwnavy

    You have replied to a post that is a month old now and the OP has never replied, so you are probably wasting your time here.
    If you read the OP's post and my reply, you will see that he will not be able to recover his blog and neither will you.
    If your Mac was stolen and you did not back up your iWeb domain.sites files, then you CANNOT get your blog back. 
    If you published your site to a host/server, then you can download it back onto your Mac and you will have to re-build your blog/website from scratch and re-publish, but all your replies and responses to posts will be lost and you can never get these back.
    My advice would be to re-create your blog in another format such as WordPress.com which is free and don't use iWeb again.
    There are plenty of alternatives out there.

  • Problem deploying plug-in archive file in 11.1.0.1.0

    Hi,
    I am trying to create a very simple plug-in in Grid Control. It has only one metric. I follow the steps to create the archive file, import it, and when I tried to deploy the archive, I got error message said: "At least one error has occurred. Refer to the Deployment Status page for more details". And the deployment status has: "Deployment operation failed on the agent with an error status". Where can I find more detail about this error?
    I also tried to download and deploy the sample plug-in file and the apache Tomcat plug-in, both give me the same error. Is the plug-in works for 11.1.0.1.0 or is there any special patch I need?
    Thanks for the help!
    Edited by: user12621404 on Nov 24, 2010 4:18 PM
    Edited by: user12621404 on Nov 29, 2010 12:37 PM

    I have the same setup as the OP, but I connected one ipad to the mac with the configurator so I COULD tap once, to see what it would do next.  When I did, nothing happened.  I also tried to step through the setup screens, but can't complete that before the configurator times out. 
    In answer to potential questions, I set them up as unsupervised because they're going to teachers.  I just want to update iOS, set up the wireless, add a web clip that points to our student information system, and preload a couple of apps I think everyone should have.  I don't want the teachers to not be able to sync to iTunes.
    So what gives?  I tells me to tap, but doing so does no good.
    All the profile does is set up the wireless and load the web clip.  The configurator will do the rest without loading a profile.  Is loading a profile simply incompatible with not supervising the iPad?

  • How to Manage Archive Files in Oracle 10g

    Dear all
    I have 10g Database server running in Archive Mode, there are huge number of archive files have been increased ,
    (1) how can i find old and obsoleted Archive files that will not be needed for recovery in future.so that i can delete them inorder to free space.
    (2) How to manage Archive Files .
    Kindly help
    Thanks
    Regards
    Farnaw

    Hello,
    (1) how can i find old and obsoleted Archive files that will not be needed for recovery in future.so that i can delete them inorder to free space.It depends on your Backup policy.
    If you use RMAN you can follow the advices previously posted, if you use "user managed" Backup then, you don't need the
    log files archived before the begining of the last full backup of your database.
    To know when the archived log was generated and the first change included in it, you can query the v$archived_log as follow:
    alter session set nls_date_format='DD-MON-YYYY HH24:MI:SS';
    select recid, name, first_change, first_time, completion_time
    from v$archived_log;
    (2) How to manage Archive Files . You must backup the archived logs so as to be able to apply them. After making a safe backup of them on a tape, they can be
    deleted from disk.
    Of course you can also keep the last archived logs on your disk (beside of backup them on tape) so that you don't have to
    restore them and save time if you need them.
    It depends on your needs and the free space you have.
    Hope this help.
    Best regards,
    Jean-Valentin

  • Archived files missed after deletion job

    Hi All,
    We are generally doing the techinical archiving for some objects in ECC 6. Here for one object, write job & delete job is finished. but any how, archived file is missed before store job. There was some hardware failure.
    Now, we have get them restored from backup but i am not able to access the restored files from tcode SARA to store them in our storage server. It is still showing the files as failed in Store job archive file selection screen.
    I need to store those files in our storage server but archive file is not accessible from file system.
    Now, please let me know, what should i do in this case.
    Thanks in advance.
    br
    Ankit

    Hi,
    I do a little bit of Archiving using SARA, but not any expert
    We had such situations when the file was deleted from OS level while Archiving run was in progress at SARA.
    What we do in such situation is to disable the existing Run in "SARA" -> Put in Archiving Object name --> click Management, click on the failed Run and "Mark it for deletion".
    Start a new run for the same Archiving object, Keep the variant same ( I mean keep the selection dates same as earlier run) and start all over again with Write, delete, store etc.
    I dont know how much it helps
    Might be different from the scenario you might have on hand.

Maybe you are looking for

  • CF8 on Windows 2003 64-bit  (virtual?)

    We are trying to bring up a new Windows 2003 64-bit server, running both ColdFusion 8 and .NET Runtime 2.0 We are having multiple problems, and not much of anything is running, and I am beginning to wonder whether there is a problem with 32-bit CF8 a

  • Country missing in the list to register caller id

    Hi, I wanted to register my telephon number in the caller identifier then this apears to the people I call but there is not the country Mexico registered in the list Skype proposes. What can I do? It does not let people write it itself. it is 0052 ..

  • I can't update to the 11.0.1 version of iTunes

    My sister and I share an iTunes account for both of our Ipods. We got our mom an Ipod touch for Christmas and it will not connect to our iTunes until I update to the newest version of iTunes. I have been trying to update it for a while and it keeps s

  • Urgent reply Oracle HTTP Server failed

    i am performing cloning of single node to single node server I had applied perl adcfgclone dbTier it has completed and while performing on apps tier perl adcfgclone appsTier it has succeded with status 1 i.e all services are started but HTTP server f

  • While printig in j1ia101 default Number of copies showing as 5.

    When I go for printing in j1ia101, on printer selection screen 'Number of copies   5' is coming. user have to change it to 1 every time he gives printout. I want to set that value to 1. Please guide me. Thanks.