Purchase Order Problem

HI Experts,
  I have copied a purchase order form ZMEDRUCK from Medruck.  Modified according to the requirements of functional consultant without deleting a single element.  I have commented everything in the windows except /E - element lines.  Used subroutines to fetch some data and displayed.  Its working normally, but when enduser is trying to generate a PO with some JPY currency, it is not giving print preview nor print. 
In the subroutine pool for calculating grand total I have used the following code.
FORM freight TABLES   TA_INPUT STRUCTURE ITCSY
                        TA_OUTPUT STRUCTURE ITCSY.      "Structure
  DATA: TP_FREIGHT LIKE KONV-KAWRT,  " freight charges
        TP_CUSTOMS LIKE KONV-KAWRT,  " customs charges
        TP_EBELN   LIKE EKKO-EBELN,  " PO number
        TP_KNUMV   LIKE EKKO-KNUMV,  " document condition number
        TP_GTOTAL  TYPE P DECIMALS 2,  " grand total
        TP_TOTAL   LIKE KONV-KAWRT. " like konv-kawrt  " total before freight and customs.
  DATA: lv_grandtot(16),             " TYPE P DECIMALS 2,
                                   " lv_grandtot type konv-kawrt,
        tp_total1(16),
        tp_waers like ekko-waers.
  DATA : IT_KONV LIKE KONV OCCURS 0 WITH HEADER LINE. " for condition values.
  read table TA_INPUT with key 'EKKO-EBELN'.
  TP_EBELN = TA_INPUT-VALUE.
  CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
    EXPORTING
      INPUT  = TP_EBELN
    IMPORTING
      OUTPUT = TP_EBELN.
  READ TABLE TA_INPUT WITH KEY 'KOMK-FKWRT'.
**without this function module, getting short dump while adding for grand total.
**CONDENSE TA_INPUT-VALUE.
*MOVE TA_INPUT-VALUE TO TP_TOTAL.
  CALL FUNCTION 'CATS_ITS_MAKE_STRING_NUMERICAL'
    EXPORTING
      INPUT_STRING  = TA_INPUT-VALUE
    IMPORTING
      VALUE         = TP_TOTAL
    EXCEPTIONS
      NOT_NUMERICAL = 1
      OTHERS        = 2.
  IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
  ENDIF.
READ TABLE TA_INPUT WITH KEY 'EKKO-WAERS'.
tp_waers = ta_input-value.
if tp_waers = 'JPY'.
tp_total = tp_total * 10.
endif.
WRITE: TP_TOTAL TO TP_TOTAL1 CURRENCY 'JPY' LEFT-JUSTIFIED.
  SELECT SINGLE KNUMV FROM EKKO INTO TP_KNUMV WHERE EBELN = tp_ebeln.
  SELECT * FROM KONV INTO TABLE IT_KONV WHERE KNUMV = TP_KNUMV
                                      AND KSCHL IN ('FRB1' , 'ZOB1').
*BREAK-POINT.
  LOOP AT IT_KONV.
    CASE IT_KONV-KSCHL.
      WHEN 'FRB1'.
        TP_FREIGHT = TP_FREIGHT + IT_KONV-KBETR.
      WHEN 'ZOB1'.
        TP_CUSTOMS = TP_CUSTOMS + IT_KONV-KBETR.
    ENDCASE.
  ENDLOOP.
*******grand total.
***here if don't use function module CATS_ITS_MAKE_STRING_NUMERICAL, I get short dump.
  TP_GTOTAL = TP_TOTAL + TP_FREIGHT + TP_CUSTOMS.
*WRITE TP_GTOTAL TO lv_grandtot CURRENCY tp_waers DECIMALS 2 LEFT-JUSTIFIED.
WRITE TP_GTOTAL TO lv_grandtot CURRENCY tp_waers LEFT-JUSTIFIED.
*move tp_gtotal to lv_grandtot.
  loop at TA_OUTPUT.
    case TA_OUTPUT-NAME.
      when 'TP_FREIGHT'.
        MOVE TP_FREIGHT TO TA_OUTPUT-VALUE  .
        CONDENSE TA_OUTPUT-VALUE.
        modify TA_OUTPUT.
      when 'TP_CUSTOMS'.
        MOVE TP_CUSTOMS TO TA_OUTPUT-VALUE  .
        CONDENSE TA_OUTPUT-VALUE.
        modify TA_OUTPUT.
      when 'TP_GTOTAL'.
        MOVE lv_grandtot TO TA_OUTPUT-VALUE  .
        CONDENSE TA_OUTPUT-VALUE.
        modify TA_OUTPUT.
    endcase.
  endloop.
endform.                    "freight
It is working well even with JPY currency, but this time when she was entering a material with JPY currency, neither preview is coming nor print.  In the status bar(in me21n) it shows error that a certain include is not available, but when I enter into script debugging mode, print preview is coming and grand total is 0, because of error in function module.  In the ABAP debugging mode, in the function module I have used, the sy-subrc is 1.  This is go-live issue and this problem has occurred in Prod server.  We could not stimulate the scene in Dev server.
In Dev, I noticed that when ever I tick off in 'Ret PO' check box, the same problem is coming.
Can any one help me with this problem.

The table PO_AGENTS stores the buyers .
To define a buyer, you need to define an employee (Purchasing super user > Setup > Personnel > Employees), then a Buyer (Purchasing super user > Setup>Personnel > Buyers)

Similar Messages

  • Open purchase orders problem

    Hi all,
    I want to close all open purchase order . MEMASSPO transaction doesnt allow me to close partial open POS ie PO is of 10 QTY & I received 5 qty .Remaining  5 QTY. there are around 1000 PO's are like that .
    Going  into me22 & delivery completed tick, I can do it manually .but its very hectic due to large no of PO's. Can I write a BDC for that ? I have a doubt whether that BDC will work properly or not because In each PO line Item Nos are different. which item is received completly & which not this is also to be considered.
    Plz reply .
    Thanks in Advance.
    Atul

    Hi,
    you can uses BAPIs instead of BDC. You can get details of PO from BAPI BAPI_PO_GETDETAIL1 and then change it using BAPI_PO_CHANGE. Both BAPIs have table POITEM with field NO_MORE_GR. This field corresponds to your flag. So you can easily see which items has not this flag set and then easily set this flag.
    Cheers

  • Purchase order problem about field MMHIPO_MAINLIST-DMBTR

    Hi Gurus
    I am doing functional analysis for a sap query.
    I know purchase order number , and i need to know sap table where is field amount in local currency in two cases
    Goods receipt and Ivoice receipt.
    I find this information on transaction ME23N using this path : purchase order,purchase order history,invoice receipt, details.
    The field is MMHIPO_MAINLIST-DMBTR,but DMBTR is a structure .
    Can you tell me what are tables that have these fields?
    thanks for your help
    Best Regards

    Hi
    Get the Goods reciept, Invoice reciept history for the PO in EKBE table,To find the Amount in LC for GR/IR
    Goods reciept-Table-MSEG,Field- DMBTR
    Invoice receipt- Table-BSEG,Field- DMBTR
    Regards
    Sandeep

  • Sales order -  automatic creation of purchase order - problem on Credit Che

    Hello,
    We have a problem in sales order.
    For one item, we have an automatic creation of Purchase requisation, but we have to give manually the price in the purchase requisition.
    The problem is when we have give the price, the automatic credit check is executed, and the purchase requisition is not created if we block on this credit check.
    When the credit controller, released the Sales order (VKM1), the purchase is not created automatically because the field for the price in purchase requisition is empty and required.
    And when we come back to the sales order, we need to fill the value and the credit check is running a new time. .....
    and we have a loop.
    I have check in OSS Notes, and I not find a solution.
    How can we solve this problem
    Regards
    Jean-Claude Onderbeke

    Hello Buddi,
    It's impossible to change the price in PO, because the PO is not created.
    The problem is on the creation on the PR in the Sales Order.
    I'm not able to create the Purchase Requisition due to Credit Check, and I'm not able to make an automatic credit check because the value price in the PR is not filled automaticaly, and it's required.
    It's a loop known by SAP, but not solve.
    I hope that someone has found a solution to this strange behaviour.
    Regards
    Jean-Claude

  • SRM purchase order problem

    Hi,
    I am in SRM 5.0 extended classic scenario. In PO I dont have the statistics tab.Please let me know what needs to be done to get the statistics tab in PO.

    Hello,
    Where you are checking the statistics tab? if you have got professional purchaser role you should be able to see statistics tab available in PO Item level (in all modes i.e. create / change / display).
    Please elaborate the issue with more details.
    Regards,
    Krish

  • Purchase Order - Problem in the format of the form

    Hi experts,
    I have 2 outputs in the po, NEU to External send and ZNEU to Print Output.
    I have also one Z form in both outputs.
    If I use the same printer in output NEU and ZNEU, the form in ZNEU looks diferent. If I change the medium from Print Output to External Send to message ZNEU looks ok.
    What could be the reason??
    Thanks in advance for your help.
    Viru.

    What kind of code do you see?
    Is that an HTML file or a PDF file for the Adobe Reader?
    *https://support.mozilla.com/kb/Using+the+Adobe+Reader+plugin+with+Firefox

  • Purchase Order Problem in STO process

    Hi All,
    while i am doing STO process ( intra / inter ) in my organization, when i am doing GR with reference to PO system is giving message PO is not contained any items. This is happening when i am maintaining warehouse.
    If warehouse concept is not there then every thing is going smoothly.
    For this where i need to do the setting..
    awaiting for ur reply.
    regards,
    Durga
    +91 9980178969

    HI DURGA,
    DO GR AGINST OUTBOUND DELIVERY RATHER THAN PO.
    IF AGAIN U R GETTING SAME MESSAGE THEN CHECK YOUR CUSTOMIZING SETTING :
    ***LE>WM>INTERFACES> INVENTORY MGT> LE-WM MVT***
    HERE CHECK WHETHER U MAINTAINED TR AND TO CREATION INDICATOR FOR MVT TYPES (641,647,643,645) FOR UR WAREHOUSE OR NOT.

  • Problem regarding Purchase Order with Free of Cost Material

    Dear Xperts,
    I am facing problems while doing Goods Receipt of a Purchase Order having all the materials we are going to receive Free of Cost from the Vendor.
    This case is happening with Doemstic and as well as Importer Vendors also.
    Problems to be solved:
    1. If we are using Tax Code(with excise conditions) ,excise duty calculation does not take pace automatically at Goods Receipt as the Material Value is Zero on which the duties will be calculated for a Manufactuing Plant.
    2. This case seems very problammatic if that Purchase Order is having almost thousand line items.The user has to enter all the Excise duties manually for each & every line item during Goods receipt in a manufacturing Plant.
    3. In case of Importer Purchase Order also, the CVD portion & CESS on CVD portion user has to enter manually.
    4. To solve this problem we are  not using Free Goods Indicator in PO, we are entering 0.01 paisa , but during the MIRO of Planned Delivery Costs , the system is not showing or providing POP-ups of those relevant condition types to the user to enter the actual amount.
    Please advice, how can we proceed in this case.
    Regards,
    Soumick

    First you are putting 0.01 value . So the planned delivery cost is not showing coz if say tax is 8% then 0.01 x 0.08 will be  0.0008. It will take first two digit after decimal and hence its 0.00 and hence plannded delivery cost is not showing.
    If you put 0.5 you will be able to put planned delivery cost in MIRO
    Now regarding value is zero and how will the import duty be calculated. May be make a  pricing routine where in the custom duty is not calculated on this base price 0.5 or 0.01 but on the actual value if it was not free of cost and that value you can maintain  through MEK1 transaction code.
    And while posting MIRO or MIGO you need to identify that these are free of cost material and use BADI fi_ac_document
    and may be replace the actual GL with some other GL so that 0.5 or 0.01  does not add to your inventory cost and you could knock off later.
    Regards
    Sangeeta
    Edited by: Sangeeta Khurana on Feb 6, 2012 1:37 PM

  • PROBLEM IN SERVICE PURCHASE ORDER STATUS

    dear cons
      I am facing one problem i.e- When I created a  service p.o the p.o value was Rs.43082537 INR. I created service entry sheet of Rs. 42473812INR. The still to be delivered amount is 43082537-42473812 =608725 inr. That means
    the we will create Rs.608725 INR amount of service entry sheet. This should be available in the p.o STATUS
    HEADER DATA screen.Instead of showing still to be delivered Rs. 608725 inr THe system shows Rs. 973024.56 inr. why it is showing in this manner. we know that quantity ordered in INR- Delivered quantity in INR= Pending ( still to be delivered) . PL. solve it . It is a service p.o . There is no service no. used here. we are using service description only.

    Hai,
    May u have not quoted the Purchase Order Properly in declaring conditions and prices. plz check it...Check Whether any vendor Rebates are there.
    Regards,
    Swathi

  • Purchase order and vendor declaration work list problem

    Now, I'm testing GTS 8.0 for FTA related things.
    In the proceeding the test, I stuck in a problem.
    After making purchase order with order type NB, the system should make the worklist for the long-vendor declaration.
    But it dosen't make the worklist after creating of PO.
    But it make the worklist after Goods Receipts.
    I made related configurations with it.
    1. Activate Transfer of Purchasing Documents ( MM0A ).
    2. Configure Control Setting for Document Transfer.
    In the second transaction, I selected the Application Level MM0A and make document type FNB(Standard PO).
    And I checked all the check boxes including Generate Worklist of Vendor-Based Long-Term Vendor Declarations.
    I did the same configurations with MM0C.
    I searched in every direction, but I fail to get the reason.
    Thank you for the reading.
    Best Regards,
    Jong Hwan.

    I have checked I have already assigned the Partner Scheme to the PO type.
    And, In the first transaction you wrote above(/SAPSLL/PREF_AGR_R3), I got a message.
    Please check the following items:.
    check activity 03 of legal regulation  , "Preference tariff processing"
    Simulation Run - No Database Changes
    And in the second transaction, No data was found for the selection creteria.
    Thank you.
    Best Regards,
    Jong Hwan.
    Edited by: JONG HWAN PARK on Mar 18, 2011 8:33 AM

  • Purchase order and agreement problem

    Hi gurus,
    I have a problem that i've come up with going though event trace on my DEV test system.
    Although, simulation of WF's are fine and all bindings and syntax checks are without error or warnings,
    trace is the only place i've found that something was wrong, appart from that my WF 'WS90200003'
    stopped functioning because of automatic linkage deactivation.
    I had to manually disable automatic linkage deactivation upon error in SWETYPL to keep the WF alive.
    When i did this, all was fine, queing of events started.
    Upon creating purchase order i got following trace:
    BUS2012     RELEASESTEPCREATED     12.05.2008     11:22:07     WS90200003     @5B@     SWW_WI_CREATE_VIA_EVENT_IBF
    QCYBUS2012     CREATED     12.05.2008     11:22:08          @AI@     No receiver entered
    BUS2011     QUOTATIONCREATED     12.05.2008     11:22:08          @AI@     No receiver entered
    BUS2012     RELEASESTEPCREATED     12.05.2008     11:22:08     WS90200003     @5B@     SWW_WI_CREATE_VIA_EVENT_IBF
    BUS2012     RELEASESTEPCREATED     12.05.2008     11:22:10     WS90200003     @AI@     Event put in queue
    BUS2012     RELEASESTEPCREATED     12.05.2008     11:22:10     WS90200003     @5C\QFeedback after error@     Feedback after error
    FREBUS2012     CREATED     12.05.2008     11:22:08          @AI@     No receiver entered
    Upon creating contract i got following trace, quite similar to one before:
    BUS2014     RELEASESTEPCREATED     12.05.2008     11:34:31     WS90200004     @5B@     SWW_WI_CREATE_VIA_EVENT_IBF
    QCYBUS2012     CREATED     12.05.2008     11:34:31          @AI@     No receiver entered
    BUS2011     QUOTATIONCREATED     12.05.2008     11:34:31          @AI@     No receiver entered
    BUS2012     RELEASESTEPCREATED     12.05.2008     11:34:31     WS90200003     @5B@     SWW_WI_CREATE_VIA_EVENT_IBF
    BUS2012     RELEASESTEPCREATED     12.05.2008     11:34:31     WS90200003     @AI@     Event put in queue
    BUS2012     RELEASESTEPCREATED     12.05.2008     11:34:31     WS90200003     @5C\QFeedback after error@     Feedback after error
    FREBUS2012     CREATED     12.05.2008     11:34:31          @AI@     No receiver entered
    There are no duplicate entries in 'SWETYPL', agent assignments seem fine, WF customizing is OK.
    Somehow it is not clear for me why or how my 'WS90200003' with BUS2012 keeps triggering.
    When i look in 'Feedback after error' message i see that release code is missing for BUS2012, but weird thing is
    that in contract creation it tries to pass contract document number in event BUS2012...
    I don't know why BUS2012 is constantly double-triggering.
    Not to forget, i'm working on ECC 6.0.
    Thank you for the contribution and tips.
    Greets,
    Tom

    Hi,
    I am using multi-step release strategies, but i'm not sure what you mean...
    Aren't release codes determined from customizing upon saving the document?
    I've checked the customizing and there is only 1 release code that can be
    used by the agent who gets workitem.
    In "Feeback afrer error" log in second calling of BUS2012 there is no release code at all...
    Regards, Tom

  • Problem with WorkFlow of Purchase Orders related to non active employees

    Dear all,
    We are running into issues with the WorkFlow when people are linked to a PO who are not anymore an active employee. That will give problems in the workflow as those people are logically not going to goods receipt/invoice reciept/approve those invoices.
    How should we deal with this problem?
    We are thinking about a solution like creating an overview of ALL purchase orders (without Goods Receipt) in which the creator, project manager or project sponsor of that specific PO is not anymore an active employee.
    Could someone please advise the right solution?
    Thanks in advance.

    Experts? Anyone?

  • Problem in creating a SyncBo for Purchase Order BAPIs

    Hello Everybody,
    I am trying to create a smart sync application for Purchase Orders.
    I have used standard bapis like BAPI_PO_GETDETAIL AND BAPI_PO_CREATE1.
    I have developed my own wrapper functions using these std bapis. For the PO creation i only plan to insert the necessary and mandatory data. The problem i face is that some of the tables in the create bapi which are mandatory for a PO creation are freezed in the SyncBo.
    Tables like POITEMX, POADDRDELIVERY, POSCHEDULE and structure POHEADERX are all required for the creation of a PO. Without this minimum data a PO cannot be created.
    After i have created the syncBo, on the mapping screen i can only see these tables under the create BAPI. But i am not able to perform the mapping of their fields. These are non-editable or i must say that they are freezed.
    And if i cannot map them then i cannot pass data for them from the client. Although i can do the mapping for the table PO_ITEM and the structure PO_HEADER.
    I hope i am able to expplain my problem. Kindly get back to me if i am not clear. Any sort of help is welcome.
    Thanking in advance,
    Saurabh.

    Hi Saurabh,
    Hope you are aware of the prerequisites for creating the BAPI Wrappers.
    If you want to insert some data into the Business Object, then you have to include
    GETLIST, GETDETAIL and CREATE Bapi Wrappers.
    I think in your case,
    You might not have mapped those fields in your GETLIST Bapi Wrapper.Just check whether you have mapped those fields that are necessary for PO creation in your GETLIST and GETDETAIL BApi wrapper mapping screen.
    Those fields you have mapped in the GETLIST and GETDETAIL BAPI wrappers will be visible (for selection - checkboxes will be editable) in the mapping screen for CREATE BAPI Wrapper.
    So first of all, you have to map fields there in the mapping screens for GETLIST and GETDETAIL Bapi Wrappers...
    check this thing...
    refer these links..
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/com.sap.km.cm.docs/library/mobile/mobile%20infrastructure/mobile%20development%20kit%202.5/content/appdev/smartsync/introduction.html
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/com.sap.km.cm.docs/library/mobile/mobile%20infrastructure/mobile%20development%20kit%202.5/content/appdev/smartsync/bapi_wrapper_types.html
    In the second link, you can see one figure, which is explaining the things that are to be satisfied by the BAPI Wrappers for SyncBO creation...
    Let me know If you have doubts in the prerequisite section itself...
    Regards,
    Kishor Gopinathan

  • Problem while creating a purchase order in JDEdwards worldsoft

    While creating 'OP' and 'OA' purchase order in JDEdwards worldsoft 'G' type
    btach header creating in F0011 table.
    Anybody can tell me this is correct or not.
    If not correct please tell me whether this is JDE bug or not and also provide
    solution for that.

    Here is what I see:
    Error analysis                                                                                |
    The following checkpoint group was used: "No checkpoint group specified"
    If in the ASSERT statement the addition FIELDS was used, you can find
    the content of the first 8 specified fields in the following overview:
    " (not used) "
    " (not used) "
    " (not used) "
    " (not used) "
    " (not used) "
    " (not used) "
    " (not used) "
    " (not used) "
    How to correct the error
    Probably the only way to eliminate the error is to correct the program.
    If the error occures in a non-modified SAP program, you may be able to
    find an interim solution in an SAP Note.
    If you have access to SAP Notes, carry out a search with the following
    keywords:
    "ASSERTION_FAILED" " "
    "CL_FPM========================CP" or "CL_FPM========================CM004"
    "ADD_EVENT_TO_QUEUE"
    If you cannot solve the problem yourself and want to send an error
    notification to SAP, include the following information:
    1. The description of the current problem (short dump)
    To save the description, choose "System->List->Save->Local File
    (Unconverted)".
    2. Corresponding system log
    Display the system log by calling transaction SM21.
    Restrict the time interval to 10 minutes before and five minutes
    after the short dump. Then choose "System->List->Save->Local File
    (Unconverted)".
    3. If the problem occurs in a problem of your own or a modified SAP
    program: The source code of the program
    In the editor, choose "Utilities->More
    Utilities->Upload/Download->Download".
    4. Details about the conditions under which the error occurred or which
    actions and input led to the error.
    |

  • Problem for Goods Receipt for Subcontracting Purchase Order

    Dear all,
    Presently, we are using SAP version 4.6C and we need to introduce GR for
    Subcontracting Purchase Order. We have developed a ABAP program to handle
    subcon Goods Receipt by uploading flat-files from our subcontractor. The
    scenario is as follows :
    Goods Receipt for Subcontracting Purchase Order
    1. In the ABAP program, function BAPI_GOODSMVT_CREATE will be used for goods
    movement.
    2. Data provided to the function are as follows :
    - Posting date
    - Document date
    - Material number
    - Plant
    - Storage location
    - Batch
    - Movement type (101)
    - Quantity
    - Purchase order number
    - Purchase order item
    - Movement indicator (B - Goods receipt for purchase order)
    3. The function will do data verification and automatically determine GI
    item for subcon stock:
    - Movement type (543)
    - Special stock (O - parts prov. vendor)
    - Material
    - Quantity
    - Plant
    Our problem is that :
    Only the GR item in the interface is to be transferred and the GI item is
    determined by the system. So, the quantity for subcon stock cannot be
    changed using this BAPI. Then the system will continue processing the goods
    receipt and create material document.
    Manually, by using transaction code MIGO, the user can display the subcon
    stock data and then change the quantity.
    By using transaction code MB01, after the user fills in all the GR fields,
    the system comes to line item 002 (subcon stock data) and then quantity can
    be changed.
    As per user requirement, quantity for GI item must be same with the quantity
    that has been transferred to subcon vendor in Delivery for Subcon
    (transaction code VL02N).
    We cannot achieve this requirement by using the BAPI mentioned above. Would
    appreciate any valuable help from anyone who is able to help us on this
    matter. Are there any other BAPI's that can help us to achieve the same
    result ?
    Thank you in advance and best regards.

    As far as i understood the problem I suggest u to create the
    BDC according to user actions that are performed in he manual
    operation.
    I can't say that the BAPI performs the exac solution what you want.
    I have done some BDC work using MB01 and suggest you to be careful
    and try to keep the complete in the logic as some chages in rows in BDC will
    change the complete scenario.And throw correct quantity val in correct
    material
    row.
    This methodology will help u even in mass uploads.
    Or in case of automation u can perform the call transaction BDC in
    background mode.
    so As per my understanding bdc program is the solution. pls try and let me
    know.

Maybe you are looking for

  • Sync microKorg with Logic Express 9

    I'm trying to sync the arpeggiator of my microKorg XL with Logic Express 9, using Logic as the master. I seem to have almost done it, in that tempo changes in Logic change the microKorg's tempo. However, I can only hear the microKorg whilst I'm eithe

  • HR element for particular month

    Hi. Could You give me a piece of code how to get the let's say '/T30' component for only 1 person (let's say pernr = X) for a period in the past, let's say 200701. Please give me a code if You can. Tutorials are hard for me and I still don't get the

  • How can I set a default Search Engine not Listed?

    I want to set my default browser?to DuckDuckgo but Safari only gives me 3 options.  Is there an easy way to override this or set my own custom browser?

  • Security sandbox violation: BitmapData.draw on CloudFront/S3.

    I'm using Cloudfront/AS3 to stream some video in RTMP. When I try to do a Bitmap.draw, I get this error: [Fault] exception, information=SecurityError: Error #2123: Security sandbox violation: BitmapData.draw: [my_url] cannot access unknown URL. No po

  • Imac and Forced to Restart after Coming out of Sleep ModeI

    I am having an intermittent issue on an with an iMac, last generation G4 lampshade, and 10.4.6. I upgraded the machine with the combo update. At certain times when the machine comes out of sleep mode. I am forced to restart the machine. I get a dialo