Do I need to do more than make a Custom File Info Panel

I downloaded the spec for XMP Custom Panels and have it partially working in Photoshop CS--see the code below.<br /><br />The problem is with namespaces.  I want to put my info into a danser namespace in JPEGs. <br />1. The code below partially works in PS-CS but it puts the "Title" into dc:title and the "Season" into xap:Season<br />2. If I add xmp_namespace: danser  to the edit_text then the panel fails to load in PS-CS.<br />3. I'm not clear on the purpose of the Metadata templates in Photoshops "File Info" Advanced tab.   Do I need to make a template there? How? --or point me to instructions.  (I made one but it didn't help.)<br /><br /><?xml version="1.0"><br /><!DOCTYPE panel SYSTEM "http://ns.adobe.com/custompanels/1.0"><br /><panel title="$$$/DISC/PanelName=danser" version="1" type="custom_panel"><br />group(placement: place_column, spacing: gSpace, horizontal: align_fill, vertical: align_top)<br />     {<br />     static_text(name: '$$$/danser/Title1=Title:', horizontal: align_left);<br />     edit_text(horizontal: align_fill, xmp_path: 'Title', vertical: align_top);<br />          <br />     static_text(name: '$$$/danser/Title1=Season:', vertical: align_left);<br />     edit_text(horizontal: align_fill, xmp_path: 'Season', vertical: align_top);<br />     }<br /></panel>

I found the problem and also an easier way to do create Custom info panels.
The docs don't mention that you have to use an "xmp_ns_prefix" along with an "xmp_namespace". I found this parameter in the code generated by the free MetaLab application from poundhill.com
For example, the first editText line in my earlier post should be:
edit_text(horizontal: align_fill, xmp_ns_prefix: 'danser', xmp_namespace: 'http://ns.danser.com/danser/1/', xmp_path: 'Title', vertical: align_top);
MetaLab makes this process a lot easier. Do the rough work in it and then hand tweak the code to specify things like field height.
Once I made that change, everything worked--there's no need (for this purpose) to load XMP or templates in the advanced tab).

Similar Messages

  • How to make my old file info panel from photoshop work in xmp

    Help. Not a photoshop guy but rather a genealogist. Many years ago downloaded a custom file info panel for photoshop which I used to enter meta text about the family photos I scanned. Currently using adobe creative cloud but cant figure out how to use panel or see most of my metatext last few version. Below is information about the panel. All I really want to do is install my panel and get back to genealogy. I apologize but not sure I need to understand the basics of photoshop..
    john weis
    [email protected]
    This is the authors description of the panel:
    Genealogy Photo (Private Collection) Custom File Info Panel 1.0 for Photoshop. 11 FEB 2007
    Developed by Ron Reiger [email protected]
    Please contact me to suggest improvements.
    1. BASIS FOR THIS CUSTOM FILE INFO PANEL
    2. DESCRIPTION OF EACH PROPERTY NAME
    3. WHERE EACH PROPERTY NAME MAPS & OTHER NOTES
    4. WHERE TO INSTALL THE CUSTOM FILE INFO PANEL
    1. BASIS FOR THIS CUSTOM FILE INFO PANEL
    The Custom File Info Panel is used to capture metadata about a genealogy/family history photo that is privately held (that is, the photo is not in the possession of a library). The metadata property names on the File Info Panel are based on my interpretation of the recommended primary citation for a photograph (private possession) (annotated, with provenance) as described on page 95 of Elizabeth Shown Mill's "Evidence! Citation & Analysis for the Family Historian" and on my interpretation of recommended primary citation for an Electronic File (Image from Private Files - Annotated), Mills, "Citation!", page 81. I added a few more property names for location and date the photo was taken and keywords (to ID people by number rather than by name), the name of the person who provided the description, a surety for their description, and an informal description. Each field is discussed below.
    2. DESCRIPTION OF EACH PROPERTY NAME
    Date Scanned: This is the date the photo was scanned. Date is populated by Photoshop and is not editable.
    Provider: The owner of the photo as of the date it was scanned. A researcher in a future generations will know who had the photo at a particular point in time.
    Provenance: Describe as best you can how the photo got from the person in the photo to the Provider.
    Description Provided By: List the person who identified the people and location in the image.
    Description Surety: (This is an open text field. You can use any surety rating system you want.) Describe or rate the quality of the Description of the image's people and location. Note any uncertainties regarding any particular people in the photo.
    Complete Subject Description: List the full name of each individual in the image, in order. You may want to list the location and date of the image even though there are separate property names for that data.
    Informal Subject Description: An optional non-genealogical description of the image, perhaps for using the photo outside of genealogy. Example Informal Subject Description: "Grandpa as a young man."
    Media Description: Describe the paper photo you scanned. Dimensions, border, frame, damage, etc. Your ancestors will have an easier time finding the paper photo later if you describe it well!
    Annotations: Copy any annotations on the front or back of the photo and frame. Transcribe any photographer embossing/imprint; this is a clue for dating/locating photos.
    Special Editing/Alterations: Describe any restoration you performed on the digital image. Did you correct for the lateral reverse of a tintype or daguerreotype?
    City/County: List the City/County where the image was taken.
    State: List the State where the image was taken.
    Country: List the County where the image was taken.
    Photo Date: List the date the image was taken.
    Keywords: This is the standard keyword entry. Commas or semicolons can be used to separate keywords. I type the TMG ID number of each person in the photo here so I can search for all photos of the person without typing their name.
    3. WHERE EACH PROPERTY NAME MAPS & OTHER NOTES
    I have not created a working namespace URI or rdf ala http://purl.org/dc/elements/1.1/ for this panel. I have not created localization dictionary files for this panel. Data entered into the panel will appear in Adobe Bridge. As you can see below I re-used lots of pre-existing property names and dumped all my new property names into the photoshop namespace. I don't know if this approach has drawbacks.
    Date Scanned:                xmp_path: 'CreateDate'   Pre-existing property name
    Provider:    xmp_namespace: photoshop, xmp_path: 'Credit'    Pre-existing property name
    Provenance:    xmp_namespace: photoshop, xmp_path: 'Provenance'
    Description Provided By:  xmp_namespace: photoshop, xmp_path: 'DescriptionProvidedBy'  Pre-existing property name
    Description Surety:   xmp_namespace: photoshop, xmp_path: 'DescriptionSurety'
    Complete Subject Description:   xmp_namespace: photoshop, xmp_path: 'Description'   Pre-existing property name
    Informal Subject Description:  xmp_namespace: photoshop, xmp_path: 'Caption'   Pre-existing property name
    Media Description:   xmp_namespace: photoshop, xmp_path: 'MediaDescription'
    Annotations:     xmp_namespace: photoshop, xmp_path: 'Annotations'
    Special Editing/Alterations:  xmp_namespace: photoshop, xmp_path: 'SpecialEditing'
    City/County:    xmp_namespace: photoshop, xmp_path: 'City'    Pre-existing property name
    State:     xmp_namespace: photoshop, xmp_path: 'State'    Pre-existing property name
    Country:     xmp_namespace: photoshop, xmp_path: 'Country'   Pre-existing property name
    Photo Date:    xmp_namespace: photoshop, xmp_path: 'DateCreated'   Pre-existing property name
    Keywords:               xmp_path: 'Keywords'   Pre-existing property name
    4. WHERE TO INSTALL THE CUSTOM FILE INFO PANEL
    I have tested this panel with Photoshop CS2 and Adobe Bridge CS2 only.  It may not work on earlier versions.  FWIW a malformed Custom File Info Panel will fail to load in File Info; it won't crash Photoshop.
    The following was taken from "XMP Custom Panels," Adobe, Oct 2003.
    Each time an Adobe application opens the File Info dialog, it scans all the files in these directories and appends them to the file list. If more than one of the description files has
    the same panel name, the one found in the last file to be loaded is added, and others are ignored.
    Changes to the contents of the directories do not require you to reload an application; changes are automatically reflected in the dialog the next time it is opened.
    The panel description and localization dictionary files must reside in the following locations for use with Adobe Creative Suite applications:
    Mac OS X
    {Root Volume}/Library/Application Support/Adobe/XMP/Custom File Info Panels
    {Home Directory}/Library/Application/Adobe/XMP/Custom File Info Panels
    Windows
    \Program Files\Common Files\Adobe\XMP\Custom File Info Panels
    \Documents and Settings\<user>\Application Data\Adobe\XMP\Custom File Info Panels
    The panel description and localization dictionary files must reside in the following locations for use with Adobe Acrobat 7.0 or 6.0:
    Mac OS X
    {Root Volume}/Library/Application Support/Adobe/Custom File Info Panels
    {Home Directory}/Library/Preferences/Adobe/Custom File Info Panels
    Windows
    \Program Files\Common Files\Adobe\\Custom File Info Panels
    \Documents and Settings\<user>\Application Data\Adobe\Custom File Info Panels
    I actually do not understand how to write a panel but here is the actual panel:
    <?xml version="1.0">
    <!DOCTYPE panel SYSTEM "http://ns.adobe.com/custompanels/1.0">
    <panel title="$$$/CustomPanels/Acro/PanelName=Gen Photo (Private Collection)" version="1" type="custom_panel">
    group(placement: place_column, spacing: gLargeSpace, horizontal: align_fill, vertical: align_top)
    group(placement: place_row, spacing: gSpace, horizontal: align_fill, vertical: align_top, reverse: rtl_aware)
      static_text(name: '$$$/AWS/FileInfoLib/Panels/Description/DateCreated=Date Scanned:', font: font_small_bold_right, vertical: align_top);
      date_static_text(fbname: '$$$/AWS/FileInfoLib/Panels/Description/DateCreated=Date Scanned', name: '$$$/AWS/FileInfoLib/Panels/DateCreated=Created', xmp_path: 'CreateDate', horizontal: align_fill, vertical: align_top, truncate: true, locked: true);   
    group(placement: place_row, spacing: gSpace, horizontal: align_fill, vertical: align_top, reverse: rtl_aware)
      static_text(name: '$$$/CustomPanels/Genealogy/Provider=Provider:', font: font_small_bold_right, vertical: align_top);
      edit_text(fbname: '$$$/CustomPanels/Genealogy/Provider=Provider', horizontal: align_fill, font: font_small, xmp_namespace: photoshop, xmp_path: 'Credit', vertical: align_top);
      mru_popup(xmp_namespace: photoshop, xmp_path: 'Credit', container_type: alt_struct, no_check: true, vertical: align_top);
    group(placement: place_row, spacing: gSpace, horizontal: align_fill, vertical: align_top, reverse: rtl_aware)
      static_text(name: '$$$/CustomPanels/Genealogy/Provenance=Provenance:', font: font_small_bold_right, vertical: align_top);
      edit_text(fbname: '$$$/CustomPanels/Genealogy/Provenance=Provenance', horizontal: align_fill, height: gTextViewHeight, xmp_namespace: photoshop, xmp_path: 'Provenance', container_type: alt_struct, v_scroller: true);
      mru_popup(xmp_namespace: photoshop, xmp_path: 'Provenance', container_type: alt_struct, no_check: true, vertical: align_top);
    group(placement: place_row, spacing: gSpace, horizontal: align_fill, vertical: align_top, reverse: rtl_aware)
      static_text( name: '$$$/CustomPanels/Genealogy/DescriptionProvidedBy=Description Provided By:', font: font_small_bold_right, vertical: align_top);
      edit_text(fbname: '$$$/CustomPanels/Genealogy/DescriptionProvidedBy=Description Provided By', horizontal: align_fill, font: font_small, xmp_namespace: photoshop, xmp_path: 'DescriptionProvidedBy', vertical: align_top);
      mru_popup(xmp_namespace: photoshop, xmp_path: 'DescriptionProvidedBy', container_type: alt_struct, no_check: true, vertical: align_top);
    group(placement: place_row, spacing: gSpace, horizontal: align_fill, vertical: align_top, reverse: rtl_aware)
      static_text( name: '$$$/CustomPanels/Genealogy/DescriptionSurety=Description Surety:', font: font_small_bold_right, vertical: align_top);
      edit_text(fbname: '$$$/CustomPanels/Genealogy/DescriptionSurety=Description Surety', horizontal: align_fill, height: gTextViewHeight, xmp_namespace: photoshop, xmp_path: 'DescriptionSurety', v_scroller: true);
      mru_popup(xmp_namespace: photoshop, xmp_path: 'DescriptionSurety', container_type: alt_struct, no_check: true, vertical: align_top);
    group(placement: place_row, spacing: gSpace, horizontal: align_fill, vertical: align_top, reverse: rtl_aware)
      static_text(name: '$$$/CustomPanels/Genealogy/Description=Complete Subject Description:', font: font_small_bold_right, vertical: align_top);
      edit_text(fbname: '$$$/CustomPanels/Genealogy/Description=Complete Subject Description', horizontal: align_fill, height: gTextViewHeight, xmp_namespace: photoshop, xmp_path: 'Description', container_type: alt_struct, v_scroller: true);
      mru_popup(xmp_namespace: photoshop, xmp_path: 'Description', container_type: alt_struct, no_check: true, vertical: align_top);
    group(placement: place_row, spacing: gSpace, horizontal: align_fill, vertical: align_top, reverse: rtl_aware)
      static_text( name: '$$$/CustomPanels/Genealogy/Caption=Informal Subject Description:', font: font_small_bold_right, vertical: align_top);
      edit_text(fbname: '$$$/CustomPanels/Genealogy/Caption=Informal Subject Description', horizontal: align_fill, height: gTextViewHeight, xmp_namespace: photoshop, xmp_path: 'Caption', v_scroller: true);
      mru_popup(xmp_namespace: photoshop, xmp_path: 'Caption', container_type: alt_struct, no_check: true, vertical: align_top);
    group(placement: place_row, spacing: gSpace, horizontal: align_fill, vertical: align_top, reverse: rtl_aware)
      static_text( name: '$$$/CustomPanels/Genealogy/MediaDescription=Media Description:', font: font_small_bold_right, vertical: align_top);
      edit_text(fbname: '$$$/CustomPanels/Genealogy/MediaDescription=Media Description', horizontal: align_fill, height: gTextViewHeight, xmp_namespace: photoshop, xmp_path: 'MediaDescription', v_scroller: true);
      mru_popup(xmp_namespace: photoshop, xmp_path: 'MediaDescription', container_type: alt_struct, no_check: true, vertical: align_top);
    group(placement: place_row, spacing: gSpace, horizontal: align_fill, vertical: align_top, reverse: rtl_aware)
      static_text( name: '$$$/CustomPanels/Genealogy/Annotations=Annotations:', font: font_small_bold_right, vertical: align_top);
      edit_text(fbname: '$$$/CustomPanels/Genealogy/Annotations=Annotations', horizontal: align_fill, height: gTextViewHeight, xmp_namespace: photoshop, xmp_path: 'Annotations', v_scroller: true);
      mru_popup(xmp_namespace: photoshop, xmp_path: 'Annotations', container_type: alt_struct, no_check: true, vertical: align_top);
    group(placement: place_row, spacing: gSpace, horizontal: align_fill, vertical: align_top, reverse: rtl_aware)
      static_text( name: '$$$/CustomPanels/Genealogy/SpecialEditing=Special Editing/Alterations:', font: font_small_bold_right, vertical: align_top);
      edit_text(fbname: '$$$/CustomPanels/Genealogy/SpecialEditing=Special Editing/Alterations', horizontal: align_fill, height: gTextViewHeight, xmp_namespace: photoshop, xmp_path: 'SpecialEditing', v_scroller: true);
      mru_popup(xmp_namespace: photoshop, xmp_path: 'SpecialEditing', container_type: alt_struct, no_check: true, vertical: align_top);
    group(placement: place_row, spacing: gSpace, horizontal: align_fill, vertical: align_top, reverse: rtl_aware)
      static_text( name: '$$$/CustomPanels/Genealogy/City=City/County:', font: font_small_bold_right, vertical: align_top);
      edit_text(fbname: '$$$/CustomPanels/Genealogy/City=City/County', horizontal: align_fill, font: font_small, xmp_namespace: photoshop, xmp_path: 'City', vertical: align_top);
      mru_popup(xmp_namespace: photoshop, xmp_path: 'City', container_type: alt_struct, no_check: true, vertical: align_top);
    group(placement: place_row, spacing: gSpace, horizontal: align_fill, vertical: align_top, reverse: rtl_aware)
      static_text( name: '$$$/CustomPanels/Genealogy/State=State:', font: font_small_bold_right, vertical: align_top);
      edit_text(fbname: '$$$/CustomPanels/Genealogy/State=State', horizontal: align_fill, font: font_small, xmp_namespace: photoshop, xmp_path: 'State', vertical: align_top);
      mru_popup(xmp_namespace: photoshop, xmp_path: 'State', container_type: alt_struct, no_check: true, vertical: align_top);
    group(placement: place_row, spacing: gSpace, horizontal: align_fill, vertical: align_top, reverse: rtl_aware)
      static_text( name: '$$$/CustomPanels/Genealogy/Country=Country:', font: font_small_bold_right, vertical: align_top);
      edit_text(fbname: '$$$/CustomPanels/Genealogy/Country=Country', horizontal: align_fill, font: font_small, xmp_namespace: photoshop, xmp_path: 'Country', vertical: align_top);
      mru_popup(xmp_namespace: photoshop, xmp_path: 'Country', container_type: alt_struct, no_check: true, vertical: align_top);
    group(placement: place_row, spacing: gSpace, horizontal: align_fill, vertical: align_top, reverse: rtl_aware)
      static_text( name: '$$$/CustomPanels/Genealogy/PhotoDate=Photo Date:', font: font_small_bold_right, vertical: align_top);
      edit_text(fbname: '$$$/CustomPanels/Genealogy/PhotoDate=Photo Date', horizontal: align_fill, font: font_small, xmp_namespace: photoshop, xmp_path: 'DateCreated', vertical: align_top);
      mru_popup(xmp_namespace: photoshop, xmp_path: 'DateCreated', container_type: alt_struct, no_check: true, vertical: align_top);
    group(placement: place_row, spacing: gSpace, horizontal: align_fill, vertical: align_top, reverse: rtl_aware)
      static_text( name: '$$$/AWS/FileInfoLib/Panels/Description/Keywords=Keywords:',font: font_small_bold_right, vertical: align_top);
      cat_container_edit_text(fbname: '$$$/AWS/FileInfoLib/Panels/Description/Keywords=Keywords',horizontal: align_fill, height: gTextViewHeight, xmp_path: 'Keywords', container_type: bag_struct, v_scroller: true);
      mru_popup(xmp_path: 'Keywords', container_type: alt_struct, no_check: true, vertical: align_top);
    </panel>

    You are not going to be able to run your old system from the backup on this old computer as the hardware is incompatible.
    You need to get a new computer or a refurbished one.

  • Need to concatenate more  than 10 fields

    Hi All
    in Mapping need to concatenate more than 10 fields , is there any way to make it short can concatenate all in one stretch, instead of using mutiple conctenate statements
    please help me
    Thanking you
    Sridahr

    If this is a one time activity, better to go for using concatenate function multiple times.
    Regards,
    Prateek

  • I an getting an error with photo merge in PS cc . It gives me a code tmp00000001 using from photoshop and if I try from bridge it tell me that I need to select more than one image. It is not recognizing the photos I am selecting in bridge. please help. my

    A new problem with CS5 forced me to download PScc but the problem is still there.  I am getting tmp00000001 in photo merge when importing multiple files from inside PS and if trying from bridge I am getting a pop up box telling me I need to select more than 1 file. Photoshop potomerge is not recognizing my selections from bridge..!! please help.. my knowledge of computers is a 3 on a scale of 1-10

    if i run this particular code
    ( SELECT
    AccountDetails.CUSTOMERNUMBER, AccountDetails.ACCOUNTNUMBER, CUSTOMERDETAILS.CDTITLE, CUSTOMERDETAILS.CDFIRSTNAME, CUSTOMERDETAILS.CDLASTNAME, AccountDetails.ACCOUNTTYPE,
    AccountDetails.ORIGINALCONTRACTENDDATE, AccountDetails.CONTRACTTERM, AccountDetails.CONTRACTENDDATE, AccountDetails.BRANCHAREA, AccountDetails.PRODUCTTYPE,
    AccountDetails.HOUSEBANKACCOUNT, AccountDetails.CARMODEL, AccountDetails.CARLICENCE, AccountDetails.ARREARSBALANCE, AccountDetails.CODEBTOR, AccountDetails.GUARANTORNUMBER
    FROM AccountDetails
    JOIN CUSTOMERDETAILS ON AccountDetails.CUSTOMERNUMBER = CUSTOMERDETAILS.CUSTOMERS1
    WHERE EXISTS
    ( SELECT *
    FROM Dcaaccountallocation
    JOIN DebtEpisodes ON DebtEpisodes.ACCOUNTID = Dcaaccountallocation.ACCOUNTID
    WHERE Dcaaccountallocation.dcaid = 41
    AND Dcaaccountallocation.status = 2
    AND DebtEpisodes.DCASentDate IS NULL
    AND Dcaaccountallocation.ACCOUNTID = AccountDetails.ACCOUNTNUMBER
    AND DebtEpisodes.DCAORLAWYER = 'DCA'
    This returns 1 row of data
    However if i run a small part of the above code...
    SELECT *
    FROM Dcaaccountallocation
    JOIN DebtEpisodes ON DebtEpisodes.ACCOUNTID = Dcaaccountallocation.ACCOUNTID
    WHERE Dcaaccountallocation.dcaid = 41
    AND Dcaaccountallocation.status = 2
    It returns a lot of rows with a status of 2
    Now i presume what I am going to do is to ensure that all the fields provide satisfactory requirements, with regards to the above code. Although I have many records in all the stated tables already.
    :(

  • I need to connect my iPad to a projector and USB ports. What do I need to do this and where can I get the suitable fittings? I really need to have more than one USB connection port. Help

    I need to connect my iPad to a projector and have USB ports. What do I need to do this and where can I get the suitable fittings? I really need to have more than one USB connection port. Help

    You can connect via a cable or wireless using an Apple TV.
    http://ipad.about.com/od/iPad_Guide/a/How-To-Connect-Your-Ipad-To-Your-Tv.htm
    Connect an iPad to a Television or Projector
    http://www.everymac.com/systems/apple/ipad/ipad-faq/how-to-connect-ipad-to-tv-te levision-projector.html
    Connecting iPad iPhone or iPod to TV or Projector
    http://www.disabled-world.com/assistivedevices/computer/ipad-tv.php
    iPad Accessories: Connections for a TV or Projector
    http://www.dummies.com/how-to/content/ipad-accessories-connections-for-a-tv-or-p rojector.html
    You may be interested in AirPlay on the Apple TV:
    http://www.apple.com/airplay/
    Alternately, there are Apple Digital AV Adapters for hardwired connections:
    http://support.apple.com/kb/ht4108
    If your location does’t have wifi to use with the Apple TV, use a portable router.
    Portable routers http://compnetworking.about.com/od/routers/tp/travel_routers.htm
     Cheers, Tom

  • Need to Archive more than 5000 CP's in CRM.

    Hi All,
    I need to archive more than 5000 Contact Persons in CRM system
    As many of these contact persons are having relationships in CRM which also have replication to R/3 system and contains the R/3 ID , Also these Contact Persons have the open CRM documents like Opportunities, Actitivies and Leads.
    Can anyone guide me how to delete the relationship of the all Contact Persons in one shot or groups like 100 or 200 which are not having any CRM Documents present.
    and please let me know the way to delete the role attributes of these contact persons which have been assigned to them in R/3 system as after deleting these roles only the relationship can be deleted.
    Best regards,
    Jatin Goel
    Edited by: Jatin Goel on Jan 11, 2009 1:54 PM

    I have find out the way myself.

  • I need to display more than 5000 rows by JClient JUtableBinding

    I need to display more than 5000 rows by JClient JUtableBinding. is it possible not to get PassivationError and display it?

    FYI,
    In a future release, BC4J will also allow VOs that use oracle-database ROWNUM features to fetch only a range full of rows rather than the entire set of rows. For queries that return thousands of rows and you want to display them in a table or pages, this option on the VO should come in handy.

  • I can't get the Download Assistant to do more than make me sign in.  I'm trying to try Illustrator 5

    I can't get the Download Assistant to do more than make me sign in.  I'm trying to try Illustrator 5

    Hi,
    What operating system are you using and do you see any error message after signing in? Are you able to view your name at the top right corner of the Download Assistant screen after signing in?
    This document has troubleshooting steps to resolve issues with the Adobe Download Assistant:
    Troubleshoot Adobe Download Assistant
    I suggest trying step 4 under Known Issues and reply to this post if the issue persists.

  • Need to maintain more than one address for single customer.

    Dear All,
    I need to maintain more than one address for single customer, Is it possible? If so how can I maitain kindly send the details.
    Rgds
    Srinivasan.K.R.

    Dear Srinivasan,
    I don't think you can maintain the more than one address for single customer as per the standard.
    You can this options
    1.You can create different ship to parties as per the addresses.
    2.You can change the address manually while creating sales order for single customer.
    I hope this will help you,
    Regards,
    Murali.

  • Need to transfer more than 150 employees from one company code to another company code

    Dear Sir/Madam,
    I am new in SAP HCM . We need to transfer more than 150 employees from one company code to another company code due to some business requirement. Please suggest the process of transfer from one company code to another company code considering the other element like gratuity , leave entitlement, Bonus , Exgratia   etc.
    Your quick response will be highly appreciated.
    Thanks & regards,
    Babuna Ray
    Mob:- 9007295305
    [email protected]

    Dear,
    do not transfer employee from one company code to another issues are as under.
    1. Employees Form 16 you will get wrong value as per I Tax law because of company is having different PAN & TAN.
    2. Form 24 Q annual return data will not get properly/easily from SAP because of form 24 Q will run on Payroll area base/ company code base
    3. PF number is different for these 2 company codes then you are unable to submit annual return.
    4. If employee will get hike after the transfer case then system will post expenses period wise means if employee is having 2 different cost center related 2 different company codes posting will done as per this scenario is it accepted to Account Depatment? it is reflected in FICO through KSBB how can they manage expenditure which is related to previous month?
    Like this many points are there you have to study it and then suggest to your client.
    Regards
    Subhedar
    9158881202

  • I need to authorize more than 6 computers.

    How do I authorize more than 6 computers?

    Adobe provides an extra activation each year but that will not solve your problem.
    Why do you need to authorize more than 6 computers with the same ID? Allowing this would essentially defeat the DRM system because every person on Earth could use the same account for purchasing books and therefor end up with access to all of the books, which is the opposite of what the DRM system is there to protected against.

  • Need to email more than 1 file at a time please help

    I bought this program so I could email 150 pictures to a Kinkos to be printed this is the only program they could open them up and now I can't figure out how to email more than one at a time is there any way for me to email more than one of these files at a time if so how do I do it??

    This forum is for Adobe Reader on Android. You can find the Lightroom forum here: Photoshop Lightroom

  • How to load and unload more than one external swf files in different frames?

    I do not have much experience on Adobe Flash or Action Script 3, but I know the basics.
    I am Arabic language teacher, and I design an application to teach Arabic, I just would like to learn how to load and unload more than one external swf files in different frames.
    Thanks

    Look into using the Loader class to load the swf files.  If you want to have it happen in different frames then you can put the code into the different frames.

  • Is there more than one "Previous recipients" file?

    Ancient addresses long deleted from my address book continue to populate emails.
    I have done the Window --> Previous recipients thing. (I really have!) The ancient addresses are not there to delete!
    I'm wondering if there is more than one "Previous recipients" file?
    Any help appreciated -
    Thanks!

    OK. So these phantom email addresses belonged to you and not other people. Correct? Yes
    Were they aliases to accounts you still have or were they old accounts you have since deleted? Explain what the phantom addresses were. These addresses belong to a POP account I have through work.  I've used a couple of different addresses: e.g. roberta@ or redowney@ but the domain name has not changed. I'm going to see if the addresses are on my employer's server. Stay tuned.
    Have you checked Messages and FaceTime to see if those addresses are listed there? Just checked - not there.
    If you have an iPhone or iPad, when you start a new message, do these phantom addresses appear in the list? If so, do they have a circle i icon to the right of the address? If so, click the icon and delete it from there. Nope - do not appear.
    These addresses are really old - like two or three years since I last used.

  • Why do i have to pay $100 more than a new customer for the new 3gs

    im 1 yr in to a 2 yr contract on my iphone 3g. when i go to preorder my new 3gs phone the price is $100 more than a new customer. this isnt really a question but a complaint that im afraid niether apple nor att will give a hoot about. how bout some love for customer loyalty?

    This has nothing to do with customer loyalty and has everything to do with subsidized phones. You must fulfill your existing contract requirement for an existing subsidized phone before you are eligible for upgrade or the fully subsidized price with a new phone. The same applies with every carrier in regards to subsidized phones. The has been standard policy with every carrier in the U.S. in regards to subsidized phones for the last 10 years plus.
    http://www.att.com/Common/merger/files/pdf/iPhone/PricingUpgradingFAQs.pdf

Maybe you are looking for

  • Company code merge, take over salesorganization, purchase org and plant

    Goodmorning, We have to merge two company codes. The management would like to keep the same salesorganizations, purchase organizations and plant, Does someone know if it is possible to link a plant, purchase organization and salesorganisation  from o

  • Envelope Stuck On

    The envelope symbol denoting a new text message is on but there's no message. Is there a way of clearing it? Thanks

  • OBYC of physical inventory in subcontracting

    I have to do physical stock taking of the goods provided to the subcontractor. It will be done as a special stock as O (subcontractor stock).  if in counting the differnece arise from actual counted and in system, it need to be posted. What G/L accou

  • ORA-15032,ORA-15040:,ORA-15042:

    hi, unfortunatly our server get rebooted after taht we are try to start ASM instance then we got below error ora-15040 diskgroup is incomplete ORA-15042 ASM Disk"2" is missing.but we are checking from OS side all disk are OK.all the Diskgroup are in

  • Error Creating RFC Destination

    Can any one suggest here what could be the problem ? Here the connection test is failing ? What could be the reason ? Logon     Connection Error Error Details     Error when opening an RFC connection Error Details     ERROR: partner 'qv5main.wdf.sap.