Field - Nimber of bags

Hi,
I am filling Number of bags field in MIgo.But i am not getting these field while i am not getting  display mode

HI,
What is this no of bags field.
murugan

Similar Messages

  • Number of Bags field

    I would like to using Number of Bags field for MIGO T code Transactions.but i am not getting Tables for these field.please tell me where it is saved

    Hi,
    You can do it with inbound deliveries, althought it will be more complex for the end-use (more steps).
    Regards,
    Eduardo
    Edited by: Eduardo Hinojosa on Jun 8, 2009 12:12 PM

  • Hi i live in Ohio and im 14. I recently been on a class field trip to a amusement park called Ceader Point and before i got on the ride i had to put my bag into a bin with my ipod in it and when i got off someone stole it. how do i find it?

    I also dont have internet on it and dont have to find my IPhone app on it

    - If you previously turned on FIndMyiPod on the iPod in Settings>iCloud and wifi is on and connected go to iCloud: Find My iPhone, sign in and go to FIndMyiPhone. If the iPod has been restored it will never show up.
    - You can also wipe/erase the iPod and have the iPod play a sound via iCloud.
    - If not shown, then you will have to use the old fashioned way, like if you lost a wallet or purse.
    - Change the passwords for all accounts used on the iPod and report to police
    - There is no way to prevent someone from restoring the iPod (it erases it) using it.
    - Apple will do nothing without a court order                         
    Reporting a lost or stolen Apple product                                        
    - iOS: How to find the serial number, IMEI, MEID, CDN, and ICCID number

  • Need advice on whether to build a traditional database layout or a property bag lookup format for new application?

    Hi,
    This may be a little of an open ended question, but Id like to ask the crowd as I have a delema to whether or not to use a standard database design or a propertybag/flatfile format and transform the information within my application?
    THE SITUATION (EXAMPLE)
    We have a table called "people". And these persons can either be a basic contact or be associated to several other "types" such as a member, a representative, a staff member with login details etc.  These types are expected to expand
    and may need additional fields adding to them.
    A: The old fashioned poor approach is to create a table with all the unused columns and simply ignore what we don't need.
    B: After normalisation, the traditional approach would be to have link table and each "type" would have its own table with the separate columns needed.
    C: Lasty, we have recently done some projects using matrix and property type lookup tables (e.g. a reference table to hold the persons ID, then the columns held in a single properties table of "propertyname and proteryvalue".  When the application
    "gets" the record it can return a completely dynamic length column list based on how many properties it finds.  I.e. Person 1 have only their email address and name in the property bag so the datatable returned in code would be 2-3 columns (inc
    id).  Person 2 has lots of properties and so their datatable would be returned in code with many more columns.
    I hope that makes sense?
    THE DILEMA
    If I was only using our application to access the data then I could setup a function library to control the access, but I asl want to use report editors (maybe SQL report Services?).  And the customer would get completely confused to know which field
    is what and how to get the data out?  I also want to avoid situations where the application expects someone to have a property (column) and its not there?  It may make a difference if I tell you that they will aslo have tables holding heiracrchical
    groupings too, which will already make it hard for the customer to use in SQL Report Services.   Should I use the traditional approach and the metastable (property bag) approach?
    PROS AND CONS of B:
    +Traditional approach and most tools that need to access SQL directly will work, assuming the customer understands the column names properly
    -A single field change would likely involve all levels of MVC (model, Controller, View) so 3 times the work (maybe 3 people if using specialist SQL Admin, C# Dev and Interface Designer)
    -New person types require a whole new table to be linked in
    -Global searches need to constantly be updated to include other tables columns
    +Our development suite (Visual Studio) allows more visual designing in the IDE when the table is fixed
    PROS AND CONS of C:
    -Cant see the record easily in SQL directly
    -Would have to make any report editor use datasets within an the app rather than direct to SQL directly, making the whole system dependant on a proprietary APP control system (although we would control this anyway)
    +Global searches are very good, as all properties are held in a column
    -The property table would grow quote big, so needs good indexing
    +Any new fields or field groups (types) would simply be a configuration setting in the app (not any manual admin)
    +If any presentation of data changes where needed this is likely to only require the controller (developer) on MVC to input changes (assuming the interface expects dynamic fields)
    -The tables to show to the user through the app would need to handle dynamic columns and so would need to have generic auto formatting in code (which we could not see in the designer (Visual Studio) and set exactly as required). Slight guess work, but we
    could hold setting in the property bag to indicate how to show that property.
    A little bit war and peace, but your thoughts?
    Kindest
    Martin
    PS: Some of you may raise the option of stored procedures, in order to do the transform without SQL still.  Would this be viable and still work with SQL Report Services?

    You ARE using a RDBMS and you appear to intend to use standard development tools.  Therefore you will probably regret any attempt to move away from a properly normalized relational database.  And that does not begin to address any performance
    aspects. 
    Option A really should not be considered an option.  That is not proper normalization for a relational database.
    As best I can tell option C is simply an EAV (Entity Attribute Value) model - and you can search on that term for discussions about the pros and cons. 
    Lastly, AFAIK reports / SSRS can use stored procedures as information sources - that really isn't a design issue.  However, if you choose option C then you most likely will be forced to use procedures for reporting purposes.

  • CRVS2010 beta - Date field from database does not display in report

    Hi there - can someone please help?!
    I am getting a problem where a date field from the database does not display in the report viewer (It displays on my dev machine, but not on the client machines...details given below)
    I upgraded to VS 2010
    I am using the CRVS2010 Beta
    My development machine is Windows 7 - and so is my fellow developer's
    We are using Microsoft SQL Server 2000
    We run the queries within VS and then we send the data table to VS using .SetDataSource
    We have a few reports which display the date on our dev machines (whether we run the EXE or from within Visual Studio)
    When we roll out to the client machines (running Windows XP SP3) then everything works, except that the date does not display (on quite a few reports)
    This is the only real issue I have had - a show stopper for me
    The rest works well - any input will be greatly appreciated
    Regards,
    Ridwan

    Hi Ridwan,
    After much testing I have it all working now using CRDB_adoplus.dll as a data source ( XML )
    Alter your Config file to look like this:
    <startup useLegacyV2RuntimeActivationPolicy="true">
    <supportedRuntime version="v4.0"/>
    </startup>
    Then using the code below, and CR requires the Schema to be able to read the date format.
    private void SetToXML_Click(object sender, EventArgs e)
    CrystalDecisions.CrystalReports.Engine.ReportDocument rpt = new CrystalDecisions.CrystalReports.Engine.ReportDocument();
    ISCDReportClientDocument rcd;
    rcd = rptClientDoc;
    string connString = "Provider=SQLOLEDB;Data Source=dwcb12003;Database=xtreme;User ID=sb;Password=password";
    string sqlString = "Select * From Orders";
    OleDbConnection oleConn = new OleDbConnection(connString);
    OleDbDataAdapter oleAdapter = new OleDbDataAdapter(sqlString, oleConn);
    //OleDbDataAdapter oleAdapter2 = new OleDbDataAdapter(sqlString2, oleConn);
    DataTable dt1 = new DataTable("Orders");
    oleAdapter.Fill(dt1);
    System.Data.DataSet ds = new System.Data.DataSet();
    // We need the schema to get the data formats
    ds.WriteXml("c:
    sc.xml", XmlWriteMode.WriteSchema);
    //Create a new Database Table to replace the reports current table.
    CrystalDecisions.ReportAppServer.DataDefModel.Table boTable = new CrystalDecisions.ReportAppServer.DataDefModel.Table();
    //boMainPropertyBag: These hold the attributes of the tables ConnectionInfo object
    PropertyBag boMainPropertyBag = new PropertyBag();
    //boInnerPropertyBag: These hold the attributes for the QE_LogonProperties
    //In the main property bag (boMainPropertyBag)
    PropertyBag boInnerPropertyBag = new PropertyBag();
    //Set the attributes for the boInnerPropertyBag
    boInnerPropertyBag.Add("File Path ", @"C:\sc.xml");
    boInnerPropertyBag.Add("Internal Connection ID", "{680eee31-a16e-4f48-8efa-8765193dccdd}");
    //Set the attributes for the boMainPropertyBag
    boMainPropertyBag.Add("Database DLL", "crdb_adoplus.dll");
    boMainPropertyBag.Add("QE_DatabaseName", "");
    boMainPropertyBag.Add("QE_DatabaseType", "");
    //Add the QE_LogonProperties we set in the boInnerPropertyBag Object
    boMainPropertyBag.Add("QE_LogonProperties", boInnerPropertyBag);
    boMainPropertyBag.Add("QE_ServerDescription", "NewDataSet");
    boMainPropertyBag.Add("QE_SQLDB", "False");
    boMainPropertyBag.Add("SSO Enabled", "False");
    //Create a new ConnectionInfo object
    CrystalDecisions.ReportAppServer.DataDefModel.ConnectionInfo boConnectionInfo =
    new CrystalDecisions.ReportAppServer.DataDefModel.ConnectionInfo();
    //Pass the database properties to a connection info object
    boConnectionInfo.Attributes = boMainPropertyBag;
    //Set the connection kind
    boConnectionInfo.Kind = CrConnectionInfoKindEnum.crConnectionInfoKindCRQE;
    //*EDIT* Set the User Name and Password if required.
    boConnectionInfo.UserName = "";
    boConnectionInfo.Password = "";
    //Pass the connection information to the table
    boTable.ConnectionInfo = boConnectionInfo;
    //Get the Database Tables Collection for your report
    CrystalDecisions.ReportAppServer.DataDefModel.Tables boTables;
    boTables = rptClientDoc.DatabaseController.Database.Tables;
    //For each table in the report:
    // - Set the Table Name properties.
    // - Set the table location in the report to use the new modified table
    boTable.Name = "Orders";
    boTable.QualifiedName = "Orders";
    boTable.Alias = "Orders";
    rptClientDoc.DatabaseController.SetTableLocation(boTables[0], boTable);
    //Verify the database after adding substituting the new table.
    //To ensure that the table updates properly when adding Command tables or Stored Procedures.
    rptClientDoc.VerifyDatabase();
    MessageBox.Show("Data Source Set", "RAS", MessageBoxButtons.OK, MessageBoxIcon.Information);
    Thanks again
    Don

  • CProjects - Set-up field control - Usage of conditions

    Hello
    In cProjects, in set-up field control it is possible to adjust behavior (display, updatable, mandatory, u2026) field by field.
    My questions are:
    - Where to find the complete list of conditions available?
    - Is any condition is usable everywhere, for example C001 Object is released on a DAG Document (means the object link to this document is released)?
    - Is there a condition with a meaning like u201CThe object is in creationu201D (to have for example a phase description not updatable after creation)?
    - How to create its own conditions?
    Thanks for your help.
    Rémy
    Here you can find a list of conditions for the main objects.
    CTO (Checklist)      C001 Object is released
    ITO (Checklist Item)      C001 Object is released
    MTG (Project Participant)      C001 Object is released
    PPO (Phase)      C001 Object is released
    TTO (Task)      C001 Object is released
    MTG (Project Participant)      C002 CATS is active
    TTO (Task)      C002 CATS is active
    TTO (Task)      C004 Confirmation for task
    MTG (Project Participant)      C005 Role start and finish are specified
    ITO (Checklist Item)      C006 Object has a superior phase
    TTO (Task)      C006 Object has a superior phase
    TTO (Task)      C007 Phase without approval
    TTO (Task)      C008 Appr. is in process, granted, rejected
    CTO (Checklist)      C009 Ind. 'Changeability' to 'Cannot Be Chgd'
    ITO (Checklist Item)      C009 Ind. 'Changeability' to 'Cannot Be Chgd'
    CTO (Checklist)      C010 Ind.'Changeability' to 'Partlly Chngble'
    ITO (Checklist Item)      C010 Ind.'Changeability' to 'Partlly Chngble'
    PPO (Phase)      C011 Project Type 'Initiative'
    PPO (Phase)      C015 Constraint: As soon as possible
    TTO (Task)      C015 Constraint: As soon as possible
    ITO (Checklist Item)      C016 Constraint: As late as possible
    PPO (Phase)      C016 Constraint: As late as possible
    TTO (Task)      C016 Constraint: As late as possible
    ITO (Checklist Item)      C017 Constraint (Finish Date): None
    PPO (Phase)      C017 Constraint (Finish Date): None
    TTO (Task)      C017 Constraint (Finish Date): None
    TTO (Task)      C018 Task is a summary task
    TTO (Task)      C019 'Remaining Work Man.'indicator is active
    TTO (Task)      C020 Object is part of a project version
    ITO (Checklist Item)      C030 Access to Forecasted Dates
    PPO (Phase)      C030 Access to Forecasted Dates
    TTO (Task)      C030 Access to Forecasted Dates
    OAG (Object Link)      C100 Object has not been specified yet
    RAG (Checklist Reference)      C200 Checklist reference was created
    ATO (Approval)      C300 Approval has the status: Created
    EAG (Project Element Link to Role)      C400 Status: Staffing in Process/Complete
    MTG (Project Participant)      C500 Status: Staffing in Process/Complete
    MTG (Project Participant)      C501 Confirmation for project role
    BAG (Link to Business Partner)      C502 Distribution is active
    MTG (Project Participant)      C502 Distribution is active
    MTG (Project Participant)      C503 Status: Staffing in Process
    MTG (Project Participant)      C504 Cost/revenue rate is initial
    TTO (Task)      C504 Cost/revenue rate is initial
    MTG (Project Participant)      C505 Org. Unit (Staff. Manager) is changeable
    MTG (Project Participant)      C506 Org. Unit (Cand. Manager) is changeable
    MTG (Project Participant)      C507 Staffing Manager is changeable
    MTG (Project Participant)      C508 Candidate Manager is changeable
    SAO (Individual Approval)      C600 Approval allows decision maker change
    DAG (Document)      C700 cProjects file is checked out
    DAG (Document)      C701 Plug-in for documents is used
    DAG (Document)      C702 Document has status 'Not in Process'
    DAG (Document)      C703 Document is changeable
    DAG (Document)      C704 Link to document template
    DAG (Document)      C705 Document in projekt-/checklist template
    DAG (Document)      C706 cProj. file is checked by current user

    Hi Matthias
    I am trying to setup field control to make a bespoke field in a bespoke tab toggle between READ only and Editable. 
    I have gone through number of posts and the SAP note you mentioned. I have setup the entire configuration required and it is still not working.
    What confuses me is that, to setup a field control dynamically, is it all done via configuration?. Is some coding still required in the VIEW methods?. I am setting up a debug breakpoint in the class method that is created for the condition I created, but the program is not stopping there so I think the condition method is not being called.
    Please can you give some more details.
    Thanks
    Raj

  • Spem fields are missing In the Query

    Hi this is a FI-Sales Query , under Material Group consists Bags,Caps,wallets ete like these lot of fields but in the query i am not getting all the field. in the query designer every thing is there some fields are not coming like Tie etc,But remeber this is Production Issue.I think u r clear with the issue.
    Any Help

    Hi kumar
    I guess what u are talking about is a values in the infoobject material group are not populating into the query.
    The problem is accordig to me is that the master  data for the material Group is deleted so thats the reason u can t find material group values in the query.
    If i have not understood the problem then restate the problem again in other words.
    If this solves ur problem then kindly assingn the points.

  • Linked fields not working correctly- PLEASE HELP DEADLINE LOOMING!

    I have two tables. The first is called Orders and contains a autonumber field named ID. This field is linked to a field named OrderID in another table named ProductOrders. I am using a submission form with a cfinclude to submit to both tables. There should only be one Orders.ID and numerous ProductOrders.OrderID (but they should be the same number). When I submit the form there are no error messages but the ProductOrders.OrderID is blank and therefore not linked to Orders.ID. What should I be looking for? I have linked the fields in Access in properties and relationships. What else?

    Perhaps this will help, here is my code:
    This is the input form (I stripped out the unecessary stuff and yes I realize the cfinclude appears after the submit button but it is within cfform tag and is submitting everything but the ID number):
    <cfform action="mp_order_form2.cfm" method="post">
    <cfoutput query="CheckUser">
    <input type="hidden" name="UserID" value="#UserID#">
    </cfoutput>
    <p align="center"><img src="../images/mp_order_header.jpg" width="308" height="91" /></p>
    <table width="650" border="0" align="center">
      <tr>
        <td align="left" bgcolor="#FFFFFF"><font face="Tahoma"><strong>Sale Date*:</strong></font></td>
        <td align="left"><cfoutput>
          <input name="SaleDate" readonly="readonly" value="#DateFormat(Now(), "mm/dd/yyyy")#" />
          </cfoutput></td>
      </tr>
      <tr>
        <td align="left"><font face="Tahoma"><strong>TM Name*: </strong></font></td>
        <td align="left">
                            <cfoutput query="CheckUser">
                            <cfinput name="TerritoryManager" readonly="readonly" type="text" id="TerritoryManager" value="#UserFirstName# #UserLastName#" />
                            </cfoutput></td>
      </tr>
      <tr>
        <td align="left"><font face="Tahoma"><strong>Distributor*:</strong></font></td>
        <td align="left"><cfselect size="1" name="Distributor" required="Yes" message="Please select a distributor">
    <cfoutput query="distributors">
      <option value="#distributors.Field2#">
       #distributors.Field2#  </option>
    </cfoutput>
    </cfselect></td>
      </tr>
      <tr>
         <td align="left"><font face="Tahoma"><strong>Dealer:</strong></font></td>
        <td align="left"> </td>
      </tr>
      <tr>
        <td align="left"><cfoutput query="dealer_info"><input type="hidden" name="DealerID" value="#dealer_info.ID#"></td></tr>
      <tr>
        <td colspan="2" align="center" bgcolor="##CCCCCC"><font face="Tahoma" size="+1"><strong>#DealerName#</strong></font><br>
              <font face="Tahoma">#DealerAddress#</font><br>
              <font face="Tahoma">#DealerCity#, #DealerState# #DealerZIPCode#</font><br>
    <br><br>
    <font face="Tahoma">(#Left(DealerPhone,3)#) #Mid(DealerPhone,4,3)#-#Right(DealerPhone,4)#</font></td></tr></cfoutput>
      <tr>
        <td align="left" class="style8"> </td>
        <td align="left"> </td>
      </tr>
      <tr>
        <td align="left"><font face="Tahoma"><strong>PO Number: </strong></font></td>
        <td align="left"><cfinput type="text" name="PONumber" /></td>
      </tr>
      <tr>
        <td align="left"><font face="Tahoma"><strong>Promotion:</strong></font></td>
        <td align="left">
          <cfselect name="Variable" size="1" id="Variable">
            <option value="No promotion" selected="selected">No promotion</option>
            <option value="A+ Promotion (Send Kit)">A+ Promotion (Send Kit)</option>
            <option value="A+ Promotion (Do Not Send Kit)">A+ Promotion (Do Not Send Kit)</option>
            <option value="Chick Days Pre-book">Chick Days Pre-book</option>
      <option value="Fly Spray Pre-book">Fly Spray Pre-book</option>
      <option value="ISO Program">ISO Program</option>
      <option value="Promotion plus additional products">Promotion plus additional products</option>
          </cfselect></td>
      </tr>
      <tr>
        <td align="left"> </td>
        <td align="left"></td>
      </tr>
      <tr>
        <td align="left"><font face="Tahoma"><strong>ISO Check: </strong></font></td>
        <td align="left">
          <cfselect name="ISOCheck">
            <option value="Retail ISO Placement">Retail ISO Placement</option>
            <option value="DSR Spiff Check">DSR Spiff Check</option>
          </cfselect>
        </td>
      </tr>
      <tr>
        <td align="left"><font face="Tahoma"><strong>ISO Check Number: </strong></font></td>
        <td align="left"><cfinput type="text" name="ISOCheckNumber" /></td>
      </tr>
      <tr>
        <td align="left"><font face="Tahoma"><strong>ISO Check Amount: </strong></font></td>
        <td align="left">
          <cfinput type="text" name="ISOCheckAmount" />    </td>
      </tr>
      <tr>
        <td align="left"> </td>
        <td align="left"> </td>
      </tr>
      <tr>
        <td align="left"><font face="Tahoma"><strong>Customer Service Call Back: </strong></font></td>
        <td align="left">
          <cfselect name="CallBack">
       <option value=" " selected="selected"> </option>
       <option value="Yes">Yes</option>
       <option value="No">No</option>
          </cfselect>    </td>
      </tr>
      <tr>
        <td align="left"> </td>
        <td align="left"> </td>
      </tr>
    </table>
      <hr align="center" width="65%" color="#999999">
       <table width="677" align="center">
      <tr>
        <td height="22" colspan="4"><font face="Tahoma"><strong>Product Orders:</strong> </font></td>
      </tr>
      <tr>
        <td width="314" bgcolor="#CCCCCC"><div align="center"><font face="Tahoma" size="-1"><strong>Product</strong></font></div></td>
        <td width="62" bgcolor="#CCCCCC"><div align="center"><font face="Tahoma" size="-1"><strong>Qty</strong></font></div></td>
        <td width="124" bgcolor="#CCCCCC"><div align="center"><font face="Tahoma" size="-1"><strong>Size</strong></font></div></td>
        <td width="157" bgcolor="#CCCCCC"><div align="center"><font face="Tahoma" size="-1"><strong>New or Existing at Dealer</strong></font></div></td>
      </tr>
       <tr>
         <td> </td>
         <td> </td>
         <td> </td>
         <td> </td>
       </tr>
      <tr>
        <td colspan="4"><font face="Tahoma" size="+1"><strong>Comments:</strong></font></td>
        </tr>
      <tr>
        <td colspan="4"> </td>
      </tr>
      <tr>
        <td colspan="4"><font face="Tahoma">* - indicates a required field that must be filled in to submit form</font> </td>
        </tr>
      <tr>
        <td colspan="4">
          <div align="center">
            <input type="submit" value="Submit">
      <input type="reset" value="Reset">    
          </div>    </td>
      </tr>
    </table>
    <cfinclude template="product_input.cfm" >
    </cfform>
    </table>
    Here is the cfinclude template:
    <table width="579">
    <tr>
        <td>
          <cfselect name="Product">
         <option value="" selected="selected"> </option>
       <cfoutput query="products">
      <option value="#products.Product#">#products.Product#</option>
       </cfoutput>
          </cfselect>   
        </td>
        <td>
          <cfselect name="Quantity">
         <option value="" selected="selected"> </option>
       <cfoutput query="quantity"> 
            <option value="#quantity.Quantity#">#quantity.Quantity#</option>
       </cfoutput>
          </cfselect>   
        </td>
        <td>
          <cfselect name="BagsCases" id="BagsCases">
        <option value=" " selected="selected"> </option>
           <option value="Bags / Eaches">Bags / Eaches</option>
           <option value="Cases">Cases</option>
        <option value="Pallet">Pallet</option>
          </cfselect>   
        </td>
        <td>
         <cfselect name="NewExisting" id="NewExisting">
          <option value=" " selected="selected"> </option>
          <option value="New">New</option>
          <option value="Existing">Existing</option>
        </cfselect>   
        </td>
    <td><label>
       <input type="text" name="OrderComments" />
    </label>  </tr>
    </table>
    And finally, the action page:
    <cftransaction>
    <cfinsert datasource="manna_premier" formfields="SaleDate,TerritoryManager,Distributor,DealerID,PONumber,Variable,ISOCheck,ISO CheckNumber,ISOCheckAmount,CallBack,Comments,UserID" tablename="Orders">
    <cfinsert datasource="manna_premier" formfields="OrderID,Product,Quantity,BagsCases,NewExisting,OrderComments" tablename="ProductOrders">
    </cftransaction>
    <cflocation url="mp_order_form3.cfm?ID=#FORM.DealerID#">

  • What's the best ND filter to buy to get the most shallow depth of field while taking pictures?

    I have a Rebel SL1 by the way.  

    This depends on if you're trying to use flash at the same time.
    Outdoors in full mid-day sun, the exposure based on a "Sunny 16" rule is f/16 and the shutter speed set to the inverse of the ISO speed. At ISO 100 you'd use 1/100th. But if you dial the aperture open 5 stops to f/2.8 then you can dial the shutter faster by 5 stops to 1/3200 and have an equivalent exposure.
    f/2.8 is fairly shallow, but it is not the shallowest... f/2 and f/1.4 are even more shallow. Canon makes 50mm and 85mm f/1.2L (L series lenses) which can create especially shallow depth of field (particularly the 85mm). Canon used to have a 50mm f/1.0 lens but they have not made that in years.
    Depending on your subject... there's a point where the depth of field is so shallow that it's not possible to to get your entire subject into acceptable focus. At f/1.4 and f/1.2 the depth of field can get REALLY thin (especially at close focusing distances.)
    While most of my lenses can handle f/2.8 or better, I often find I prefer f/4 unless I can control subject placement well enough that f/2.8 (or lower) can still work.
    Your SL1 caps out at 1/4000th sec shutter speed. So if you were to shoot in full mid-day sun (a bit of an extreme example) and you wanted to use, say, an f/2 aperture, you could not halve the shutter speed to 1/6400th because your shutter doesn't offer that setting. But you COULD do that with just a single stop ND filter (ND 0.3 -- when represented this way each "0.1" worth of density is equal to 1/3rd of a stop of light. So 0.3 is 3/3rds or 1 full stop.).
    I have a 2 stop (ND 0.6), 3 stop (ND 0.9) and 10 stop (ND 3.0) filters in my bag.
    If you use flash, this changes things... with flash (which I usually use during the day to fill the deep shadows and soften the light) you are capped at the flash sync speed. For your SL1 that's 1/200th sec (or slower) unless you have a speedlite that supports "high speed sync" mode.
    In this situation, you might actually want 4 or 5 stops worth of ND if you are shooting in mid-day sun using fill-flash that doesn't support high-speed sync. You can change the shutter from 1/100th to 1/200th (1 stop) but you'd still have 4 more stops to make up to get from f/16 down to f/2.8... one more stop to get to f/2.
    You can "stack" filters, but stacking increases the odds of artifacts from reflections... use high quality anti-reflective coated filters (this is a situation where it doesn't pay to buy budget filters.)
    The major caution is that there is a point where the shallow depth of field is "too shallow" for the subject.
    Tim Campbell
    5D II, 5D III, 60Da

  • How can I set Array field which reside in a Structure field?

    I use Adobe java XMP toolkit.
    There are a few methods for setting structure and array items.
    setStructField() and appendArrayItem().
    However ducu stated that member of Structure may be array or structure, moreover array items also may be arrays or structures.
    So how can I set Array field in Structure or Structure field in Array???
    Thanks
    Andrey

    OK, it worked first time (without exception) as I tried to set value of EXISTING field.
    The trick is to add array or struct BEFORE setting their values.
    This short example shows how it works:
    XMPSchemaRegistry registry = XMPMetaFactory.getSchemaRegistry();
        registry.registerNamespace(extNS, "pdfaExtension");
        registry.registerNamespace(shemaNS, "pdfaSchema");
        registry.registerNamespace(propertyNS, "pdfaProperty");
        XMPMeta m = XMPMetaFactory.create();
        m.appendArrayItem(extNS, "pdfaExtension:schemas", new PropertyOptions().setArray(true), "", new PropertyOptions().setStruct(true));
        m.setProperty(extNS, "pdfaExtension:schemas[1]/pdfaSchema:prefix", "dc");
        m.setProperty(extNS, "pdfaExtension:schemas[1]/pdfaSchema:namespaceURI", "http://purl.org/dc/elements/1.1/");
        m.setProperty(extNS, "pdfaExtension:schemas[1]/pdfaSchema:schema", "Dublin Core Schema");
        m.appendArrayItem(extNS, "pdfaExtension:schemas[1]/pdfaSchema:property", new PropertyOptions().setArrayOrdered(true), null, new PropertyOptions()
            .setStruct(true));
        m.setProperty(extNS, "pdfaExtension:schemas[1]/pdfaSchema:property[1]/pdfaProperty:name", "contributor", null);
        m.setProperty(extNS, "pdfaExtension:schemas[1]/pdfaSchema:property[1]/pdfaProperty:category", "external", null);
        m.setProperty(extNS, "pdfaExtension:schemas[1]/pdfaSchema:property[1]/pdfaProperty:description",
            "Contributors to the resource (other than the authors).", null);
        m.setProperty(extNS, "pdfaExtension:schemas[1]/pdfaSchema:property[1]/pdfaProperty:valueType", "bag ProperName", null);
        m.appendArrayItem(extNS, "pdfaExtension:schemas[1]/pdfaSchema:property", new PropertyOptions().setArrayOrdered(true), null, new PropertyOptions()
            .setStruct(true));
        m.setProperty(extNS, "pdfaExtension:schemas[1]/pdfaSchema:property[2]/pdfaProperty:name", "coverage", null);
        m.setProperty(extNS, "pdfaExtension:schemas[1]/pdfaSchema:property[2]/pdfaProperty:category", "external", null);
        m.setProperty(extNS, "pdfaExtension:schemas[1]/pdfaSchema:property[2]/pdfaProperty:description", "The extent or scope of the resource.", null);
        m.setProperty(extNS, "pdfaExtension:schemas[1]/pdfaSchema:property[2]/pdfaProperty:valueType", "Text", null);
    Above code creates following XMP:
    <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 4.1.1">
      <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
        <rdf:Description rdf:about=""
            xmlns:pdfaExtension="http://www.aiim.org/pdfa/ns/extension/"
            xmlns:pdfaSchema="http://www.aiim.org/pdfa/ns/schema#"
            xmlns:pdfaProperty="http://www.aiim.org/pdfa/ns/property#">
          <pdfaExtension:schemas>
            <rdf:Bag>
              <rdf:li rdf:parseType="Resource">
                <pdfaSchema:prefix>dc</pdfaSchema:prefix>
                <pdfaSchema:namespaceURI>http://purl.org/dc/elements/1.1/</pdfaSchema:namespaceURI>
                <pdfaSchema:schema>Dublin Core Schema</pdfaSchema:schema>
                <pdfaSchema:property>
                  <rdf:Seq>
                    <rdf:li rdf:parseType="Resource">
                      <pdfaProperty:name>contributor</pdfaProperty:name>
                      <pdfaProperty:category>external</pdfaProperty:category>
                      <pdfaProperty:description>Contributors to the resource (other than the authors).</pdfaProperty:description>
                      <pdfaProperty:valueType>bag ProperName</pdfaProperty:valueType>
                    </rdf:li>
                    <rdf:li rdf:parseType="Resource">
                      <pdfaProperty:name>coverage</pdfaProperty:name>
                      <pdfaProperty:category>external</pdfaProperty:category>
                      <pdfaProperty:description>The extent or scope of the resource.</pdfaProperty:description>
                      <pdfaProperty:valueType>Text</pdfaProperty:valueType>
                    </rdf:li>
                  </rdf:Seq>
                </pdfaSchema:property>
              </rdf:li>
            </rdf:Bag>
          </pdfaExtension:schemas>
        </rdf:Description>
      </rdf:RDF>
    </x:xmpmeta>

  • VL10 and new selection-screen fields

    Hi experts.
    My requirement is to add new selection-screen field to second tab in VL10.
    After analyse many topics the solution was to copy VL10 to ZVL10.
    Also V50R_USEREXIT_TRANSF was copyed and there was added specific code.
    Furthemore note:524424 was implemented (header in form definition in  V50R_USEREXIT_TRANSF ), and the SHP_VL10_SELECT_OPTIONS was enhanced. As I understood from this stage we have selection-criteria in repeort.
    The problem is that I don't know how to transfer this data to ALV.
    Any tips ?
    Thanks .
    Daniel.

    hi
    how did you do that. i have to add select options in coois tcode  in header and operational level.but only using badi. using screen enhancement it is possible bt how to do that using bagi "workorder_infosystem"..
    please help me out..

  • Read specific XMP field

    My clients rename the PDF files that I send them for review. So when they send one back as "Approved" I need to figure out which InDesign document created the PDF. I have created a JavaScript that saves the InDesign document name into a custom XMP field every time the document is saved.
    Now, to make this as easy as possible, I want to create a menu item in Acrobat that allows the user to select it and have Acrobat display a dialog box showing the value of the custom XMP field. I have read the documentation, but it isn't very clear.
    I know that I can call 'this.metadata' to return ALL of the metadata, but all I want is "xmp:InDesignDocumentName" which is in the name space "http://ns.adobe.com/xap/1.0/"
    Anyone have experience digging into the XMP record?
    James

    I can't find details in the documentation on how to access extended metadata properties via the "info" property.
    i.e. from the following RAW XMP data, I am trying to retrieve the xmp:InDesignFileName value, which is in the "http://ns.adobe.com/xap/1.0/" name space.
    Any Ideas?
    <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.6-c014 79.156797, 2014/08/20-09:53:02   
    ">
       <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
    <rdf:Description rdf:about=""
    xmlns:dc="http://purl.org/dc/elements/1.1/"
    xmlns:xmp="http://ns.adobe.com/xap/1.0/"
    xmlns:xmpTPg="http://ns.adobe.com/xap/1.0/t/pg/"
    xmlns:xmpGImg="http://ns.adobe.com/xap/1.0/g/img/"
    xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/"
    xmlns:stEvt="http://ns.adobe.com/xap/1.0/sType/ResourceEvent#"
    xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#"
    xmlns:stMfs="http://ns.adobe.com/xap/1.0/sType/ManifestItem#"
    xmlns:idPriv="http://ns.adobe.com/xmp/InDesign/private"
    xmlns:LCC="http://ns.lightcatcherphoto.com/"
    xmlns:wn_private="http://ns.xinet.com/webnative/private/1.0/"
    xmlns:xmpG="http://ns.adobe.com/xap/1.0/g/"
    xmlns:stFnt="http://ns.adobe.com/xap/1.0/sType/Font#"
    xmlns:wn_text="http://ns.xinet.com/webnative/text-extraction/1.0/"
    xmlns:wn_image_info="http://ns.xinet.com/webnative/imageinfo/1.0/"
    xmlns:wn_thumbnails="http://ns.xinet.com/webnative/thumbnails/1.0/"
    xmlns:wn_previews="http://ns.xinet.com/webnative/previews/1.0/">
    <dc:format>application/x-indesign</dc:format>
    <dc:subject>
    <rdf:Bag>
    <rdf:li>Keywords</rdf:li>
    </rdf:Bag>
    </dc:subject>
    <xmp:CreateDate>2015-03-11T17:06:09-05:00</xmp:CreateDate>
    <xmp:MetadataDate>2015-03-31T08:55:35-05:00</xmp:MetadataDate>
    <xmp:ModifyDate>2015-03-31T08:55:35-05:00</xmp:ModifyDate>
    <xmp:LCCRevisionTime>Mon Mar 30 2015 16:28:03 GMT-0500</xmp:LCCRevisionTime>
    <xmp:LCCDocumentStatus>In Progress</xmp:LCCDocumentStatus>
    <xmp:LCCUserName>jhaney</xmp:LCCUserName>
    <xmp:LCCRevisionNotes>More edits</xmp:LCCRevisionNotes>
    <xmp:InDesignFileName>Untitled-8.indd</xmp:InDesignFileName>

  • MacBook for field-/location audiorecording (film & video)

    Searching for tips about a recording setup for field/location use. My purpose is to record 4-5 wireless + 1-2 boom mikes in the field. The ability to timestamp files by incoming TC would be a strong plus. Also syncing to the cameras sync/blackburst videosignal.
    Currently using a 4-channel ENG-mixer sending 2 tracks directly to the camera. Feel that 4-track DAT is stable and sturdy, but way too expensive.
    My thoughts about this is a MacBook (not purchased yet!) and a Metric Halo I/O 2882 firewire interface (yes, I got this one!). Recording software could actually be anything - this is just for raw recording - no editing/mixing/plugs. Recording will be done in 24-bit/48kHz mode. No more than 10 tracks simult. This seems to me to be a rugged setup, but I still got no TC reading option (?!?). Any tips? Is the MacBook sturdy enough to bring into cold and rainy weather, dusty fields and warm synny days?? Any experiences?

    it too have been eyeing boomrecorder, or its more expensive and more feature / cluttered? competitor metacorder. you can dedicate a track for LTC timecode or if you are running with a camera that does not have TC, you can even run you Mac in free run TC and use it as a "slate" in front of the camera, as it displays numbers, scene, take, etc... it syncs by continuous LTC timecode feed, but if for any reason it loses sync, it will freerun until sync is regained.
    for field recorders, however, do you need it portable, as in rigged onto a harness/bag, or is it going to be carted? AC powered or DC powered?
    The MH 2882 and a MacBook/Pro would be inherently DC powered, and a viable solution. I personally strap everything up into a harness and wear it on my chest, so Apple does not have a computer with an appropriate form factor for me to run boomrecorder on. To bad, because that would solve all of my needs.
    The next best things seems to be the Sound Devices 744t, which supports any standard 2.5" hard drive, flash card, and supports simultaneous recording to both formats for security. BWF, TC in and out, 4 drives, which is fine by me. in your case, you would have to mix several mics to tracks, and personally I would be more comfortable to track all mics to their own tracks for more flexible editing in post... also you'd have to bring some external gear to the mix since i think the sound devices only has 2 built in mic pres.
    I wish that Apple would come out with something like the Sony UX1. only downside is that it does not have firewire, except on the optional dock, and it only runs XP, so no boomrecorder or metacorder. come on apple, don't make us wait anymore for a tablet or UMPC killer!

  • Field-/locationrecording for film & video

    Searching for tips about a recording setup for field/location use. My purpose is to record 4-5 wireless + 1-2 boom mikes in the field. The ability to timestamp files by incoming TC would be a strong plus. Also syncing to the cameras sync/blackburst videosignal.
    Currently using a 4-channel ENG-mixer sending 2 tracks directly to the camera. Feel that 4-track DAT is stable and sturdy, but way too expensive.
    My thoughts about this is a MacBook (not purchased yet!) and a Metric Halo I/O 2882 firewire interface (yes, I got this one!). Recording software could actually be anything - this is just for raw recording - no editing/mixing/plugs. Recording will be done in 24-bit/48kHz mode. No more than 10 tracks simult. This seems to me to be a rugged setup, but I still got no TC reading option (?!?). Any tips? Is the MacBook sturdy enough to bring into cold and rainy weather, dusty fields and warm synny days?? Any experiences?

    it too have been eyeing boomrecorder, or its more expensive and more feature / cluttered? competitor metacorder. you can dedicate a track for LTC timecode or if you are running with a camera that does not have TC, you can even run you Mac in free run TC and use it as a "slate" in front of the camera, as it displays numbers, scene, take, etc... it syncs by continuous LTC timecode feed, but if for any reason it loses sync, it will freerun until sync is regained.
    for field recorders, however, do you need it portable, as in rigged onto a harness/bag, or is it going to be carted? AC powered or DC powered?
    The MH 2882 and a MacBook/Pro would be inherently DC powered, and a viable solution. I personally strap everything up into a harness and wear it on my chest, so Apple does not have a computer with an appropriate form factor for me to run boomrecorder on. To bad, because that would solve all of my needs.
    The next best things seems to be the Sound Devices 744t, which supports any standard 2.5" hard drive, flash card, and supports simultaneous recording to both formats for security. BWF, TC in and out, 4 drives, which is fine by me. in your case, you would have to mix several mics to tracks, and personally I would be more comfortable to track all mics to their own tracks for more flexible editing in post... also you'd have to bring some external gear to the mix since i think the sound devices only has 2 built in mic pres.
    I wish that Apple would come out with something like the Sony UX1. only downside is that it does not have firewire, except on the optional dock, and it only runs XP, so no boomrecorder or metacorder. come on apple, don't make us wait anymore for a tablet or UMPC killer!

  • Private Bag vs P O Box - Company Code details

    Good day all
    We use Private Bag instead of the PO Box. Where on the company code data can I make a change not to print PO Box in the address line but to print Private Bag.
    I am from South-Africa and we are country code. 012.
    Because the Postal address gets printed on all offical documents, it make the document not legal with the incorrect postal address.
    Any help will be greatly appreciated.
    Thank you.
    L

    Hi Murali
    We decided to customize our printouts to print on the documents PRIVATE BAG. I have logged an OSS. This was their reply:
    11.07.2007 - 12:03:19 CET    SAP    Reply 
    Dear PAM,
    SAP cannot unfortunately fulfill requirements of all countries.
    We can propose you possible workaround:
    1. The partner has NO street address and/or postal address
    => Put the private bag in the field STREET2, e.g 'Private Bag XX'
    in field STREET2.
    2. The partner has street address, and only has either postal address
    OR Private Bag.
    => Then in the POBOX field, you must use key in order to know
    which one is pobox and which one is private bag, e.g for
    postal address in the pobox field you enter 'PXXX', if private
    bag then you enter 'BXXX'. In addition you must develop the handling
    program in the customer exit. See note 839466 for detail
    how to develop customer exit
    in function module EXIT_SAPLSADR_001.
    3. The partner has street address, postal address and also private bag.
    => This situation is not supported. There is no workaround for
    this.
    Regards
    Ravinagh Boni
    Global Support Center - Financials
    Mail: [email protected]
    If you find any other solution, please let me know.
    Regards
    L

Maybe you are looking for

  • Mid 2010 Macbook Pro won't switch to Nvidia graphics.

    I have been playing Starcraft II on my Macbook Pro (i7/4G RAM/15" Display) for a few weeks now. Yesterday my frame rates dropped through the floor. The game was nearly unplayable. I thought initially that the level I was playing just had too many uni

  • OVM  local drives not seen - SAS drive issue

    OVM 3.1.1 Dell R510 12 SAS Drives in Raid 5 I'm trying to set up an r510 for a test env, and after reading through the forums, I found that it says SAS drives can't be used. 6.4.3. Local SAS Hard Disks Not Supported for Storage But that seems crazy.

  • Bonjour is MISSING!

    My MacBook got formatted and now I can't seem to find Bonjour anywhere. I need it to print wirelessly. Is there somewhere I can download it from or is there another way to print using a shared printer? Thanks...

  • MergedProjects dont appear in Adobe Air Browser Based TOC when published to a server

    MergedProjects dont appear in Adobe Air Browser Based Help when published to a server - its works fine on my local machine. The topics are there on the server as they appear in the Search, but the do not appear in the TOC. I have looked at another si

  • I am getting an error message from my pictures and video I purchased

    The error message says: Some of the videos in your iTunes library, including the video "Picture 047", were not copied to the iPod "my name" because they cannot be played on this ipod. I have a new Ipod, I just got it 2 weeks ago, and was able to get