Ps module

Hi ....
         I am working on ps module .
         There is a transaction cje0 , what is the functionality of this transaction and apart from this there is a coloumn actual cost- from where will the values populate .
        can any one please guide me this is urgent

Hi
this is the Tcode which stores all the Reports related to PS module
that are designed using the REPORT PAINTER/REPORT WRITER tool
double click on any report it displays the report
see the doc for report painter/writer
Report Writer functions can be accessed from within the Report Painter.
The difference lies in the GUI of the report painter.
For Report Painter
http://help.sap.com/saphelp_47x200/helpdata/en/66/bc7d2543c211d182b30000e829fbfe/content.htm
For Report Writer
http://help.sap.com/saphelp_47x200/helpdata/en/66/bc7dc143c211d182b30000e829fbfe/content.htm
Refer the following links :
http://www.virtuosollc.com/PDF/Get_Reporter.pdf
http://sap.ittoolbox.com/groups/technical-functional/sap-r3-other/accessing-tables-using-report-painterwriter-98766
http://help.sap.com/saphelp_47x200/helpdata/en/da/6ada3889432f48e10000000a114084/frameset.htm
http://help.sap.com/saphelp_bw31/helpdata/en/66/bc7d2543c211d182b30000e829fbfe/frameset.htm
Regards
Anji

Similar Messages

  • Mixing memory modules on Westmere

    Dear Hardware gurus,
    I have a 12-Cores Westmere. Do you know is it possible to mix different memory modules on it, namely:
    6x1 Gb 1330Mhz
    +
    2x4 Gb 1066Mhz
    and if yes, in which configuration?
    Thanks a lot for any comment!

    Kappy, thanks for the note.
    I am actually going to order some more 1333 modules, but just for the short time I have to work with what I have currently (see my original post).
    As I posted above, I tried a bit already to combine the modules and Mac doesn't boot
    Can you suggest a configuration, which will work?

  • Adobe Bridge CS6 for mac: export modules, facebook export module gives an error every time i try to sign in

    in the export module for facebook every time i click "sign in to facebook" it gives the following error: "An error occurred while request facebook connection"

    "An error occurred while request facebook connection"
    The export module has been discontinued in Bridge CC and as long as it has been there the option for social media has worked only for FB in a few countries. Due to rights management (as we where told) there where restrictions for most other countries. But if it did work for you in the past you should try click on FB in export module or use the tiny menu icon in the export panel for preferences and try to set up a new connection.

  • FileName in Sender File Adapter Module

    Hi Folks,
    In my sender file adapter have written a module to read the picked file name. The protocol used is NFS.
    Notice that the file name read in the module has the absolute path, including the directory path. E.g The file name xyz has to be picked from source directory
    XIServer\Outbound. In the module when I retrieve the file name, it comes up as
    XIServer\Outbound\xyz. Is this expected behaviour?
    I was expecting just the file name<xyz> to be retrieved.
    Thanks,
    Anand

    HI,
    Create an UDF and write this code.
    DynamicConfiguration conf = (DynamicConfiguration) container.getTransformationParameters().get(StreamTransformationConstants.DYNAMIC_CONFIGURATION);
    DynamicConfigurationKey key =
    DynamicConfigurationKey.create("http://sap.com/xi/XI/System/File","FileName");
    String ourSourceFileName = conf.get(key);
    return  ourSourceFileName;
    in Adapter u will have Adapter specific parameters check the file name check box.
    Using this UDF u will get the file name at target side.
    Regards,
    Phani.

  • How do I use the Web module to upload video to my website?

    I'm using the Lightroom HTML gallery to upload my photos, fine and dandy, very happy with it. I also have some videos trimmed in Lightroom that I want incorporated into the gallery. This doesn't seem to be happening, instead I just get thumbnails. What/how do I incorporate my video clips into my web gallery? I moved over from jAlbum so I could have a simple one-tool workflow, so I'm really hoping that this is possible.

    You can combine stills and video for output to h.264 (mp4 file) for example to upload to Youtube or Vimeo.
    FTP upload will be subject to the limitations of your host. The web module within Lightroom creates all resources to link to the file index.html
    The forthcoming LR6 is anticipated to have HTML5 galleries.

  • Code returns "null" and "0"s in main module - why?

    I am coding a program that is in two modules. The main module serves it's standard function. The inventory class/module has three functions - 1) request stock input on 4 data points (1 String and 3 integers, one of which is a double) - 2) calculate the value of the inventory, and - 3) return string which reads out the 4 data points and the calculation showing the total value of the inventory. I've created the 3 functions in the inventory class/module, but obviously don't have them referring to each other correctly because when we come to the end of the program the output is null for the String and "0"s for the int/doubles. The code is below - any ideas about how to overcome the empty output? The code compiles fine and acts like it is going to work, but when it comes to the final command line it outputs
    "null, which is item number 0, has 0 currently in stock at a price of 0.00 each. The total value of inventory in stock is 0.00"
    Main module:
    public class Main {
        @SuppressWarnings("static-access")
        public static void main(String[] args) {
            Inventory inventory = new Inventory(); //call Inventory class
            inventory.inventoryInput();
            Inventory results = new Inventory();
            results.inventoryResults(); //call for inventoryResults in Inventory class
    }Inventory module:
    import java.util.Scanner;
    import static java.lang.System.out;
    public class Inventory
      //declare and initialize variables
       int itemNumber = 0;
       String productName;
       int stockAmount = 0;
       double productCost = 0;
       double totalValue = 0;
       String inventoryResults;
       //initialize scanner
       Scanner input = new Scanner(System.in);
       public void inventoryInput ()
       out.println("Please enter item number: "); //prompt for item number
          itemNumber = input.nextInt();
       out.println( "Enter product name/description: "); //prompt for product name
          productName = input.next();
       out.println("Quantity in stock: ");
          stockAmount = input.nextInt(); // prompt for stock quantity
       out.println("What is the product cost for each unit? ");
          productCost = input.nextDouble(); // prompt for product cost
        } // end inventoryInput
        public double totalValue( double stockAmount, double productCost )
          totalValue = stockAmount * productCost;
          return totalValue; // return stock value
        } // end totalValue
        public void inventoryResults()
        out.printf("%s, which is item number %d, has %d currently in stock at a " +
         "price of %.2f each. The total value of inventory in stock is " +
         "%.2f\n.", productName, itemNumber, stockAmount, productCost, totalValue);
        } // end inventoryResult
    }// end method

    justStartingOut wrote:
    Actually my final solution was quite simple - I moved the calculation and final formated print text statements into the body of Inventory's class code. It now works. "Works" scares me a bit.
    Someone cooking dinner might rummage about in the fridge and the cupboards to see what's there. Do imaginative things with what they come up with. And, with a bit of luck come up with something tasty or, at any rate edible.
    A physician deciding on a medical treatment would do well to try a more cautious approach. A specific aim would be a good thing. And a calculated appreciation of the documented effects of each medicine. And how they interact.
    It's up to you to determine which approach your coding should resemble. But it seems to me that your original Main class had a perfectly good reason to exist. It was a driver class whose purpose seemed to be to create and use an Inventory. (And using an Inventory is a very different thing from being an Inventory, so it made perfect sense to have two different classes.) To me it works or not, depending on whether it fufills that purpose. And what you have done is not so much solve the problem of it not working, as avoid that problem.
    (If by "moved" you mean that the outputting now occurs as part of - or is called from - inventoryInput() then that is not a good thing. The input method should input: just input.)
    I think that is because once the original input was loaded into the program (when I entered product number, name, price and value), the entries were dropped when the code switched to the next step. I think your intuition is entirely correct. In particular look at what your original main() method does (my comments replacing yours):
    Inventory inventory = new Inventory(); // (A) Create an inventory...
    inventory.inventoryInput(); // ... and put stuff into it
        // (B) Create some new entirely different (and empty) inventory...
    Inventory results = new Inventory();
    results.inventoryResults(); // ... and print its contentsInstead of creating a second inventory, try printing the results of the first one.
    Edited by: pbrockway2 on Apr 22, 2008 12:37 PM
    Whoops ... just read reply 2.
    It might sense, though to call totalValue() at the end your input method (because at that point the total value has changed). Or do away with that method - which you worked on getting right in your other thread ;)

  • More text options in Print Module

    It's frustrating to be able to do just about everything in LR - but not quite.  I'd like more text options for the printing module.  For example, when I'm printing a limited edition print, I put the edition number in the bottom left corner, under the image, within the border of the print.  The title goes in the middle, slighty larger font, and then possibly a watermark.
    I can use the Identity Plate to create a nice looking title, but the Photo Info will only print in the middle with no options for positioning it anywhere else, or no options for other fonts.

    I would second this proposal..... with a serious passion.  I think it is unbelievable that Adobe will not provide us with the option to print the metadata with our images.
    The current metadata print options are in the dark ages, a joke and an insult to anyone trying to put a proper caption on a printed image.  For example, one cannot currently control the postion or font of a basic caption, never mind a considered template which might incorporate copyright, date, author, etc..   I also make folios (ala Lenswork).  Unfortunately, a detour to PS also means that this must be done manually, rather than using a template.  Adobe have all the tools to make this work, many of them are in the Slideshow module, so already the code is inside Lightroom.   It is so sad that a company like Blurb can provide these tools free of charge in free software, but Adobe seem incapable of providing these basic features.  I was disappointed they were not in version 1, frustrated when missing from version 2 and  apoplectic when not in version 3. I might excuse the omission if I could build a template in PS which allowed me to place text from the metadata into a formattted page layout, but this is not possible either. So despite the fact I have purchased both Lightroom and Photoshop, and paid for upgrade after upgrade of both products, this basic facility is still missing.
    I can only deduce that people in Adobe print images in two modes.
    1) a lonely image in approx middle of the page with no text formatting or
    2) an image in draft mode with a caption and a name plate and uncontolled other text in ad hoc placements (totally unsuitable for presenting to a client).
    I would put this requirement ahead of so many other popular requests (even ahead of requests such as networked storage, soft proofing, etc).  I can mention other software products who do a really good job of printing meta data with images, do serious work on sharpening, etc. for a fraction of the cost of the Lightroom / Photoshop combination. Becasue I am on an Adobe site I will not mention the names of these non Adobe products. If these small companies can solve this problem, surely Adobe can do so as well.
    I also find that I cannot trust the page setup templates that I do create. It seems to me that many of the properties (ie page size, orientation, matt / gloss options) disappear without warning.  I suspect this happens when I have problems printing to networked Epson printers (maybe others, but I only use Epson ...with Windows 7.)  This is very frustrating when my template changes from Matt in to Gloss, with subsequent wasted of ink and frustration and lost time in correcting and re-updating the template.
    Adobe, please finish the Print Module.  I do not want any more glitzy updates to publishing to the most recent social media exchange medium. Can we not get basic printing working first.
    (..... thanks for listening.....end of rant).

  • Mixing RAM Modules

    Several weeks ago, I replaced my 256 MB RAMs with 2 1 GB modules in a late 2005 G5. They seemed to work fine, though my GPU seemed to be running a bit hotter. I just installed an additional 2 GB bought from OWC, and also added back the 2 original 256 MBs to bring my total to 4.5.
    Looking in System Profiler, I see that my original 256s and the latest 1 GB modules are PC2-4200U-444, as specified in the online compatibility guide. I see the I GB modules from my first upgrade are PC2-3200U-288.
    I bought them at a local shop- for way too much money, by the way - and was told that the number printed on them was wrong and they were compatible with my model. Is that right, or this a problem?
    Thanks

    Hi! The PC2-4200 modules are the correct ones and you shouldn't run anything slower. You can run faster ones but you shouldn't run slower ones or mix speeds. And if the computer sees them as the slower ones then most likely they are! Tom
    Message was edited by: Thomas Bryant

  • Mixing RAM Modules (1gig + 2gig = 3gig)

    Hello,
    I am about to buy a Mac Mini and I am on a tight budget. The one thing I want to do for sure is upgrade the memory, but I'm in a quandary of sorts given my budget. The retailer where I want to buy the Mini from only sells the appropriate RAM for the Mini in 2gig modules. So here's my question: I know it is possible to mix the stock 1gig stick with a 2gig stick to get 3 gig of RAM total, but will it be worth it to me? I realize that the best configuration would be to slap in 2 2gig modules in and just be done with it, but with 3gig, would I be appreciatively shooting myself in the foot and killing the machine's performance, or wouldn't I notice? I need to have the memory installed at purchase because I am physically handicapped and adding the memory myself is out of the question. And after researching how to replace memory on the Mini, I wouldn't have the courage to ask anybody I know to attempt to do it after buying it. Is mixing RAM modules a good idea?
    Thanks in advance.
    Malcolm

    Nope, I am not confused, There does have generation between Mac mini model. Maybe not official, but we all know. Check About This Mac ---> More Info ---> Model Identifier : Macmini2,1 (That means, 2nd generation)
    Macmini 3,x (means 3rd generation I supposed)
    And the 3rd generation doesn't support Dual Channel, referred to Crucial.com
    http://www.crucial.com/store/listparts.aspx?model=Mac%20mini%20%28Intel%20Core%2 02%20Duo%202.0GHz%20DDR3%29%20MB463LL/A&pl=Apple&cat=RAM

  • Memory modules

    Why is the Samsung module a quarter the price compared with the one from the Apple Store?
    http://store.apple.com/jp_edu_1460/memorymodel/ME_2_66_MACMINI
    compared with
    http://www.dospara.co.jp/5shopping/detail_parts.php?bg=1&br=30&sbr=471&ic=154499 &ft=mac+mini&lf=0
    Quality? Not quite the same specs? The Samsung is on old product? Apple product specifically made for Mac? Other?
    I'm not up with the technology, etcetera, and basically want to know if they will work exactly the same or if they may not be quite the same?
    I have read many posts relating to different maker's modules but am still not quite sure. Any advice would be greatly appreciated. Thanks.

    For what ever reason, Apple simply charges way to much for
    RAM.  If you want to add RAM to your system, purchase from
    OWC or Newegg.  At OWC, they actually have a selector so
    you chose the correct RAM for your machine.  At Newegg,
    you need to know exactly the RAM module you need.  Both
    are pretty good at returns for bad or incorrect devices.

  • Memory modules and hard drive not recognized

    I removed and reinserted the factory installed Satellite L505D-LS5007 laptop hard drive and memory modules just as practice for installing a hard drive upgrade and an 8GB memory upgrade. The problem is obviously with the memory and not with the hard drive.
    After the first practice try, one memory module was recognized. Also for a few seconds after the first practice try, I ran the PC with the battery installed, but no memory installed. I did not look in the User's Guide first to see that I should have removed the battery before removing the memory.
    Now the System Indicator Lights for the HDD Activity and Memory Card Reader do not light up. The PC turns on and the display is solid black with no messages.
    Before buying new memory modules, what possible ways might there be to get the PC to recognize the factory installed memory modules and hard drive again?
    Solved!
    Go to Solution.

    When troubleshooting, I always change one variable at a time. I would hate to miss a solution by being in a hurry. In this case, you may have damaged either the RAM or the RAM slot. I would stick with the Toshiba specifications for the RAM, making sure it is the correct size, speed and type recommended. I also recommend that when you replace the RAM that both modules be from the same manufacturer, size, and specification. Try one RAM module in one slot and then the other. And then try both RAM modules in both slots. After the testing you should be able to figure if this is a RAM problem or a RAM slot problem.
    In the case of hard drives, the real test is whether or not the Bios sees the hard drive. If the Bios doesn't see the hard drive, it's not going to work. The Bios should see the hard drive whether or not the hard drive is partitioned, formatted or has data on it. My experience has been that many Toshiba laptops will work fine with larger capacity hard drives provided they are the same speed in RPMs, have the same interfacing connection and physically the same size.
    Again, prior to doing any work on your computer, make sure that both the AC power has been disconnected and the battery has been removed. Be careful out there. A blown repair job by a non-Toshiba tech is NOT covered under warranty.

  • Memory modules for Msi Big Bang trinergy

    Hey forum,
    i want to buy some memory modules for my trinergy mobo because the ones i had earlier also proved to be incompatible. I would like to ask you if there are any memory modules besides the ones recommended from the MSI site concerning my mobo. I am looking for a 2x2 gb ram kit with a heat dispenser so it can work around 1600mHz. Thank you in advance 
    P.S Is the list on the site the only one? i mean are there any updated versions of it with more high end memory modules tested?

    Ideally you would provide us with your fullsystem specs first >>Posting Guide<<
    From a memory perspective, the reason these modules have heatspreaders is mostly due to marketing and to impress the potential buyers. The secondary reason is that most manufacturers sell you overvolted and overclocked 1066 or 1333 chips on a 1600 marketed module that needs 1,65V instead of the standard 1,5V. Your memory controller is part of the CPU and natively only supports 1333 at 1,5V.
    If you really insist, then at least get yourself a 1600 kit that does this speed at 1,5V. One of the modules that seem to work well are the CMZ4GX3M2A1600C9 from Corsair. From a user perspective, the mem modules from Crucial that you see in my signature come highly recommended as they have been proven to work on the P55 platform whenever used.

  • Mixing memory module of different sizes in G5-8 slot machine

    is there a problem with Mixing memory module of different sizes in G5-8 slot machine
    I have 2gb on four slots with 512 memory chips
    Can I upgrade my memory with 1gb chips in the remaining four slots.

    Hi epospiech-
    Yes you can.
    Instructions here: Memory (DIMMs) Replacement Instructions
    Luck-
    -DaddyPaycheck

  • Memory modules not working on HP Touchsmart 600-1050sc desktop - update BIOS ?

    Hi
    I just bought 2 x 4GB DDR3 PC3 12800 memory modules from Cruical (see http://eu.crucial.com/eur/en/touchsmart-600-1050sc/CT5311446)
    The modules does not work on my HP Touchsmart 600-1050 sc desktop. Acc to HP specs it should support 2 x 4GB (max 8 GB in total).
    But the computer does not start (I have installed the modules correct). The manufacturer advises me to update my BIOS.
    I wanna ask you guys, before I try suhc a thing, is there any chance this could help?
    Thanks

    Hi,
    Its specs:
    Memory upgrade information
    Dual channel memory architecture
    Two DDR3 SO-DIMMs (200-pin) sockets
    SO-DIMM type-PC3-10600 (DDR3-1333)
    Non-ECC memory only, unbuffered
    Supports 2 GB DDR3 SO-DIMMs
    Maximum memory only if using 2GB DDR3 DIMM modules.
    Supports up to 8 GB on 64-bit PCs
    Supports up to 4 GB* on 32-bit PCs
    Please try PC-10600 RAM
    Regards,
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • HT1423 I am adding more memory, should I replace the top two slots with the 4g memory modules, then place 2g memory modules on bottom slots. Does it even matter?

    I am adding more memory, should I replace the top two slots with the 4g memory modules, then place 2g memory modules on bottom slots. Does it even matter?

    I am adding more memory, should I replace the top two slots with the 4g memory modules, then place 2g memory modules on bottom slots. Does it even matter?

  • Would I be better off mixing memory modules in my iMac rather than just having 1GB unused?

    I have a late 2006 20-inch iMac that currently has two 1GB 200-pin PC2-5300 (667MHz) DDR2 SO-DIMM modules installed. I recently bought two 2GB modules of the same type (different brand). Since I also have a macbook that uses the same type of memory (but 1GB total), I want to know how I can get the most speed with the momory I have for both computers (ie 4GB in an iMac that only recognizes 3GB and 2GB in the Macbook or 3GB in each). Thanks!

    Matching 4GB in that iMac will give you a slight increase in preformance over 3GB.
    see >  Understanding Intel Mac RAM - Mac Guides

Maybe you are looking for

  • SAAJServet error when sending a SOAP message on 10.1.2

    Hi, We have deployed a server application in OC4J 10.1.2 with a servlet listening for SOAP messages (SAAJ 1.2). If we use Standalone OC4J with SSL enabled and HTTPS communication between client app and server, it works fine, but when we move it to an

  • Msi object will not install with non-admin user

    I've created an MSI object for the Flash 9 plugin, which installs okay on the workstation when I login with an admin user. It will not install when logged in with a normal user account. I have set it up as an unsecure user and given the workstation R

  • What are the largest sized memory cards that can be swapped into a macmini 2.6GHz i7 quadcore

    What are the largest sized replacement memory cards that can be used in a new macmini 2.6MHz i7 quad core? I see samsung has some 16GB cards and was wondering if the macmini can be jacked up to 32GB instead of the apple store configuration of 2x8GB o

  • How can I change permissions to access network drive

    I change Cf user permission for I access and upload my network drive documents(for using a cffile action="upload"). I need to add permission on the network.How change my Cf access my authority.http://help.adobe.com/en_US/ColdFusion/9.0/Installing/WSf

  • Maintenance in Leopard 10.5.1

    As my Mac Pro is turned off overnight am I missing out on the systems essential maintenance sequence and if so, can I use programs such as Onyx to run these? Cheers Mark