BAPI_SALESORDER_CREATEFROMDAT2 - Configurating Items

Hi  everybody!
  Now i'm trying to create an order but  configurating some items, i'm testing the BAPI at SE37, when  i test the BAPI it gives me the order number but the configuration in the item WHERE  i SEND the data is not made, I give YOU the parameters i'm sending , i hope somebody can help me!.
  I'm not sure if the OBJ_KEY i'm sending is ok, because i've tried with MARA-CUOBF , item number, and it creates the order but without any configuration in the item i need (number 2), also i have doubt about the CONFIG_ID , INST_ID AND ROOT_ID i'm sending, because i copied them from another topic here in SDN related with Configuratim Items with BAPI.
I'll be very grateful if somebody answer me.
Greetings
Soraya.
<b>ORDER_ITEMS_IN     </b>
ITM_NUMBER   -     000001
MATERIAL    -     PC0902400097
TARGET_QTY  -          3,000.00
ITM_NUMBER -     000002
MATERIAL -     AC0162500005
TARGET_QTY -     35,000.00
ITM_NUMBER -     000003
MATERIAL -     ZEE06CC14002
TARGET_QTY -     300
ITM_NUMBER -     000004
MATERIAL -     ZCCM12514037
TARGET_QTY -     10,000.00
<b>ORDER_SCHEDULES_IN</b>     
ITM_NUMBER -     000001
SCHED_LINE -     0001
REQ_DATE -     26.09.2005
REQ_QTY -     3,000.00
ITM_NUMBER -     000002
SCHED_LINE -     0001
REQ_DATE -     26.09.2005
REQ_QTY -     35,000.00
ITM_NUMBER -     000003
SCHED_LINE -     0001
REQ_DATE -     26.09.2005
REQ_QTY -     300
ITM_NUMBER -     000004
SCHED_LINE -     0001
REQ_DATE -     26.09.2005
REQ_QTY -     10,000.00
<b>ORDER_CFGS_REF </b>      
POSEX -     000002
CONFIG_ID -     000001
ROOT_ID -     00000001
<b>ORDER_CFGS_INST </b>      
CONFIG_ID -     000001
INST_ID -     00000001
OBJ_TYPE -     MARA
CLASS_TYPE -     300
OBJ_KEY -     AC0162500005
QUANTITY -     1
<b>ORDER_CFGS_PART_OF</b>       
CONFIG_ID -     000001
PARENT_ID -     00000001
INST_ID -     00000001
OBJ_TYPE -     MARA
CLASS_TYPE -     300
OBJ_KEY -     AC0162500005
<b>ORDER_CFGS_VALUE</b>     
CONFIG_ID -     000001
INST_ID -     00000001
CHARC -     CVA_USFI
CHARC_TXT -     USO FINAL
VALUE -     0000
VALUE_TXT -     SIN USO
<b>ORDER_CFGS_REFINST </b>         
POSEX -     000002
CONFIG_ID -     000001
INST_ID -     00000001

Hi,
I am attaching the code which i have used for creating SO with configuration data.
Enter proper input data for header ,partner,item and configuration data .This works properly In 4.7 R/3.
Just give it a try
*& Report ZKKK_CREATE_SO_WITHCONFIG                                                      *
report ZKKK_CREATE_SO_WITHCONFIG .
tables  : mast.
data : it_header like bapisdhd1.
data : it_part like bapiparnr occurs 0 with header line,
       it_item like bapisditm occurs 0 with header line,
       it_itemx like bapisditmx occurs 0 with header line,
       it_sched like bapischdl occurs 0 with header line,
       it_schedx like bapischdlx occurs 0 with header line,
       it_ret like bapiret2 occurs 0 with header line,
       inst_tab like comw occurs 0 with header line.
data:  order_cfgs_inst like bapicuins occurs 0 with header line,
       order_cfgs_part_of like bapicuprt occurs 0 with header line,
       order_cfgs_refinst like bapicuref occurs 0 with header line,
       order_cfgs_value     like     bapicuval occurs 0 with header line,
       order_cfgs_ref like bapicucfg occurs 0 with header line.
data : instance like marc-cuobj,
       charname like cabn-atnam,
       docno like vbak-vbeln,
       wait_time like bapita-wait.
data   :    p_vbeln  type  vbap-vbeln,
            p_posnr  type  vbap-posnr,
            p_aennr  type  aennr,
            p_datuv  type  sy-datum.                            "636181
data:       lv_no_restricted_profile type  c,
            lv_no_restricted_level  type  c,
            lv_delay                type  i,
            lv_waitingtime          type  i,
            lv_tries                type  i,
            ls_return               like  bapireturn,
            lt_instances            like  standard table of bapicuivb.
data : v_vbeln like vbak-vbeln,
       v_posnr like vbap-posnr,
       v_matnr like vbap-matnr,
       v_werks like vbap-werks,
       v_text(50).
header data
it_header-doc_type = 'ZVOR'.
it_header-sales_org = '45'.
it_header-distr_chan = 'DI'.
it_header-division = '00'.
it_header-purch_no_c = 'test'.
it_header-purch_date = '20050225'.
partner data
it_part-partn_role = 'AG'.
it_part-partn_numb = 'LU123'.
append it_part.
**item data
it_item-itm_number = '000010'.
it_item-po_itm_no = '000010'.
it_item-material = 'GA01202AF03WAS_001'.
it_item-plant = 'MPK'.
append it_item.
it_item-itm_number = '000011'.
it_item-po_itm_no = '000011'.
it_item-material = 'SUBITEM_GH'.
it_item-plant = 'MPK'.
it_item-hg_lv_item = '10'.
append it_item.
it_itemx-itm_number = '000010'.
it_itemx-material = 'X'.
it_itemx-plant = 'X'.
append it_itemx.
it_itemx-itm_number = '000011'.
it_itemx-material = 'X'.
it_itemx-plant = 'X'.
append it_itemx.
it_sched-itm_number = '000010'.
it_sched-sched_line = '0001'.
it_sched-req_qty = '1.000'.
it_sched-req_date = sy-datum.
append it_sched.
it_schedx-itm_number = '000010'.
it_schedx-sched_line = '0001'.
it_schedx-req_qty = 'X'.
it_schedx-req_date = sy-datum.
append it_schedx.
configuration data
clear order_cfgs_refinst.
refresh order_cfgs_refinst.
order_cfgs_refinst-posex = '000011'.
order_cfgs_refinst-config_id = '000011'.
order_cfgs_refinst-inst_id = '00000001'.
append order_cfgs_refinst.
clear order_cfgs_ref.
refresh order_cfgs_ref.
order_cfgs_ref-posex = '000011'.
order_cfgs_ref-config_id = '000011'.
order_cfgs_ref-root_id = '00000001'.
append order_cfgs_ref.
clear order_cfgs_inst.
refresh order_cfgs_inst.
order_cfgs_inst-config_id = '000011'.
order_cfgs_inst-inst_id = '00000001'.
order_cfgs_inst-obj_type = 'MARA'.
order_cfgs_inst-class_type = '300'.
order_cfgs_inst-obj_key = 'SUBITEM_GH'.
append order_cfgs_inst.
clear order_cfgs_value.
refresh order_cfgs_value.
order_cfgs_value-config_id = '000011'.
order_cfgs_value-inst_id = '00000001'.
order_cfgs_value-charc = 'ACT_TYPE'.
order_cfgs_value-value = 'B'.
append order_cfgs_value.
order_cfgs_value-config_id = '000011'.
order_cfgs_value-inst_id = '00000001'.
order_cfgs_value-charc = 'ACT_MODEL'.
order_cfgs_value-value = 'A'.
append order_cfgs_value.
call function 'BAPI_SALESORDER_CREATEFROMDAT2'
  exporting
  SALESDOCUMENTIN               =
    order_header_in               = it_header
  ORDER_HEADER_INX              =
  SENDER                        =
  BINARY_RELATIONSHIPTYPE       =
  INT_NUMBER_ASSIGNMENT         =
  BEHAVE_WHEN_ERROR             =
  LOGIC_SWITCH                  =
  TESTRUN                       =
  CONVERT                       = ' '
importing
   salesdocument                 = docno
  tables
    return                        = it_ret
    order_items_in                = it_item
    order_items_inx               = it_itemx
    order_partners                = it_part
    order_schedules_in            = it_sched
    order_schedules_inx           = it_schedx
   ORDER_CONDITIONS_IN           = IT_COND
   ORDER_CONDITIONS_INX          = IT_CONDX
    order_cfgs_ref                = order_cfgs_ref
    order_cfgs_inst               = order_cfgs_inst
   ORDER_CFGS_PART_OF            = ORDER_CFGS_PART_OF
    order_cfgs_value              = order_cfgs_value
  ORDER_CFGS_BLOB               =
  ORDER_CFGS_VK                 =
    order_cfgs_refinst            = order_cfgs_refinst
  ORDER_CCARD                   =
  ORDER_TEXT                    =
  ORDER_KEYS                    =
  EXTENSIONIN                   =
  PARTNERADDRESSES              =
break-point.
loop at it_ret.
write:/ it_ret-message.
endloop.
wait_time = '1'.
call function 'BAPI_TRANSACTION_COMMIT'
exporting
   wait          = wait_time.
IMPORTING
  RETURN        =
break-point.
loop at it_ret.
endloop.

Similar Messages

  • Using Echo Command in PowerShell Script for Configuration Item

    Hello All,
    Before you tell me to post my PowerShell question to the PowerShell Forum, please know that the PowerShell portion of my task works just fine. It is the SCCM portion of my task that keeps failing, so that is why I am here. To give some background...
    There are two servers in our SCCM test environment. Both the SCCM server and SQL DB server are 2012, patched and updated.
    Test servers in my Device Collection being used for running Baselines and Reports against are 2008R2 and 2012, patched and updated.
    I have created a Configuration Item that checks to see if the FTP Server Role Feature has been installed on a 2008 or 2012 server. To do the check, I am using the following PowerShell script:
    (get-windowsfeature -Name Web-Ftp-Server).Installed
    When I log into my 2008R2 and 2012 test servers, and run this command directly on the server, it will return a "True" if the FTP Server Role Feature is installed on either server, and a "False" if it is not installed. Basically,
    it works as advertised.
    When I setup my Configuration Item and then deploy my Baseline, or run a report against my device collection of test servers, SCCM will return a correct response (True or False) for the 2012 test server, but throws the following error for the 2008R2
    server:
    0x87df00329 application requirement evaluation or detection failed
    Google searches for this have not been very helpful.
    Now, when I created the Configuration Item and referenced PowerShell, the configuration screen has the following note:
    "Specify the script to find and return the value to be assessed for compliance on client devices. Use the echo command to return the script value to Configuration Manager."
    Since I did not include an echo command in my PowerShell script above, I figured that was my problem, so I did the following:
    Logging onto both of my test servers (2008R2 & 2012) I was able to successfully run the following PowerShell commands and get the expected responses of True or False:
    (get-windowsfeature -Name Web-Ftp-Server).Installed | echo
    (get-windowsfeature -Name Web-Ftp-Server).Installed | write-output (http://technet.microsoft.com/en-us/library/hh849921.aspx)
    (get-windowsfeature -Name Web-Ftp-Server).Installed | write-host (http://technet.microsoft.com/en-us/library/ee177031.aspx)
    However, when I use any of these PowerShell commands in my Configuration Item, NEITHER of my test servers returns a response to the SCCM server.
    When I check the report, both servers show as "Unknown" and when I click on the number 2 (as in 2 servers unknown), the following report page (List of unknown assets for a configuration baseline) has absolutely no data/information at all.
    So...I am at a loss.
    SCCM tells me to use an echo command to return a script value to Configuration Manager. The PowerShell scripts above, with the various echo related commands, work just fine on the servers themselves, but they return no information when run via SCCM.
    What am I missing?
    Any help will be appreciated.
    Thanks in advance for your time.

    Sorry for my ignorance, but I don't understand. (I forgot to mention that I am new at both PowerShell and SCCM.)
    After I change the PowerShell script to add the echo/write-output/write-host cmdlet, I open the ConFig Item and "Clear" the PowerShell script and then re-add it. When I do that, it correctly shows the change in the ConFig Item.
    Next I open the Baseline, then open the ConFig Item within the Baseline to make sure the change is reflected there as well, which it is.
    I then deploy the Baseline to my Device Collection. After that, I run a report against the Baseline and Device Collection and it returns the "Unknown" result.
    If I open the PowerShell script and remove the echo/write-output/write-host cmdlet, then go through the rest of the process of updating and reporting, the result it returns changes, showing one server in compliance and the other server out of compliance,
    which leads me to think that all changes have taken correctly.
    Does that sound right? If I manually deploy the Baseline, is that the same as the client retrieving policies from the management point?
    Sorry to be so thick but I'm learning as I go.
    Thanks again for your help.

  • Manually adding AD user or Group mail address in SCSM 2012 R2 Configuration item

    Hi ,
    Since in our AD environment  some of the AD user's mail Id attribute is null, I  added the
    smtp mail Address value in SCSM 2012 R2 user configuration item ,
    After the AD connector synchronization, the manually entered mail Id is removed. I have also checked the property
    do not write null values for the property not set in AD in the Connector properties
    But still , the manually entered mail id is removed by SCSM
    so is it not the correct way  to add mail id manually ???
    Any suggestions???
    The mail Id property is required for mail notification feature in our environment

    the long and short of this is that the AD connector is behaving as designed and correcting values in SCSM from the authoritative source in AD.
    The connector should not be blanking values with that checkbox set. are you sure AD is actually
    Null, and not either an empty string or white-space characters? Can you reproduce this with other users? Might be worth reporting this if there is actually a bug in the connector. 
    Why wouldn't you set the Mail attribute in AD? there isn't any good reason for this to be null. 

  • SMLETS. Get related Business Services from a Configuration Item

    Hi
    I need som help or guidiance on how to create a PS query to list out all the related business services from a Configuration Item (Computer) using the Windows Computer Class
    Im using the following orchestrator activity today to get the related business services from the CI.
    Thx for all replys! :)

    Hi,
    you can use this script as an example:
    Import-Module smlets
    #Definde Input-Values
    [String]$Server = "SCSMSERVER"
    [String]$SCObjectGUID = "6555226c-5e77-ea85-b79f-05dc8843dcb0"
    #Get Computer-Object by SC Object GUID
    [System.Object]$Computer = Get-SCSMObject -Id $SCObjectGUID -ComputerName $Server
    #Get Relationship Class "Is Related to Configuration Item"
    [System.Object]$Relationship = Get-SCSMRelationshipClass -Name "System.ConfigItemRelatesToConfigItem" -ComputerName $Server
    #Get defined Relationships by target
    [System.Object[]]$RelatedBSs = Get-SCSMRelationshipObject -ByTarget $Computer -ComputerName $Server | where { $_.RelationshipId -eq $Relationship.Id }
    #Create Arrray for Orchestrator Published Data
    $BusinessServiceDisplayNames = @()
    foreach($RelatedBS in $RelatedBS)
        #Add DisplayName of Business Service to Output-Array
        $BusinessServiceDisplayNames += $RelatedBS.SourceObject.DisplayName
    $BusinessServiceDisplayNames

  • How to configure for the price master of the configurable item

    in my client we have the configurable items like car doors with different colour as per the color
    the price is changing
    so how to configure this masterdata for pricing for all the material

    Hi
    This kindly of process is done at Variant configuration. so the pricing will define in condition type VA00. and the variant process as follows:
    Eg: Ford car.If a sale order is raised for fiesta lxi model the system should choose red colour & for vxi blue colour respectively.
    ie you need to define the characteristic and assign the values .
    This characteristic need to assigned to class.
    class need to be assigned to material master
    1. T.code : CT04(characteristic) FORD_MODEL, Choose single value & entry required tab & give the input as 01 - fiesta_lxi & 02 - fiesta_vxi.( characteristic values)
    2.Tcode: CT04, FORD_BODY( another characteristic)
    Choose single value , don't click entry required.
    01 - Red( characteristic values)
    02- Blue
    3. Create class T.code : CL02
    fiesta_class
    type : 300
    4. OBJECT DEPENDENCY:
    T.CODE : CT04
    FORD_MODEL
    CLICK VALUES TAB,
    IN FIESTA_LXI CLICK THE 'O' meant for Obj dependency, action & extra.
    Edit the dependecy,
    010 $Self.ford_body = '01'. & save
    Repeat the same for FIEST_VXI & instead of '01' give '02' for blue colour.
    , then create a ROH as ford_body. & a KMAT material for the car. .
    Then create a Super BOM with usage 3 & give component as ford_body
    Then use T.code cu41 (Create config profile)
    enter a profile name & class 300 & choose class assignment, choose fiest_class ,
    Use T.code cu50 to check the values.
    Then create a sale order.
    Reward if it helps
    Regards
    Prasanna R

  • How to configure item proposal

    Hello Gurus, i'm trying to configure item proposal...but can't see the effect on VA01..i've created VA51 record for item proposal and then assigned in XD02 at sales in sales data....is there any thing else i've to still do...so that when i put the partnet function-SP number in VA01...it should give the message or record of the existing item proposal? Please correct me if i'm wrong. Thanx

    Hi,
    Item propsal is a list of materials which you can call up during the order entry.
    You create the item proposal by trazaction VA51.
    Where as Dunamic Product Prossal( which you are refering as Product proposal )is dynamic order entry tool.
    Dynamic Product proposal can be determined by different data sources as below.
    Order history.
    Listed materials .
    Excluded materials .
    Item proposal .
    Customer/material info records .
    Customer-specific data sources.
    In the dynamic product proposal You can combine/exclude materials from different data sources mentioned above.
    Say for example, you could combine the total of all materials in the last n-sales plus all materials in certain item proposals, but excluding those specified in the exclusion.
    Dynamic Product Proposal is called /determined as soon as you enter the sold party in the order.
    You can reach IMG customising steps by
    IMG >SD>Basic functions>Dynamic Product Proposal .
    regards,
    Siddharth.

  • Access Custom Configuration Item Class property in Data Warehouse database

    Is there a way to access properties on a custom 'Configuration Item Class' in the DW database?
    When creating a new CI class eg. 'Monitors' and extending this with a property like 'Serial' is there a way to access this in the DW database?
    I can find Displayname and AssetStatus in the ConfigItemDim table, but is there a way to get the other custom created properties?

    Ok !
    Are you read this post ? :
    http://social.technet.microsoft.com/Forums/systemcenter/en-US/8434e129-b969-451e-875c-f120d7b31d36/dw-reporting-on-custom-class?forum=systemcenterservicemanager
    Remy BOVI

  • Types of Configuration Items in SCCM 2012

    Hello,
    What are different types of Configuration items in SCCM 2012??
    I currently know about two types
    a) Operating System
    b) Application
    are there any more?
    sunil

    And Software updates and General. See also:
    http://technet.microsoft.com/en-us/library/gg712331.aspx
    My Blog: http://www.petervanderwoude.nl/
    Follow me on twitter: pvanderwoude

  • InstallBase-No configuration is build for Configured Items procured thru PO

    No configuration is build in Install base for Configured Items procured thru PO.
    Problem Description:
    We created a PO for a Configured Item and received into an Org ( setup as serialized at receipt) for stocking purpose. The Entire Configuration is not created in Install base. We expected both the Parent and the child ( which are IB-trackable) to be created in the Install base. But the child is not created in the Install base.
    We set the profile CSI:Explode BOM as "yes" and still it did not help.
    Any ideas . ( Note : this is a duplicate post. I have posted under Procurement forums as well).
    Regards
    Kumar

    <u><i><b>Steps for SD Variant Configuration</b></i></u>
    Some light on Variant Configuration in Detail.
    The procedure is as follows:
    1. Create a Material - KMAT type with Item category (002)
    2. Create Charateristics in CT04 - Zbike, where in values mention the Color of the bile like Red, Blue etc
    3. Create another characteristics in CT04 - ZPrice, where directly go the additional data tab and maintain the table SDCOM and field VKOND (ABAP Dictionary it will ask for)
    4. Assign these two characteristics to a Class in CL01 - ZBikeclass ( Type 300) in characteristics tab page.
    5. Then go to CU41 Configuration profile select the material and enter the description click on the class assignment ie assign Zbikclass.
    Now go back to CT04 - enter Zbike -go to values- select Red- go to extras - Other Dependencies - Select Procedure enter in front 10 write - $self.ZPrice='Red' and save
    6. Now go back go to extras - Other Dependencies - assignments and assign relationship ( by default it will come just save)
    7. Now select Blue- go to extras - Other Dependencies - Editor - Select Procedure enter in front of 10 write - $self.ZPrice='Blue' and save
    8. Now go back go to extras - Other Dependencies - assignments and assign relationship ( by default it will come just save)
    9. Now go to VK11 - Enter VA00 (Condition)(For Std RVA001 Pricing Procedure) - enter variant Red and Blue give the rates accordingly and create the sales order.
    Reward if it helps
    Regards,
    Anbu

  • Retrieving the Affected Configuration Items from a Service Request

    I have a service request that gathers the usernames of AD Users that need to be added to a new security group. I have Query Result field set to add the users that are selected as Affected Configuration Items. My problem is when I get the SR's related AD
    Users it gives me all of the Affected CIs but it also gives me the user that submitted the form. Is there any way to filter the relationship to only get users in the Affected CI list?
    Here's the steps I'm using:
    Identify Runbook Automation Activity
    Get Parent Service Request Relationship from RBA
    Get Parent SR Object
    Get related AD Users from SR
    Get AD User Objects
    Any help is much appreciated.

    I figured it out. If anyone else is having this issue, you have to filter the Get User Relationship to exclude everything that does not match the Affected User Relationship Class:
    http://blogs.technet.com/b/servicemanager/archive/2012/05/22/working-with-relationships-in-the-scsm-orchestrator-integration-pack.aspx

  • Create configurator item structure

    Hi,
    I am working in r12 ,
    I can able to create a quote and produce the quote_header_id for it .
    And also i can able to create the line items and generated the line_id for the configurator item .
    The line items are displayed in the sequence one by one.
    I need to generate the configurator item as like in the standard look ups(Sub items should display in the new jsp page as like standard ).
    Thanks
    G.N

    1. go to se11
    2. go to button data type, create the name of the structure u want
    3. choose structure button
    4. fill the structure with the field u want.
    5. After u done fill it, activate the structure
    - go to SE11
    - select data type option
    - give your structure name
    - from pop-up select option STRUCTURE
    - enter fields that you want to include in structure
    - save and activate

  • How to have  make to stock strategy for configurable items

    Dear Frndz,
    My client would like to have make to stock strategy for their configurable items, pls help me out with the step by step procedure of the same.
    Regards,
    Srini

    Hi
    K-Mat Creation steps
    1) Create Char in CT04 with assignment of Control indicators and Char values
    2) Create Class in CL02 with type 300 and assign the Char to it
    3) Assign this class to Material in Classification view in MM02
    4) Create Configuration Profile in CU41 and Main Profiles for PP & SD relevancy
    5) Assign Constraints and Procedures to Each Profile as per the rules required by design or Business
    6) Create a Configurable Material (Mat type - KMAT) with Classification,Sales,MRP,Accounting views and   Planning stg 25
    7) Create A Super BOM(for K-mat) and assign all the comp with Proper Selection & Pre conditions
    8)Create Super Routing(For K-mat) and Assign all operations with Proper Selection
    Material Variant(MV) Creation Steps(Material variants are the stockable items in VC Scenario)
    1) Create a MV with Material type FERT and Stg 10 or 40 (Classification view not essential)
    2) Assign the K-mat material to this MV in Basic data - 2 view in Cross Plant CM field and click on Configure variant tab to select the fixed char value combination for this MV. Do the same steps in MRP-III view
    By this way u can make the stock of configure items
    Regards
    Brahmaji

  • ERROR - AutoCreate Configuration Items

    Hello,
    I am getting the following error which the AutoCreate Configuration Items request set is executed for all sale orders, however when it is run for individual sale orders, it completes without any errors.
    BMCCCI:100:ORA-20002: 3133: Activity instance 'CREATE_CONFIG_BOM_ELIGIBLE' is not
    Please let me know if this error can be resolved.
    Thanks,
    Aarti

    From Note 185143.1. There is one patches to be applied.

  • Populating configuration items: Computers, Services and People under Related Items tab in Computer CI form

    Hi,
    We have integrated SCCM and SCOM with SCSM to import the CI information in CMDB.
    We are able to import few CI information from SCCM regarding softwares, OS, etc and from SCOM regarding hardware and discovered objects.
    When we open the Computer CI in SCSM, we are able to relate almost all the fields from SCCM and SCOM expect Related items tab.
    The Configuration Items: Computers, Services and People are empty under related items tab on Computer CI form.
    Kindly please help me to understand regarding this related items tab.
    Any help will be very much appreciated.
    Thanks
    Kumaresan Lakshmanan

    Hi,
    The Related Items is not automatically populated by any out-of-box connector. You can manually add related configuration items there. What were you expecting to show up under this section?
    Regards,
    Dieter

  • Where are configuration items for iCal stored?

    I'm looking to manage some calendar configurations items (i.e. "Show: X hours at a time").

    Looks like the configuration can be updated with the defaults command. For example, setting the "Show: X hours at a time" can be set to 10 with the command below.
    $ defaults write ~/Library/Preferences/com.apple.iCal.plist "number of hours displayed" 10
    The Issue now is that I have to Quit and Re-Launch Calendar for the change to be implemented. Any ideas on how to have Calendar reload the configuration without Re-Launching?

Maybe you are looking for

  • I use several avatar forums that have timed features, when I click on them they act as though they have been double clicked or will not display properly.

    When visiting Roliana the Your Posts and Bookmark sections are suppose to load a list of my previous posts or bookmarks, this section is designed to have a cool down period between clicks. Even if it is the first time in a 24 hour window that I click

  • ALV Report - Field Overflow message in status Bar

    Hi I am trying to display ALV report , ALV report is displaying fine but on execution of report , an message in status bar is coming as "Field copy Number can not be totalled because of field overflow." Can anyone tell why such messgae is comming? Th

  • New hdd

    Recently, my hard drive crashed and so i got a new one. my whole music library was linked to all my music which is on an external hard drive. after installing my os (windows xp professional), all applicable updates, drivers for my Belkin firewire/usb

  • Web Services and CF

    Hello, I've just started using Coldfusion and I'm trying to invoke a Web Service: <cfinvoke webservice=" http://localhost/WebService1/Service1.asmx?wsdl" method="MyMethod" returnvariable="aString"> <cfinvokeargument name="arg1" value="1"/> <cfinvokea

  • HH5 and static IP address question

    I've been trying to set up static addresses for my devices and for some weird reason, when trying to set an address for one PC, the HH tells me the following: The IP address entered conflicts with a device using the same IP address on your home netwo