Open field in object S_TCODE

I've deleted a tcode from a role in menu tab. Now when I look at the object S_TCODE in the role it has an open(blank) field. I cannot delete this blank field from the object as S_TCODE shows up only in display mode though you enter the role in change mode. Further I do not see this blank field in the menu tab assuming that the blank field might got transfered from the menu. Please suggest how to remove the blank field from the object?
Thank you,
Partha.

Hi,
I had some similar issues already. The yellow status of S_TCODE came from a blank entry in the menu. If the menu is big, its hard to find that entry, which has to be removed from  the roles menu. As a workaround to identify that 'blank' entry check table agr_hier for that role. Select Reporttype=TR and Report=  (means leave the field empty and set as operator '='.
In the field Parent_ID you can identify now the node under which this entry is located and with the OBJECT_ID you can find the text in table AGR_HIERT (with that text you can use the search function in pfcg to find that entry(ies).
Then simpyl delete these entries from the menu and merge the authorizations. S_TCODE shall be 'green' afterwards.
b.rgds, Bernhard

Similar Messages

  • Report S_BCE_68001398 and Object s_tcode

    Hi Guys
    When running report S_BCE_68001398 with tcode suim i.e
    Tcode suim >>> Users>>> Users by complex selection criteria .. By transaction authorizations and Insert a tcode. I get a list of tcodes that are being used by users.
    When I do the same thign from another point i.e Tcode Suim>>Roles >>> By transaction assignment (rsusr070) .. Insert tcode that i am working with..I get a list of roles that supposedly should have the tcode inside it.
    The list seems to be different.
    The reason for this is that it looks as  when the role was created they did not add the tcode in the i.e tcode pfcg >>> under the menu tab but rather went into the authorization tab and added the object s_tcode and add the transaction.
    Is there a way to pick these roles up from the  User information system when runnign reports on where a specific code is being used.
    Hope this makes sense
    Thanks

    Moods,
    Yes there is a difference in the way the reports check the tcodes.  One just looks at the tcodes in the menu (AGR_TCODES table) and the other looks at the S_TCODE object within the role.
    To find all the transactions at the S_TCODE object level in the SUIM reports run a report by complex selection criteria (either users or roles) then fill in the authorization object S_TCODE and hit enter or "entry values" then enter the tcode in the field.  Execute...
    Cheers,
    Ben

  • Open Field in ALV Report

    Hi all,
    i have to develop a ALV report.
    In that report i have to put a open quantity column , so that the user can enter values in that, and that value should get updated in the database.
    So please suggest me how to develop such report with open field.
    Thanks in advance,
    Regards,
    Pawan

    Hi,
    Try executing the below code
    REPORT YMS_EDITBLOCKALV.
    TABLES : rmmg1,MCHB, mkpf.
    DATA: BEGIN OF t_mseg OCCURS 0,
    zeile LIKE mseg-zeile,
    menge LIKE mseg-menge,
    meins LIKE mseg-meins,
    matnr LIKE mseg-matnr,
    werks LIKE mseg-werks,
    charg LIKE mseg-charg,
    bwart LIKE mseg-bwart,
    END OF t_mseg.
    DATA:BEGIN OF t_mchb OCCURS 0.
    INCLUDE STRUCTURE mchb.
    data flag type c.
    matnr LIKE mchb-matnr,
    charg LIKE mchb-charg,
    werks LIKE mchb-werks,
    clabs LIKE mchb-clabs,
    DATA END OF t_mchb.
    TYPE-POOLS slis.
    data: progname like sy-repid,
    fieldcattab TYPE slis_t_fieldcat_alv WITH HEADER LINE.
    data tabindex type i.
    data wa_matnr LIKE mchb-matnr.
    progname = sy-repid.
    SELECTION-SCREEN BEGIN OF BLOCK b_b1 WITH FRAME TITLE text-001.
    SELECT-OPTIONS s_docno FOR mkpf-mblnr. " OBLIGATORY.
    PARAMETERS p_docyr LIKE mkpf-mjahr. " OBLIGATORY.
    SELECTION-SCREEN END OF BLOCK b_b1.
    START-OF-SELECTION.
    SELECT zeile
    menge
    meins
    matnr
    werks
    charg
    bwart
    FROM mseg
    INTO TABLE t_mseg
    WHERE mblnr IN s_docno AND mjahr = p_docyr.
    CLEAR fieldcattab.
    fieldcattab-col_pos = 1.
    fieldcattab-fieldname = 'ZEILE'.
    fieldcattab-tabname = 'T_MSEG'.
    fieldcattab-fix_column = 'X'.
    fieldcattab-seltext_l = 'Item'.
    APPEND fieldcattab.
    CLEAR fieldcattab.
    fieldcattab-col_pos = 2.
    fieldcattab-fieldname = 'MENGE'.
    fieldcattab-tabname = 'T_MSEG'.
    fieldcattab-seltext_l = 'Quantity'.
    APPEND fieldcattab.
    CLEAR fieldcattab.
    fieldcattab-col_pos = 3.
    fieldcattab-fieldname = 'MEINS'.
    fieldcattab-tabname = 'T_MSEG'.
    fieldcattab-seltext_l = 'Unit'.
    APPEND fieldcattab.
    CLEAR fieldcattab.
    fieldcattab-col_pos = 4.
    fieldcattab-fieldname = 'MATNR'.
    fieldcattab-tabname = 'T_MSEG'.
    fieldcattab-seltext_l = 'Material'.
    APPEND fieldcattab.
    CLEAR fieldcattab.
    fieldcattab-col_pos = 5.
    fieldcattab-fieldname = 'WERKS'.
    fieldcattab-tabname = 'T_MSEG'.
    fieldcattab-seltext_l = 'Plant'.
    APPEND fieldcattab.
    CLEAR fieldcattab.
    fieldcattab-col_pos = 6.
    fieldcattab-fieldname = 'CHARG'.
    fieldcattab-tabname = 'T_MSEG'.
    fieldcattab-seltext_l = 'Batch No'.
    APPEND fieldcattab.
    CLEAR fieldcattab.
    fieldcattab-col_pos = 7.
    fieldcattab-fieldname = 'BWART'.
    fieldcattab-tabname = 'T_MSEG'.
    fieldcattab-seltext_l = 'Inventory'.
    fieldcattab-hotspot = 'X'.
    APPEND fieldcattab.
    end-of-selection.
    CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'
    EXPORTING
    I_INTERFACE_CHECK = ' '
    I_BYPASSING_BUFFER =
    I_BUFFER_ACTIVE = ' '
    I_CALLBACK_PROGRAM = PROGNAME
    I_CALLBACK_PF_STATUS_SET = ' '
    I_CALLBACK_USER_COMMAND = 'USERCOMMAND1'
    I_CALLBACK_TOP_OF_PAGE = ' '
    I_CALLBACK_HTML_TOP_OF_PAGE = ' '
    I_CALLBACK_HTML_END_OF_LIST = ' '
    I_STRUCTURE_NAME =
    I_BACKGROUND_ID = ' '
    I_GRID_TITLE =
    I_GRID_SETTINGS =
    IS_LAYOUT =
    IT_FIELDCAT = fieldcattab[]
    IT_EXCLUDING =
    IT_SPECIAL_GROUPS =
    IT_SORT =
    IT_FILTER =
    IS_SEL_HIDE =
    I_DEFAULT = 'X'
    I_SAVE = ' '
    IS_VARIANT =
    IT_EVENTS =
    IT_EVENT_EXIT =
    IS_PRINT =
    IS_REPREP_ID =
    I_SCREEN_START_COLUMN = 0
    I_SCREEN_START_LINE = 0
    I_SCREEN_END_COLUMN = 0
    I_SCREEN_END_LINE = 0
    IT_ALV_GRAPHICS =
    IT_ADD_FIELDCAT = fieldcattab
    IT_HYPERLINK =
    IMPORTING
    E_EXIT_CAUSED_BY_CALLER =
    ES_EXIT_CAUSED_BY_USER =
    TABLES
    t_outtab = t_mseg
    EXCEPTIONS
    PROGRAM_ERROR = 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.
    FORM usercommand1 USING r_ucomm LIKE sy-ucomm rs_selfield TYPE
    slis_selfield.
    CASE r_ucomm.
    WHEN '&IC1'.
    tabindex = rs_selfield-tabindex.
    read table t_mseg INDEX tabindex.
    select * from mchb into table t_mchb where matnr = t_mseg-matnr.
    clear fieldcattab.
    CLEAR fieldcattab[].
    fieldcattab-col_pos = 1.
    fieldcattab-fieldname = 'FLAG'.
    fieldcattab-tabname = 'T_MCHB'.
    fieldcattab-fix_column = 'X'.
    fieldcattab-seltext_l = 'Check Box'.
    fieldcattab-input = 'X'.
    fieldcattab-edit = 'X'.
    fieldcattab-checkbox = 'X'.
    APPEND fieldcattab.
    clear fieldcattab.
    fieldcattab-col_pos = 2.
    fieldcattab-fieldname = 'MATNR'.
    fieldcattab-tabname = 'T_MCHB'.
    fieldcattab-fix_column = 'X'.
    fieldcattab-seltext_l = 'Material'.
    fieldcattab-emphasize = 'C1'.
    fieldcattab-input = 'X'.
    fieldcattab-edit = 'X'.
    fieldcattab-checkbox = 'X'.
    APPEND fieldcattab.
    clear fieldcattab.
    fieldcattab-col_pos = 3.
    fieldcattab-fieldname = 'CHARG'.
    fieldcattab-tabname = 'T_MCHB'.
    fieldcattab-seltext_l = 'Batch No'.
    fieldcattab-emphasize = 'C2'.
    fieldcattab-input = 'X'.
    fieldcattab-edit = 'X'.
    APPEND fieldcattab.
    clear fieldcattab.
    fieldcattab-col_pos = 4.
    fieldcattab-fieldname = 'WERKS'.
    fieldcattab-tabname = 'T_MCHB'.
    fieldcattab-seltext_l = 'Plant'.
    fieldcattab-emphasize = 'C30'.
    fieldcattab-input = 'X'.
    fieldcattab-edit = 'X'.
    APPEND fieldcattab.
    clear fieldcattab.
    fieldcattab-col_pos = 5.
    fieldcattab-fieldname = 'CLABS'.
    fieldcattab-tabname = 'T_MCHB'.
    fieldcattab-seltext_l = 'Stock'.
    fieldcattab-emphasize = 'C601'.
    fieldcattab-input = 'X'.
    fieldcattab-edit = 'X'.
    APPEND fieldcattab.
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
    EXPORTING
    I_INTERFACE_CHECK = ' '
    I_BYPASSING_BUFFER =
    I_BUFFER_ACTIVE = ' '
    I_CALLBACK_PROGRAM = PROGNAME
    I_CALLBACK_PF_STATUS_SET = ' '
    I_CALLBACK_USER_COMMAND = 'USERCOMMAND2'
    I_CALLBACK_TOP_OF_PAGE = ' '
    I_CALLBACK_HTML_TOP_OF_PAGE = ' '
    I_CALLBACK_HTML_END_OF_LIST = ' '
    I_STRUCTURE_NAME =
    I_BACKGROUND_ID = ' '
    I_GRID_TITLE =
    I_GRID_SETTINGS =
    IS_LAYOUT =
    IT_FIELDCAT = FIELDCATTAB[]
    IT_EXCLUDING =
    IT_SPECIAL_GROUPS =
    IT_SORT =
    IT_FILTER =
    IS_SEL_HIDE =
    I_DEFAULT = 'X'
    I_SAVE = ' '
    IS_VARIANT =
    IT_EVENTS =
    IT_EVENT_EXIT =
    IS_PRINT =
    IS_REPREP_ID =
    I_SCREEN_START_COLUMN = 0
    I_SCREEN_START_LINE = 0
    I_SCREEN_END_COLUMN = 0
    I_SCREEN_END_LINE = 0
    IT_ALV_GRAPHICS =
    IT_ADD_FIELDCAT =
    IT_HYPERLINK =
    IMPORTING
    E_EXIT_CAUSED_BY_CALLER =
    ES_EXIT_CAUSED_BY_USER =
    TABLES
    t_outtab = t_mchb
    EXCEPTIONS
    PROGRAM_ERROR = 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.
    endcase.
    endform.
    FORM usercommand2 USING r_ucomm LIKE sy-ucomm rs_selfield TYPE
    slis_selfield.
    CASE r_ucomm.
    WHEN '&IC1'.
    IF rs_selfield-sel_tab_field = 'T_MCHB-MATNR'.
    CALL FUNCTION 'ZALV2'
    EXPORTING
    CTU = 'X'
    MODE = 'E'
    UPDATE = 'A'
    GROUP =
    USER =
    KEEP =
    HOLDDATE =
    NODATA = '/'
    MATNR_001 = '200-200'
    KZSEL_01_002 = 'X'
    IMPORTING
    SUBRC =
    TABLES
    MESSTAB =
    SET PARAMETER ID 'RID' FIELD RMMG1-MATNR.
    CALL TRANSACTION 'MM03' and skip first screen.
    ENDIF.
    ENDCASE.
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
    EXPORTING
    i_callback_program = progname
    i_callback_user_command = 'USERCOMMAND3'
    it_fieldcat = fieldcattab[]
    TABLES
    t_outtab = t_mchb
    EXCEPTIONS
    program_error = 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.
    endcase.
    ENDFORM.
    Regards,
    chandru

  • Open as "Smart Object" from ACR to PS questions.

    I have 2 questions associated with opening from ACR as a Smart Object in Photoshop. I'm using CS4.
    1. Is there a way to retrieve the original filename (complete with path) using a script or a setting somewhere to do this? I'm currently using Bridge Talk to ask Bridge what the active folder is then adding that to the document's .name property and taking off the " as Smart Object-1" part. Then I add a .psd extension to it and then I have to save it to retain that name unless there's an answer to #2 below.
    2. Is there a way to change the Document's name as described above from "Filename as Smart Object-1" to "Filename.psd" without actually saving it?
    It seems to me there would be a simple way that I might be overlooking here.
    Thanks
    Mike

    Sorry, I guess I need to explain better.
    I wrote a script to do this, but here is this portion of the workflow:
    1. Open CR2 file in ACR and make adjustments.
    2. Open as Smart Object in PS.
    3. Script Events Manager activates this script on Document Open, checks to see if it was opened as a Smart Object. We'll assume it did.
    4. The script asks me if I want to make another layer. I pick yes. The script copies the SO layer, sets an inverted mask, and opens to edit settings in ACR again.
    5. I adjust the settings for that layer in ACR and click OK.
    The script will keep looping between 4 and 5 as long as I pick YES.
    This gives me more local control of areas. If I want to bring out eyes a bit, I can up contrast, saturation, sharpness, brightness, exposure, or whatever looks best for the eyes in ACR, then unmask the eyes as much as I want on that layer in Photoshop. There is more data to pull from in the RAW file vs trying to do the same thing within Photoshop.
    Opening as a regular image file then converting to a SO doesn't give me the same control. I would have to reopen the file separately, make the adjustments in ACR, open to PS then copy that document and paste as a new layer in the original.
    Duplicating the document might work also, but I can also just save as .psd at that point since I'd have to know the path name by then anyway. I'll give that a try, though, and see if it might work better. The only catch with the save part is it slows me down waiting for it to write the file and if I have 5+ SO layers, it takes awhile. Once I unmask where I want, I flatten to a rasterized layer and continue.
    Thanks

  • Open as smart object malfunction

    A strange thing occurred. "Open as smart object in Photoshop" does not work for one photo from photo session.
    It works for all the other but for this one it is clickable but nothing is being opened.
    It's like nobody has selected it.
    Lightroom 2.5
    Photoshop CS4
    OS Snow Leopard
    Any clue?

    This hack: http://kb2.adobe.com/cps/401/kb401629.html?
    Is Edit in Photoshop CS5 enabled?

  • Field.get(Object obj) now returning null with Generics (Java 5.0) ??

    Hello,
    I'm currently using Java 5.0 (especially for the Generics part) on a new Java/J2EE project, but having a strange issue with code working previously in a Java 1.4 project.
    Below is an overriding of the toString() method provided by the Object class which allow me to view nicely in debug (dev. mode) the contents of my Transfer Objects (all the TO's must extend this ATO abstract class).
    Previously this code displayed me something like:
    [field1 => value1, field2 => value2] ... for a TO (sort of "Javabean") having e.g. two String fields with values initialized to "value1" (resp. "value2").
    But unfortunately, this does (or seems) not to work anymore, having such display :
    [field1 => null, field2 => null]I tried to debug, and the problem is that the call fieldValue = field.get(this); returns null while it should returns the actual value of the field.
    I thing it it strongly related to Generics, but could not at the moment found how/why it does not work.
    May someone help...? Thanks.
    public abstract class ATO {
        // Reflection for field value display
        public String toString() {
            StringBuffer sb = new StringBuffer("[");
            MessageFormat mf = new MessageFormat("{0} => {1}, ");
            Field[] fields = this.getClass().getDeclaredFields();
            for (int i = 0; i < fields.length; i++) {
                Field field = (Field) fields;
    String fieldName = field.getName();
    Object fieldValue = null;
    try {
    fieldValue = field.get(this);
    } catch (IllegalArgumentException e) {
    } catch (IllegalAccessException e) {
    mf.format(new Object[] { fieldName, fieldValue }, sb, null);
    if (sb.length() > 1) {
    sb.setLength(sb.length() - 2);
    sb.append("]");
    return sb.toString();

    ejp wrote:
    Field field = (Field) fields;
    This cast is unnecessary.
    Effectively, I haven't noticed it yet. Fixed.
    } catch (IllegalArgumentException e) {
    } catch (IllegalAccessException e) {
    }Either the field value really is null or you are getting one of these exceptions which you are ignoring. Never write empty catch blocks.That's true, I missed something. Fixed with some code to log the eventual exceptions.
    Thanks for you answer.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Open field for cost center on the material master

    We have a unique requirement in a facility we intend to implement plant maintenance in to track a cost center to a material by including the cost center on the material master somewhere.  Cost center is not a field on any of the material tabs we use for maintenance materials, but the requirement is just that it is tracked in a field, even if it's just an open field like a "user defined field" or another field not used often.  We realize there are disadvantages such as the field not being checked against active cost centers, but we are looking at options short of adding cost center as a field manually to a tab (which I believe would require ABAP assistance).  I don't think there are any other fields/tabs we are currently not utilizing but I could be wrong... The best option we can think of is adding it in a material characteristic so it shows on the classifications tab, but I thought I would see if anyone has any other ideas.
    Thanks

    Not sure what is the need of cost center on material master when you want to implement Plant maintenance module. Do you have any specific requirement for this?
    Ideally cost center will be derived from either functional location/ equipment (equivalent of material master) on to PM work order or notification.
    Can you elaborate the requirement?
    After all if you wish to go with cost center, then I suggest it should be at plant level as PM requires plant level distribution. You can add up a custom field and give the reference of cost center data element with help of developer.

  • Open field Profit center on Vendor item

    Hi Guru
         How I can open field profit centr or cost center  on vendor item when i post document . I try open in field status group and open in posting key but it not success. Help me please . thank you vrery much.
    methinee.s

    Hi Srinu
         thank you for your answer but I have some question when I posting vendor code with posting key 29 and specail gl (target gl accoun is a balanc sheet  account ) thd screen layout  have profit center  and can input profit caner no. thank you verymuch.
    Methinee.s

  • Win 2K8 R2 - Group Policy Management - Failed to Open Group Policy Object. You may not have appropriate rights. The network path was not found.

    New to Windows Server 2008 R2 Administration.
    I setup this Windows 2008 R2 Server on a Dell 2950 Poweredge server and have been migrating users off of an old NT style domain running on Samba 3.6 on CentOS.
    I have the domain setup (nicholas.sacredheartsaratoga.org), added users, and have moved users / computers over to the new domain and working.
    When attempting to setup Group Policy Objects, I continually get the "Failed to Open Group Policy Object" Error.  This is driving me nuts and seems to be a 49 error.. which I have done a ton of research on but none of the suggested fixes seem
    to be working.
    I've been working at this for a couple of weeks and really need this fixed to be able to set GPO's correctly.
    Here is my IPCONFIG /ALL
    C:\Users\Administrator.NICHOLAS.000>ipconfig /all
    Windows IP Configuration
       Host Name . . . . . . . . . . . . : NICHOLAS
       Primary Dns Suffix  . . . . . . . : sacredheartsaratoga.org
       Node Type . . . . . . . . . . . . : Hybrid
       IP Routing Enabled. . . . . . . . : No
       WINS Proxy Enabled. . . . . . . . : No
       DNS Suffix Search List. . . . . . : nicholas.sacredheartsaratoga.org
    Ethernet adapter Local Area Connection 2:
       Connection-specific DNS Suffix  . :
       Description . . . . . . . . . . . : Broadcom BCM5708C NetXtreme II GigE (NDIS
     VBD Client) #2
       Physical Address. . . . . . . . . : 00-1D-09-27-F1-63
       DHCP Enabled. . . . . . . . . . . : No
       Autoconfiguration Enabled . . . . : Yes
       Link-local IPv6 Address . . . . . : fe80::542:43f2:2aaf:d903%13(Preferred)
       IPv4 Address. . . . . . . . . . . : 10.10.20.21(Preferred)
       Subnet Mask . . . . . . . . . . . : 255.255.255.0
       Default Gateway . . . . . . . . . : 10.10.20.3
       DHCPv6 IAID . . . . . . . . . . . : 301997321
       DHCPv6 Client DUID. . . . . . . . : 00-01-00-01-19-7D-DC-B6-00-1D-09-27-F1-61
       DNS Servers . . . . . . . . . . . : 10.10.20.21
       NetBIOS over Tcpip. . . . . . . . : Enabled
    Tunnel adapter isatap.{41653A38-9372-4740-BB03-41950A9C9BC0}:
       Media State . . . . . . . . . . . : Media disconnected
       Connection-specific DNS Suffix  . :
       Description . . . . . . . . . . . : Microsoft ISATAP Adapter
       Physical Address. . . . . . . . . : 00-00-00-00-00-00-00-E0
       DHCP Enabled. . . . . . . . . . . : No
       Autoconfiguration Enabled . . . . : Yes
    Tunnel adapter Local Area Connection* 9:
       Media State . . . . . . . . . . . : Media disconnected
       Connection-specific DNS Suffix  . :
       Description . . . . . . . . . . . : Teredo Tunneling Pseudo-Interface
       Physical Address. . . . . . . . . : 00-00-00-00-00-00-00-E0
       DHCP Enabled. . . . . . . . . . . : No
       Autoconfiguration Enabled . . . . : Yes

    Will post the entire contents of my gpreport as soon as my account is verified... but this is the jist of the error being reported:
    Component Status<v:group alt="Error" class="vmlimage" coordsize="100,100" style="width:15px;height:15px;vertical-align:middle;"><v:oval class="vmlimage" fillcolor="red" strokecolor="red" style="width:100px;height:100px;"></v:oval><v:line
    class="vmlimage" from="25,25" strokecolor="white" strokeweight="3px" style="" to="75,75"></v:line><v:line class="vmlimage" from="75,25" strokecolor="white" strokeweight="3px" style="" to="25,75"></v:line></v:group>
    Component Name
    Status
    Last Process Time
    Group Policy Infrastructure
    Failed
    2/17/2014 2:50:06 PM
    Group Policy Infrastructure failed due to the error listed below.
    Logon failure: unknown user name or bad password. 
    Note: Due to the GP Core failure, none of the other Group Policy components processed their policy. Consequently, status information for the other components is not available.
    Additional information may have been logged. Review the Policy Events tab in the console or the application event log for events between 2/17/2014 2:50:05 PM and 2/17/2014 2:50:06 PM.
    Registry
    (N/A)
    1/4/2014 1:45:29 PM
    Security
    (N/A)
    1/4/2014 1:45:35 PM
    User Configuration Summary

  • Hyperlink to open a business object is not working in archived printlist

    Hi
    I have archived a print list in my custom http content repository.
    Generated the indexed print list by running program OACONTA4.
    Archived data file has following lines
       \PCOL5H\PHYP<<BUS2012   \PCOL0H \PHYP>>   \PCOL2HPurchase Order                         
    IDARC1<OBJTYPE>BUS2012<OBJKEY>4500000001<METHOD>DISPLAY \PCOL0H  \PCOL4H4500000001                                       
    \PCOL0H  \PCOL2HZODTIF    \PCOL0H    \PCOL2HTest Image Documents               
    \PCOL0H  \PCOL5H\PHYP<<ZW            DE0978D42F2FA9F1AEDE0019B934DDB9       \PHYP>>
    IDARC1<OBJTYPE>IMAGE<OBJKEY>ZWDE0978D42F2FA9F1AEDE0019B934DDB9<METHOD>DISPLAY                                                                            
    \PCOL0H  \PCOL2H23.02.2009\PCOL0H    \PCOL2H         
    I am able to open archived print list using OADR.
    The hyperlinks in archived file are highlighted with different color  and cusror change when moved to "BUS2012" or "ZW            DE0978D42F2FA9F1AEDE0019B934DDB9       "
    Here "DE0978D42F2FA9F1AEDE0019B934DDB9" is archived document Id
    "4500000001" is purchase order number
    "ZW" is content repository
    "ZODTIF" is document type.
    But when I try to open the business object or the document, nothing happens.
    Then I changed the DARC line in the data file in repository to
    IDARC0ZW        DE0978D42F2FA9F1AEDE0019B934DDB9       
    After this I was able to open the document from link.
    Can anybody help on this? Why hyperlink is not working to open a business object
    Version details :
    SAP ERP ECC 6.0
    SAP NW 7.0
    References :
    http://help.sap.com/saphelp_40b/helpdata/pt/4f/9938ff446d11d189700000e8322d00/frameset.htm
    http://help.sap.com/saphelp_nw70/helpdata/en/4f/9938ff446d11d189700000e8322d00/frameset.htm
    Thanks in advance !
    Ruhi

    Uninstall the ASK toolbar from addons and problem ll be solved.
    Tools>> addons >> uninstall ASK /Foxit toolbar >> Problem solved

  • Open as Smart Object as Layers in Photoshop?

    I apologize if this has been addressed already, but I am looking for a way to open Smart Objects as LAYERS.  I do compositing work and would like to retain as much information as possible by using Smart Objects PRIOR to going into Photoshop.  My current workflow is to highlight the photos in Lightroom CC > Open as Smart Object in Photoshop CC > Manually Drag layers from each open file in Photoshop to main PSD.
    Edit - Opening as Layers in Photoshop then applying the Camera Raw Filter is not a good work around, information is lost.

    davepinminn wrote:
    I must still be doing something wrong here..............
    You have the wrong expectation—namely because you don't grasp the concept. A smart object is not a linked file.  It's a new file all on its own (in PSB format) with no connection to the original file at all.
    davepinminn wrote:
    …I can open my raw (.dng) into Photoshop as a smart object.  And in PS, I can open the smart object into ACR.  Works fine.  And I can change stuff.  For example, if I change the exposure from -.25 to +.20, it changes perfectly in PS, as I'd expect.  But, I'm still not getting the changes back to the original raw (.dng) file…
    There is no reason why the changes made to a Smart Object oject should be refleftef to a totally unrelated file.
    davepinminn wrote:
    …Do I need to do something different to get the changes back to the original file…
    Yes. you have to go back to that original file and apply the changes directly to it.  In a previous post, Jeff Schewe told you of a shortcut to achieve that:
    Jeff Schewe wrote:
    When you are in the Camera Raw SO with ACR open, go to the main flyout menu and select Export settings to XMP. This will write the new image settings from the SO to the xmp metadata. Then in Lightroom, select Read metadata from file in the main Metadata menu. That will bring in all the settings of the raw SO back into Lightroom. So, while not automatic, it's not as bad as writing down the settings and entering them by hand.

  • Open as smart object problems

    Hello,
    Im having some problems with Lightroom 4 when using "Edit In" -> "Open As Smart Object in photoshop..."
    Image open fine in CS6, i can make my edits & save. But when i close the image, an dialog box pops up with the following;
    Error 2: photoshop is undefined.
    Line: 1
    ->  photoshop.notifyLightroomDocClosed ('lightroom-2.0', '49071FF0-A8C4-4F2F-B0BB-B28B76F494E6', '');
    The image is saved to the correct place, link to lightroom is not. Need to manully syncronize the folder to get the image in the catalog.
    Running Lightroom 4.4, CS6 (13.0.4) on OS X (10.8.3)
    Anyone know whats wrong?

    This hack: http://kb2.adobe.com/cps/401/kb401629.html?
    Is Edit in Photoshop CS5 enabled?

  • Open as Smart Object is Grayed Out

    The open as smart object, Merge to HDR, Merge to panorama are all grayed out in Lightroom 3.2.
    I reinstalled CS5 and Lightroom but that did not help. There must be a registry hack for this.
    Windows 7 64 bit

    This hack: http://kb2.adobe.com/cps/401/kb401629.html?
    Is Edit in Photoshop CS5 enabled?

  • How to Turn Off "Open As Smart Object" ??

    Help ! I am using PS CS3. I opened a JPG file as Camera Raw using "Open As Smart Object" just to see what it was all about. Now, when I use just "Open As" to open a JPG as Camera Raw, at the bottom of the CR dialogue, instead of "Open Image" it continues to say "Open Smart Object" even though I did not specify that I wanted to Open As Smart Object. How do I get back to just Open Image in the CR dialog. I have the latest version - is it me or it a bug ???

    Links do not seem to have a high discoverability in a software.
    A drop down list would not take much more screen real estate, I wonder why they got scrapped in favor of hyperlinks.

  • LR4.1 : "Edit-In" "Open as Smart Object with Photoshop..." feature doesn't work with 32bits

    Hi there,
    I am running LR4.1/CS5/ACR6.7 on a Win7 64bits system.
    The feature "Edit-In" > "Open as Smart Object with Photoshop..." does work Ok with raw files (.NEF).
    However, when i do try to use the same feature with 32 bits .TIFF files (which are output of the LR4.1's "Edit-In" > "Merge to HDR Pro in Photoshop..." other feature), nothing does happen (the Photoshop application windows does open but w.o the image that i've just selected).
    I've used search engines and Adobe online help to see if there was any limit preventing the usage of this feature with 32 bits .TIF files but couldn't see such note.
    Thanks for your help !
    Albert

    Thanks Rikk,
    That did work with a DNG file :-)
    I am working with very huge .TIF files (400MB), so i am wondering if size could be the main issue (although my PC has lots of HW resources).
    I will explore the DNG way, a format which seems anyways to be very promising now with LR4.
    In case anyone has an idea why it doesn't work the .TIF files, please shoot !

Maybe you are looking for

  • Create GR with with RG23D using BAPI or FM

    Hi,   We are using the 'BAPI_GOODSMVT_CREATE' to create the GR with this, the GR is created properly, I want to know along with creating the GR can we capture the excise inovice with BAPI, for depot plant. there si one BAPI 'BAPI_EXCINV_CREATE_FROMDA

  • Dyanmic Folders..Is it possible

    For a project I am working on, I would like it that when the member signs up for an account, the web site dynamically creates a folder based on the username that they choose. Since there is only one unique username, its shouldn't be a problem. I also

  • Clipping mask vs. selection?

    I want to restrict my painting to only part of an image. 1. How is doing this with a clipping mask different from just making a selection and painting within a selection? 2. How can I make a clipping mask to do this? Thanks.

  • HT200224 can you use iphone material in FCP 7?

    hay, i am importing material from Iphone 5 into FCP 7.0.3, but is needs a lot of renderign. now i have tried apple pro res. but i only use it for ineternt or to make a dvd. and for anonther project I mix material from iphone with dv, from a card (Son

  • Syncing to newer computer

    Old computer crashed & died we need to connect to new laptop with iPhone 3G, don't want to lose apps and contacts but don't care about the music files as they are backed up on separate external drive.and can rebuild library