Confused a little

So lets say I am using PHP. Do i need to install flex on my
Linux box? If so how would you do this where is the step by step
guide.
Thanks...

realtime158 wrote:
> But doesn't adobe flex require server objects to be
installed if you want to use your compiled app on that server?
It does not "require" anything special on the server. If one
want to
use ColdFusion or Java data integration as the back end then
there are
some server configuration issues. But there are other options
that can
use simple web services or XML HTTP/REST type solutions that
do not
require anything special on the server.

Similar Messages

  • Question Re: connecting 2960C switch to 3750 stack, max number of VLANS limit...

    Hypothetical question: Let's suppose for example I've got a 3750 switch stack in a data center with over 300 VLANs defined on the 3750 stack, and that stack is also my VTP domain server. I wish to connect a small compact 2960C switch (which has a max limit of 255 VLIDs) as a VTP client to the 3750 stack's VTP domain and have the port at each end of this uplink connection set up to be an 802.1q trunk, but limit the VLIDs trunked to the 2960 to just a small handful (let's say just 3 or 4 vlans) via for example something like "switchport trunk allowed vlan 1,2,11,18" on the uplink port of the 2960C switch. Will the mere fact that there are hundreds of  VLIDs present in the vlan configs on the 3750 stack confuse the little 2960C switch's max 255 vlans limits?  Or will the 2960C with its "Lan Base" software happily show all 300+ vlans present in the parent switch stack in a "show vlan" command but simply only let you activate up to the 255 limit locally on that switch?
    Normally I'd just use a 3560C switch with IP Base software for this purpose and not worry about any vlan max limit, but we're having to penny-pinch the project and save a few hundred dollars on this compact switch purchase and I've never used the 2960 family before. The small compact switch will be used to host a non-Cisco, 3rd party wireless LAN controller with several APs that will have a handful of different SSIDS, each on a separate vlan, and will not be located in the data center, but in another building connected by a fiberoptic link that will carry the "trunk".  
    EDIT: I found an old discussion thread where someone else was faced with a similar scenario, and he discovered that even with using "switchport trunk allowed..." and "switchport trunk pruning..." commands on the interfaces at both ends of the link, that  the 2960 switch would still fall out of VTP client mode into transparent mode, which make you lose the benefit of having centralized management of a VTP domain. Seems the VTP protocol will always publish the full list of vlans from the server and this blows the mind of the small switches which  drop into VTP transparent mode because they cannot handle all that many spanning tree sessions. Looks like the 2960 simply cannot be used in a high-vlan-density network if you wish to preserve central VTP domain management features. Rats.

    The house network machine can browse and playback/stream video fine, however at the same time the machine on the wireless shows significant slowdown when browsing the web.
    The issue is defiantly on the wireless side, If i plug a machine directly into the switch and assign it a static ip, i do not get slowdown, so this is happening before it reaches the poe switch.
    So many factors affect the way to stream data up and down wireless.  Sure, I have seen >40 clients on 802.11a AND 802.11b radio of a single 1140 AP.  But this is not good.  Why?  Because wireless is a very "noisy" environment.  When one talks, everyone else has to stop, listen and waits for their turn.  The > 80 wireless clients connected to the 1140 AP had a detected maximum speed of 11 Mbps and they couldn't get any higher than that.  They couldn't get any lower than 11 Mbps because I've disabled lower data rates.   
    You said you hard-code the channels to 1, 6 and 11 but what is the co-channel interferrence like in your wireless environment?  

  • Writing to file within another package

    Hi all, I had a search in the forums, but I couldn't find what I was looking for.
    I have what I consider to be good code organised into packages that make sense, but for some reason, I cannot programmatically save Files to where I want to.
    If I create them manually, they read fine, (with
    File xmlFile = new File(this.getClass().getClassLoader().
            getResource("data/records.xml").getFile());
    SAXBuilder builder = new SAXBuilder();
    Document xml = builder.build(xmlFile);).
    So now I want to create this file programatically.
    The code I have is
    // Make a new file
    File xmlFile = new File("data/" + p.getName() + "deck.xml");
    xmlFile.createNewFile();But that gives (probably unsuprisingly)
    java.io.IOException: The system cannot find the path specified
         at java.io.WinNTFileSystem.createFileExclusively(Native Method)
         at java.io.File.createNewFile(File.java:883)
         at gamepackage.PlayerDeck.updateDeck(PlayerDeck.java:99)When I create a file in the default package (probably frowned upon) with
    // Try create file in default package
    File xmlFile = new File(p.getName() + "deck.xml");
    xmlFile.createNewFile();It works as expected (except my file is in the default package).
    So, it must be a package problem. I have tried messing around with mkdir(), but that creates Files in directories called "data" rather than my existing package "data" (which confuses my little soul, because I thought packages were treated as directories (see JAR files etc)), and I have tried messing around with URIs and URLs, to little avail. Also, ClassLoaders such as
    File xmlFile = new File(this.getClass().getClassLoader().
                      getResource("data/" + p.getName() + "deck.xml").getFile());wont work, because I need to create the file before I can call .getFile(); but I need the File to call createNewFile() on.
    Please can you point me in the right direction? Many thanks in advance.

    Hemmels wrote:
    I've been playing CS and BF2142 and went for a jog, and we're into double figure views It's not a bad question, and you presented your problem well, it's just... well it isn't done this way. Packages are really intended to solve +this* problem. But the organization (and unique identifying) of source files problem.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Can a thread do more than one thing at once?

    Hey all,
    I'm confused a little bit on how a thread might act in this situation:
    I have a server-client setup. The thread on the Client sits and waits to receive instructions from the server. When it does, it manipulates some ArrayLists I have in the Client in different ways depending on what the instructions from the server were. What would happen if I sent two instructions from the server, one right after the other, and they both had to manipulate the same ArrayList. I was going to synchronize the methods operating on the arraylists, but I didn't know if that would work since it's really just one thread. But then, since it's just one thread, can it do more than one thing at a time? Or will it queue them up somehow? Thanks!
    Matt

    Rhesus21 wrote:
    Hey all,
    I'm confused a little bit on how a thread might act in this situation:
    I have a server-client setup. The thread on the Client sits and waits to receive instructions from the server. In client-server applications, the clients make requests and the server performs them and sends back a response.
    It appears you have a central "server" which sends back updates/instructions to the client in a server-push approach.
    When it does, it manipulates some ArrayLists I have in the Client in different ways depending on what the instructions from the server were. What would happen if I sent two instructions from the server, one right after the other, and they both had to manipulate the same ArrayList. Are both instructions sent on the same connection? Does your client only read the next instruction after performing the previous one. Are you using multiple connections and do you create a thread for each connection?
    I was going to synchronize the methods operating on the arraylists, but I didn't know if that would work since it's really just one thread. If you have only one thread you don't need to use synchronized.
    But then, since it's just one thread, can it do more than one thing at a time? No.
    Or will it queue them up somehow? Yes. Each connection has a buffer at both ends. When the buffers fill the sender blocks waiting for the receiver to read the data.

  • Final Cut Server Usage Question...

    I have just started researching this product and confused a little about it. I am the IT dept at a small advertising agency that does quite bit of video work.
    Mostly all of the workstation in the office are PowerMac G5's that clock in at dual 2.2GHz or above with 4GB of RAM
    We also have an Xserve G5 (Dual) with 4GB of RAM a 2GB fibre card installed and an apple RAID system as well. The office is all wired with 10/100.
    With final cut server - will they be able to actullay edit video over the network on the RAID through the Xserve. Is that what this software is for? Sorry for such a lame question. If not is this basically like Adobe's Bridge application?
    Let me know.

    Yes it does do basically what your saying, You can leave the source media on the server and just edit from your local machine. You can also download proxies (lower res version of the source media) and edit on a laptop or with a PC without having to move the large source files.
    I cant imagine any reason why any company or small business using more than one editing machine wouldn't go for this solution
    Does that answer your question?

  • When I make a PDF from an AI file invariably I accidentally edit the PDF, not the AI file

    [I'm a long-time user of Illustrator and the creative suite/cloud.]
    When I make a PDFx file in illustrator I always "view PDF after saving". Invariably -- even when I rename the PDF -- I inadvertantly start editing the PDF as though it is an illustrator file, which the software permits. Of course, the source AI file isn't updated and I end up saving the revised PDF back to an illustrator file. It's a pain, confusing what little workflow management I have.
    Although PDFs and AI's are essentially the same, I always consider the AI file the core source file and use the PDF for client review.
    Is there a way to turn off editing of a PDF when I'm inside illustrator?

    That seems to work. The PDF that is previewed is an acrobat file and not an illustrator file. I can't edit this [thankfully]. Unfortunately, just more to remember to do
    There's no chec box in preferences that shuts off the feature I originally asked about?

  • Using multiple values in a where clause, for values only known at runtime

    Dear all
    I am creating a PL/SQL program which returns multiple rows of data but only where it meets a set id values that a user has previously chosen. The id values are stored in an associative array and are chosen by a user in the preceding procedure at run time.
    I know all the table and column names in advance. The only things I don't know are the exact number of ids selected from the id column and what their values will be. This will only be known at runtime. When the procedure is run by the user it prints multiple rows of data to a web browser.
    I have been reading the following posting, which I understand to a large extent, Query for multiple value search But I cannot seem to figure out how I would apply it to my work as I am dealing with multiple rows and a cursor.
    The code as I have currently written it is wrong because I get an error not found message in my web browser. I think the var_user_chosen_map_list_ids in the for cursor loop could be the problem. I am using the variable_user_chosen_map_list_ids to store all the id values from my associatative array as a string. Which I modified from the code that vidyadhars posted in the other thread.
    Should I be creating a OPEN FOR ref cursor and if so where would I put my associative array into it? At the moment I take the value, turning it into a string and IN part in the WHERE clause holds the string, allowing the WHERE clause to read all the values from it. I would expect the where clause to read everything in the string as 1 complete string of VARCHAR2 data but this would not be the case if this part of the code at least was correct. The code is as follows:
    --Global variable section contains:
    var_user_chosen_map_list_ids VARCHAR2(32767);
    PROCEDURE PROCMAPSEARCH (par_user_chosen_map_list_ids PKG_ARR_MAPS.ARR_MAP_LIST)
    IS
    CURSOR cur_map_search (par_user_chosen_map_list_ids IN NUMBER)
    IS
    SELECT MI.map_date
           MT.map_title,
    FROM map_info MI,
         map_title MT,
    WHERE MI.map_title_id = MT.map_title_id
    AND MI.map_publication_id IN
    (var_user_chosen_map_list_ids);
    var_map_list_to_compare VARCHAR2(32767) := '';
    var_exe_imm_map VARCHAR2(32767);
    BEGIN
    FOR rec_user_chosen_map_list_ids IN 1 .. par_user_chosen_map_list_ids.count
    LOOP
       var_user_chosen_map_list_ids := var_user_chosen_map_list_ids ||
       '''' ||
       par_user_chosen_map_list_ids(rec_user_chosen_map_list_ids) ||
    END LOOP;
    var_user_chosen_map_list_ids := substr(var_user_chosen_map_list_ids,
                                            1,
                                            length(var_user_chosen_map_list_ids)-1);
    var_exe_imm_map := 'FOR rec_search_entered_details IN cur_map_search
    LOOP
    htp.print('Map date: ' || cur_map_search.map_date || ' Map title: ' || cur_map_search.map_title)
    END LOOP;';
    END PROCMAPSEARCH;EXECUTE IMMEDIATE var_exe_imm_map;
    I would be grateful of any comments or advice.
    Kind regards
    Tim

    I would like to thank everyone for their kind help.
    I have now successfully converted my code for use with dynamic SQL. Part of my problem was getting the concept confused a little, especially as I could get everything work in a static cursor, including variables, as long as they did not contain multiple values. I have learnt that dynamic sql runs the complete select statement at runtime. However even with this I was getting concepts confused. For example I was including variables and the terminator; inside my select string, where as these should be outside it. For example the following is wrong:
         TABLE (sys.dbms_debug_vc2coll(par_user_chosen_map_list_ids))....
    AND MI.map_publication_id = column_value;';Where as the following is correct:
         TABLE (sys.dbms_debug_vc2coll('||par_user_chosen_map_list_ids||'))....
    AND MI.map_publication_id = column_value';PL/SQL is inserting the values and then running the select statement, as opposed to running the select statement with the variables and then accessing the values stored in those variables. Once I resolved that it worked. My revised code is as follows:
    --Global variable section contains:
    var_user_chosen_map_list_ids VARCHAR2(32767);
    var_details VARCHAR(32767);
    PROCEDURE PROCMAPSEARCH (par_user_chosen_map_list_ids PKG_ARR_MAPS.ARR_MAP_LIST)
    IS
    BEGIN
    FOR rec_user_chosen_map_list_ids IN 1 .. par_user_chosen_map_list_ids.count
    LOOP
       var_user_chosen_map_list_ids := var_user_chosen_map_list_ids ||
       '''' ||
       par_user_chosen_map_list_ids(rec_user_chosen_map_list_ids) ||
    END LOOP;
    var_user_chosen_map_list_ids := substr(var_user_chosen_map_list_ids,
                                            1,
                                            length(var_user_chosen_map_list_ids)-1);
    var_details := FUNCMAPDATAFIND (var_user_chosen_map_list_ids);
    htp.print(var_details);
    END PROCMAPSEARCH;
    FUNCTION FUNCMAPDETAILS (par_user_chosen_map_list_ids IN VARCHAR2(32767)
    RETURN VARCHAR2
    AS
    TYPE cur_type_map_search IS REF CURSOR;
    cur_map_search cur_type_map_search;
    var_map_date NUMBER(4);
    var_map_title VARCHAR2(32767);
    begin:
    OPEN cur_map_search FOR
    'SELECT MI.map_date,
           MT.map_title
    FROM map_info MI,
         map_title MT,
         TABLE (sys.dbms_debug_vc2coll(' || par_user_chosen_map_list_ids || '))
    WHERE MI.map_title_id = MT.map_title_id
    AND MI.map_publication_id = column_value';
    LOOP
    FETCH cur_map_compare INTO
    var_map_date,
    var_map_title;
    var_details := var_details || 'Map date: '||
                        var_map_date ||
                        'Map title: ' ||
                        var_map_title;
    EXIT WHEN cur_map_compare%NOTFOUND;
    END LOOP;
    RETURN var_details;
    END FUNCMAPDETAILS;Kind regards
    Tim

  • Audiocodes m800 SBA will not update Replication

    Hello everyone
    I have a M800 Audiocodes SBA updated to Lync 2013 version 1.1.12.0 and it seems that I can not get replication to work
    I have tried invoke-csmanagementreplication so many time I know that's not it.  I can access the share data files on the host Front End so I know it is not a FW or Port issue, 
    I have tried to take ownership of the XDS-Replica directory and deleted it and ran repair on Lync 2013 Core Components.  I have done a export-csconfiguration on the Front end and Import-csconfiguration -local -verbose -filename .... and that did not
    snap it back into place.
    Can anyone think of something else I can try.  the SBA is quite remote so going to the site is not ideal to possibly put the lync 2013 usb back in a start from scratch.  Oh to add to that I have removed all users and dial plans and removed it from
    the topology and re added it and removed it from the domain and added it .  I have other SBA's running from the same host FE so I know it works for others.  
    If a start from scratch solution is the only way is there a way to perform this remotely ?
    thanks

    I just tried the fabric solution. no joy.
    All the processes start frin I am just not getting updates
    UpToDate           : True
    ReplicaFqdn        : LCAVLT1.ledcor.net
    LastStatusReport   : 7/14/2014 10:00:05 AM
    LastUpdateCreation : 7/14/2014 10:00:02 AM
    ProductVersion     : 5.0.8308.556
    UpToDate           : True
    ReplicaFqdn        : LMAVLF1.ledcor.net
    LastStatusReport   : 7/14/2014 10:00:22 AM
    LastUpdateCreation : 7/14/2014 10:00:02 AM
    ProductVersion     : 5.0.8308.556
    UpToDate           : True
    ReplicaFqdn        : LMAVLT1.ledcor.net
    LastStatusReport   : 7/14/2014 10:00:05 AM
    LastUpdateCreation : 7/14/2014 10:00:02 AM
    ProductVersion     : 5.0.8308.556
    UpToDate           : False
    ReplicaFqdn        : NKUPLA1.ledcor.net
    LastStatusReport   : 6/26/2014 3:32:26 PM
    LastUpdateCreation : 7/14/2014 10:00:02 AM
    ProductVersion     : 5.0.8308.0
    I am going to try to run the CU but I am confused a little on the sql database locations

  • Loading local swf files from Application Dir (ios)

    Hi Guys,
    I would like to load additional local swf files to my ios release build but I am confused a little bit because of the new API changes.
    As far as I know at the moment (from Air 3.7 or newer) it is allowed to load local swf files that contains compiled actionscript both from local folder and from a predefined remote host as well. 
    My assumption based on this article:
    http://blogs.adobe.com/airodynamics/2013/03/08/external-hosting-of-secondary-swfs-for-air- apps-on-ios/
    I created the text file to include all of my local swf file names and created the following node in the application.xml:
    <iPhone>
           <externalSwfs>assets/SampleSWFInfoFile.txt</externalSwfs>
    </iPhone>
    When I compile the release build (ipa) using command line adt, it converts all of my local swfs into the stripped swfs which is perfect, but even though I include all the swfs in the compiler command, it puts only the SampleSWFInfoFile.txt file into the assets folder in the ipa but not the swf files.
    I assume, it thinks I will load these files from an external host, but I would like to include them in the app itself.
    I tried to copy the stripped swf files from the externalStrippedSwfs folder and comment the <externalSwfs>assets/SampleSWFInfoFile.txt</externalSwfs> node in the application.xml and compile it and this way it puts the swf files into the ipa, but when I try to install and launch the app it crashes and when I test it using Flash Builder it shows an error message
    "VerifyError: Error #1042: Not an ABC file."
    Do any of you guys know the  solution for this problem?
    Thank you for your help in advance!

    You're publishing in AOT mode as long as you use one of these:
    The AIR Developer Tool or ADT has targets that lets you package apps either for the AOT mode or Interpreter mode. The targets for packaging in AOT mode are ipa-app-store, ipa-ad-hoc, ipa-test and ipa-debug.
    Flash Pro CS6 and Flash Builder automate this process pretty well so it's invisible but the SWF loads and executes code just fine for me when directly published.
    If I take it to command line I can use this to compile successfully (iPad test app):
    adt -package -target ipa-ad-hoc -storetype pkcs12 -keystore my.p12 -provisioning-profile my.mobileprovision NameOfApp.ipa NameOfApp-app.xml NameOfApp.swf iTunesArtwork iTunesArtwork@2x AppIconsForPublish swfs/swfs.txt swfs/GenerateText.swf
    I at least include generic icons in there but I made a 'swfs' folder and placed 'swfs.txt' and 'GenerateText.swf' in there. The SWF uses code to randomly generate text and changes every second using a Timer. I load it in using the same code you do with the ApplicationDomain.currentDomain context. I see the SWF appear and text start randomly changing.
    As I compile there's a folder generated called 'externalStrippedSwfs' with the stripped SWF in there.
    One thing to note is I do not supply <externalSwfs>swfs/swfs.txt</externalSwfs> in my iPhone settings. If I do that it doesn't work. I supply the path to the text file containing the SWF I want to be stripped to adt itself along with the SWFs I want stripped and it takes care of the rest.

  • Oracle direct path read IO size

    Hello!
    I am confused a little with IO size. I am running 11.2.0.3 on Oracle Linux x64 6.2. Block_size=8K, MULTIBOCK_READ_COUNT=128
    Database is Single Instance and is using ASM grid. ASM AU =1M
    As a test I am running a simple query against large table with 1.5Bln rows.
    select /*+ PARALLEL (STOCK_DAY 10) */ count(*) from stock_day where cstast='NA'
    STAT #140582923121480 id=1 cnt=0 pid=0 pos=1 obj=0 op='SORT AGGREGATE (cr=0 pr=0 pw=0 time=0 us)'
    STAT #140582923121480 id=2 cnt=0 pid=1 pos=1 obj=0 op='PX COORDINATOR (cr=0 pr=0 pw=0 time=0 us)'
    STAT #140582923121480 id=3 cnt=0 pid=2 pos=1 obj=0 op='PX SEND QC (RANDOM) :TQ10000 (cr=0 pr=0 pw=0 time=0 us)'
    STAT #140582923121480 id=4 cnt=0 pid=3 pos=1 obj=0 op='SORT AGGREGATE (cr=0 pr=0 pw=0 time=27 us)'
    STAT #140582923121480 id=5 cnt=2301843 pid=4 pos=1 obj=0 op='PX PARTITION LIST ALL PARTITION: 1 762 (cr=68020 pr=68393 pw=0 time=29346414 us cost=303766 size=669864369 card=223288123)'
    STAT #140582923121480 id=6 cnt=2301843 pid=5 pos=1 obj=1464816 op='TABLE ACCESS FULL STOCK_DAY PARTITION: 1 762 (cr=68020 pr=68393 pw=0 time=24376609 us cost=303766 size=669864369 card=223288123)'
    when I am trying to measure disk io statistics with iostat it shows that Oracle is issuing a 32K direct path read requests to ASM LUNs. Why? Why not 1M?
    Thank you in advance!
    Regards,
    Kirill
    Edited by: Kirill.Boyko on Jan 31, 2013 12:53 PM

    This is a kind of histogram for one parallel session wait events
    select session_state,event,p3,count(1) from V$active_session_history ash where ash.session_id=1904 and ash.session_serial#=24381
    group by session_state,event,p3
    order by session_state,event,p3
    session
    state event P3 COUNT
    ON CPU          5     1
    ON CPU          9     8
    ON CPU          15     1
    ON CPU          115     10
    ON CPU          123     1
    ON CPU          124     2
    ON CPU          126     23
    ON CPU          128     77
    ON CPU          512     1
    WAITING     direct path read     5     2
    WAITING     direct path read     8     2
    WAITING     direct path read     9     7
    WAITING     direct path read     15     3
    WAITING     direct path read     67     1
    WAITING     direct path read     101     1
    WAITING     direct path read     115     18
    WAITING     direct path read     124     5
    WAITING     direct path read     126     35
    WAITING     direct path read     127     1
    WAITING     direct path read     128     97
    in fact as you can see almost all direct path reads are done with io size > 900K. Total size of information read by process~160M
    strace shows a lot of calls to read function. If we divide 160M/78000 reads we will get about 2K per request which is strange
    % time seconds usecs/call calls errors syscall
    98.61 0.212144 3 78356 read
    0.93 0.002000 32 63 58 semtimedop
    0.29 0.000624 208 3 munmap
    0.12 0.000263 0 7407 gettimeofday
    according to iostat we see that we are reading from each LUN with requests of 32K
    Device: rrqm/s wrqm/s r/s w/s rMB/s wMB/s avgrq-sz avgqu-sz await svctm %util
    xvda 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
    xvdb 4.00 0.00 2946.00 1.00 92.01 0.00 63.94 90.60 30.93 0.33 96.00
    xvde 1.00 0.00 2466.00 0.00 77.00 0.00 63.95 49.84 20.64 0.33 80.90
    xvdf 5.00 0.00 2694.00 1.00 84.15 0.01 63.95 69.68 25.37 0.32 87.20
    xvdg 2.00 0.00 2798.00 0.00 87.41 0.00 63.98 91.95 33.81 0.35 97.40
    xvdj 3.00 0.00 2676.00 1.00 83.45 0.03 63.87 38.83 14.72 0.31 82.10
    xvdk 4.00 0.00 2951.00 0.00 92.14 0.00 63.95 100.21 32.42 0.31 91.00
    xvdl 3.00 0.00 2735.00 1.00 85.45 0.03 63.98 56.04 21.14 0.32 86.50
    Why linux is splitting Oracle requests and how to avoid that?
    Regards,
    Kirill

  • Basic Questions about JSF, Login and Session

    Hi,
    I try to implement a login/logout function on my jsf-website. I create one <form> with Login and Pass to enter. My AuthenticBean(sessionbean) checks login and pass. If Login is "ok" the login and pass will set in the authenticBean (min. value of login and pass = 2).
    Now I check protected .jsf files (files who need a login) if in the AuthenticBean the login.equals("") or pass.equals(""). If so, the user is not logged in.
    Is this a safe method or should I choose a better way to have secure login/logout functions. Perhaps its better to create a userSessionBean after a succeful login and check it with HttpServletRequest rq.getSession().getAttribute(userSessionBean)?
    I am confused a little bit and I hope you'll help me:)
    Thnx Alex

    Implement a javax.servlet.Filter and indeed use the attributes of the HttpSession.

  • GRIR question

    Hi Guru,
    Could you please advise the system entry when we clear the GRIR balances via MR11? I believe, clearing will force the GRIR to balance, but I can't see any entry posted. Is there a debit entry to GRIR account upon clearing? What would be the credit side?
    In addition, Please confirm my understand that the entries are cleared from GRIR, the other entries is to account 715291.
    I have checked that the nature of account 715291 is Miscellaneous DBEs.
    Please enlighten why the clearing of GRIR which is related to goods purchase/cost of goods sold is being charged to a DBE related account?
    Thanks,
    Memarslon

    Hi, Memarslon:
    GR/IR clearing account is used to link transaction Good Receipt and Invoice Receipt, due to the timing difference and price/quality variance between these two activities, GR/IR clearing account is taken into consideration.
    1. Good Receipt
    Dr: Stock
    Cr: GR/IR clearing account
    2. Invoice Receipt
    Dr: GR/IR clearing account
    Cr: Account Payable
    Now you can see, in the period end, you should clear the GR/IR clearning account to make sure the zero balance, which means, Good and Invoice are matched equally.
    I think the explanation will answer your confusion a little bit.
    Best Regards, Lawrence

  • Need help on java's JTable

    Can any one give me an example on how to use the JTable to access and display in the JTable from the databases like the MS SQL SERVER or MS Access?(please give me the examples in source codes not the ones that are complex in the jdk example ). I am confused a little on the tutorial on the java.sun.com's site on this JTable swing tutorial .
    Thank you for your help.

    Not to be discouraging, but how can you hope to populate a JTable from a database if you can't follow the tutorial?
    Why don't you work on doing simpler things before trying the more complex things? If you need that kind of handholding, hire yourself a tutor or take a class.

  • Help on Jco

    Hi All,
    I am new to creating Jcos.Can any one have any tutorial on Jcos in EP6 SP2 pdk.I read help document but i am really confused.Its little urgent please post your valueble suggestions.
    Thaks in advance
    JH

    Hi Mike,
    Thank you for your reply.
    I am new to this JCO.I dont know exactly the difference between JCA and JCO.Could you please elaborate it?.
    By reading pdk documentation i installed JCo.Now the evvironment is set.Actually i am using eclipse with sap plugins once i create the project.I dont know exactly where i have to copy the Jco java file which i saw in pdk jco examples.I dont know much about portalapp.xml file .
    I didnt found any doc on creation of jco from scratch.
    I am really thank ful to you if you provide any doc.
    Thank you very much
    regards,
    JH

  • Connect non-sap app to XI

    Hello,
    I have an app able to create Idoc and Idoc-XML, both currently being sent to SAP R/3 up to version 4.6c via RFC (IDOC_INBOUND_ASYNCHRONOUS). Can I keep this way when connecting to XI and if not, what's the alternative? Thanks fo your help

    Hello,
    thanks for your answer. However, I'm confused a little. I thought it's necessary to connect via the RFC-Adapter of XI instead of the IDoc-Adapter.
    Thanks
    Thomas

Maybe you are looking for

  • How to copy specific reports from one environment to another?

    I need to release a few answers, prompts and dashboards from one test environment to a production environment. I do want to move just specific things, not the whole RPD and catalog as I do have a lot of reports in testing. How that can be easily done

  • How to download a mail from pop3 server to an HTML Form

    Hi Friends, i want to download the Mails from a POP3 server using an Html Interface.I mean not from command Line. I have designed an interface that will send emails to Recipients, but i didn't get any idea about how to download the mails to an interf

  • Pasting images into Mail results in a hypertext link, not the image itslef?

    Hello I'm posting on behalf of a friend. He tells me that when he copies an image (e.g., from within Safari) and pastes into the body of a Mail message, this results in a link not the image. However, when I receive the message, I see the image in the

  • How to open custom.pll in forms 10g

    dear all can you send steps to open custom.pll in forms10g

  • Where to get a stronger battery

    i have a 2008 macbook pro at about 320 cycled charges im at 92%, but the 3hrs of battery life is not cutting it, if i wanted to upgrade my battery what is the best one i can get these days, 8,15,20hours? does anyone sell high end items like this? if