IPC:bute in the field catalogue while processing configuration or pricing i

Hi,
I get this error (Message Class: PRC_MESSAGES_EXT (Messages for Calling Public Pricing Modules), Message Type: E, Message Number 099, Message variables: Message variables 1-4: IPC:bute in the field catalogue while processing configuration or pricing in context spe.condmgnt.customizing.dba.imp.AttributeClassObjectManager.createAttributeClassAttributeClassObjectManager.java)
when we ran IPC userexits. 
We've added a field ZZPSTYV in the communication structure and modified the method to define this field like follows:
     public String[] determineRelevantAttributesForRequirement(
          boolean headerAttributes,
          int reqNo) {                         String[] relevantAttributes = new String[0];
     //Header?
     if (headerAttributes) {          }
     //Item
     else {
     //KOMP fields
     switch (reqNo){
          case 900:                              relevantAttributes = new String[] {"ZZPSTYV" };                                   break;
    return relevantAttributes;
Running this code we get the above listed error.  Same error if we define unnecessarily a standard field, such as SOLD_TO_PARTY in place of ZZPSTYV.  
Can anyone give us some advise as what we did wrong?  Appreciate it very much,
Yanhui

Hi Yanhui,
Is it a item field?  Remember that mixed fields should be declared at the header in the IPC.
Missing any other requirements?
Cheers
Andrew

Similar Messages

  • I was trying to upgrade the OS, but in the middle of this process it froze

    4s:  I was trying to upgrade the OS, but in the middle of this process it froze with a screen image implying that I should plug into iTunes
    (image of a cable, with an arrow pointing at the word iTunes);  when I connect to my laptop, the computer doesn't see my iPhone
    connected at all.  I've tried powering down and up, but it always comes back to that same image.   Can I re-set the whole thing?
    <Re-Titled By Host>

    Thanks to hughgriff and stevejobsfan0123:  I reinstalled iTunes on my laptop, used iTunes to restore my iPhone (to new), then used iCloud to restore apps, setting, data, etc. But what a hassle!  A ridiculous way to update ios7!

  • Skip the empty line while processing

    Hi all
    i'm reading from a file and i want to skip the empty line and process the line which has some data, but it seem that i doesnot process the "\n"as an empty line
    for example i have the following data
    i went to school
    (empty line)
    5 days a week
    (empty line)
    and i have the following code
        while((line = in.readLine() ) !=null) 
                 if(line!="\n")
                      codes=line.split("   ");
                      }//if else
                      else
                      //do nothing
                      }

    thanks dmbdmb
    it works
    may i ask another question
    i have a file which has several sentences but the spaces between these sentences are not unique i.e some time 3 empty lines some times more or less
    i have a code to make all the spaces just 1 between any sentece but it work with system.out.print but not with files any ideas
    here is the code
            StringBuffer buffer=new StringBuffer();
            try{
                BufferedReader read=new BufferedReader(new FileReader(fname));
    BufferedWriter br = new BufferedWriter(new FileWriter("111.txt"));
                String line=read.readLine();   
                boolean isNewLine=false;
                while(line!=null){
                    if(line.length()==0 && !isNewLine){
                        buffer.append("\n\n");
                                       isNewLine=true;
                    }//if
                    else if(line.length()!=0){
                        buffer.append(line);
                        System.out.println("in ELSE");
                        isNewLine=false;
                    }//else
                    line=read.readLine();
                }//while
                br.write(buffer.toString());
                 read.close();
           br.close();
            }//try
            catch(IOException ioe){
                ioe.printStackTrace();
            }

  • I am using the "Menu Selection With Events.vi" example alongside other while loops, When I select exit from the new menu it stops the other while loops but not the menu/event while loop

    The event driven menu example works fine and I've integrated it into my application. I have built in simple local vars to link menu selections to existing GUI buttons. The problem is that I cannot get the File-Exit menu option to switch off/terminate the application. The [1] "Stop": Value Change panel of the event structure simply switches off the other while loops but leaves the event while loop running. Add a while loop to the axample using a local var from the event while loop to terminate 2nd while loop to get the effect.
    Help appreciated, Chris

    Attached you will find a modified version of your VI.
    I documented what I did on the block diagram.You were right on you just needed to add a variable with a true wired to it.
    Have fun with it.
    Joe
    Joe.
    "NOTHING IS EVER EASY"
    Attachments:
    Menu_Selection_with_Events_%26_while_loop[1].vi ‏76 KB

  • Use of the field T682Z-FSTST ( Processing type in access )

    Hi,
    I want to know the use of the field T682Z-FSTST. The allowed values for the field is
    (blank)     Field in fixed key part
    A     Field in free key part
    B     Key field to be determined in access
    C     Data field from condition table

    Hi Abhi,
    FSTST field helps as follows :
    in sales when assigning the pricing conditions we go for a process assigning . means to say there will be many order type(s)like in sales order if u take there will be many orders . based on a type of sales order in va01 the appropriate taxes are to be levied . when a pricing procedure is to be assigned to a sales order which has to be on a order type then access sequence is allotted i.e predefined in the pricing procedure . when the process is run for pricing procedure then on the predefined pricing procedure and access sequence the taxes are calculated . here is the access sequence that plays a key role . so fixed key doesn't allow u to give values not defined in the range .
    Hope your question is answered . Please assign some reward points if it is useful .
    Thanks.
    Ramesh Choragudi

  • To select the field dynamically while fetching th e data

    Hi Experts,
    We have fields like TKG001, TKG002, TKG003 etc in COST table...
    My requirement is that we want the value present in the field TKG0** where ** is the month of system data.
    Do we have any method to extract the field dynamically from the table.
    Please suggest me how can i achieve the requirement.
    Thank you,
    Regards,
    Kavya

    Hello
    You can use dynamic field specification
    Check this :
    REPORT x.
    DATA :
          BEGIN OF lw_field,
            field(20),
          END OF lw_field,
          lt_field LIKE STANDARD TABLE OF lw_field.
    START-OF-SELECTION.
      lw_field-field = 'BUKRS'.
      APPEND lw_field TO lt_field.
      lw_field-field = 'GJAHR'.
      APPEND lw_field TO lt_field.
      SELECT (lt_field)   "<-- Internal table contains your dynamically specified in parenthesis
      FROM bkpf
      INTO TABLE itab.
      BREAK-POINT.

  • Error message at the selection screen while processing screen logic

    Hi All,
      I need to show error message at the selection screen.
    I am calling the screen inside the START-OF-SELECTION, and processing the calculation and putting the data into i_final internal table. If internal table I_FINAL is empty I have to show error message saying ' DATA is empty' , this error message should be shown at the SELECTION SCREEN (Report input screen 1000) and provide the user to enter the input values once again.
    But whenever I am populating error message, I am getting a pop up to chose exit, and process is terminating.
    Since I am in the middle of the screen processing whenever I am giving a error message.
    Please let me know how can I populate error message without terminating the process while I was in the middle of the screen processing logic.
    Regards,
    Mahesh

    hi
    If u are trying to validate a field use
    AT SELECTION_SCREEN ON <field>
    if want to validate a block
    AT SELECTION SCREEN ON <block>
    If Universal Validation
    AT SELECTION SCREEN
    and display a 'E' Message inside the block.
    You can Enter Correct Value and start processing Forward.
    hope this will help.
    Regards
    Sumit Agarwal

  • Error: Validation failed for the field - Status While creating Sales Order

    Hi,
    I am getting an error while trying to create sales order header.
    I have tried using provided in the metalink as well but it still doesn't seem to work.
    I am on R12.1.1
    Can somebody help me out on this?
    The code is
    set serveroutput on
    DECLARE
    l_header_rec OE_ORDER_PUB.Header_Rec_Type;
    l_header_rec1 OE_ORDER_PUB.Header_Rec_Type;
    l_line_tbl OE_ORDER_PUB.Line_Tbl_Type;
    l_line_tbl1 OE_ORDER_PUB.Line_Tbl_Type;
    l_action_request_tbl OE_ORDER_PUB.Request_Tbl_Type;
    l_header_adj_tbl OE_ORDER_PUB.Header_Adj_Tbl_Type;
    l_line_adj_tbl OE_ORDER_PUB.line_adj_tbl_Type;
    l_header_scr_tbl OE_ORDER_PUB.Header_Scredit_Tbl_Type;
    l_line_scredit_tbl OE_ORDER_PUB.Line_Scredit_Tbl_Type;
    l_request_rec OE_ORDER_PUB.Request_Rec_Type ;
    l_return_status VARCHAR2(1000);
    l_msg_count NUMBER;
    l_msg_data VARCHAR2(1000);
    p_api_version_number NUMBER :=1.0;
    p_init_msg_list VARCHAR2(10) := FND_API.G_FALSE;
    p_return_values VARCHAR2(10) := FND_API.G_FALSE;
    p_action_commit VARCHAR2(10) := FND_API.G_FALSE;
    x_return_status VARCHAR2(1);
    x_msg_count NUMBER;
    x_msg_data VARCHAR2(100);
    p_header_rec OE_ORDER_PUB.Header_Rec_Type := OE_ORDER_PUB.G_MISS_HEADER_REC; 
    p_old_header_rec OE_ORDER_PUB.Header_Rec_Type := OE_ORDER_PUB.G_MISS_HEADER_REC;
    p_header_val_rec OE_ORDER_PUB.Header_Val_Rec_Type := OE_ORDER_PUB.G_MISS_HEADER_VAL_REC;
    p_old_header_val_rec OE_ORDER_PUB.Header_Val_Rec_Type := OE_ORDER_PUB.G_MISS_HEADER_VAL_REC;
    p_Header_Adj_tbl OE_ORDER_PUB.Header_Adj_Tbl_Type := OE_ORDER_PUB.G_MISS_HEADER_ADJ_TBL;
    p_old_Header_Adj_tbl OE_ORDER_PUB.Header_Adj_Tbl_Type := OE_ORDER_PUB.G_MISS_HEADER_ADJ_TBL;
    p_Header_Adj_val_tbl OE_ORDER_PUB.Header_Adj_Val_Tbl_Type := OE_ORDER_PUB.G_MISS_HEADER_ADJ_VAL_TBL;
    p_old_Header_Adj_val_tbl OE_ORDER_PUB.Header_Adj_Val_Tbl_Type := OE_ORDER_PUB.G_MISS_HEADER_ADJ_VAL_TBL;
    p_Header_price_Att_tbl OE_ORDER_PUB.Header_Price_Att_Tbl_Type := OE_ORDER_PUB.G_MISS_HEADER_PRICE_ATT_TBL;
    p_old_Header_Price_Att_tbl OE_ORDER_PUB.Header_Price_Att_Tbl_Type := OE_ORDER_PUB.G_MISS_HEADER_PRICE_ATT_TBL;
    p_Header_Adj_Att_tbl OE_ORDER_PUB.Header_Adj_Att_Tbl_Type := OE_ORDER_PUB.G_MISS_HEADER_ADJ_ATT_TBL;
    p_old_Header_Adj_Att_tbl OE_ORDER_PUB.Header_Adj_Att_Tbl_Type := OE_ORDER_PUB.G_MISS_HEADER_ADJ_ATT_TBL;
    p_Header_Adj_Assoc_tbl OE_ORDER_PUB.Header_Adj_Assoc_Tbl_Type := OE_ORDER_PUB.G_MISS_HEADER_ADJ_ASSOC_TBL;
    p_old_Header_Adj_Assoc_tbl OE_ORDER_PUB.Header_Adj_Assoc_Tbl_Type := OE_ORDER_PUB.G_MISS_HEADER_ADJ_ASSOC_TBL;
    p_Header_Scredit_tbl OE_ORDER_PUB.Header_Scredit_Tbl_Type := OE_ORDER_PUB.G_MISS_HEADER_SCREDIT_TBL;
    p_old_Header_Scredit_tbl OE_ORDER_PUB.Header_Scredit_Tbl_Type := OE_ORDER_PUB.G_MISS_HEADER_SCREDIT_TBL;
    p_Header_Scredit_val_tbl OE_ORDER_PUB.Header_Scredit_Val_Tbl_Type := OE_ORDER_PUB.G_MISS_HEADER_SCREDIT_VAL_TBL;
    p_old_Header_Scredit_val_tbl OE_ORDER_PUB.Header_Scredit_Val_Tbl_Type := OE_ORDER_PUB.G_MISS_HEADER_SCREDIT_VAL_TBL;
    p_line_tbl OE_ORDER_PUB.Line_Tbl_Type := OE_ORDER_PUB.G_MISS_LINE_TBL;
    p_old_line_tbl OE_ORDER_PUB.Line_Tbl_Type := OE_ORDER_PUB.G_MISS_LINE_TBL;
    p_line_val_tbl OE_ORDER_PUB.Line_Val_Tbl_Type := OE_ORDER_PUB.G_MISS_LINE_VAL_TBL;
    p_old_line_val_tbl OE_ORDER_PUB.Line_Val_Tbl_Type := OE_ORDER_PUB.G_MISS_LINE_VAL_TBL;
    p_Line_Adj_tbl OE_ORDER_PUB.Line_Adj_Tbl_Type := OE_ORDER_PUB.G_MISS_LINE_ADJ_TBL;
    p_old_Line_Adj_tbl OE_ORDER_PUB.Line_Adj_Tbl_Type := OE_ORDER_PUB.G_MISS_LINE_ADJ_TBL;
    p_Line_Adj_val_tbl OE_ORDER_PUB.Line_Adj_Val_Tbl_Type := OE_ORDER_PUB.G_MISS_LINE_ADJ_VAL_TBL;
    p_old_Line_Adj_val_tbl OE_ORDER_PUB.Line_Adj_Val_Tbl_Type := OE_ORDER_PUB.G_MISS_LINE_ADJ_VAL_TBL;
    p_Line_price_Att_tbl OE_ORDER_PUB.Line_Price_Att_Tbl_Type := OE_ORDER_PUB.G_MISS_LINE_PRICE_ATT_TBL;
    p_old_Line_Price_Att_tbl OE_ORDER_PUB.Line_Price_Att_Tbl_Type := OE_ORDER_PUB.G_MISS_LINE_PRICE_ATT_TBL;
    p_Line_Adj_Att_tbl OE_ORDER_PUB.Line_Adj_Att_Tbl_Type := OE_ORDER_PUB.G_MISS_LINE_ADJ_ATT_TBL;
    p_old_Line_Adj_Att_tbl OE_ORDER_PUB.Line_Adj_Att_Tbl_Type := OE_ORDER_PUB.G_MISS_LINE_ADJ_ATT_TBL;
    p_Line_Adj_Assoc_tbl OE_ORDER_PUB.Line_Adj_Assoc_Tbl_Type := OE_ORDER_PUB.G_MISS_LINE_ADJ_ASSOC_TBL;
    p_old_Line_Adj_Assoc_tbl OE_ORDER_PUB.Line_Adj_Assoc_Tbl_Type := OE_ORDER_PUB.G_MISS_LINE_ADJ_ASSOC_TBL;
    p_Line_Scredit_tbl OE_ORDER_PUB.Line_Scredit_Tbl_Type := OE_ORDER_PUB.G_MISS_LINE_SCREDIT_TBL;
    p_old_Line_Scredit_tbl OE_ORDER_PUB.Line_Scredit_Tbl_Type := OE_ORDER_PUB.G_MISS_LINE_SCREDIT_TBL;
    p_Line_Scredit_val_tbl OE_ORDER_PUB.Line_Scredit_Val_Tbl_Type := OE_ORDER_PUB.G_MISS_LINE_SCREDIT_VAL_TBL;
    p_old_Line_Scredit_val_tbl OE_ORDER_PUB.Line_Scredit_Val_Tbl_Type := OE_ORDER_PUB.G_MISS_LINE_SCREDIT_VAL_TBL;
    p_Lot_Serial_tbl OE_ORDER_PUB.Lot_Serial_Tbl_Type := OE_ORDER_PUB.G_MISS_LOT_SERIAL_TBL;
    p_old_Lot_Serial_tbl OE_ORDER_PUB.Lot_Serial_Tbl_Type := OE_ORDER_PUB.G_MISS_LOT_SERIAL_TBL;
    p_Lot_Serial_val_tbl OE_ORDER_PUB.Lot_Serial_Val_Tbl_Type := OE_ORDER_PUB.G_MISS_LOT_SERIAL_VAL_TBL;
    p_old_Lot_Serial_val_tbl OE_ORDER_PUB.Lot_Serial_Val_Tbl_Type := OE_ORDER_PUB.G_MISS_LOT_SERIAL_VAL_TBL;
    p_action_request_tbl OE_ORDER_PUB.Request_Tbl_Type := OE_ORDER_PUB.G_MISS_REQUEST_TBL;
    x_header_val_rec OE_ORDER_PUB.Header_Val_Rec_Type;
    x_Header_Adj_tbl OE_ORDER_PUB.Header_Adj_Tbl_Type;
    x_Header_Adj_val_tbl OE_ORDER_PUB.Header_Adj_Val_Tbl_Type;
    x_Header_price_Att_tbl OE_ORDER_PUB.Header_Price_Att_Tbl_Type;
    x_Header_Adj_Att_tbl OE_ORDER_PUB.Header_Adj_Att_Tbl_Type;
    x_Header_Adj_Assoc_tbl OE_ORDER_PUB.Header_Adj_Assoc_Tbl_Type;
    x_Header_Scredit_tbl OE_ORDER_PUB.Header_Scredit_Tbl_Type;
    x_Header_Scredit_val_tbl OE_ORDER_PUB.Header_Scredit_Val_Tbl_Type; 
    x_line_val_tbl OE_ORDER_PUB.Line_Val_Tbl_Type;
    x_Line_Adj_tbl OE_ORDER_PUB.Line_Adj_Tbl_Type;
    x_Line_Adj_val_tbl OE_ORDER_PUB.Line_Adj_Val_Tbl_Type;
    x_Line_price_Att_tbl OE_ORDER_PUB.Line_Price_Att_Tbl_Type;
    x_Line_Adj_Att_tbl OE_ORDER_PUB.Line_Adj_Att_Tbl_Type;
    x_Line_Adj_Assoc_tbl OE_ORDER_PUB.Line_Adj_Assoc_Tbl_Type;
    x_Line_Scredit_tbl OE_ORDER_PUB.Line_Scredit_Tbl_Type;
    x_Line_Scredit_val_tbl OE_ORDER_PUB.Line_Scredit_Val_Tbl_Type;
    x_Lot_Serial_tbl OE_ORDER_PUB.Lot_Serial_Tbl_Type;
    x_Lot_Serial_val_tbl OE_ORDER_PUB.Lot_Serial_Val_Tbl_Type;
    x_action_request_tbl OE_ORDER_PUB.Request_Tbl_Type; 
    X_DEBUG_FILE VARCHAR2(100);
    l_line_tbl_index NUMBER;
    l_msg_index_out NUMBER(10);
    BEGIN
    oe_debug_pub.debug_on;
    DBMS_APPLICATION_INFO.set_client_info (121);
    dbms_output.enable(1000000);
    fnd_global.apps_initialize(2787,50703,660); -- pass in user_id, responsibility_id, and application_id
    oe_msg_pub.initialize;
    oe_debug_pub.initialize;
    MO_GLOBAL.init('ONT');
    X_DEBUG_FILE := OE_DEBUG_PUB.Set_Debug_Mode('FILE');
    oe_debug_pub.SetDebugLevel(5); -- Use 5 for the most debuging output, I warn you its a lot of data
    dbms_output.put_line('START OF NEW DEBUG');
    --This is to CREATE an order header and an order line
    --Create Header record
    --Initialize header record to missing
    l_header_rec := OE_ORDER_PUB.G_MISS_HEADER_REC;
    l_header_rec.pricing_date := SYSDATE;
    l_header_rec.sold_to_org_id := 2096;
    l_header_rec.ordered_date := SYSDATE;
    l_header_rec.sold_from_org_id := 121     ;
    l_header_rec.salesrep_id := -3;
    l_header_rec.order_type_id := 1003;
    l_header_rec.operation := OE_GLOBALS.G_OPR_CREATE;
    l_line_tbl_index :=1;
    -- FIRST LINE RECORD
    -- Initialize record to missing
    l_line_tbl(l_line_tbl_index) := OE_ORDER_PUB.G_MISS_LINE_REC;
    -- Line attributes
    l_line_tbl(l_line_tbl_index).inventory_item_id := 124516;
    l_line_tbl(l_line_tbl_index).ordered_quantity := 500;
    l_line_tbl(l_line_tbl_index).ship_from_org_id := 563;
    l_line_tbl(l_line_tbl_index).operation := OE_GLOBALS.G_OPR_CREATE;
    -- CALL TO PROCESS ORDER Check the return status and then commit.
    OE_ORDER_PUB.process_order (
      p_api_version_number => 1.0
      , p_init_msg_list => fnd_api.g_false
      , p_return_values => fnd_api.g_false
      , p_action_commit => fnd_api.g_false
      , x_return_status => l_return_status
      , x_msg_count => l_msg_count
      , x_msg_data => l_msg_data
      , p_header_rec => l_header_rec
      , p_line_tbl => l_line_tbl
      , p_action_request_tbl => l_action_request_tbl
       -- OUT PARAMETERS
      , x_header_rec => l_header_rec1
      , x_header_val_rec => x_header_val_rec
      , x_Header_Adj_tbl => x_Header_Adj_tbl
      , x_Header_Adj_val_tbl => x_Header_Adj_val_tbl
      , x_Header_price_Att_tbl => x_Header_price_Att_tbl
      , x_Header_Adj_Att_tbl => x_Header_Adj_Att_tbl
      , x_Header_Adj_Assoc_tbl => x_Header_Adj_Assoc_tbl
      , x_Header_Scredit_tbl => x_Header_Scredit_tbl
      , x_Header_Scredit_val_tbl => x_Header_Scredit_val_tbl
      , x_line_tbl => l_line_tbl1
      , x_line_val_tbl => x_line_val_tbl
      , x_Line_Adj_tbl => x_Line_Adj_tbl
      , x_Line_Adj_val_tbl => x_Line_Adj_val_tbl
      , x_Line_price_Att_tbl => x_Line_price_Att_tbl
      , x_Line_Adj_Att_tbl => x_Line_Adj_Att_tbl
      , x_Line_Adj_Assoc_tbl => x_Line_Adj_Assoc_tbl
      , x_Line_Scredit_tbl => x_Line_Scredit_tbl
      , x_Line_Scredit_val_tbl => x_Line_Scredit_val_tbl
      , x_Lot_Serial_tbl => x_Lot_Serial_tbl
      , x_Lot_Serial_val_tbl => x_Lot_Serial_val_tbl
      , x_action_request_tbl => l_action_request_tbl
      dbms_output.put_line('OM Debug file: ' ||oe_debug_pub.G_DIR||'/'||oe_debug_pub.G_FILE); 
      oe_debug_pub.debug_off;
      -- Retrieve messages
      FOR i IN 1 .. l_msg_count
      LOOP
       Oe_Msg_Pub.get( p_msg_index => i
        , p_encoded => Fnd_Api.G_FALSE
        , p_data => l_msg_data
        , p_msg_index_out => l_msg_index_out);
       DBMS_OUTPUT.PUT_LINE('message is: ' || l_msg_data);
       DBMS_OUTPUT.PUT_LINE('message index is: ' || l_msg_index_out);
      END LOOP;
    -- Check the return status
    IF l_return_status = FND_API.G_RET_STS_SUCCESS
    THEN
      dbms_output.put_line('Process Order Sucess');
      dbms_output.put_line('new Header id:' || l_header_rec1.header_id);
    ELSE
      dbms_output.put_line('Failed');
    END IF;
    Commit;
    END; Regards
    knick

    Kinck
    The same script worked for me in vision (R12.1). You may have issues with your defaulting of a number of attributes that you are not passing in the API (like price list, line type and so on). You may want to check them.
    Thanks
    Nagamohan

  • How to fix this error "The error occurred while processing a command of type 'setState' in plug-in 'servermgr_netboot'."

    I received this alert while configurating the OS X Server. But i don't know how to fix the error.
    Thank's
    lzraeder

    Hope this helps.
    I have been messing around with Mt Lion Server last day or so. Different than Lion Server, more refined, more sreamlined.
    I got this same error message when trying to enable and setup NetRestore / NetInstall.
    Looks like when one is using Wi-Fi as the network interface, you get this error. I suspected this.
    Not sure if this is a bug or Apple wants people to use Ethernet only, if so why give a choice, probably a bug.
    I have succefully used NetRestotre Lion server on a 2011 Mac Mini, worked perfectly. Then I remembered, I was using wired Ethernet, as I suspect most servers would use a wired network connection.
    MT Lion Server NetRestore / NetInstall works if you use Ethernet, and turn off Wi-Fi. Ethernet will actually show up as a selectable option under Access > Settings > Enable NetInstall Setttings On.., and you click Edit, and can check enable Ethernet.
    Once I did that the error went away. Then you get another message, if you do not have a NetRestore (in my case) image in the proper path, which you can set. I always like to do this away from the the boot volume, saves space, etc.
    You have to manually copy the .nbi folder you created with System Image Util. It seems Apple could have gone the extra step and included that in the Server GUI.
    No more Workgroup Manager, Server Admin, and the other dozen apps it tooks to admin server. Some are complaining. I for one like it very much. Always thought it was somewhat stupid and lazy of Apple to have that functionality across several apps. It was always un Apple like. It should be One App. I like what the Server app is now.
    Managing users, groups, shares, services is so much better, and refined, consolidated. Makes so much more sense.
    (Local User, Local Network User), you actually know clearly what type of user you are loooking at. WGM was IMHO a nightmare to navigate, it was schizophrenic (left over from NeXT I surmise).
    And of course one can go to the CL for all sorts of deep things like dns, changeip, dscl, odutil, etc. It's all there.
    john

  • Error for the fact table while processing the cube - attribute key cannot be found when processing

    Please help as I am new to SSAS and this is urgent requirement. This is a MOLAP cube and below is the error that I am receiving when processing the cube. The cube is set to Prrocess Full. Several similar errors are popped up for various dimensions.
    "Errors in the OLAP storage engine: The attribute key cannot be found when processing: Table: 'Fact_Table', Column: 'ID', Value: '1'. The attribute is 'Id'. Errors in the OLAP storage engine: The attribute key was converted to an unknown member because
    the attribute key was not found. Attribute Id of Dimension: 17 - Ves - PoC Cont from Database: DB, Cube: IPNCube, Measure Group: iSrvy, Partition: Partition1, Record: 1."
    Thanks in advance.

    Thanks for the recommendations David.
    It will be really great if you can clear some of my doubts:
    To my information, all the dimensions need to be processed first and then the fact table will be processed.
    So if the ID's are not present in the dimension tables, then it should not be present in the Fact table either.
    Here we found null values in the dimension table and the ID's were present in the Fact table. What might be the reasons causing such situation?
    Also how frequently the cube needs to be processed? Currently the ETL which processes the cube, is scheduled in a SQL Job Agent on hourly basis everyday. 
    Is there any possibilty that the cube might be under processing state and the SQL job for the next run getting executed trying to access and process the cube while it was still processing?

  • Want to change the BSEG-SGTXT while process through the transaction:FF_5

    Hi,
    I want to change the value in BSEG-SGTXT during the process through the transaction:FF_5.
    Can any one suggest any BADI or User Exit to update the SGTXT.
    Regards,
    Hema T

    Hi
    If your text is going to remain content based certain transaction types or text in the note to payee field then you can use the below functionality.
    Advantage no ABAP help required.
    Define Search String :
    Strg Name : Text
    Strng : Test (say if you want to find the word "test" in the incoming record. You refer the help doc on Search string for combinations)
    Mapping : (keep it blank)
    In Search string use :
    1)
    Company code :
    House bank id:
    Account id:
    Int algthm :  (if you are using any)
    Strg name: Check
    Target field: BDC Field name1 BSEG-SGTXT
    2)
    Company code :
    House bank id:
    Account id:
    Int algthm : (if you are using any)
    Strg name: Text
    Target field: BDC Field value1 "text that you want to enter in the Bseg- sgtxt field"
    3)
    Company code :
    House bank id:
    Account id:
    Int algthm : (if you are using any)
    Strg name: Check
    Target field: BDC Acct type1 0
    0: First line, posting area 1
    1: First line, posting area 2
    2: Second line, posting area 1
    3: Second line, posting area 2
    Regards
    Nikhil

  • TS4504 Getting the error "The error occurred while processing a command of type 'createODSignedIdentity' in plug-in 'servermgr_certs'".

    I have been receiving the alerts about an expiring (now expired) code signing ertificate. I have been unable to resolve the issue with the 'Replace' button on the alert page. When the button is pressed, nothing happens. I get the error when I go to Profile Manager. I have had no success with [/Applications/Server.app/Contents/ServerRoot/usr/sbin/certadmin --recreate-CA-signed-certificate] either. When I try this as root, I get the error "
    2013-09-30 22:29:06.697 certadmin[22718:a07] -[CertsRequestHandler createODSignedIdentityWithRequest:]: SecIdentityCopyPreferred error: No OD CA found
    /Applications/Server.app/Contents/ServerRoot/usr/sbin/certadmin Unable to create CA signed identity(error = -25300) zioneq.private Code Signing Certificate"
    I'm stuck; no idea what to do. Runing Server version 2.2.2 (169.3) on Mountain Lion OS X 10.8.5 (12F37).

    Bump.  Exact same problem here as well.  OS X 10.8.5 with Server 2.2.2
    Any ideas?

  • The error occurred while processing a command of type 'refresh' in plug-in 'servermgr_filebrowser'.

    How do I find out why I'm getting that warning message?
    When I open Console, I see it reporting the following every 10 seconds or so:
    11/10/13 1:00:25.794 PM ReportCrash[78170]: Saved crash report for postgres_real[78169] version 81.2 to /Library/Logs/DiagnosticReports/postgres_real_2013-11-10-130025_MacMini.crash
    When I open the DiagnosticReports folder, I see numerous "postgres_real_2013-11-10-130605_MacMini.crash" logs for every "servermgrd_2013-11-08-163724_MacMini.crash" log.
    Are the two related? What can I do to clear them up?

    Bump.  Exact same problem here as well.  OS X 10.8.5 with Server 2.2.2
    Any ideas?

  • Field catalogue for ALV Grid when program is run in the background

    Hi All,
    I have an ALV report that contains approx 27 fields.  Not all of these fields will be relevant for different Users, and many will want to change the order the fields appear in.
    When running on line the User can set a variant to present the data as they wish.  However, I need to email this report to the SAP Inbox with the fields displayed in the same Order with uncessary fields hidden as stated in the Field Catalogue.
    On-line none of this is an issue, however GET_FRONTEND_FIELDCATALOG cannot be used in Background, and attribute MT_FIELDCAT_LOCAL is Private and cannot be accessed.
    I have looked at using Class CL_ ALV_VARIANT to try to read the Variant being used, but couldn't get the information about the Variant coming back, instead I get an error in CL_ALV_VARIANT->LOAD_VARIANT.
    Can anybody recommend how to the Field Cat for a Variant for background processing?
    Thanks,
    Tony.

    Hi.
    You can not use an ALV report in Background or write to spool because it is a kind of dialog program.
    You can write only  a List report to spool so please find others sulotions.
    Hope it helps.
    Sayan.

  • Help - Multiple errors occurred on the server while processing commands

    I am trying to start ical server on a fresh install of os x server 10.5, but I receive the following error messages: "Multiple errors occurred on the server while processing commands. Use the console application to view the error message" then I hit "ok" and then if i try to enable the iCal service, up pops up another window saying: "an error occurred onthe server while processing a command. Error 'CANNOTLOAD_BUNDLEERR' occurred while processing a command of type 'writeSettings' in plug-in 'servermgr_calendar'
    what's going on? how do i proceed to enable the iCal service? here is my error log:
    servermgrd[56]: servermgr_web: Unable to get valid response from servermgr_teams; using default group services settings
    May 25 13:22:54 plgs-server servermgrd[56]: servermgr_web: Unable to get valid response from servermgr_teams; no themes
    May 25 13:23:50 plgs-server Server Preferences[70930]: XSAdminQueueController: gotServerError: CANNOTLOAD_BUNDLEERR forTransaction: <XSAdminTransaction: 0x1a398170>
    May 25 13:23:50 plgs-server Server Preferences[70930]: ERROR: The server 'PLG-Server.local' reported the error: 'CANNOTLOAD_BUNDLEERR' while processing a command of type: 'readSettings' in plug-in: 'servermgr_calendar'
    May 25 13:23:51 plgs-server Server Preferences[70930]: XSAdminQueueController: gotServerError: CANNOTLOAD_BUNDLEERR forTransaction: <XSAdminTransaction: 0x1a390c30>
    May 25 13:23:51 plgs-server Server Preferences[70930]: ERROR: The server 'PLG-Server.local' reported the error: 'CANNOTLOAD_BUNDLEERR' while processing a command of type: 'getState' in plug-in: 'servermgr_calendar'
    May 25 13:23:54 plgs-server servermgrd[56]: servermgr_web: Unable to get valid response from servermgr_teams; using default group services settings
    May 25 13:23:54 plgs-server servermgrd[56]: servermgr_web: Unable to get valid response from servermgr_teams; no themes
    May 25 13:23:58 plgs-server Server Preferences[70930]: XSAdminQueueController: gotServerError: CANNOTLOAD_BUNDLEERR forTransaction: <XSAdminTransaction: 0x1a3cabf0>
    May 25 13:23:58 plgs-server Server Preferences[70930]: ERROR: The server 'PLG-Server.local' reported the error: 'CANNOTLOAD_BUNDLEERR' while processing a command of type: 'setState' in plug-in: 'servermgr_calendar'
    May 25 13:24:04 plgs-server Server Preferences[70930]: XSAdminQueueController: gotServerError: CANNOTLOAD_BUNDLEERR forTransaction: <XSAdminTransaction: 0x1a396e50>
    May 25 13:24:04 plgs-server Server Preferences[70930]: ERROR: The server 'PLG-Server.local' reported the error: 'CANNOTLOAD_BUNDLEERR' while processing a command of type: 'readSettings' in plug-in: 'servermgr_calendar'
    May 25 13:24:05 plgs-server Server Preferences[70930]: XSAdminQueueController: gotServerError: CANNOTLOAD_BUNDLEERR forTransaction: <XSAdminTransaction: 0x1a396370>
    May 25 13:24:05 plgs-server Server Preferences[70930]: ERROR: The server 'PLG-Server.local' reported the error: 'CANNOTLOAD_BUNDLEERR' while processing a command of type: 'getState' in plug-in: 'servermgr_calendar'
    May 25 13:24:10 plgs-server Server Preferences[70930]: XSAdminQueueController: gotServerError: CANNOTLOAD_BUNDLEERR forTransaction: <XSAdminTransaction: 0x1a38ad80>
    May 25 13:24:10 plgs-server Server Preferences[70930]: ERROR: The server 'PLG-Server.local' reported the error: 'CANNOTLOAD_BUNDLEERR' while processing a command of type: 'writeSettings' in plug-in: 'servermgr_calendar'
    May 25 13:24:14 plgs-server Server Preferences[70930]: XSAdminQueueController: gotServerError: CANNOTLOAD_BUNDLEERR forTransaction: <XSAdminTransaction: 0x1a3d6980>
    May 25 13:24:14 plgs-server Server Preferences[70930]: ERROR: The server 'PLG-Server.local' reported the error: 'CANNOTLOAD_BUNDLEERR' while processing a command of type: 'writeSettings' in plug-in: 'servermgr_calendar'
    May 25 13:24:54 plgs-server servermgrd[56]: servermgr_web: Unable to get valid response from servermgr_teams; using default group services settings
    May 25 13:24:54 plgs-server servermgrd[56]: servermgr_web: Unable to get valid response from servermgr_teams; no themes
    May 25 13:25:54 plgs-server servermgrd[56]: servermgr_web: Unable to get valid response from servermgr_teams; using default group services settings
    May 25 13:25:54 plgs-server servermgrd[56]: servermgr_web: Unable to get valid response from servermgr_teams; no themes
    May 25 13:26:54 plgs-server servermgrd[56]: servermgr_web: Unable to get valid response from servermgr_teams; using default group services settings
    May 25 13:26:54 plgs-server servermgrd[56]: servermgr_web: Unable to get valid response from servermgr_teams; no themes
    May 25 13:27:54 plgs-server servermgrd[56]: servermgr_web: Unable to get valid response from servermgr_teams; using default group services settings
    May 25 13:27:54 plgs-server servermgrd[56]: servermgr_web: Unable to get valid response from servermgr_teams; no themes
    May 25 13:28:54 plgs-server servermgrd[56]: servermgr_web: Unable to get valid response from servermgr_teams; using default group services settings
    May 25 13:28:54 plgs-server servermgrd[56]: servermgr_web: Unable to get valid response from servermgr_teams; no themes
    May 25 13:29:54 plgs-server servermgrd[56]: servermgr_web: Unable to get valid response from servermgr_teams; using default group services settings
    May 25 13:29:54 plgs-server servermgrd[56]: servermgr_web: Unable to get valid response from servermgr_teams; no themes
    May 25 13:30:54 plgs-server servermgrd[56]: servermgr_web: Unable to get valid response from servermgr_teams; using default group services settings
    May 25 13:30:54 plgs-server servermgrd[56]: servermgr_web: Unable to get valid response from servermgr_teams; no themes
    May 25 13:31:54 plgs-server servermgrd[56]: servermgr_web: Unable to get valid response from servermgr_teams; using default group services settings
    May 25 13:31:54 plgs-server servermgrd[56]: servermgr_web: Unable to get valid response from servermgr_teams; no themes
    May 25 13:32:54 plgs-server servermgrd[56]: servermgr_web: Unable to get valid response from servermgr_teams; using default group services settings
    May 25 13:32:54 plgs-server servermgrd[56]: servermgr_web: Unable to get valid response from servermgr_teams; no themes
    May 25 13:33:54 plgs-server servermgrd[56]: servermgr_web: Unable to get valid response from servermgr_teams; using default group services settings
    May 25 13:33:54 plgs-server servermgrd[56]: servermgr_web: Unable to get valid response from servermgr_teams; no themes
    May 25 13:34:54 plgs-server servermgrd[56]: servermgr_web: Unable to get valid response from servermgr_teams; using default group services settings
    May 25 13:34:54 plgs-server servermgrd[56]: servermgr_web: Unable to get valid response from servermgr_teams; no themes
    May 25 13:35:54 plgs-server servermgrd[56]: servermgr_web: Unable to get valid response from servermgr_teams; using default group services settings
    May 25 13:35:54 plgs-server servermgrd[56]: servermgr_web: Unable to get valid response from servermgr_teams; no themes
    May 25 13:36:59 plgs-server servermgrd[56]: servermgr_web: Unable to get valid response from servermgr_teams; using default group services settings
    May 25 13:36:59 plgs-server servermgrd[56]: servermgr_web: Unable to get valid response from servermgr_teams; no themes
    May 25 13:37:54 plgs-server servermgrd[56]: servermgr_web: Unable to get valid response from servermgr_teams; using default group services settings
    May 25 13:37:54 plgs-server servermgrd[56]: servermgr_web: Unable to get valid response from servermgr_teams; no themes
    May 25 13:38:54 plgs-server servermgrd[56]: servermgr_web: Unable to get valid response from servermgr_teams; using default group services settings
    May 25 13:38:54 plgs-server servermgrd[56]: servermgr_web: Unable to get valid response from servermgr_teams; no themes
    May 25 13:39:14 plgs-server Server Preferences[70930]: XSAdminQueueController: gotServerError: CANNOTLOAD_BUNDLEERR forTransaction: <XSAdminTransaction: 0x1a39a0d0>
    May 25 13:39:14 plgs-server Server Preferences[70930]: ERROR: The server 'PLG-Server.local' reported the error: 'CANNOTLOAD_BUNDLEERR' while processing a command of type: 'getState' in plug-in: 'servermgr_calendar'
    May 25 13:39:14 plgs-server Server Preferences[70930]: XSAdminQueueController: gotServerError: CANNOTLOAD_BUNDLEERR forTransaction: <XSAdminTransaction: 0x1a39b2a0>
    May 25 13:39:14 plgs-server Server Preferences[70930]: ERROR: The server 'PLG-Server.local' reported the error: 'CANNOTLOAD_BUNDLEERR' while processing a command of type: 'readSettings' in plug-in: 'servermgr_calendar'
    May 25 13:39:54 plgs-server servermgrd[56]: servermgr_web: Unable to get valid response from servermgr_teams; using default group services settings
    May 25 13:39:54 plgs-server servermgrd[56]: servermgr_web: Unable to get valid response from servermgr_teams; no themes
    May 25 13:40:54 plgs-server servermgrd[56]: servermgr_web: Unable to get valid response from servermgr_teams; using default group services settings
    May 25 13:40:54 plgs-server servermgrd[56]: servermgr_web: Unable to get valid response from servermgr_teams; no themes
    May 25 13:41:33 plgs-server Server Preferences[70930]: XSAdminQueueController: gotServerError: CANNOTLOAD_BUNDLEERR forTransaction: <XSAdminTransaction: 0x1a3d55b0>
    May 25 13:41:33 plgs-server Server Preferences[70930]: ERROR: The server 'PLG-Server.local' reported the error: 'CANNOTLOAD_BUNDLEERR' while processing a command of type: 'getState' in plug-in: 'servermgr_calendar'
    May 25 13:41:34 plgs-server Server Preferences[70930]: XSAdminQueueController: gotServerError: CANNOTLOAD_BUNDLEERR forTransaction: <XSAdminTransaction: 0x1a3c1ba0>
    May 25 13:41:34 plgs-server Server Preferences[70930]: ERROR: The server 'PLG-Server.local' reported the error: 'CANNOTLOAD_BUNDLEERR' while processing a command of type: 'readSettings' in plug-in: 'servermgr_calendar'
    May 25 13:41:36 plgs-server Server Preferences[70930]: XSAdminQueueController: gotServerError: CANNOTLOAD_BUNDLEERR forTransaction: <XSAdminTransaction: 0x1a3835c0>
    May 25 13:41:36 plgs-server Server Preferences[70930]: ERROR: The server 'PLG-Server.local' reported the error: 'CANNOTLOAD_BUNDLEERR' while processing a command of type: 'writeSettings' in plug-in: 'servermgr_calendar'
    May 25 13:41:54 plgs-server servermgrd[56]: servermgr_web: Unable to get valid response from servermgr_teams; using default group services settings
    May 25 13:41:54 plgs-server servermgrd[56]: servermgr_web: Unable to get valid response from servermgr_teams; no themes
    May 25 13:42:54 plgs-server servermgrd[56]: servermgr_web: Unable to get valid response from servermgr_teams; using default group services settings
    May 25 13:42:54 plgs-server servermgrd[56]: servermgr_web: Unable to get valid response from servermgr_teams; no themes

    no idea how to set up a dns. can you point me in the right direction? thanks

Maybe you are looking for