How to grant under request

Can you please let me know how to grant under request:

SELECT the element, dest, tlt, src_eff

TMP_UDT_SKU-TLT4 T4

where (item, dest, src_eff

IN (SELECT an item, dest, MIN (src_eff)

of TMP_UDT_SKU-TLT4

GROUP BY article, dest)

Note: TMP_UDT_SKU-TLT4 table contains 116852049 records.

user9370235 wrote:

Yes, I tried with all the queries posted by Greg, John and knani. But performance is not improved. Please, help me to tune more far.

He should have things improved a bit - they should be scanning your table once rather than twice.

Publish the plan of the request of John explain command.

Also, if you have enough resource, consider using parallelism on the query.

Tags: Database

Similar Questions

  • Some Basic steps how to grant this request

    Hi all

    It's my cursor from query to extract the eligible orders its takes too long to execute, it is my request

    Oeol.header_id, oeol.attribute1, oeoh.order_number, COUNT (1) SELECT consignment_count
    Of oe_order_lines_all oeol, oe_order_headers_all oeoh, oe_transaction_types_all oett
    WHERE oeol.header_id = oeoh.header_id
    AND oeol.flow_status_code IN (DECODE (oett.name, xxhdnl_om_common_util_pkg.g_push_line_type,
    DECODE (oeol.shipment_priority_code, 'EXPRESS', DECODE (oeol.flow_status_code, 'AWAITING_STOCK'

    'AWAITING_STOCK', 'STOCK_RECEIVED', 'STOCK_RECEIVED'), 'STOCK_RECEIVED')

    DECODE (XXHDNL_OM_QUI_BAT_PLAN_EXT_PKG.check_push_or_pull (oeol.line_id), 'PUSH', 'BOOKED')))

    AND (oeol.shipment_priority_code = p_shipment_priority OR p_shipment_priority IS NULL)

    AND oeol.line_type_id = oett.transaction_type_id AND oett.name IN
    (xxhdnl_om_common_util_pkg.g_return_line_type
    xxhdnl_om_common_util_pkg.g_push_line_type)
    AND oeoh.attribute3 IS NULL
    GROUP BY
    oeol.header_id
    oeol.attribute1
    oeoh.order_number;



    Thanks for giving some basic steps for the update about some performance.


    Thanks and greetings

    Srikkanth.M

    The code seems not very readable. Poor guy if you have to maintain that.
    I like this part:

    .. oeol.flow_status_code IN (DECODE (oett.name, xxhdnl_om_common_util_pkg.g_push_line_type,
    DECODE (oeol.shipment_priority_code, 'EXPRESS', DECODE (oeol.flow_status_code, 'AWAITING_STOCK'
    'AWAITING_STOCK', 'STOCK_RECEIVED', 'STOCK_RECEIVED'), 'STOCK_RECEIVED')
    DECODE (XXHDNL_OM_QUI_BAT_PLAN_EXT_PKG.check_push_or_pull (oeol.line_id), 'PUSH', 'BOOKED')))

    you combine global variables of PL/SQL with a 3 decodes nested, I'd go for CASE and some formatting.

    But what makes this so slow query, it's, I guess:

    XXHDNL_OM_QUI_BAT_PLAN_EXT_PKG.check_push_or_pull (oeol.line_id)

    for each row returned by (part of) query. What does this package? Run additional queries with oeol.line_id as a parameter?
    According to the way that ORACLE creates the execution plan, this package can run before or after the other filters have been applied. This result in how Subselects in the worst case?
    Very risky. Try to make this logic in the query itself, the CASE statement is very powerful.

    -andy

  • How to grant this request?

    Hi exports.

    I'm working on oracle applications. On applications when a report is run, it took 4 to 6 hours to complete. I activated the trace and take the tkprof output. I give the area where time takes too long to run. Please guide me in this. How I reduce the time.



    Banner

     Oracle Database 10g Enterprise Edition Release 10.2.0.3.0 - Prod
    PL/SQL Release 10.2.0.3.0 - Production
    "CORE     10.2.0.3.0     Production"
    TNS for Linux: Version 10.2.0.3.0 - Production
    NLSRTL Version 10.2.0.3.0 - Production
    Query 1
    SELECT SUM(CMPNT_COST)   
    FROM
     CM_CMPT_DTL_VW CM,CM_CLDR_DTL CAL  WHERE ITEM_ID =  (SELECT ITEM_ID   FROM 
      IC_ITEM_MST  WHERE ITEM_NO = :b1 )  AND COST_MTHD_CODE = 'PMAC'  AND 
      CM.CALENDAR_CODE = CAL.CALENDAR_CODE  AND CM.PERIOD_CODE = CAL.PERIOD_CODE  
      AND :b2 BETWEEN CAL.START_DATE AND CAL.END_DATE  AND WHSE_CODE =  (SELECT 
      ORGANIZATION_CODE   FROM MTL_PARAMETERS_VIEW  WHERE ORGANIZATION_ID = :b3 )
    
    
    call     count       cpu    elapsed       disk      query    current        rows
    ------- ------  -------- ---------- ---------- ---------- ----------  ----------
    Parse        2      0.02       1.74          0          0          0           0
    Execute    898      0.10       0.14          0          0          0           0
    Fetch      898   6725.58   33276.46   89695038   81677590          0         898
    ------- ------  -------- ---------- ---------- ---------- ----------  ----------
    total     1798   6725.71   33278.35   89695038   81677590          0         898
    
    Misses in library cache during parse: 1
    Misses in library cache during execute: 1
    Optimizer mode: ALL_ROWS
    Parsing user id: 173  
    
    Rows     Row Source Operation
    -------  ---------------------------------------------------
        449  SORT AGGREGATE (cr=40838795 pr=44939444 pw=4597635 time=16613240123 us)
       4829   HASH JOIN  (cr=40838795 pr=44939444 pw=4597635 time=9057442461 us)
        898    TABLE ACCESS FULL CM_CLDR_DTL (cr=6735 pr=56 pw=0 time=104182 us)
     101742    VIEW  CM_CMPT_DTL_VW (cr=40832060 pr=44939388 pw=4597635 time=9682849482 us)
    340891576     UNION-ALL  (cr=40824876 pr=44938969 pw=4597635 time=17933942059 us)
    340891576      HASH GROUP BY (cr=20412438 pr=24769239 pw=4597635 time=10846575027 us)
    361186825       TABLE ACCESS FULL CM_CMPT_DTL (cr=20412438 pr=20171604 pw=0 time=7164703993 us)
          0      TABLE ACCESS FULL CM_CMPT_DTL (cr=20412438 pr=20169730 pw=0 time=6901261441 us)
        449     NESTED LOOPS  (cr=2245 pr=216 pw=0 time=5859356 us)
        449      TABLE ACCESS BY INDEX ROWID IC_ITEM_MST_B (cr=1347 pr=177 pw=0 time=5095717 us)
        449       INDEX UNIQUE SCAN IC_ITEM_MST_B_UNQ1 (cr=898 pr=51 pw=0 time=1021648 us)(object id 326600)
        449      INDEX UNIQUE SCAN IC_ITEM_MST_TL_PK (cr=898 pr=39 pw=0 time=743956 us)(object id 326545)
        449     NESTED LOOPS OUTER (cr=4939 pr=203 pw=0 time=3994946 us)
        449      NESTED LOOPS  (cr=3592 pr=107 pw=0 time=2354467 us)
        449       FILTER  (cr=1796 pr=34 pw=0 time=987087 us)
        449        NESTED LOOPS OUTER (cr=1796 pr=34 pw=0 time=927028 us)
        449         NESTED LOOPS OUTER (cr=1796 pr=34 pw=0 time=946673 us)
        449          NESTED LOOPS OUTER (cr=1796 pr=34 pw=0 time=917867 us)
        449           NESTED LOOPS OUTER (cr=1796 pr=34 pw=0 time=886142 us)
        449            NESTED LOOPS OUTER (cr=1796 pr=34 pw=0 time=863553 us)
        449             NESTED LOOPS OUTER (cr=1796 pr=34 pw=0 time=830785 us)
        449              NESTED LOOPS  (cr=1796 pr=34 pw=0 time=808504 us)
        449               NESTED LOOPS OUTER (cr=1347 pr=34 pw=0 time=779000 us)
        449                TABLE ACCESS BY INDEX ROWID MTL_PARAMETERS (cr=898 pr=2 pw=0 time=202640 us)
        449                 INDEX UNIQUE SCAN MTL_PARAMETERS_U1 (cr=449 pr=2 pw=0 time=183457 us)(object id 38517)
        449                INDEX UNIQUE SCAN CST_COST_GROUPS_U1 (cr=449 pr=32 pw=0 time=557604 us)(object id 30846)
        449               INDEX UNIQUE SCAN HR_ORGANIZATION_UNITS_PK (cr=449 pr=0 pw=0 time=11606 us)(object id 43657)
          0              INDEX UNIQUE SCAN MTL_PICKING_RULES_U1 (cr=0 pr=0 pw=0 time=6183 us)(object id 38530)
          0             INDEX UNIQUE SCAN MTL_ATP_RULES_U1 (cr=0 pr=0 pw=0 time=14490 us)(object id 38531)
          0            INDEX UNIQUE SCAN BOM_RESOURCES_U2 (cr=0 pr=0 pw=0 time=6062 us)(object id 30440)
          0           TABLE ACCESS BY INDEX ROWID HR_ALL_ORGANIZATION_UNITS (cr=0 pr=0 pw=0 time=15751 us)
          0            INDEX UNIQUE SCAN HR_ORGANIZATION_UNITS_PK (cr=0 pr=0 pw=0 time=6126 us)(object id 43657)
          0          INDEX UNIQUE SCAN MTL_PARAMETERS_U1 (cr=0 pr=0 pw=0 time=6153 us)(object id 38517)
          0         INDEX RANGE SCAN HR_ALL_ORGANIZATION_UNTS_TL_PK (cr=0 pr=0 pw=0 time=6630 us)(object id 44020)
        449       INDEX RANGE SCAN FND_LOOKUP_VALUES_U1 (cr=1796 pr=73 pw=0 time=1345141 us)(object id 34010)
          0      VIEW PUSHED PREDICATE  FND_COMMON_LOOKUPS (cr=1347 pr=96 pw=0 time=1623600 us)
          0       NESTED LOOPS  (cr=1347 pr=96 pw=0 time=1614352 us)
        449        TABLE ACCESS BY INDEX ROWID FND_LOOKUP_TYPES (cr=1347 pr=96 pw=0 time=1591386 us)
        449         INDEX RANGE SCAN FND_LOOKUP_TYPES_U1 (cr=898 pr=64 pw=0 time=1164297 us)(object id 34004)
          0        INDEX UNIQUE SCAN FND_LOOKUP_VALUES_U1 (cr=0 pr=0 pw=0 time=6778 us)(object id 34010)
    
    ********************************************************************************
    Query 2
    SELECT OH1.HEADER_ID A,OEL.LINE_ID B   
    FROM
     RA_CUSTOMER_TRX_ALL RA,RA_CUSTOMER_TRX_LINES_ALL RCTLA,OE_ORDER_HEADERS_ALL 
      OH,OE_ORDER_HEADERS_ALL OH1,OE_ORDER_LINES_ALL OEL  WHERE 
      RA.CUSTOMER_TRX_ID = RCTLA.CUSTOMER_TRX_ID  AND (RA.CT_REFERENCE) = 
      TO_CHAR(OH1.ORDER_NUMBER)  AND OH1.SOURCE_DOCUMENT_ID = OH.HEADER_ID  AND 
      OH.ORDER_NUMBER = :b1  AND RCTLA.INVENTORY_ITEM_ID =  (SELECT DISTINCT 
      INVENTORY_ITEM_ID   FROM MTL_SYSTEM_ITEMS_B  WHERE SEGMENT1 = :b2 )  AND 
      OH1.HEADER_ID = OEL.HEADER_ID  AND OEL.INVENTORY_ITEM_ID = 
      RCTLA.INVENTORY_ITEM_ID
    
    
    call     count       cpu    elapsed       disk      query    current        rows
    ------- ------  -------- ---------- ---------- ---------- ----------  ----------
    Parse        1      0.00       0.00          0          0          0           0
    Execute    387      0.04       0.04          0          0          0           0
    Fetch      389    689.22   33361.26   19979867   20144715          0           2
    ------- ------  -------- ---------- ---------- ---------- ----------  ----------
    total      777    689.26   33361.31   19979867   20144715          0           2
    
    Misses in library cache during parse: 1
    Misses in library cache during execute: 1
    Optimizer mode: ALL_ROWS
    Parsing user id: 173  
    
    Rows     Row Source Operation
    -------  ---------------------------------------------------
          2  TABLE ACCESS BY INDEX ROWID OE_ORDER_LINES_ALL (cr=20144715 pr=19979867 pw=0 time=33024227812 us)
        391   NESTED LOOPS  (cr=20144713 pr=19979865 pw=0 time=33169147608 us)
          2    NESTED LOOPS  (cr=20144705 pr=19979861 pw=0 time=33024244282 us)
          2     HASH JOIN  (cr=20144516 pr=19979682 pw=0 time=33022474026 us)
    2363409      TABLE ACCESS FULL OE_ORDER_HEADERS_ALL (cr=7992324 pr=7935681 pw=0 time=10973123196 us)
    159464124      MERGE JOIN CARTESIAN (cr=12152192 pr=12044001 pw=0 time=21849267761 us)
        387       TABLE ACCESS BY INDEX ROWID OE_ORDER_HEADERS_ALL (cr=1553 pr=79 pw=0 time=1416188 us)
        387        INDEX RANGE SCAN OE_ORDER_HEADERS_U2 (cr=1166 pr=79 pw=0 time=1400563 us)(object id 41431)
    159464124       BUFFER SORT (cr=12150639 pr=12043922 pw=0 time=20287027876 us)
    159464124        TABLE ACCESS FULL RA_CUSTOMER_TRX_ALL (cr=12150639 pr=12043922 pw=0 time=19458528384 us)
          2     TABLE ACCESS BY INDEX ROWID RA_CUSTOMER_TRX_LINES_ALL (cr=189 pr=179 pw=0 time=1762590 us)
          2      INDEX RANGE SCAN RA_CUSTOMER_TRX_LINES_N2 (cr=8 pr=1 pw=0 time=20802 us)(object id 29156)
          2      HASH UNIQUE (cr=179 pr=176 pw=0 time=1713629 us)
         26       TABLE ACCESS BY INDEX ROWID MTL_SYSTEM_ITEMS_B (cr=179 pr=176 pw=0 time=1056631 us)
         26        INDEX SKIP SCAN MTL_SYSTEM_ITEMS_B_N1 (cr=172 pr=172 pw=0 time=1056300 us)(object id 38528)
          2    INDEX RANGE SCAN OE_ORDER_LINES_N1 (cr=8 pr=4 pw=0 time=44331 us)(object id 41462)
    
    ********************************************************************************
    Please help me as this cordially.

    Thank you and best regards,
    Iqbal

    I think that there are three methods that you can try.

    I make the assumption that the setting of binding: item_no filters the good output.
    However, it seems to me that if this setting is not propagated in the view.
    The reason could be that the perspective is somewhat complex using a combination of GROUP BY and UNION ALL.

    approach would be:
    (1) use joins instead of subquery when calling the view. This could help the database to better prepare for any settings that could potentially spread.

    approach two would be:
    (2) prepare the view in such a way, it is easier.
    UNION ALL is generally not a problem, but the group by the power. A way to rewrite the view is to eliminate the union all. This would reduce to less complexity.

    (3) merge the two statements into one. It would be very useful for testing too much performance.
    For example, using the selection from the vew, but call of the subquery for: item_no in each union all part of the main query. See if that helps, although it would not be the final solution.

    (Now, some code sniplets for help with the method 1) and (2).

    (2) we use one when the condition on the selected columns, rather a union all

    SELECT case when NVL(rmcalc_type,0) = 0 then cmpntcost_id else 0 end  as  cmpntcost_id,
      item_id,
    ...
      case when NVL(rmcalc_type,0) = 0 then cost_level else 0 end cost_level,
      SUM (cmpnt_cost), -- no case needed here!
    ...
    FROM cm_cmpt_dtl
    /* where condition is now a combination of both previous conditions */
    --WHERE NVL(rmcalc_type,0) > 0
    --WHERE NVL(rmcalc_type,0) = 0
    WHERE NVL(rmcalc_type,0) >= 0
    GROUP BY item_id,
      whse_code,
      calendar_code,
    ...
     case when NVL(rmcalc_type,0) = 0 then cmpntcost_id else 0 end
    ;
    

    Important thing is to include new conditional logic in the group by clause

    (1) the main query can be rewritten to the logic of the normal joint instead of the Subselects. This help very often the CBO to find a better plan.
    original as posted by knockaert

    select sum(cmpnt_cost)
      from cm_cmpt_dtl_vw cm
         , cm_cldr_dtl cal
     where cm.calendar_code = cal.calendar_code
       and cm.period_code   = cal.period_code
       and cost_mthd_code   = 'PMAC'
       and :b2 between cal.start_date and cal.end_date
       and item_id   = (
                          select item_id
                            from ic_item_mst
                     where item_no = :b1
                 )
       and whse_code = (
                          select organization_code
                      from mtl_parameters_view
                     where organization_id = :b3
                 );
    

    Join the version

    select sum(cmpnt_cost)
    from cm_cmpt_dtl_vw cm
    join cm_cldr_dtl cal  on cm.calendar_code = cal.calendar_code and cm.period_code   = cal.period_code
    join ic_item_mst i on cm. item_id = i.item_id
    join mtl_parameters_view p on cm.whse_code = p.organization_code
    where i.item_no = :b1
    and :b2 between cal.start_date and cal.end_date
    and p.organization_id = :b3
    and cost_mthd_code   = 'PMAC'
    ;
    

    Published by: Sven w. January 29, 2013 14:56

    (3) I just noticed that make of all the "grouped" in the view are quite useless, if you want to have a lot of money at the end. Just then replace the view with the main table.

    select sum(cmpnt_cost)
    from cm_cmpt_dtl cm /* source view was changed to source table */
    join cm_cldr_dtl cal  on cm.calendar_code = cal.calendar_code and cm.period_code   = cal.period_code
    join ic_item_mst i on cm. item_id = i.item_id
    join mtl_parameters_view p on cm.whse_code = p.organization_code
    where i.item_no = :b1
    and :b2 between cal.start_date and cal.end_date
    and p.organization_id = :b3
    and cost_mthd_code   = 'PMAC'
    ;
    

    I add where condition "WHERE NVL(rmcalc_type,0) > = 0" because I guess that this rmcalc_type can not be negative. If possible, this filter should be added.

  • How a user can request more resources to an administrator of an existing virtual machine

    Hi all

    How a user can request more resources for one of its existing virtual machines. What kind of policy, I need installation and how should I associate it. so that when a user request, for example, more than memory RAM request is sent to the administrator so that it can approve or reject?

    And another question D oesanyone know why when I go on Articles-> the Machine and click on any of my items and then click on the "Action" menu, only two options are displayed to 'connect to RDP to aid' and 'connect using VMRC' as shown in the figure attached.  What can I do to see also "destroy" them "expires" "power off / on" "edit" options.

    Thank you very much

    Screen Shot 2014-11-05 at 17.58.40.png

    My problem was that these options do not appear under the tab 'Elements & approvals '.

    The solution to my problem is under this link http://www.virtualizationteam.com/cloud/vcac-6-missing-vm-actions.html

    Thank so much

  • How to grant full access to a schema to a user in Oracle

    For example, in MySql, I connect using my account 'Andy' to create a database ('create database BookShopping') with tables/views/functions created.

    Then I have just run for example ' create user Steve (Mike, Lisa, etc.) blah - blah. " "Give all the right on Steve's BookShopping (Mike, Lisa, etc.) blah - blah" to allow all developers on my team to work on this project. Any changes made by a developer is shared by the entire team. (There are a few other non-developers such as Rick QA, he is not allowed to modify the database, so I just do "grant select on BookShopping to Rick")

    How in Oracle? If I use my account ("Andy") to create tables/views/functions, these objects will be under my scheme, that is, with a prefix "Andy." My understanding is correct here?

    So, I have to create another user, called "BookShopping". After logining as 'BookShopping', how to grant full access for this scheme for all developers Steve, Mike, etc., which I am part 'Andy' so that everyone can add to new tables/procedures/triggers etc.?

    There is no subsidy, which gives all object privileges to someone else in a schema. What gives a grant is an important work, it must be done under control. Initially, it must give al grants one by one, but after that (for objects that will be created later), look at this topic:

    Re: Trigger after create schema - grants - SYS_JOURNAL

  • How to grant the right to select any database to a particular user

    Hi gurus,

    I need to give the right to select all tables in a database to a particular user, in my opinion, there is no way to do it. Please confirm if this is possible.
    If it is not possible, so please let me know if there is any way I can grant select on all tables in a particular pattern (for example - select funding on all the tables under apps)

    Thank you
    Sadiq.

    I need to give the right to select all tables in a database to a particular user, in my opinion, there is no way to do it. Please confirm if this is possible.

    You can issue the command "grant select any table of .

    Alternatively, you can refer to this thread.

    How to GRANT SELECT on all tables 1 GB?
    How to GRANT SELECT on all tables 1 GB?

    If it is not possible, so please let me know if there is any way I can grant select on all tables in a particular pattern (for example - select funding on all the tables under apps)

    It is possible as shown above. If you want to grant select on the specific schema, again see the same thread and add a condition where clause in select only the tables under scheme APPS (i.e. where owner = 'APPS').

    Thank you
    Hussein

  • Some how my email was requested to be removed and the link to verify that I DON'T want be removed takes me to some site randomly, please help.

    Some how my email was requested to be removed and the link to verify that I DON'T want be removed takes me to some site randomly, please help.

    Your post is a little vague, but I fear that you may have received a phishing e-mail. Please tell us all about this request but do not follow any links or give any information at this stage.

  • How to grant you permission to files and paths for applications and games

    How you grant permissions of files and paths for games and apps, I recently downloaded a game and can't not play due to the fact that I get a message saying that I don't have access to the file or permissions and it's my computer, if you can help that would be great

    Where are you error? By installing or playing? If its installing, check the folder where you download the game. You should have the permission that you are able to download in this folder! but you can try on this record.

  • How I clean under my Sony Vaio laptop mouse buttons?

    How I clean under my Sony Vaio laptop mouse buttons? Any ideas?

    Thank you.

    How I clean under my Sony Vaio laptop mouse buttons? Any ideas?

    Thank you.

    Hello

    Nwill you need to go to the Sony Web site and download the manual for this computer. Here is a link for your convenience.

    Sony eSupport

    I hope this helps.

    Thank you for using Windows 7

    Ronnie Vernon MVP
  • How to make a request on a URL using webworks development environment?

    Hey geeks,


    How to make a request on a URL using webworks development environment?


    Thanks in advance...!

    "A request for a url" you try to perform an ajax call and it does not work? Any field/origin you're wanting access must be white listed in a element in the config.xml file. Details of this are in the WebWorks development guide

  • How I have underlying wothout save documents or pdf files in the memory of the device inrernal, I have the files in the external SD card and I want to keep them there. I just want to be able to write about them. Thanks for the information

    How can I underlying without save documents or the pdf files in the memory of the device inrernal, I have the files in the external SD card and I want to keep them there. I just want to be able to write about them.

    Thanks for the information

    Hello

    When we try to edit any PDF file that is stored on a MicroSD card, then, first of all, the file must be saved in the internal memory to cause permissions defined by Android for external storage.

    Due to limitations set by Google in Android 4.4 and above, it is not possible to change files that are stored on the SD card in system no App.

    Thank you

    Abhishek

  • How to grant access to secure with sending a 1 2 areas form

    How to grant access to secure with sending a 1 2 areas form? For any help or suggestion would be appreciated.

    If you change the zone-1 ID in the form action, it will return to the page and a default logon you connected. You have access to all areas will be saved in. Technically, you can connect even with no associate also area long have you a username and password.

  • How to pass the request to < a href = "f? p = & APP_ID.:7: & SESSION. : & DEBUG. : < /a >

    Dear friend,

    I want to move using the request
    '{a href="f?p=&APP_ID.:7:&SESSION.::&DEBUG.::::">Create New Invoice</a}'
    I want to spend #COSTING_CODE # request using the link above and I want to spend the POINTS value with respect to the request when I click on create a new invoice link.


    P7_COSTING_CODE #COSTING_CODE #.


    P7_FILE_CODE #FILE_CODE


    P7_VERSION_NO #VERSION_NO #.


    How can I pass request above link and value point page No 7?


    How can I do this?

    Thank you

    Published by: Sophie Sep 6, 2011 02:29

    Published by: Sophie Sep 6, 2011 02:29

    Published by: Sophie Sep 6, 2011 03:49

    Hello

    Try

    '<a href="f?p=&APP_ID.:7:&SESSION.:COSTING_CODE:&DEBUG.:7:P7_COSTING_CODE,P7_FILE_CODE:'||COSTING_CODE||','||FILE_CODE||'">Create New Invoice</a>'
    

    Kind regards
    Jari

  • How to "save under" to open to record on where I opened the raw of?

    Use of ' Save as ' to save the file to where I open the raw file, now it doesn't. How to "save under" to open to record on where I opened the raw of?

    Assuming you're under Photoshop CS5, there is a new entry of preference that can be set for your file - save as dialog 'remember' a different default folder that that hence you have open the file, or the way you want it to work:

    -Christmas

  • Integrate a Win7 netbook Windows XP Home network, the netbook Win7 sees the XP computer, but said "you are not authorized to access the XP computer. How to grant permissions?

    Home network (MSHOME) working group worked OK for the last 3 years. DSL, with an attached DLink wireless router cable modem. The network has been implemented with a Lenovo Thinkpad R60 that Windows XP with a USB attached HP PSC 1210 printer (X computer). My daughter got a second ACER laptop with Windows XP (computer Y) and I used the floppy disk created by the network configuration wizard to get connected to the network, everything worked OK. My wife is the mini netbook HP under Windows7 starter edition (Comuter Z) and I used the same disk to be connected, and I made sure that the Working Group has been installed as (MSHOME). Lenovo Thinkpad (computer X) appears on the list of network devices (computer X, Y and Z) but when I started to ADD a new printer, after selecting (computer X) a message box pops up saying ("Windows cannot access (computer X), you do not have permissions to access (X computer).") Contact your administrator to request network access). How can I do this?

    Hello

    Make sure that the share is configured correctly on each computer:

    Networking of computers running different versions of Windows
    http://Windows.Microsoft.com/en-us/Windows7/networking-home-computers-running-different-versions-of-Windows

Maybe you are looking for

  • Cannot send SMS

    I have a Apple Watch watch OS 2.2.2 (13V604) running and one 5 iPhone with iOS 9.3.5 (G 13, 36). Previously, I found that the watch would not send SMS free hands unless I turned on iMessage; These messages would simply disappear, but things seemed to

  • Annoying software updates pop-up windows

    Hello I have an iPhone 6 s most 128 GB iOS 9.1. I'm sick of those annoying popups software updat for iOS 9.2.

  • Satellite L40 with no Wi - Fi after Vista update

    Hey there,I have a Toshiba Satellite L40-137 and installed Service Pack 1 for Vista.And now my WLan/Wifi is just disabled with no information which driver I need or something... Well, it seems that this is a common problem, because I googled a lot of

  • Pavilion 15-ab223cl: WIFI Disconnection on my HP Pavilion Notebook 15-ab223cl guard

    I bought this article last week and since then, it has disconnected from my wifi at home every 30 minutes or more. This does not happen when I use other devices to the exact location of my house, so I don't think there is any problem with the router.

  • Several errors in Include for NiDMM.h

    I write software MS Visual C++ 6 to talk to a USB-4065 DMM. I copied the files nidmm_32.lib and nidmm.h of the necessary include files in the project directory. But the linker complained a .h file missing, I would copy it into the directory of the pr