MIGO / MB01 - Barcode scenario for archiving just for certain plants

Dear Experts,
I'm trying to activate the barcode scenario for archiving delivery notes when posting a goods receipt. We are working with several plants but the barcode scenario should be activated just for certain plants .
Does anyone have an idea how I can use barcode scenario for certain plants?
Thanks in advance!
Petra Hönnemann

Hi Petra,
not sure, if your question already had been answered. But if not, I think what you need is to create documenttypes for each plant. Also create different Contenet Reps and link them to the corresponding documenttype. In TA OAC5 you can activate the barcode scenario for each plant.
Regards,
Lu

Similar Messages

  • Date range for archive process for infotype

    Hello All,
    My User wants to remove  employee information in info type for terminated employees, so we decided to go for archive process but basis team is asking for date range.
    Can anyone suggest me how to give date range, even to provide to-date unable to get any points.
    Regards
    Ananthi.M

    Hello Kenneth,
    As you aware, we cannot delete info types Basic pay, Garnishment document  likewise there are around 15 info types which I am unable to delete due to time constraints etc.., for this process also the SM35 batch session is the better way.
    User wants to remove from table level ,the information is not required and no one should see the information.

  • Is save for web just for posting or for sending, too?

    I need to send files with layers, so I won't use Save for web or I'll lose them, I was thinking of a general save as. I heard that save for web translates your file into the web language, now these files will be worked again, and, eventually, posted, but not by myself right now. I am just sending them.
    Is save for web recommended all the time you send files to an email, or just for posting?
    Sorry I have to go right now but I will be happy to read you tomorrow.

    I don't think Jeffrey quite caught this:
    margieannejulie wrote:
    …now these files will be worked again, and, eventually, posted, but not by myself right now. I am just sending them…
    If the images are going to be edited ("worked on"), you should NOT be dealing with JPEGs at all. TIFFs or PSDs will do just fine.
    Use a JPEG when the file is in its final destination stage, when no further editing or manipulation is required.
    margieannejulie wrote:
    …I heard that save for web translates your file into the web language…
    That's inaccurate, to put it politely.  All Save for Web does is, if you tell it to, remove the embedded color profile, strip all metadata and generate the lightest (weight or size-on-disk wise) possible file.  It absolutely does not "translate" anything into anything else, and certainly not "web language" which does not exist in regard to displaying images.
    Wo Tai Lao Le
    我太老了

  • Generate DDL for objects (just for fun)

    I'm been putting together queries that generate DDL. Considering exp/imp ROWS=0 can be used, or DBMS_METADATA there is little point. Though, with restricted access those may not be possible options, but then an external tool like TOAD could do it. Therefore, my justification for this is "just for fun".
    Here is one for TABLEs. It does not generate the CONSTRAINTs (which i try to get in the next query), and no storage clauses. This query is also formatted for fixed width font with tabs equivalent to eight characters:
    SELECT
         SUBSTR
          REPLACE
          CASE
           WHEN Columns.Column_Id = 1 THEN
            'CREATE TABLE ' || Columns.Table_Name
            || CHR(10) || '('
            || CHR(10)
          END
          || ' ' || Columns.Column_Name
          || RPAD(CHR(09), Tabs - FLOOR((LENGTH(Column_Name) +1) / 8), CHR(09))
          || Data_Type
          || CASE
              WHEN Data_Type IN ('CHAR', 'VARCHAR2') THEN '(' || Char_Length || ')'
              WHEN Data_Type = 'FLOAT' THEN '(' || Data_Precision ||')'
              WHEN Data_Type = 'NUMBER' THEN
              CASE WHEN Data_Precision IS NOT NULL THEN '(' || Data_Precision
                 || CASE WHEN Data_Scale IS NOT NULL THEN ', ' || Data_Scale END
               ||')'
              END
             END
          || CASE
              WHEN Data_Default IS NOT NULL
              THEN
                RPAD
                 CHR(09),
                 CASE Data_Type
                  WHEN 'CHAR' THEN CASE Char_Length WHEN 1 THEN 2 ELSE 1 END
                  WHEN 'DATE' THEN 2
                  ELSE 1
                 END,
                 CHR(09)
               || 'DEFAULT '
               || (
                SELECT
                   ExtractValue
                    DBMS_XMLGEN.GetXMLType
                        SELECT
                             Data_Default
                        FROM
                             All_Tab_Columns
                        WHERE
                             Owner          = ''' || Columns.Owner || '''
                          AND     Table_Name     = ''' || Columns.Table_Name || '''
                          AND     Column_Name     = ''' || Columns.Column_Name ||'''
                    'ROWSET/ROW/DATA_DEFAULT'
                FROM
                   Dual
             END
          || CASE
              WHEN Columns.Column_Id = Info.Total_Columns
               THEN CHR(10) || ');' || CHR(10) || CHR(10)
              ELSE ','
             END,
             ',' || CHR(10) || CHR(10),
          ',' || CHR(10)
          1,
          181
         ) Statement
    FROM
         All_Tab_Columns     Columns,
          SELECT
              Owner,
              Table_Name,
              MAX(Column_Id)                         Total_Columns,
              MAX(FLOOR((LENGTH(Column_Name) + 1) / 8)) + 1     Tabs
          FROM
              All_Tab_Columns
          WHERE
              Owner          = 'SYS'
          GROUP BY
              Owner,
              Table_Name
         )          Info
    WHERE
         Columns.Owner          = Info.Owner
      AND     Columns.Table_Name     = Info.Table_Name
    ORDER BY
         Columns.Owner,
         Columns.Table_Name,
         Columns.Column_Id;This next query get CONSTRAINTs. No formatting is used, because it becomes quite unweildy (though, if it used multiple lines, that would change). Another interesting thing is whether the CONSTRAINT names were generated or not. If they were generated, this still uses the old name and does not generate a new one:
    WITH
         Cons_Columns
    AS
          SELECT
              Owner,
              Constraint_Name,
              SUBSTR
               REPLACE
                REPLACE
                 XMLAgg(XMLElement("A", Column_Name)
                '<A>',
                '</A>'
               4
              ) || '"' List
          FROM
               SELECT
                   Owner,
                   Constraint_Name,
                   Column_Name
               FROM
                   All_Cons_Columns
               ORDER BY
                   Position
          GROUP BY
              Owner,
              Constraint_Name
    SELECT
         'ALTER TABLE ' || Table_Name
         || ' ADD CONSTRAINT ' || Constraint_Name
         || ' '
         || CASE Constraint_Type
             WHEN 'C' THEN 'CHECK'
             WHEN 'U' THEN 'UNIQUE'
             WHEN 'P' THEN 'PRIMARY KEY'
             WHEN 'R' THEN 'FOREIGN KEY'
            END
         || '('
         || CASE
             WHEN Constraint_Type = 'C' THEN
               SELECT
                   ExtractValue
                    DBMS_XMLGEN.GetXMLType
                        SELECT
                             Search_Condition
                        FROM
                             All_Constraints
                        WHERE
                             Owner          = ''' || Cons.Owner || '''
                          AND     Constraint_Name     = ''' || Cons.Constraint_Name || '''
                    'ROWSET/ROW/SEARCH_CONDITION'
               FROM
                   Dual
            WHEN Constraint_Type IN ('P', 'R', 'U') THEN
               SELECT
                   List
               FROM
                   Cons_Columns
               WHERE
                   Cons_Columns.Owner          = Cons.Owner
                 AND     Cons_Columns.Constraint_Name     = Cons.Constraint_Name
            END     
         || ')'
         || CASE Constraint_Type
             WHEN 'R' THEN
               SELECT
                   ' REFERENCES (' || List || ')'
               FROM
                   Cons_Columns
               WHERE
                   Cons_Columns.Owner          = Cons.R_Owner
                 AND     Cons_Columns.Constraint_Name     = Cons.R_Constraint_Name
              || ' ON DELETE ' || Delete_Rule
             ELSE ''
            END
         || ' ' || DEFERRABLE || ' ' || DEFERRED
         || ' ' || VALIDATED || ' ' || STATUS || RTRIM(' ' || RELY)
         || ';'
    FROM
         All_Constraints Cons
    WHERE
         Owner = 'SYS'
    ORDER BY
         1,
         Constraint_Name;

    Shoblock, thanx!
    For NUMBER is was using a wrong COLUMN, and also in the wrong order. Serves me right for not following the documentation. And, i just ignored FLOAT. But not it mostly matches DESC (except this query shows the ", 0" where DESC drop it instead).
    I fixed the query above.
    The XML part that gets the long has a failure. If the Data_Default contains an XML special char it will get encoded. The way to not encode it, it looks, requires PL/SQL. Which means it would not be done in one query (without a FUNCTION).
    I am curious if anyone else is interested in such queries, whether for "fun" or otherwise.

  • With new macbook I get iWork & iLife for free just for new products ?

    Why I  didn't get for all my devices?

    Even though the iWork for Mac & iWork for iOS apps now share similar file formats & user interfaces, they are separate programs created for separate operating systems. Activating a new iOS device after September 1 gets you the iOS versions of iWork & iLife. Purchasing a new OS X device after October 1 entitles you to the free OS X apps. Also, if you already purchased iWork '09 apps for the Mac you can update to the new versions for free. The same goes for the previous versions of the iOS apps. You can then install the apps on all of your devices with the same OS using your same Apple ID. BUT, getting the apps for one operating system does not get you the same apps for the other OS.

  • Changing commodity Code for material grp under certain plant

    Hi,
    I would like to change commodity code for some material group under certain plant
    May I know how to do this.
    I went to the following SPRO path, however, the table does not mention the plant and the material group for me to change.
    SD>Foreign Trade/Customs>Basic Data For Foreign Trade>Define Commodity Code/Import Code Numbres by Country.
    Please let me know.
    Thank.
    Tuff

    Hi Tuffy,
    The commodity codes are defined by Country, not at Plant-Material group level.
    You can find this customising on: SPRO > Materials Management > Purchasing > Foreign Trade/Customs > Basic Data for Foreign Trade > Define Commodity Codes / Import Code Numbers by Country.
    I hope this help.
    Kind regards,
    Sandra

  • How to change commodity Code for material grp in certain plant

    Hi,
    I would like to change commodity code for some material group under certain plant
    May I know how to do this.
    I went to the following SPRO path, however, the table does not mention the plant and the material group for me to change.
    SD>Foreign Trade/Customs>Basic Data For Foreign Trade>Define Commodity Code/Import Code Numbres by Country.
    Please let me know.
    Thank.
    Tuff

    Hi,
    Commodity codes are define at country code level not on basis of plant or material group
    Weather it is one plant or many plants belongs from one company or different companies the commodity code is unique and it define by country legal authorities which are responsible for foreign trade.
    You can add commodity code for country and then you individually or by mass change you can change in material master.
    Kapil

  • Suggestions for archiving projects for possible re-editing

    Hi all,
    I make family history movies that often need to be resurrected a year down the track to add a new scene (e.g grandson getting married). I've just stepped up to FCP from Final Cut Express and would like to know two things:
    1. What is the best way to archive a project to an external drive so that I can recall it later with everything intact (media, transitions, titles, everything); and
    2. What files (or folders) do I need to keep from the six FCP Documents folders? I'd like to trash those that aren't necessary.
    Thanks,
    Andrew

    Use the Media Manager.
    It will consolidate your project to a single folder and give you various options for your unused footage.
    The FCP user manual has a section explaining MM in detail.

  • Searching for Archiving Object for table COMH PP-PI messages header

    Hallo,
    i am faced to archive records from table COMH (PP-PI message headers).
    And searched SMP, SDN, Dataguides but i could not find any objects or delete-reports for this table.
    Could anyone give input on how to get rid of the records in COMH?
    with regards
    ingo

    Hello Ute,
    thanks for your informations.
    We are going to start RCOCB009 as batchjob periodical, once per month, to get rid of elder messages.
    with regrads
    ingo

  • Profile for authorizations just for reading?

    Hello,
    is there an already existing profile just your displaying? Like the SAP_ALL just reading?
    regards
    Florian

    These are the various display profiles which I could find in my system.
    A_ANZ                  FI-AA Asset Accounting: Complete display authorization
    F_ANZ                   FI Display Authorization Model Profile
    F_BKPF_KANZ      FI authorizations for displaying vendor documents
    F_KREDI_BANZ     FI Auth. for Displaying Vendors (Financial Accounting Data
    F_SAKO_ANZ        FI authorizations for displaying G/L accounts.
    Regards
    Aravind
    Message was edited by:
            Aitipamula Aravind

  • Lock vertical orientation just for a moment

    Hello
    I'm building this App that is almost all in landscape, but I need to lock the vertical screen for the options,
    I've tried adding a event listener to the stage for Changing but doesn't work ... I´m working in Flash CS 5
    Anyone knows how to lock the orientation for portrait just for a part of the code?
    Thank you

    Thanks but stage.autoOrients is read-only in CS5
    Finally I mannaged in diferent way ... thanks guys, youre great!

  • Scanners Aren't Just for Barcodes

    fi yuo cna raed tihs, yuo hvae a sgtrane mnid too. Cna yuo raed tihs? It dseno't mtaetr in waht oerdr the ltteres in a wrod are, the olny iproamtnt tihng is taht the frsit and lsat ltteer be in the rghit pclae.
    Just like our mind, a scanner can read data in strange ways. Whether it is obscure lines and spaces or what appears to be bizarre squares randomly assembled. The scanner is not just for barcodes. It can read characters and decode them properly so as to make the unreadable readable. Intermec Imaging Solutions take advantage of this Optical Character Recognition capability to provide the ability to read checks, license plates, shipping container serial numbers, addresses, labels … or whatever your mind can imagine. Break out of barcode jail and run free with Imaging Solutions.
     Read on for more ...

    at the beginning ,it seems like another laguage i do not know,but when i read it i find i can read! this is so interesting! but which  strange barcode scanner you said above, how does it become strange

  • Advice for keeping high quality files for archiving

    I'm contemplating archiving here. I love reference files because they are pretty small in file size and don't compress. However, I have to worry that all my files will remain in the same exact place forever. I have found that is not always the case for whatever reason. Then there is self-contained reference files. A great idea...I don't have to worry about moved files but the file size is enormous. I do long videos (sometimes an hour or so) so file size is really important to me.
    Is there anyway I can do a self-contained reference file but somehow reduce the file size or something? I know I'm throwing a bone here but I figured I would ask because my current scenario is not improving daily. I know I can put my hour or whatever to tape but that essentially is compressing it and I'm using valuable time. Any advice?

    HI Lowsky, I been down this road some time back and my opinion is that if you are working in any workflows associated with CMFs (contemporary media format) in a tapeless workflow then storing your LONG TERM content as CMF's on spinning disk will eventually lead to misery and a hopeless state of anger and heartache. Spinning disk is not the long term answer.
    refer here for lots of detail: I have post this detail in another forum at
    http://www.reduser.net/forum/showthread.php?t=21284&page=6
    *Archiving FCP Media Manager Projects, essence, import/transfer material.. etc*
    Aside from many testimonials about DISK being faster (more accessible?) and convenient, storing content on spinning disk is a like as a child having all the toys you could imagine but only playing with your 3-4 favourites. (replace with any analogy). Simply you only need the stuff around on disk that you actually use a lot or currently.
    I (and I'm not alone) don't trust and disk storage system unless you buy enterprise level disk arrays with some fault tolerance and smart disk array controllers AND that you have at least multiple instances of the content. I qualify ENTERPRISE disk systems - these at $USD5.00-$USD10.00/GB+. I mean those disk arrays from I,T. vendors, and M&E guys like Isolon, DDN, Apple, HP, Copan and their 40+ ilk.
    The affordable stuff most of us is around $USD0.25-$USD0.75/GB - SATA and lowest end HBA's or simple controllers. Basically just spinning +power soaking heat dissipating buckets+ to put our content into. (USB | FW or the external JBOD disk enclosues with an HBA or higher FC disk arrays)
    Most of these are enterprise disk storage systems that are out of the price range of many on this forum...
    Devices like DROBO™ are cute but they are way way too slow (29MB/s when not busy consolidating itself ) and are very limited on their architecture for VIDEO work (useless). I gave mine away after a week to a photographer.
    Alternatives like many sets of external and detachable and mobile spinning disks, leaving them spun down until use offer a great odea however unless the disk controller is savvy, you may as well have a bank of el cheapo Le Cie 1TB death disks and get on your knees and face the moon when you power them up.. (Good = luck with that!) mode=:rant
    *Viable Archive Solutions for CMFs?*
    After looking for viable solutions to by content storage problem after moving to a tapeless workflow with my HVX200 and P2, AND losing on two separate occasions a whole 1TB external disk (Le Cie).. losing most of the data of two drives (2 x 1TB over 4 months).. I have had it with disks!
    For me, Disk storage should only be used like a +kitchen table+ for immediate and current and frequently accessed work. Like the +toy analogy+, hen not in use, put the toys away somewhere where they will not be damaged (the content objects) (like a large toy box or cupboard) that you can access with ease. (not the garden shed out the back nor the attic else it will never be used). This is workflow is simple enough..
    My first thought for managing FCP media manager archives, P2 footage and final composites was to use BD's.. however the cost for the content that was wanted to archive was not cost effective. I had literally 100's of old video tapes, DV , HDV and ye old video8 rubbish that I needed to move to a CMF, all accessible via proxies and metadata (a la CATDV™ a mam from squarebox.co.uk). The restriction was COST of BD or DVD-DL media and worse the time of write and then access the material ESSENCE when I needed it.
    I even looked for a while at many 100's of DVD-5's which in Hong Kong are as cheap as free beer coasters in a bar. I would buy them in canisters of 100's at a time. Simply these are cost effective using TOAST to make multivolumes self extracting archives, but are SOOOooooo slow to write and then access.
    So I turned to looking at the economies and workflows of using LTO4 Ultrium data tape drive. I was quite surprised at the reasonable cost.
    The cost of Ultrium LTO4 data tape media of to 800GB native for prices that are as cheap as $USD1.40/GB as pure media (the tape cartridge itself).It depend where you buy them and at what quantity. Of course there are the necessary offset/initial costs of the data tape drive AND the SAS HBA you will need for your mac. (LTO4 Ultrium @ $USD2700 and $USD150+ for SAS HBA). Much cheaper fo Ultrium LTO3 but lower data rates and capacities.
    NExt year HP et al will have Ultrium LTO5 out at 1.5TB RAW/native capacity as their roadmap suggests.
    THe uncompressed / RAW data rates of LTO4 Ultrium data tape drives for ARCHIVING material is for me between 105MB-109MB/sec (that's megabytes).. simply BLOWS any firewire 800 interface out of the water. There are many variables however essentially for people like us whose business is content creation or even the part timer who doesn't want to lose stuff, this is really worth a look. Again it will depend on the software you utilise. I use Tolisgroups BRU.
    Just do the sums on the time it takes you to archive (or copy to another disk system [BD or DVD-5, DVD 9, et or a spindle) lets say 4 hours of DVCPROHD 1080P (110Mbs or just over 1GB/minute). You can see that this is a lot of content and will take a great deal of time.
    This works out at roughly 240GB.
    I think this will take over 500 minutes (6 hours? @ 2min/GB)+ to COPY on a FW400 interface and slightly less on a FW800 interface.
    However it takes a mere 2200 second or 36 minutes using an LTO4 SAS Ultrium tape drive (with no tape mount/dismount timeloadlocate)!
    On a lesser scale, a look at DDS tapes for the low end. These are despite rumours/myths are quite stable and work well with the right software on the mac and the mac laptop.
    I am having great success with this archive and recall system using Tolisgroups BRU that is NATIVE for OSX.
    I have posted some very recent information on the two SAS PCIe HBAs I am using (ATTOTECH and LSI) and the two tape drives I am using (HP and QUantum).
    For LTO4 Ultrium SAS tape drives I would recommend only HP and ATTOTECH EXPRESSSAS as this is reliable and very stable and very fast for OSX.
    I am very happy with this archive/recall workflow using LTO4 Ultrium data tape for FCP.
    I have post this detail in another forum at
    http://www.reduser.net/forum/showthread.php?t=21284&page=6
    hth
    w
    HK

  • How do I create an Archive Mailbox for a pop3 account on an iPhone4?

    How do  create an Archive Mailbox for a pop3 email account on an iPhone4 running iOs6?

    You can use classifications but there is no auto feature to archive like that on web apps.
    In terms of the blog, Like I have said to everyone that has posted about blog preview images:
    http://www.prettypollution.com.au/business-catalyst-blog
    Just one example of an image at the start of the blog post rendering out, not hard at all.

  • A workflow for archiving and de-archiving HD clips

    A few months ago I put out a query on the best workflow to use for archiving HD footage whilst maintaining the flexibility of importing to iMovie and doing some editing at a later date. I don't have a super fast mac (yet) so editing the HD in iMovie can be a bit of a pain. Thanks to Appleman1958 for some top tips. I thought I'd share my workflow with you.
    Once I have some clips on the camcorder I want to archive the original footage without having to go through iMovie everytime (which decompresses the clip files to HUGE sizes!). But I also want to be able to quickly de-archive some footage and make a simple DVD or make a movie on the (upgraded!) computer.
    1) I connect the camera to the mac via USB. I have turned off the iMovie Auto-open function. The camera appears as a mounted drive on the desktop.
    2) I open Toast 9. I set it up to make a "Mac Only" Data disc. I open the camcorder drive and locate the AVCHD folder. I drag the AVCHD folder into the Toast 9 window.
    3) I then tell Toast 9 to make a Disc Image as opposed to a real disc. I name it appropriately and save it to a hard drive. This is step one of the archiving. I now have a digital copy of the original camcorder clips in their original format (not Mb hungry .mov)
    4) After a while, when I have a bunch of disc image files, from different sessions, I tranfer them all onto a real DVD Data Disc. This now gives me a hard copy of the original camcorder files which I can store securely away from thunderstorms and what not.
    If I decide to make a simple DVD from any old footage I do the following:
    1) I connect the camcorder (with no clips on it) to the mac.
    2) I insert a DVD Data Disc with archived disc images on it, or I navigate to a disc image file on a hard drive.
    3) I mount the selected disc image on the desktop using Toast 9 (gives you the option in a right click context menu in Finder). This allows me to see the AVCHD folder in the disc image.
    4) I move the AVCHD folder onto the camcorder, replacing the one that was already there. If I was to open iMovie at this point it would read the old clips off the camcorder.
    5) I disconnect the camcorder that now has the old clips on it. When I turn it on it says it needs to rebuild the image database (guess it prefers to make clips rather than have them thrust upon it!). I say OK and it thinks for a few seconds. Next thing - presto! The old archived video clips play like I just shot them.
    6) I then hook up the camcorder to my Sony VRD-MC5 DirectDVD. I can then make a one-touch DVD of some or all of the clips for use in my BlueRay player.
    At any time I can mount a disc image on the desktop and open iMovie. I can then import all/some of the clips from the mounted disc image (whcih is just an AVCHD folder) and go about making my movie.
    But I'm usually happy with just being able to make a simple DVD for viewing with family/friends. Note that for all of this to work as well as it does I needed to buy Toast, a Blueray player and the Sony DirectDVD. But it was worth it as I can now easily archive all my footage safe in the knowledge that it is all readily transferable into iMovie or onto a playable DVD at any time.
    To anyone else out there struggling to get to grips with their new HD AVCHD camcorder I hope this has been of some use. Again, thanks to Appleman for helping me out. There is no doubt an even easier process that I am unaware of but so far this is working out well for me. My original post is at: http://discussions.apple.com/message.jspa?messageID=7118597#7118597

    Thanks for posting your experience.
    If you move the entire contents of your camera instead of just the AVCHD folder, you should be able to mount your disk image and import directly from there, without having to plug in your camera and transfer it back there. I haven't tried this in Toast, but it should work. It works well in disk utility.
    Also, just FYI since you have all the tools, I have found that if I create a playable BluRay DVD using a standard DVD using Toast, I can insert the DVD in my Mac, and it is recognized as a camera. I can then import the edited movie back into imovie.

Maybe you are looking for

  • Premiere Elements 11 App Crash

    I just purchased Premiere Elements 11 and cannot get it to work on my PC.  Every time I attempt to launch it, the program crashes. My PC: HP HDX 16-1200 Intel Centrino 2 Dual Core 64 Bit Processor Windows 7 64 Bit NVidia 9600M GT with latest driver F

  • The device is in use by another process - error - cannot select Multi Output Device - Mac OSX 10.8.2

    Dear Adobe Users! Please help! I'm using Adobe Audition CS5.5 on a Mac - OSX 10.8.2 (latest version of Mountain Lion) and I'm trying to select a Multi-Output device. This was working FINE last few days - today, I get an error. I've tried to re-instal

  • Curve 9300

    Hi,i wonder if somebody can help me? My app memory keep on dropping by allmost 20 megabites,then i reboot and i,ve got some memory to use but within a couple of ours it drop again! I,ve deleted some apps but not even that does not solve the problem.

  • Is there a way to put a resume on an ipad?

    Is there a way to make a resume on an ipad?

  • Info record and source list

    Hi We have two info records for one material and source list is not being maintained. What will be the implications in this scenario?? Regards Chitra