Define Statues for work area

Hi Christoph ,
I appreciate your effort for this
While using t-code: CBIH02 : In Restricting criteria for work Area Selection tab
We have one field: Status having f drop down : Active, Inactive,
I want to add two more values there. So where i can add more values in drop down at configuration level.
So kindly provide guide lines to complete this task.
Regards,
SHarma

Dear Rohan
You can extend the status networks for some object types by adding enterprise-specific statuses. To do this, you insert astatus profile into the relevant status network in Customizing for Industrial Hygiene and Safety. This status profile contains a sequence of user statuses that you defined.
Balajee

Similar Messages

  • Converting row into column for work area.

    Hi,
    I have a very simple requirement.
    Let we have a work area <WA> with fields F1, F2 and F3 and corresponding value as V1, V2 and V3 respectively. WA-F1 = V1,WA-F2 = V2, WA-F3 = V3 .
    F1  F2 F3
    V1  V2 V3
    Now my requirement is I want this field name and value as entry of new internal table with three entries, like shown below.
    F   V ( F and V are field name of new internal table)
    F1  V1
    F2  V2
    F3  V3
    So our new table have three entries now.
    One way have done is, as I know the field name so i read its value and append them one by one in new table, but it doesn't seem good and time consuming if number of fields are quite large let say 50. Then we have to append 50 times.
    Do some one have other way to do this, any function module,class or any new logic.
    Thanks in advance.
    Hemant.

    Hi hemant,
    Use method cl_alv_table_create=>create_dynamic_table to get dynamic internal table, using that we can get ouput in the above said format in ALV.
    Example:
    Say your internal table is declared like
    matnr     type mara-matnr,
    code     type wgh01-wwgha,
    desc     type wgh01-wwghb,
    qty       type mseg-menge,
    sample output:
    matnr--desc1desc2--
    desc3
    12354--34--
    10
    1234 is material and 3;4;10 are respective quantity
    Ur field catelog will be:
      lcat-fieldname = 'HEAD'.
      lcat-datatype = 'CHAR'.
      lcat-seltext = 'Category'.
      lcat-intlen = 128.
      lcat-outputlen = 50.
      append lcat to fieldcat.
      clear lcat.
      lcat-fieldname = 'MATNR'.
      lcat-datatype = 'CHAR'.
      lcat-seltext = 'matnr'.
      lcat-intlen = 4.
      lcat-outputlen = 50.
      append lcat to fieldcat.
      clear lcat.
    Dynamic fields:
      loop at it_final into wa_final.
        read table fieldcat into lcat with key fieldname = wa_final-code.
        if sy-subrc <> 0.
          lcat-fieldname = wa_final-code.
          lcat-datatype = 'CHAR'.
          lcat-seltext = wa_final-desc.
          lcat-intlen = 17.
          append lcat to fieldcat.
          clear lcat.
        endif.
      endloop.
      call method cl_alv_table_create=>create_dynamic_table
        exporting
         i_style_table             =
          it_fieldcatalog           = fieldcat
         i_length_in_byte          =
        importing
          ep_table                  = newfield
         e_style_fname             =
       exceptions
         generate_subpool_dir_full = 1
         others                    = 2
      if sy-subrc <> 0.
      MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                 WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      endif.
      assign newfield->* to <dynamic_cat>.
      create data newdata like line of <dynamic_cat>.
      assign newdata->* to <dynamic_value>.
    endform.                    " buildcat
    populate value to the dynamic internal table********
    form loadata .
      loop at it_final into wa_final.
        assign component 'HEAD' of structure <dynamic_value> to <fs1>.
        <fs1> = wa_final-head.
        assign component 'MATNR' of structure <dynamic_value> to <fs1>.
        <fs1> = ' '.
        assign component wa_final-code of structure <dynamic_value> to <fs1>.
        <fs1> = wa_final-qty.
        at end of head.
          append <dynamic_value> to <dynamic_cat>.
          clear : <dynamic_value>.
        endat.
        clear : wa_final.
      endloop.
    You have to pass <dynamic_cat> table in the ALV Grid display function module.
    Regards,
    Aswin.

  • How do I set start timecode to 00:00:00:00 for work area exports in cc 2014?

    In all previous versions work area exports started at 00:00:00:00, now in 2014 they're taking the sequence's timecode. I can't find a way to set this anywhere.

    This is exactly why we all start at 1:00:00;00.
    LOL -- I guess it's not really a 2pop if it's only a frame from start.
    Most show production REDBOOKS will aslo dictate that the show begin on hour1 rather than 00000.
    But here's how you'll change your options...
    Highlight the sequence in question inthe browser and hit Apple-Zero. Then the Timeline Options tab... set the timecode there to where you'll start everything and then add the show at the 1 hour mark.
    Good luck,
    CaptM

  • Internal table with work area

    hi all,
    data: BEGIN OF it_summ OCCURS 0.
      INCLUDE STRUCTURE yapn_summary.
      data: END OF it_summ.
    data : wa_demo1 type yapn_summary.
    clear wa_demo1.
            wa_demo1-sumr = 'hai'.
    append wa_Demo1 to it_summ.
    WRITE: it_summ-sumr.
    its not get output..
    i want to display for hai using it_summ.
    donot use work area.
    how to change it.?
    reply me soon,
    s.suresh.

    You can't write out an internal table - you can only write out a line (or components of a line) of an internal table.  So you MUST use a work area.  If you use OCCURS 0 then you've a table with a headerline, and so don't need a workarea.  However, later versions of ABAP discourage tables with headerline, and it is preferred to define a specific work area.  So, either:
    data: BEGIN OF it_summ OCCURS 0.
    INCLUDE STRUCTURE yapn_summary.
    data: END OF it_summ.
    clear it_summ.
    it_summ-sumr = 'hai'.
    append wa_Demo1 to it_summ.
    LOOP AT it_summ.
      WRITE: it_summ-sumr.
    ENDLOOP.
    Now, you see here that at some points it_summ refers to the table, and at others to the header-line.  This is ambiguous, and therefore BAD.  It's better to define the table and work area seperately.
    data: it_summ TYPE STANDARD TABLE OF yapn_summary WITH NON-UNIQUE KEY table_line.
    data : wa_demo1 type yapn_summary.
    clear wa_demo1.
    wa_demo1-sumr = 'hai'.
    append wa_Demo1 to it_summ.
    LOOP AT it_summ INTO wa_demo1.
      WRITE: wa_demo1-sumr.
    ENDLOOP.
    matt

  • Work area "itab" is not long enough

    Hi All,
    Here am facing a trouble with internal tables.
    I need an internal table for processing. I declared a table type refering to an structure. The program is throwing me an error "Work area "itab" is not long enough. "
    Can anyone telme what's wrong with the code?
    Thanks,
    Anjum.

    Hi Nasarat,
    if you look at carefully you definitions of tables
    TYPES: BEGIN OF tbl,
    rc_n TYPE c,
    rec_n(2) TYPE n,
    END OF tbl.
    DATA: itab_org type tbl1 occurs 0 with header line,
    itab_rc type tbl1.
    your DATA statement referes ITAB_ORG to a Type tbl1 which does not  exist in your TYPES statement.
    your DATA statement refers to ITAB_ORG is not a internal table but a WORK Area as you have declared it as ITAB_ORG type tbl1.
    If you want to declare and internal table ITAB_ORG - decalre it as
    Data:ITAB_Org type standard table of tbl.
    and define a explicit work area
    DATA: wa_org type tbl.
    Never use Occurs 0 and Header line as it coccupies lots of memories and your programs may dump in future . So please avoid occurs 0 and header line and instead decalre an explicit WORK AREA.
    Similary declaration for internal table ITAB_RC it should be
    DATA: ITAB_RC type standard table of tbl,
              WA_RC type tbl.
    then after these declarations when you do a SELECT statement it should be
    SELECT rc_n rec_n into ITAB_ORG from<DB table>.
    The fields as declared in types should be called in the same sequence as you have defined above OR use INTO CORRESPONDING-FIELDS OF ITAB_ORG.
    Hope this reolves your query and was useful.
    if yes please do reward suitably
    Thanks
    Venugopal

  • CS6: exporting "range of time markers" without setting in-/out point or defining working area?

    Hi,
    in CS6 I defined several "range of time markers" to get a better overview of my project. Now I want to export each range as a single video.
    The only way to do this is  creating in-/out points  or setting the working area (what is the English translation for "Arbeitsbereichsleiste" (German)...?)?
    Or is it possible to define this selections via the previous created range of time markers? That would be the easiest way...
    Thanks, Carlos

    For exporting chunks of the Timeline, I set a Work Area and then export. If you want to export between markers, that would be a feature request: http://www.adobe.com/go/wish

  • How to define Substitution rule for Businee area

    Hi experts,
    Could you please guide me to define substitution rule for Business are.
    Below is the requiremnt :
    I want to assign different business area for this cost centre.
    While posting document in FB01, we are entering cost centre in line itme. Businee area is picking from cost centre master.
    Example : Cost centre 11310 and businee area Y020.
    Businee area Y020 is picking from cost centre 11310 while posting document.
    I want to assign different business area for this cost centre.
    For that I want to define substitution rule.
    I have defined substitution rule and activated in comapany code but it is not working. Please guide me how to define Substitution rule for the same.
    I have defined prerequisit as Comapny code = 2053 and Cost centre =11310 and transaction code = FB01 then
    Substitute business area with Y045.
    It is not working .
    Please guide me where I did mistake and how to rectify the same.
    Thanks in advance for your quick response and points will also assign for helpfull answer.
    Regards,
    Amar

    Hi Paul,
    Thaks for your reply.
    Yes, you are correct. SAP is changing this back to BA from Cost centre.
    Why can't we use Substitition for the above issue.
    Then what is solution for my issue.Please suggest any alternative solution.
    Thanks in advance for your help.
    Regards,
    Amar.

  • Error Creating Work Area in JDeveloper for SCM

    In the Repository Object Navigator for 9i SCM, my userID has been granted the the following permissions to a shared work area called pdshare by the owner/build manager:
    Select
    Administrate
    Insert
    Update
    Delete
    Version
    Compile
    Update Spec.
    However, in JDeveloper 9.0.3.1 When I create a work area from this shared work area I keep getting this error:
    "BHART has insufficient privledges to Manage WorkArea".
    Does anyone have suggestions for how to resolve this so that I can access the shared work area?
    Thanks,
    -Brian

    It's actually simple if yyou use dynamic tables and field symbols.
    In the program that calls  methods / attributes in the class
    define some field symbols
    for example
    FIELD-SYMBOLS :
      <fs1>           TYPE  ANY,
      <fs2>           TYPE  STANDARD TABLE,
      <field_catalog> TYPE STANDARD TABLE,
      <dyn_table>    TYPE  STANDARD TABLE,
      <orig_table>   TYPE  STANDARD TABLE,
      <dyn_field>,
      <dyn_wa>.
    in the class define data
    DATA:
    dy_table         TYPE REF TO data,
        dy_line          TYPE REF TO data,
    etc.
    field symbols work both INSIDE and OUTSIDE classes and are extremely useful for passing / receiving data. You have to define the field symbols in your main program however.
    METHOD create_dynamic_table.
    CALL METHOD cl_alv_table_create=>create_dynamic_table
        EXPORTING
             it_fieldcatalog = it_fldcat
          IMPORTING
             ep_table = dy_table.
    ENDMETHOD.
    CALL METHOD me->create_dynamic_table
        EXPORTING
          it_fldcat = it_fldcat
        IMPORTING
          dy_table        = dy_table.
         ASSIGN dy_table->* TO <dyn_table>.
    CREATE DATA dy_line LIKE LINE OF <dyn_table>.
    ASSIGN dy_line->* TO <dyn_wa>.
    ENDMETHOD.
    Then in your program (or class)  your data is in <dyn_table>.
    Use dynamic tables and dynamic field cats as these give HUGE flexibility and you can re-use code over and over again for different structures.
    The new RTTI  gives you any table structure whatsoever so you can make the whole thing completely general.
    That's one of the advantages of Classes and OO as opposed to older FMODS.
    Cheers
    jimbo

  • Link Safety measure with agent for a Work Area

    Hi,
    Is there any way to match a specific safet measure to a specific Agent for a given Work Area?
    For example, for a Work Area, I may have "dust" as an agent and i may need to link it with a specific safety measure oriented to people called "EPI Employee's training".
    Thanks in advance,
    Daniel Siñani

    Hi Daniel,
    For you to be able to define safety measure for any hazard inducing agent, logically you must have done the study of the risks posed by that agent. This study is called as risk assessment in SAP EH&S. So, you will have to create risk assessment for "dust". Here you may assign safety measure "EPI Employee's training" under category "Organizational" and type "Education and training". Moreover, you can define many more fields for tracking of the safety measure to its successful completion.
    Also, you can create SAP standard reports for Agents vs. Safety measures from following path:
    IHS>Reporting>Risk Assessment-->List Agents & Safety measures for a work area, and List Agents & Safety measures for a person.
    Regards,
    Pavan

  • Ship-to party 147 not defined for sales area US DS 20

    Hi,
    I am getting following error while creating a sales orcer with ref to contract
    Ship-to party 147 not defined for sales area US DS 20
    Points will be rewarded for satisfactory answer.
    Thanks & Regards,
    Vinayak

    Hi,
    After maintaining in US DS 20 it is working fine.
    But normally we never maintain in US DS 20 for other transaction.
    then why it is asking for this transaction.
    we always create in US DS 10.
    is their mistake while creating a BP or any SPRO changes required.
    Thanks & Regards,
    Vinayak

  • Define Rules for Variants under Daily Work Schedules.

    Hi All,
    Can anyone explain me what is the use of Define Rules for Variants under Daily Work Schedules.
    Also can some one explain what is the meaning of below representation
    Rule   No      Holiday Class     HolClNextDay          Day     Varaint
    01     03         X.........              XXXXXXXXXX      .....X.     A
    Thanks in Advance
    David

    Hi David,
    Thanks for putting this question .  I was also searching for its answer because when variant is applied on Friday and if any full day public holiday falls on Friday then variant would be null and void.
    I got confused with the holiday class 2 which is half day public holiday, what if it falls on Friday?
    Variant in itself is reduced working hours and half day is one and the same thing.
    I have tried rules in many ways to trigger variant on Friday:
    Rule          HC current.                    HC next day.                   Days.                      Variant
    XX.     01   XX.XXXXXXX                XXXXXXXXX                   ....X..                      B
    XX.     02      ..X...........                       XXXXXXXXX              XXXX.XX            
    Or
    Rule          HC current.                    HC next day.                   Days.                      Variant
    XX.     01   XX.XXXXXXX                XXXXXXXXX                 ....X..                        B
    In the 1st case the 2nd condition is unnecessary confusing, however things are working fine with only 1st condition.
    Please clarify what is the difference in 1st and 2nd case?

  • How to find workarea ID for the work area name.

    Hi Experts..
    How to find workarea ID for the work area name.(Work area name CCIHT_WAH-WAID and I want to fetch characteristic data from table AUSP matching the OBJEK field,but I only have Work area name).Can anybody help me to find tables or relationship between Workarea ID and Workarea name for the same.I am using TCODE - CHIB02.Once I select a workarea and click on IHS Data button,I get data for that workarea.I need to find where this data comes from and How is this fetched.
    Points would be rewarded for helpful answers..
    Thanks
    Kunal Halarnakar

    U want to fetch the workarea description ?
    we can fetch it from CCIHT_WALD table with the RECN value.
    The informations are stored in AUSP table with the characterstic(ATINN) value.

  • I have 2 iPhones - one for personal use and one for work. They are currently connected with the same Apple ID. I would like to separate the two accounts. Does anybody know how to do this?

    I have 2 iPhones - one for personal use and one for work. They are currently connected with the same Apple ID. I would like to separate the two accounts. Does anybody know how to do this?

    Just create a new AppleID for your work.
    As Allan suggested, items purchased on one iTunes account cannot be moved to the other account.
    However, you can put items purchased on on account onto the other iPhone.

  • Is there a way to force for rendering ALL clips in work area?

    Is there a way to force for rendering ALL clips in work area? All clips: not only the ones with the red horizontal line indicating that they need rendering! I ask for this because the rendered clips preview very smoothly, but the unrendered ones do not! My source footage (and project) involves Full HD (1920*1080i 25fps).

    If a Clip does not need Rendering, it will not be Rendered.
    Basically, what Rendering does is to convert the Clips, that do require Rendering, to DV-AVI (SD Projects on a PC). This will yield AVI files in the Media Cache, Render Files, and for playback, PrE will rely on those. If you look in the Render File folder, you will see a bunch of abstractly named files, but those files are now Linked in the PREL (Project file), and will be used by the program for playback.
    If one were to remove those Render files, and then Open that Project in PrE, they'd receive a message, "Where is file 04u434ip0ow.AVI?" [Note: that is just an example of the abstract Render file name, and is not the actual name, that one would see.]. One could Ignore those now missing Render files, and where they were used, there would then be red lines over those Clips.
    As Steve mentions, the Render files are used only for smoothest playback. As I use DV-AVI files for SD Projects on my PC, I will not need to Render for smoothest playback, until I make changes to the Clips, like overlay Titles, PiP, Effects, etc.. I might never Render the Timeline, even with those additions, but sometimes, I will Render a small segment many times, especially with animated Effects, as I adjust the parameters.
    If one is not getting the smoothest playback, then Rendering all files requiring Rendering will usually improve playback greatly.
    Good luck, and hope that this makes sense.
    Hunt

  • I dont recall when I have been more frustrated....  the "loops" I am in on the web for support are endless.  After downloading Yosemite on my Mac my CS6 no longer works.  On your support web site you state the following for downloading and installing prev

    I dont recall when I have been more frustrated....  the "loops" I am in on the web for support are endless.  After downloading Yosemite on my Mac my CS6 no longer works.  On your support web site you state the following for downloading and installing previous versions of apps, such as CS6 " 1. open CC for desktop and go to the apps panel (no link is provided so I explored until I could download a trial version of "application manager" as that was required.  When I attempted to open it to download "Previous Versions" I could not.  I have my license number, my CS6 will not open in Yosemite and after over 2 hours I am really frustrated....  Rich@

    When I go to that link, download and then attempt to install I get the message "Webe encountered the following issues, Installer failed to initialize.  Please down load Adobe Support Advisor to detect the problem"  I then select the link "get adobe support advisor" that takes me to a site that describes a better support link since the one I have been sent to is no longer available.  I then go to that site and am told to go to CC for desktop apps, that requires me to download CC...  I don't want CC.. just want to have my CS6 PS work again....  so frustrating...

Maybe you are looking for