BADI in O4_Tiger of OII_DIP_ADD_COLUMNS

Hi~
In present project,we need to add customer field in T-code:O4_TIGER,and then i find a badi : OII_DIP_ADD_COLUMNS.
I search the web and get the message in forums : BADI-Urgent
I copy Gabor Hornyak  's code but it's not work  as follow.
and now you need to put the value of cust1 to yy_field
in badi method SET_CUST_FIELDS
DATA: ls_tankdip TYPE roiitankdip.
LOOP AT tankdip_tab INTO ls_tankdip.
ls_tankdip-yy_field = ls_tankdip-cust1.    <<<<----error
MODIFY tankdip_tab FROM ls_tankdip.
ENDLOOP.
After i comment the error code,and i can see a customer field  named 'My new field' in O4_TIGER ,but it can't save the input value after save.
Ths.
Nicky

great.
just remodify the method in set_cust_field.
  DATA: ls_tankdip TYPE roiitankdip.
  DATA: l_g_tankdip_tab(29) VALUE '(SAPMOIIC_DIP)G_TANKDIP_TAB[]'.
  DATA:tank TYPE roiitankdip.
  TYPES t_roiitankdip  TYPE TABLE OF roiitankdip.
  FIELD-SYMBOLS: <fs_roiitankdip> TYPE  t_roiitankdip.
display
  IF pm_type = ''.
    LOOP AT tankdip_tab INTO ls_tankdip.
      ls_tankdip-cust1 = ls_tankdip-vbeln.
      MODIFY tankdip_tab FROM ls_tankdip.
    ENDLOOP.
  ENDIF.
modify
  IF pm_type = 'V'.
    LOOP AT tankdip_tab INTO ls_tankdip.
      IF ls_tankdip-cust1 IS INITIAL.
        ls_tankdip-cust1 = ls_tankdip-vbeln.
      ENDIF.
      ls_tankdip-vbeln = ls_tankdip-cust1.
      MODIFY tankdip_tab FROM ls_tankdip.
    ENDLOOP.
endif.
it work.
but it have a bit wrong,,when i replace the old value with blank,,it still with old value ,cos  
    IF ls_tankdip-cust1 IS INITIAL.
        ls_tankdip-cust1 = ls_tankdip-vbeln.
      ENDIF.
do you have a better way to deal it?
Ths

Similar Messages

  • Urgent help in BADI

    Hi Abappers,
        Kindly help me out as i am in trouble. I have got a requirement to add customized fields onto O4_TIGER screen using BADI. I have got the name of the BADI definition ie., OII_DIP_ADD_COLUMNS . This screen is related to MM -> Inventory mangement -> Is-OIL.
    Can anyone pl help me out of how to add fields . Coz i have absolutely nil knowledge in BADIs and Userexits. I would be very much pleased if some one suggest me a step by step process.
    Regards.

    <b>first u define BADI in " SE18", and implement in "SE19".
    for predefined GLOBAL CLASS : CL_EXITHANDLER which can enable BADI service.
    method-->GET_INSTANCE (which can create instance of a class)
    gowith SE18 --> NAME..... Z***** --> CREATE,
    click check box MULTIPLE USE.
    select INTERFACE tab
    INTERFACE ..... ZIF_EX_****   <-----click on  this -
    > enter.
    save details.
    METHODS                  LEVEL           DESCRIPTION
    SELECT-DATA          INSTANCE            SELECTING DATA
    select PARAMETERS
    PARAMETER                      TYPE                 TYPING
    CUST_LOW                     IMPORTING            TYPE           KNA1-KUNNR      
    CUST_HIGH                    IMPORTING             TYPE          KNA1-KUNNR
    SAVE DETAILS.
    implementing BADI -
    > SE19
    implementation name  ...... Z**********-----> CREATE
    DESCRIPTION--...DEMO FOR BADI
    select--> INTERFACE
    for method> SELECT_DATA   <--- click on this ---> enter
    save details.
    METHOD
    DATA : ITAB TYPE TABLE OF KNA1,
                WA TYPE KNA1.
    SELECT KUNNR LAND1 NAME1 ORT01 FROM KNA1 INTO TABLE ITAB WHERE KUNNR BETWEEN CUST_LOW AND CUST_HIGH.
    LOOP AT ITAB INTO WA.
    WRITE:/ WA-KUNNR,WA-LAND1,WA-NAME1,WA-ORT01.
    ENDLOOP.
    ENDMETHOD.
    F3 ,       SAVE and ACTIVATE.
    LETUS CREATE EXECUTABLE PROGRAM (SE38).
    PROVIDE TABLE WA.
    REPORT Z*******
    TABLES: KNA1.
    SELECT-OPTIONS: S_KUNNR FOR KNA1-KUNNR.
    declaration.
    CLASS CL_EXITHANDLER DEFINITION LOAD.
    interface reference
    DATA: OBJ_EXIT TYPE REF TO ZIF_EX_*****.
    START-OF-SELECTION.
    gowith PATTERN ---> AABAP object pattern --> ENTER.
    CALL METHOD
    CLASS----   CL_EXITHANDLER
    METHOD---  GET_INSTANCE
    ENTER.
    CALL METHOD.............
    CHANGING
    INSTANCE  =  OBJ_EXIT.
    gowith PATTERN> AABAP OBJECT--> ENTER
    CALL METHOD
    OBJ---> OBJ_EXIT,
    CLASS---> ZIF_EX_*******,
    METHOD----> SELECT_DATA.
    CALL METHOD.................
    EXPORTING
    CUST_LOW  = S_KUNNR-LOW
    CUST_HIGH  = S_KUNNR-HIGH. 
    SAVE and  ACTIVATE.
    EXECUTE.</b>

  • BADI-Urgent

    Hi All,
         I have a requirement to add customized fields onto a standard IS-OIL screen.
    The transaction related to it is o4_tiger and it belongs to MM -> Inventorymngt -> IS-OIL .(SILO management)
    I have absolutely no knowledge in BADI and user exits. Can anyone pl help me out the step by step process about the adding of the fields.
    The BADI definition  is OII_DIP_ADD_COLUMNS.
    Pl help me out.
    Regards.

    Hi
    the table control for O4_TIGER contains some custom fields predefined by sap (like roiitankdip-cust1). If you create an active implementation for badi OII_DIP_ADD_COLUMNS then these columns will appear on the screen.
    Example:
    You have added a custom field yy_field to the table oib_tankdip and to the struct roiitankdip in order to maintain this field in silo management.
    Here use the screen field roiitankdip-cust1 to maintain yy_field and hide the rest of the predefined custom fields.
    1. Implement badi method SET_COLUMN_NAMES
    1. Handle table control (used in create/change mode)
      DATA: ls_col TYPE scxtab_column.
    by activating BADI, additional fields proposed by sap are displayed
    I hide them here as we need other additional fields and not them
      LOOP AT table_ctrl-cols INTO ls_col.
        IF ls_col-screen-name = 'ROIITANKDIP-TOTALHEIGHT_FT'
           OR ls_col-screen-name = 'ROIITANKDIP-TOTALHEIGHT_IN'
           OR ls_col-screen-name = 'ROIITANKDIP-TOTALHEIGHT_FR'
           OR ls_col-screen-name = 'ROIITANKDIP-WATERHEIGHT_FT'
           OR ls_col-screen-name = 'ROIITANKDIP-WATERHEIGHT_IN'
           OR ls_col-screen-name = 'ROIITANKDIP-WATERHEIGHT_FR'
          OR ls_col-screen-name = 'ROIITANKDIP-CUST1'
           OR ls_col-screen-name = 'ROIITANKDIP-CUST2'
           OR ls_col-screen-name = 'ROIITANKDIP-CUST3'
           OR ls_col-screen-name = 'ROIITANKDIP-CUST4'
           OR ls_col-screen-name = 'ROIITANKDIP-CUST5'
           OR ls_col-screen-name = 'ROIITANKDIP-CUST6'
           OR ls_col-screen-name = 'ROIITANKDIP-CUST7'.
          ls_col-invisible = 'X'.
        ENDIF.
        MODIFY table_ctrl-cols FROM ls_col.
      ENDLOOP.
    set header text -> col_name7 is linked to roiitankdip-cust1
      col_name7 = 'My new field'.
    2. Handle field catalog (used in display mode)
      DATA: ls_fieldcat TYPE lvc_s_fcat.
      LOOP AT field_cat INTO ls_fieldcat.
        IF ls_fieldcat-fieldname = 'TOTALHEIGHT_FT'
           OR ls_fieldcat-fieldname = 'TOTALHEIGHT_IN'
           OR ls_fieldcat-fieldname = 'TOTALHEIGHT_FR'
           OR ls_fieldcat-fieldname = 'WATERHEIGHT_FT'
           OR ls_fieldcat-fieldname = 'WATERHEIGHT_IN'
           OR ls_fieldcat-fieldname = 'WATERHEIGHT_FR'
          OR ls_fieldcat-fieldname = 'CUST1'
           OR ls_fieldcat-fieldname = 'CUST2'
           OR ls_fieldcat-fieldname = 'CUST3'
           OR ls_fieldcat-fieldname = 'CUST4'
           OR ls_fieldcat-fieldname = 'CUST5'
           OR ls_fieldcat-fieldname = 'CUST6'
           OR ls_fieldcat-fieldname = 'CUST7'.
          ls_fieldcat-no_out = 'X'.
        ENDIF.
        IF ls_fieldcat-fieldname = 'CUST1'.
          ls_fieldcat-fieldname = 'YY_FIELD'.
          ls_fieldcat-coltext   = 'My new field'.
        ENDIF.
        MODIFY field_cat FROM ls_fieldcat.
      ENDLOOP.
    and now you need to put the value of cust1 to yy_field
    in badi method SET_CUST_FIELDS
      DATA: ls_tankdip TYPE roiitankdip.
      LOOP AT tankdip_tab INTO ls_tankdip.
        ls_tankdip-yy_field = ls_tankdip-cust1.
        MODIFY tankdip_tab FROM ls_tankdip.
      ENDLOOP.
    and keep in mind that the cust1..7 fields are char type fields so you might want to do some formatting, validation etc
    cheers

  • BADI for changing fields during Creation of BP in CRM

    Hello to everyone,
      I need to find a BADI (or other way) to default several fields during BP creation in CRM (4.0 SR1 SP9). The fields I will like to set are TAX TYPE, TAX NUMBER, TAX CATEGORY, etc.. I have found the BADI BUPA_TAX_UPDATE but i dont see any suitable parameters (structures) to changes these fields. Please advice and thanks in advance.

    Hi
    If you use function BUPA_NUMBERS_GET then your BP number will already be buffered and you can avoid a DB read. It may also be that the BP is not in the DB yet anyway.
    You can only pass one GUID in at a time - loop through IT_CHANGED_INSTANCES into a variable of type BU_PARTNER_GUID and pass that into the function as input parameter IV_PARTNER_GUID.
    Cheers
    Dom

  • Implementing BADI MD_ADD_COL_EZPS for MD04 custom column

    Hi there,
    I'm using BADI MD_ADD_COL_EZPS to display 3 new buttons and three new columns in MD04.
    For each line item that is displayed, the custom column is filled, after the button is hit -This works fine.
    My Question is:
    Is there any way to limit the value that is filled into the new column so that it only appears on the FIRST line item/row?
    (At the moment it is repeated all the way down the page - the new value is a material characteristic, so doesn't change, will always be the same for each line)
    I've looked at all the available structures/tables in the FILL_ADD_COLUMNS method of the BADI, and none seem suitable
    to determine the "first" row. (ie. something like the way SY-TABIX or SY-INDEX might be used)
    Any help appreciated.
    Thanks,
    David.

    Hi Shubhendu,
    in the method 'ACTIVATE_ADD_COLUMNS', you can set the flag EZ1_MODE to '1' to make the first column visible always. (it's been a while, but I think setting it to '2' makes it visible when the button is pressed.)
    Same applies to EZ2_MODE for second column, EZ3_MODE for third.
    look at the flags/parameters in this method, and also in FILL_ADD_COLUMNS, to fill the data.
    here you need to fill structure EMDEZX_USEX1 (for column 1) etc.
    The code is hit for each record displayed in MD04
    Hopefully this helps you.
    Regards,
    David

  • Help Needed Badly | BlackBerry INC000025111306 | BlackBerry PlayBook - Tablet button does not work, almost stuck, copper under screen, seventh repair

    I was really Humilitated my RIM on this Ticket whcih i rasied.
    1) I bought a new tablet in last november in 2 months i had a Charger issue 
    2) They said this charger issue we cannot replace with new tablet and gave me a refurbished Tablet to me .
    3) Which also had same charging issue and they exchanged 2 more tablets and the last tablet which was given to me by RIM have a safety concern
     - 1 Small mesh of wire is poping out from the Tablet 
     - Power Button is very hard and its not that easy to press,
    So i raised the above ticket and was esclated internally with RMA as well and i got an update from the esclation agents that we will reply back in 2 Days i waited almost 3 weeks and called 2 times in this 3 weeks for an Update asking for a new tablet so that atleast once in all i can jeep a good 1 Tablet.
    But they never bothered to call me and today i called them again and RIM gave me a call back mentioning we cannot give a new tablet we can again check this tablet repair it and give it back , If we cannot repir then give a replacement new/Old tablet,
    I was wondering how can a tablet from RIM can go out without such safety concern ? How a mesh of wire can comeout of tablet so what safety norms RIM is follwoing for customer.
    AM i not humilitated? since after taking all these struggle tto get a good tablet i have been considered as bad.
    What RIM have to say for this, I am planing to take this to Legal department to follow how i can get a justice for this.

    I would have deleted this but can't find a delete?
    At any rate. got the Blackberry going again but it reset it and lost all the info, pictures and so forth.. oh well. at least it is still working.
    Thanks.

  • Error message in a BADI getting displayed in a popup instead of status bar

    Hello All,
    I have implemented a BADI in ECC6 to prevent the change of formula in ERP from transaction O3I8.
    The BADI gets called on clicking 'Save' from transaction o3I8.
    Within the  BADI i am giving an error message using the following command:
    Message e000(ZABC) .
    However , the message gets displayed in a pop up instead of the status bar .
    The same is for information and warning messages.
    Any suggestions on how to display them in the status bar ?
    TIA
    Regards,
    Vartika

    Hi Brad,
    The checkbox to display messages in pop-up  is already switched off.
    Still themessages are getting displayed in pop-up.
    Regards,
    Vartika

  • Error message from a BAD PDF

    I am using Adobe Reader to render PDF documents as a part of a process and then convert it into TIFF. Some of the documents that come in are corrupt PDF documents and cannot render itself in the reader and hence cannot be converted. This is the error that the reader throws:
    ADobe reader could not open "test.PDF" because it is either not a supported file type or because the file has been damaged(for example, it was sent as an email attachment and wasn't correctly decoded)
    Now, the process is automated with no human intervention. with the advent of this error message, since there is a modal dialog box waiting for a response from the user, the process is interrupted and needs human intervention.
    My question is simply this. Is there an API i could use where i can figure out beforehand if the PDF is bad so i can reject such files early on? research shows that using the adobe forms server which has the PDF utility services, there is a query "Is a PDF document" that is available. I do not want to use a server product.
    Is there any other ADOBE product that exposes something similar?

    I guess i forgot to add that piece of information. WE do not create the PDFs. We receive PDFs from external sources over which we have absolutely no control  and that explains why we get such corrupt documents in the first place. I was just wondering if there was a simple API event/method/means attached to any ADOBE product which is compatible with .net that tells me if the PDF is corrupt UPFRONT.

  • Error while transporting infospoke with BADI in BW7.0

    Hi:
    We have an infospoke with Transformation ( ie with BADI) in BI7.0.
    While transporting to Quality box it gives error.
    "Transfer structure /BIC/CZZTXXXXX3 could not be generated
    Error when activating InfoSpoke ZTXXXXX3.
    Message no. RSOH010 "
    Could you please help in rectifying the error.
    PS: we tried transporting BADI first and then the infosoke but still its failing.
    Regards!
    Saniya

    Hi
    Check the forum link below
    Transport Problems with Spokes that have BADIs
    Thanks

  • IPod can no longer sync or charge, bad pin connectors?

    I've got an iPod touch thats a year old now that suddenly no longer will charge/sync to anything. I'm thinking maybe the pins are bad?
    I've had difficulty inserting chargers into it since I got it, I've been careful to not handle it too roughly but it does take a strong push to get the charger in there. Of all the ipods I've had (and i had the first gen iPod touch before this too) over the years, never had that problem.
    Before I get a bunch of "just reset it" kinds of replies, it is functioning properly other then that. Last night I did have it hooked up and synced to my Mac so it fully charged, but just now I went to connect it and now it refuses to connect at all. I've tried 2 cords, and with the same cords I plugged my iPhone in as well and it all worked fine, so it's definitely not my other hardware. iPod software is also up to date as well.
    I haven't had a real issue of it not syncing with my computer before today, but in the past month it's had issues staying properly synced to my car radio (play it through USB). It would sometimes drop off or glitch up and not want to work correctly, though in the past week it started working more normally again.
    I listen to my ipod as much as humanly possibly, so I'm wondering if this something I can take to the Apple Store and see if its fixable or replaceable. I've been looking for a great excuse to get the new red ipod touch but I've been unemployed since August.. Of course it has to break before I get a new job
    Has anyone else had the issue of having difficulty getting the sync cords into their ipod touches/problems where the pins just die?
    EDIT: Nevermind. My imac suddenly wont sync my iphone either but I plugged the ipod into the iphone charger and it synced immediately. It's something on my computer's end.
    Message was edited by: Arei

    *all the songs are there, but there are shown in light grey and not able to be high lighted.*
    *I'm also not able to play from my ipod list, only from my itunes??*
    Grey text when you look at the content and a lock symbol at the bottom of the screen just indicates that the iPod is set to sync automatically with iTunes. If you want to play the iPod songs through iTunes, delete songs from the iPod, drag songs from iTunes, add playlists to the iPod etc. you need to change the update setting to "manually manage songs and videos" as per the link above. The text will change from grey to black and everything will be directly accessible through iTunes
    *I have seen a friend plug his ipod into some one elses computer and the same thing happened, it showed all the content but he was not able to access it, or modify it.*
    Again that's most likely because the iPod was set to auto-sync with his home library. If you want to connect and use an iPod on more than one computer or with more than one library you need to change the update preference in the iPod Summary tab to "Manually manage music and videos" and click Apply. The content of iTunes and the iPod are not syncronised in this mode so the two can be different. You can directly access the content of the iPod and play it through iTunes and you can drag and drop whatever you want to the iPod from either library:
    Using iPod with Multiple computers
    *Before I backed up my itunes libary from my external hard drive, and itunes was empty, it would not allow itunes to be copyied from my ipod?*
    iTunes will only give you the option to copy your iTunes Store purchases directly from an iPod to the computer, you'll find details in this article: Copying iTunes Store purchases from your iPod or iPhone to a computer
    For everything else (music from CDs, other downloads etc) there are third party utilities that you can use to retrieve the music files and playlists from your iPod.

  • IPod Touch 5.1.1 no longer sync'ing w/ iTunes 11.1.3(8). . . .Bad Battery ???

    Three day ago my iPod began acting up in a major way.  The battery charging symbol within the battery indicator is no longer showing the iPod being charged when plug in to my MacBook Pro 5.1 via one of my two USB ports.  A new Apple iPod cable was purchased thinking it was a bad wire or pin not making the proper contact with this device.  The same conditions are happening with this new cable.  I have several other peripheral devices and those devices are working and are connecting to my MBP's USB port without any issues.  I have noticed for the past six months my iPod Touch 3rd Gen has been showing signs in needing longer charging times and seems to drain quicker than it used too.  The iPod for the past two nights have been charging for more than eight-hours each night and is sporadic as if it deciding "I'm I fully or 30% charged?" Although subtle, It seems to jump within the sliding battery scale when the device is powered off for a while.  Sometime showing 80% charged when used for a few hours to 30% charged when used for ten minutes.  My iPod is now over three-years old and I think it is time for a new battery!
    But, in all honesty, not sync'ing with iTunes is it more than just have a new battery professionally installed? Or are there other electronical problems/components going bad with these devices?  What else can be wrong other than a new battery or will a new battery fix all what is mentioned above? Please be very honest and technical if needed, Thanks!

    Apple will exchange your iPod for a refurbished one with a new battery for $79. They do not fix yours.
    Apple - iPod Repair price                       
    A third-party place like the following will replace the bttery for less. Google for more.
    iPhone Repair, Service & Parts: iPod Touch, iPad, MacBook Pro Screens         
    Replace the battery yourself if you are up to it. You can purchase a replacement battery for about $10
    iPod Touch Repair – iFixit                  

  • Reg. Exit/BADI for changing item data of PO in ME22N

    Hi all,
    My requirement is to update the field LABNR (Order Ack.) of few specific line items of a PO, in the Transaction ME22N, using Exit/BADI.
    I have tried the BADI  ME_PROCESS_PO_CUST. But the PROCESS_ITEM method of this BADI processes only the line item which has been changed/inserted in ME22N transaction. But my requirement is to update line items irrespective of whether that line item was "changed/not changed" during the process in ME22N screen.
    Could you please suggest me some suitable Exit/BADI for this requirement.
    Regards,
    Anbarasan K

    Thanks Martin.
    Problem solved by implementing the method Process_Header.
    1. Get the items from Header                              -  im_header->get_items
    2. Loop the item list and get the line item record   - re_item-item->get_data
    3. <- Logic to Update the line item - >.
    4. Update the line item                                       - re_item-item->set_data
    Thank you very much.. Martin.
    Regards,
    Anbarasan K

  • User Exit/ Badi for Changing Quant parameters during TO Creation

    Hi Gurus,
    Could you please guide me to advice the User Exit/Badi which can be used for changing Quant Data during TO Creation.
    User Requirement: Using "Recepient Field" in MIGO as a Key Value for FIFO in WM during goods issue. Receipient is copied into TR and TO (Standard SAP Functionality). For the purpose of Stock Removal based on Receipient Value, we need to copy this value into Quant Data field named Certificate Number ("LQUA-ZEUGN").
    I will highly appreciate reply from Gurus.
    Regards,
    Gupta M

    Hi manish,
    Use the Exit MWMTO001 for this purpose and modify the table accordingly. This will solve your problem.
    Thanks,
    Shibashis

  • FM Call in BADI during replication of BP from R/3 to CRM causes problem

    Hello all;
    I am trying to change the BPKIND of the partner in CRM which is created in R/3 with the PARTNER_UPDATE BADI. But the FM called in the BADI causes the BP hang in SMW01 with intermediate state. May you please advice me somthing about this?
    METHOD if_ex_partner_update~change_before_update.
      DATA:  lt_but000_old           TYPE STANDARD TABLE OF but000,
             lt_but000_new           TYPE STANDARD TABLE OF but000,
             ls_but000_new           TYPE LINE OF  bup_but000_t,
             lv_objnr                TYPE crmt_object_guid.
      CHECK sy-uname = 'ERP_RFC'.
      CALL FUNCTION 'BUPA_GENERAL_CALLBACK'
        TABLES
          et_but000_old = lt_but000_old
          et_but000_new = lt_but000_new
        EXCEPTIONS
          OTHERS        = 0.
      READ TABLE lt_but000_new INTO ls_but000_new INDEX 1.
      ls_but000_new-bpkind = '0001'.
      REFRESH lt_but000_new.
      APPEND ls_but000_new TO lt_but000_new.
      INSERT but000 FROM TABLE lt_but000_new.
    *  CALL FUNCTION 'ZBBP_BUP_UPDATE'
    **    TABLES
    **      t_but000 = partner_attrib.
    ENDMETHOD.

    Kindly check the partner function whether that partner function of customer in ECC, is defined in CRM. If it is not defined then it will not copy to IBase while data transfer.
    Reward points if helpful.

  • Badi in standard tranction BP in  CRM module

    Hi,
    i have to impliment badi in tranction BP, for field postal code and city i have to valdidate this 2 fields can u help me to know which badi i have to use and in which
    interface i have to use this,
    thanks,
    Tanveer

    hi sonali
    this is the normal problem faced with the BADI which u r using,yeah it will definitelty give u solution but some ifs and buts are there
    just refer the note 663905
    also try using BAdi COM_PARTNER_BADI
    but i should tell you that
    COM_PARTNER_BADI is for business transactions, not for BP creates/changes. BUPA_FURTHER_CHECKS is usable for customer checks and it provides all of the customer information in the BADI interface, but it's only called by the BP BAPIs, not by the BP transaction.
    For BP updates at create/change save time, the BUPA_UPDATE BADIs need to be used. The interface only provides the GUID of the not yet created BP or the GUID of the changed BP, not a bunch of parameters that you can change before save. However, you can call the BUPA_CALLBACK series of function modules to get the info you need about the BP, and use a field symbol to directly access the data in the memory stack i.e., (SAPLBUD0)MEM_BUT000[] and change the values. I am using this technique to add an authorization group to certain BP type at create save time.
    best regards
    ashish

Maybe you are looking for

  • MACBOOK Air/ OS Lion Keeps Freezing and restarting "because of an error"

    Hi, My Macbook keeps freezing - keyboard and touchpad do not respond and then after a few seconds it restarts. A Screen comes on to say that it restarted "because of a problem" Often it freezes at login. It has frozen at least 6 times as I type this.

  • Status 56 -  IDOC with errors added

    Hi everyone,         I was configuring File to IDOC Scenario, in the receiving R/3 system, i am getting error as Status 56 -  IDOC with errors added "<b>EDI: Partner Profile not available</b>".         but i had already created Partner profile in WE2

  • Kernel Panic Error help?

    Hi, I was playing a video game and my laptop just crashed. When i turned on the laptop again this is the error report I got:# panic(cou0 caller 0xffffff802235e045): "Process 1 of exec of /sbin/launchd failed, errno 5"@/SourceCache/xnu/xnu-2050.48.11/

  • Creative zen v and line in on 10.4

    i have a creative zen v and an imac w/ 10.4 on it. i want itunes to see the zen, but that wont happen. i do have xnjb which sees the zen, but doesnt play the mp3s on it. it does let me copy mp3s from the zen to the imac which i dont want to do. i wan

  • Updated iOS 6.1.3 and now gmail crashes

    Updated iOS 6.1.3 this morning and now gmail will not work.  Deleted gmail acct and pop works, but when tried to reinstall gmail acct the setup app crashes.  Anyone know anything or has an update? Hello Apple!?!